diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be73e974..a47f27ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,6 @@ jobs: tar make cmake - gettext-tools openssh-clients glibc-devel libboost_headers-devel @@ -162,7 +161,6 @@ jobs: glib man tar - gettext openssh rsync boost-devel @@ -245,7 +243,6 @@ jobs: make cmake glib - gettext lsb-release rpmdevtools rpm-build @@ -349,7 +346,6 @@ jobs: man tar rpmdevtools - gettext lib64boost-devel lib64sqlite3-devel lib64alsa2-devel @@ -441,7 +437,6 @@ jobs: g++ pkg-config fakeroot - gettext lsb-release dpkg-dev libglib2.0-dev @@ -519,7 +514,6 @@ jobs: fakeroot wget curl - gettext lsb-release dpkg-dev libglib2.0-dev @@ -598,7 +592,6 @@ jobs: gcc g++ fakeroot - gettext lsb-release gpg dput diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ee39b24..aa058924 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -187,7 +187,6 @@ else() pkg_check_modules(TAGLIB REQUIRED IMPORTED_TARGET taglib>=1.12) endif() -find_package(Gettext) find_package(GTest) find_library(GMOCK_LIBRARY gmock) @@ -206,10 +205,6 @@ if(Qt${QT_VERSION_MAJOR}DBus_FOUND) set(DBUS_FOUND ON) endif() -if(Qt${QT_VERSION_MAJOR}LinguistTools_FOUND) - get_target_property(QT_LCONVERT_EXECUTABLE Qt${QT_VERSION_MAJOR}::lconvert LOCATION) -endif() - if(X11_FOUND) find_path(QPA_QPLATFORMNATIVEINTERFACE_H qpa/qplatformnativeinterface.h PATHS ${Qt${QT_VERSION_MAJOR}Gui_PRIVATE_INCLUDE_DIRS}) @@ -333,7 +328,6 @@ optional_component(GPOD ON "Devices: iPod classic support" ) optional_component(TRANSLATIONS ON "Translations" - DEPENDS "gettext" GETTEXT_FOUND DEPENDS "Qt LinguistTools" Qt${QT_VERSION_MAJOR}LinguistTools_FOUND ) @@ -354,10 +348,6 @@ if(HAVE_X11_GLOBALSHORTCUTS OR HAVE_KDE_GLOBALSHORTCUTS OR HAVE_GNOME_GLOBALSHOR set(HAVE_GLOBALSHORTCUTS ON) endif() -if(HAVE_TRANSLATIONS) - include(cmake/Translations.cmake) -endif() - if(NOT CMAKE_CROSSCOMPILING) # Check that we have Qt with sqlite driver set(CMAKE_REQUIRED_FLAGS "-std=c++17") @@ -1413,38 +1403,6 @@ qt_wrap_cpp(SOURCES ${HEADERS}) qt_wrap_ui(SOURCES ${UI}) qt_add_resources(SOURCES data/data.qrc data/icons.qrc) -if(HAVE_TRANSLATIONS) - - set(LINGUAS "All" CACHE STRING "A space-seperated list of translations to compile in to Strawberry, or \"None\".") - if(LINGUAS STREQUAL "All") - # build LANGUAGES from all existing .po files - file(GLOB pofiles src/translations/*.po) - foreach(pofile ${pofiles}) - get_filename_component(lang ${pofile} NAME_WE) - list(APPEND LANGUAGES ${lang}) - endforeach(pofile) - else(LINGUAS STREQUAL "All") - if(NOT LINGUAS OR LINGUAS STREQUAL "None") - set(LANGUAGES "") - else(NOT LINGUAS OR LINGUAS STREQUAL "None") - string(REGEX MATCHALL [a-zA-Z_@]+ LANGUAGES ${LINGUAS}) - endif(NOT LINGUAS OR LINGUAS STREQUAL "None") - endif(LINGUAS STREQUAL "All") - - if(NOT MSVC) - add_pot(SOURCES - ${CMAKE_CURRENT_SOURCE_DIR}/src/translations/header - ${CMAKE_CURRENT_SOURCE_DIR}/src/translations/translations.pot - ${SOURCES} - ${MOC} - ${UIC} - ${CMAKE_SOURCE_DIR}/data/html/oauthsuccess.html - ) - endif() - add_po(SOURCES strawberry_ LANGUAGES ${LANGUAGES} DIRECTORY src/translations) - -endif() - target_sources(strawberry PRIVATE ${SOURCES}) if(WIN32) @@ -1462,6 +1420,16 @@ if(LINUX AND LSB_RELEASE_EXEC AND DPKG_BUILDPACKAGE) add_subdirectory(debian) endif() +if(HAVE_TRANSLATIONS) + file(GLOB_RECURSE ts_files src/translations/*.ts) + set_source_files_properties(${ts_files} PROPERTIES OUTPUT_LOCATION "${CMAKE_CURRENT_BINARY_DIR}/data") + qt_add_lupdate(strawberry TS_FILES ${ts_files} OPTIONS -no-ui-lines -locations none -no-obsolete) + qt_add_lrelease(strawberry TS_FILES ${ts_files} QM_FILES_OUTPUT_VARIABLE INSTALL_TRANSLATIONS_FILES) + if(NOT INSTALL_TRANSLATIONS) + qt_add_resources(strawberry "translations" PREFIX "/i18n" BASE "${CMAKE_CURRENT_BINARY_DIR}/data" FILES "${INSTALL_TRANSLATIONS_FILES}") + endif() +endif() + target_include_directories(strawberry PRIVATE ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} diff --git a/Changelog b/Changelog index 3bd5b198..d3a13eeb 100644 --- a/Changelog +++ b/Changelog @@ -25,6 +25,7 @@ Enhancements: * Remove old MacFSListener. * Remove external tagreader and protobuf dependency. * Remove VLC support. + * Ported to Qt translation (.ts) files and removed gettext dependency. Version 1.1.3 (2024.09.21): diff --git a/cmake/Translations.cmake b/cmake/Translations.cmake deleted file mode 100644 index 15f81d40..00000000 --- a/cmake/Translations.cmake +++ /dev/null @@ -1,97 +0,0 @@ -find_program(GETTEXT_XGETTEXT_EXECUTABLE xgettext REQUIRED) - -if(NOT MSVC) - find_program(CAT_EXECUTABLE cat REQUIRED) -endif() - -list(APPEND XGETTEXT_OPTIONS - --qt - --keyword=tr:1,2c - --keyword=tr - --flag=tr:1:pass-c-format - --flag=tr:1:pass-qt-format - --keyword=trUtf8 - --flag=tr:1:pass-c-format - --flag=tr:1:pass-qt-format - --keyword=translate:2,3c - --keyword=translate:2 - --flag=translate:2:pass-c-format - --flag=translate:2:pass-qt-format - --keyword=QT_TR_NOOP - --flag=QT_TR_NOOP:1:pass-c-format - --flag=QT_TR_NOOP:1:pass-qt-format - --keyword=QT_TRANSLATE_NOOP:2 - --flag=QT_TRANSLATE_NOOP:2:pass-c-format - --flag=QT_TRANSLATE_NOOP:2:pass-qt-format - --keyword=_ - --flag=_:1:pass-c-format - --flag=_:1:pass-qt-format - --keyword=N_ - --flag=N_:1:pass-c-format - --flag=N_:1:pass-qt-format - --from-code=utf-8 -) - -execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/translations) - -macro(add_pot outfiles header pot) - # Make relative filenames for all source files - set(add_pot_sources) - foreach(_filename ${ARGN}) - get_filename_component(_absolute_filename ${_filename} ABSOLUTE) - file(RELATIVE_PATH _relative_filename ${CMAKE_CURRENT_SOURCE_DIR} ${_absolute_filename}) - list(APPEND add_pot_sources ${_relative_filename}) - endforeach(_filename) - - # Generate the .pot - add_custom_command( - OUTPUT ${pot} - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} ${XGETTEXT_OPTIONS} -C --omit-header --no-location --output="${CMAKE_CURRENT_BINARY_DIR}/pot.temp" ${add_pot_sources} - COMMAND cat ${header} ${CMAKE_CURRENT_BINARY_DIR}/pot.temp > ${pot} - DEPENDS ${add_pot_sources} ${header} - ) - - list(APPEND ${outfiles} ${pot}) -endmacro(add_pot) - -# Syntax is: -# add_po(sources_var po_prefix LANGUAGES language1 language2 ... DIRECTORY dir) - -macro(add_po outfiles po_prefix) - parse_arguments(ADD_PO - "LANGUAGES;DIRECTORY" - "" - ${ARGN} - ) - - foreach (_lang ${ADD_PO_LANGUAGES}) - set(_po_filename "${_lang}.po") - set(_po_filepath "${CMAKE_CURRENT_SOURCE_DIR}/${ADD_PO_DIRECTORY}/${_po_filename}") - set(_qm_filename "strawberry_${_lang}.qm") - set(_qm_filepath "${CMAKE_CURRENT_BINARY_DIR}/${ADD_PO_DIRECTORY}/${_qm_filename}") - - # Convert the .po files to .qm files - add_custom_command( - OUTPUT ${_qm_filepath} - COMMAND ${QT_LCONVERT_EXECUTABLE} ARGS ${_po_filepath} -o ${_qm_filepath} -of qm -target-language ${_lang} - DEPENDS ${_po_filepath} ${_po_filepath} - ) - - list(APPEND ${outfiles} ${_qm_filepath}) - list(APPEND INSTALL_TRANSLATIONS_FILES ${_qm_filepath}) - endforeach (_lang) - - # Generate a qrc file for the translations - if(NOT INSTALL_TRANSLATIONS) - set(_qrc ${CMAKE_CURRENT_BINARY_DIR}/${ADD_PO_DIRECTORY}/translations.qrc) - file(WRITE ${_qrc} "\n") - file(APPEND ${_qrc} "\n") - foreach(_lang ${ADD_PO_LANGUAGES}) - file(APPEND ${_qrc} "${po_prefix}${_lang}.qm\n") - endforeach(_lang) - file(APPEND ${_qrc} "\n") - file(APPEND ${_qrc} "\n") - qt_add_resources(${outfiles} ${_qrc}) - endif() -endmacro(add_po) diff --git a/crowdin.yml b/crowdin.yml index f06c428b..9c3ed3a7 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,3 @@ files: - - source: /src/translations/translations.pot - translation: /src/translations/%locale_with_underscore%.po + - source: /src/translations/strawberry_en_US.ts + translation: /src/translations/strawberry_%locale_with_underscore%.ts diff --git a/dist/unix/org.strawberrymusicplayer.strawberry.appdata.xml b/dist/unix/org.strawberrymusicplayer.strawberry.appdata.xml index 12ac96ef..40a3f268 100644 --- a/dist/unix/org.strawberrymusicplayer.strawberry.appdata.xml +++ b/dist/unix/org.strawberrymusicplayer.strawberry.appdata.xml @@ -14,7 +14,7 @@ Jonas Kvinge - ​strawberry + ​strawberry

diff --git a/dist/unix/strawberry.spec.in b/dist/unix/strawberry.spec.in index 3dc21107..96be3e71 100644 --- a/dist/unix/strawberry.spec.in +++ b/dist/unix/strawberry.spec.in @@ -21,7 +21,6 @@ BuildRequires: gcc-c++ BuildRequires: hicolor-icon-theme BuildRequires: make BuildRequires: git -BuildRequires: gettext BuildRequires: desktop-file-utils %if 0%{?suse_version} BuildRequires: update-desktop-files diff --git a/src/main.cpp b/src/main.cpp index 3ebe1067..f817c691 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -279,7 +279,7 @@ int main(int argc, char *argv[]) { ScopedPtr translations(new Translations); translations->LoadTranslation(u"qt"_s, QLibraryInfo::path(QLibraryInfo::TranslationsPath), language); - translations->LoadTranslation(u"strawberry"_s, u":/src/translations"_s, language); + translations->LoadTranslation(u"strawberry"_s, u":/i18n"_s, language); translations->LoadTranslation(u"strawberry"_s, QStringLiteral(TRANSLATIONS_DIR), language); translations->LoadTranslation(u"strawberry"_s, QCoreApplication::applicationDirPath(), language); translations->LoadTranslation(u"strawberry"_s, QDir::currentPath(), language); diff --git a/src/settings/behavioursettingspage.cpp b/src/settings/behavioursettingspage.cpp index 91d26d6a..ecb04bd8 100644 --- a/src/settings/behavioursettingspage.cpp +++ b/src/settings/behavioursettingspage.cpp @@ -81,7 +81,7 @@ BehaviourSettingsPage::BehaviourSettingsPage(SettingsDialog *dialog, QWidget *pa #ifdef HAVE_TRANSLATIONS // Populate the language combo box. We do this by looking at all the compiled in translations. - QDir dir1(QStringLiteral(":/src/translations/")); + QDir dir1(QStringLiteral(":/i18n")); QDir dir2(QStringLiteral(TRANSLATIONS_DIR)); QStringList codes = dir1.entryList(QStringList() << QStringLiteral("*.qm")); if (dir2.exists()) { diff --git a/src/translations/ca_ES.po b/src/translations/ca_ES.po deleted file mode 100644 index 360587a5..00000000 --- a/src/translations/ca_ES.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: ca\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Catalan\n" -"Language: ca_ES\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Tots els fitxers (*)" - -msgid "Context" -msgstr "" - -msgid "Collection" -msgstr "Col·lecció" - -msgid "Queue" -msgstr "" - -msgid "Playlists" -msgstr "" - -msgid "Smart playlists" -msgstr "" - -msgid "Files" -msgstr "" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "Dispositius" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Mostra totes les cançons" - -msgid "Show only duplicates" -msgstr "Mostra només els duplicats" - -msgid "Show only untagged" -msgstr "Mostra només les peces sense etiquetar" - -msgid "Configure collection..." -msgstr "Configura la col·lecció…" - -msgid "Play" -msgstr "Reprodueix" - -msgid "Stop after this track" -msgstr "Atura després d’aquesta peça" - -msgid "Toggle queue status" -msgstr "Commuta l’estat de la cua" - -msgid "Queue selected tracks to play next" -msgstr "" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "" - -msgid "Copy URL(s)..." -msgstr "" - -msgid "Show in collection..." -msgstr "Mostra a la col·lecció…" - -msgid "Show in file browser..." -msgstr "Mostra al gestor de fitxers" - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "Copia a la col·lecció…" - -msgid "Move to collection..." -msgstr "Mou a la col·lecció…" - -msgid "Copy to device..." -msgstr "Copia al dispositiu…" - -msgid "Delete from disk..." -msgstr "Suprimeix del disc…" - -msgid "Check for updates..." -msgstr "Comprova si hi ha actualitzacions…" - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Pausa" - -msgid "Dequeue track" -msgstr "Treu de la cua la peça" - -msgid "Dequeue selected tracks" -msgstr "Treu de la cua les peces seleccionades" - -msgid "Queue track" -msgstr "Afegeix la peça a la cua" - -msgid "Queue selected tracks" -msgstr "Afegeix les peces seleccionades a la cua" - -msgid "Queue to play next" -msgstr "" - -msgid "Unskip track" -msgstr "No ometis la peça" - -msgid "Unskip selected tracks" -msgstr "No ometis les peces seleccionades" - -msgid "Skip track" -msgstr "Omet la peça" - -msgid "Skip selected tracks" -msgstr "Omet les peces seleccionades" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Estableix %1 a «%2»…" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Edita l’etiqueta «%1»…" - -msgid "Add to another playlist" -msgstr "Afegeix a una altra llista de reproducció" - -msgid "New playlist" -msgstr "Llista de reproducció nova" - -msgid "Add file" -msgstr "Afegeix un fitxer" - -msgid "Music" -msgstr "Música" - -msgid "Add folder" -msgstr "Afegeix una carpeta" - -msgid "Clear playlist" -msgstr "Neteja la llista de reproducció" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "" - -msgid "Error" -msgstr "" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Cap de les cançons seleccionades són adequades per copiar-les a un dispositiu" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "La versió de Strawberry a la que us acabeu d’actualitzar necessita tornar a analitzar tota la col·lecció perquè incorpora les següents funcions noves:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Voleu fer de nou un escaneig complet ara?" - -msgid "Collection rescan notice" -msgstr "Avís de reescaneig de la col·lecció" - -msgid "Usage" -msgstr "Ús" - -msgid "options" -msgstr "opcions" - -msgid "URL(s)" -msgstr "" - -msgid "Player options" -msgstr "Opcions del reproductor" - -msgid "Start the playlist currently playing" -msgstr "Inicia la llista de reproducció que s'està reproduint" - -msgid "Play if stopped, pause if playing" -msgstr "Reprodueix si esta parat, pausa si esta reproduïnt" - -msgid "Pause playback" -msgstr "Pausa la reproducció" - -msgid "Stop playback" -msgstr "Atura la reproducció" - -msgid "Stop playback after current track" -msgstr "Atura la reproducció després de la peça actual" - -msgid "Skip backwards in playlist" -msgstr "Salta enrere en la llista de reproducció" - -msgid "Skip forwards in playlist" -msgstr "Salta endavant en la llista de reproducció" - -msgid "Set the volume to percent" -msgstr "Estableix el volum al percent" - -msgid "Increase the volume by 4 percent" -msgstr "" - -msgid "Decrease the volume by 4 percent" -msgstr "" - -msgid "Increase the volume by percent" -msgstr "Augmenta el volum per cent" - -msgid "Decrease the volume by percent" -msgstr "Redueix el volum per cent" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Mou-te per la peça en reproducció a una posició absoluta" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Mou-te per la peça en reproducció a una posició relativa" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Reinicia la peça, o canvia a l’anterior si no han transcorregut 8 segons des de l’inici." - -msgid "Playlist options" -msgstr "Opcions de la llista de reproducció" - -msgid "Create a new playlist with files" -msgstr "" - -msgid "Append files/URLs to the playlist" -msgstr "Afegeix fitxers/URL a la llista de reproducció" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Carregar fitxers/URLs, substituïnt l'actual llista de reproducció" - -msgid "Play the th track in the playlist" -msgstr "Reprodueix la a cançó de la llista de reproducció" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "Altres opcions" - -msgid "Display the on-screen-display" -msgstr "Mostra la indicació a pantalla" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Canvia la visibilitat del OSD estètic" - -msgid "Change the language" -msgstr "Canvia la llengua" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "Equivalent a --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Equivalent a --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Llista separada per comes de classe:nivell, el nivell és 0-3" - -msgid "Print out version information" -msgstr "Mostra la informació de la versió" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Comprovació d’integritat" - -msgid "Database corruption detected." -msgstr "" - -msgid "Backing up database" -msgstr "S’està fent una còpia de seguretat de la base de dades" - -msgid "Deleting files" -msgstr "S’estan suprimint els fitxers" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Desconegut" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Us cal el GStreamer per a aquest URL." - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Llista de reproducció" - -msgid "1 day" -msgstr "1 dia" - -#, qt-format -msgid "%1 days" -msgstr "%1 dies" - -msgid "Today" -msgstr "Avui" - -msgid "Yesterday" -msgstr "Ahir" - -#, qt-format -msgid "%1 days ago" -msgstr "fa %1 dies" - -msgid "Tomorrow" -msgstr "Demà" - -#, qt-format -msgid "In %1 days" -msgstr "D’aquí a %1 dies" - -msgid "Next week" -msgstr "La setmana vinent" - -#, qt-format -msgid "In %1 weeks" -msgstr "D’aquí a %1 setmanes" - -msgid "Show in file browser" -msgstr "" - -msgid "Too many songs selected." -msgstr "" - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "artista" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "" - -msgid "Framerate" -msgstr "Taxa de mostreig" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Baixa (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Mitja (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Alta (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Molt alta (%1 fps)" - -msgid "No analyzer" -msgstr "Sense analitzador" - -msgid "Block analyzer" -msgstr "Analitzador de blocs" - -msgid "Boom analyzer" -msgstr "Analitzador de ressonància" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Preamplificador" - -msgid "Custom" -msgstr "Personalitzat" - -msgid "Classical" -msgstr "Clàssica" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Baixos complets" - -msgid "Full Treble" -msgstr "Aguts complets" - -msgid "Full Bass + Treble" -msgstr "Baixos i aguts complets" - -msgid "Laptop/Headphones" -msgstr "Portàtil/auriculars" - -msgid "Large Hall" -msgstr "Saló gran" - -msgid "Live" -msgstr "En directe" - -msgid "Party" -msgstr "Festa" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "Suau" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "Rock suau" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "Desa els valors" - -msgid "Name" -msgstr "Nom" - -msgid "Delete preset" -msgstr "Elimina la predefinició" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Esteu segur que voleu suprimir la predefinició «%1»?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Tipus de fitxer" - -msgid "Length" -msgstr "Durada" - -msgid "Samplerate" -msgstr "Freqüència de mostreig" - -msgid "Bit depth" -msgstr "" - -msgid "Bitrate" -msgstr "Taxa de bits" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "" - -msgid "Show song technical data" -msgstr "" - -msgid "Show song lyrics" -msgstr "" - -msgid "Automatically search for song lyrics" -msgstr "" - -msgid "No song playing" -msgstr "" - -#, qt-format -msgid "%1 song" -msgstr "%1 cançó" - -#, qt-format -msgid "%1 songs" -msgstr "%1 cançons" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artista" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artistes" - -#, qt-format -msgid "%1 album" -msgstr "%1 àlbum" - -#, qt-format -msgid "%1 albums" -msgstr "%1 àlbums" - -msgid "kbps" -msgstr "kb/s" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "Artistes diversos" - -msgid "Loading..." -msgstr "S’està carregant…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "S’està actualitzant la col·lecció" - -#, qt-format -msgid "Updating %1" -msgstr "S’està actualitzant %1" - -msgid "Your collection is empty!" -msgstr "La vostra col·lecció està buida." - -msgid "Click here to add some music" -msgstr "Feu clic aquí per afegir música" - -msgid "Append to current playlist" -msgstr "Afegeix a la llista de reproducció actual" - -msgid "Replace current playlist" -msgstr "Substitueix la llista de reproducció actual" - -msgid "Open in new playlist" -msgstr "Obre en una llista de reproducció nova" - -msgid "Search for this" -msgstr "Cerca-ho" - -msgid "Edit track information..." -msgstr "Edita la informació de la peça…" - -msgid "Edit tracks information..." -msgstr "Edita la informació de les peces..." - -msgid "Rescan song(s)" -msgstr "" - -msgid "Show in various artists" -msgstr "Mostra en Artistes diversos" - -msgid "Don't show in various artists" -msgstr "No ho mostris a Artistes diversos" - -msgid "There are other songs in this album" -msgstr "Hi ha altres cançons en aquest àlbum" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "Mostrar" - -msgid "Group by" -msgstr "Agrupa per" - -msgid "Display options" -msgstr "Opcions de visualització" - -msgid "Group by Album artist/Album" -msgstr "Agrupa per artista de l'àlbum/àlbum" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "Agrupa per artista/àlbum" - -msgid "Group by Artist/Album - Disc" -msgstr "" - -msgid "Group by Artist/Year - Album" -msgstr "Agrupa per artista/any–àlbum" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Genre/Album artist/Album" -msgstr "" - -msgid "Group by Genre/Artist/Album" -msgstr "Agrupa per gènere/artista/àlbum" - -msgid "Group by Album Artist" -msgstr "" - -msgid "Group by Artist" -msgstr "Agrupa per artista" - -msgid "Group by Album" -msgstr "Agrupa per àlbum" - -msgid "Group by Genre/Album" -msgstr "Agrupa per gènere/àlbum" - -msgid "Advanced grouping..." -msgstr "Agrupament avançat…" - -msgid "Grouping Name" -msgstr "Nom d’agrupació" - -msgid "Grouping name:" -msgstr "Nom d’agrupació:" - -msgid "First level" -msgstr "Primer nivell" - -msgid "Second Level" -msgstr "Segon nivell" - -msgid "Third Level" -msgstr "Tercer nivell" - -msgid "None" -msgstr "Cap" - -msgid "Album artist" -msgstr "Artista de l’àlbum" - -msgid "Artist" -msgstr "Artista" - -msgid "Album" -msgstr "Àlbum" - -msgid "Album - Disc" -msgstr "" - -msgid "Year - Album" -msgstr "Any - Àlbum" - -msgid "Year - Album - Disc" -msgstr "" - -msgid "Original year - Album" -msgstr "Any original - àlbum" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "" - -msgid "Year" -msgstr "Any" - -msgid "Original year" -msgstr "Any original" - -msgid "Genre" -msgstr "Estil" - -msgid "Composer" -msgstr "Compositor" - -msgid "Performer" -msgstr "Intèrpret" - -msgid "Grouping" -msgstr "Agrupació" - -msgid "File type" -msgstr "Tipus de fitxer" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "Freqüència de mostreig" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Títol" - -msgid "Track" -msgstr "Peça" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Comentari" - -msgid "Source" -msgstr "Font" - -msgid "Mood" -msgstr "" - -msgid "Rating" -msgstr "" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Carrega la llista de reproducció" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "No s’han trobat coincidències. Netegeu el quadre de cerca per mostrar de nou la llista de reproducció completa." - -msgid "stop" -msgstr "atura" - -msgid "Never" -msgstr "Mai" - -msgid "&Hide..." -msgstr "&Amaga…" - -msgid "&Stretch columns to fit window" -msgstr "&Encabeix les columnes a la finestra" - -msgid "&Reset columns to default" -msgstr "" - -msgid "&Lock rating" -msgstr "" - -msgid "&Align text" -msgstr "&Alinea el text" - -msgid "&Left" -msgstr "&Esquerra" - -msgid "&Center" -msgstr "&Centre" - -msgid "&Right" -msgstr "&Dreta" - -#, qt-format -msgid "&Hide %1" -msgstr "&Amaga «%1»" - -msgid "New folder" -msgstr "Carpeta nova" - -msgid "Delete" -msgstr "Eliminar" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Desa la llista de reproducció" - -msgid "Enter the name of the folder" -msgstr "Introduïu el nom de la carpeta" - -msgid "Copy to device" -msgstr "" - -msgid "Playlist must be open first." -msgstr "" - -msgid "Remove playlists" -msgstr "Suprimeix llistes de reproducció" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Esteu segur que voleu suprimir %1 llistes de reproducció de les vostres llistes favorites?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Podeu marcar llistes de reproducció com a preferides fent clic a la icona de l’estrella al costat del nom de la llista corresponent." - -msgid "Favorited playlists will be saved here" -msgstr "Les vostres llistes preferides es desaran aquí" - -msgid "Couldn't create playlist" -msgstr "No s’ha pogut crear la llista de reproducció" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Desa la llista de reproducció" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "%1 seleccionades de" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automàtic" - -msgid "Relative" -msgstr "Relatius" - -msgid "Absolute" -msgstr "Absoluts" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Tanca la llista de reproducció" - -msgid "Rename playlist..." -msgstr "Renombra de la llista de reproducció..." - -msgid "Save playlist..." -msgstr "Desa la llista de reproducció..." - -msgid "Rename playlist" -msgstr "Renombra de la llista de reproducció" - -msgid "Enter a new name for this playlist" -msgstr "Introduïu un nom per aquesta llista de reproducció" - -msgid "Remove playlist" -msgstr "Esborra la llista de reproducció" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Sou a punt de suprimir una llista de reproducció que no heu desat com a favorita: la llista de reproducció se suprimirà (aquesta acció és irreversible).\n" -"Esteu segur que voleu continuar?" - -msgid "Warn me when closing a playlist tab" -msgstr "Avisa’m abans de tancar una pestanya de llista de reproducció" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Podeu modificar aquesta opció a la pestanya «Comportament» a Preferències" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "afegeix %n cançons" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "elimina %n cançons" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "mou %n cançons" - -msgid "sort songs" -msgstr "ordena les cançons" - -msgid "shuffle songs" -msgstr "mescla les cançons" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "" - -msgid "Loading tracks" -msgstr "S’estan carregant les peces" - -msgid "Loading tracks info" -msgstr "S’està carregant la informació de les peces" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Totes les llistes de reproducció (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 llistes de reproducció (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "" - -msgid "Collection search" -msgstr "Cerca a la col·lecció" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "Termes de cerca" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "" - -msgid "Search options" -msgstr "Opcions de cerca" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "S’han trobat %1 cançons (se’n mostren %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "S’han trobat %1 cançons" - -msgid "after" -msgstr "" - -msgid "before" -msgstr "abans" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "entre" - -msgid "contains" -msgstr "conté" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "buit" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "" - -msgid "Days" -msgstr "Dies" - -msgid "Weeks" -msgstr "" - -msgid "Months" -msgstr "Mesos" - -msgid "Years" -msgstr "Anys" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "" - -msgid "Newest tracks" -msgstr "" - -msgid "50 random tracks" -msgstr "50 peces a l’atzar" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "" - -msgid "Last played" -msgstr "Reproduïdes l’última vegada" - -msgid "Most played" -msgstr "" - -msgid "Favourite tracks" -msgstr "" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "Totes les peces" - -msgid "Dynamic random mix" -msgstr "" - -msgid "New smart playlist..." -msgstr "" - -msgid "Play next" -msgstr "" - -msgid "Edit smart playlist..." -msgstr "" - -msgid "Delete smart playlist" -msgstr "Suprimeix la llista intel·ligent" - -msgid "Smart playlist" -msgstr "" - -msgid "Playlist type" -msgstr "" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "" - -msgid "Finish" -msgstr "Finalitza" - -msgid "Choose a name for your smart playlist" -msgstr "Trieu un nom per a la llista intel·ligent" - -msgid "Abort" -msgstr "Interromp" - -msgid "All albums" -msgstr "Tots els àlbums" - -msgid "Albums with covers" -msgstr "Àlbums amb caràtules" - -msgid "Albums without covers" -msgstr "Àlbums sense caràtules" - -msgid "Really cancel?" -msgstr "Realment voleu cancel·lar?" - -msgid "Closing this window will stop searching for album covers." -msgstr "En tancar aquesta finestra es detindrà la cerca de les caràtules dels àlbums." - -msgid "Don't stop!" -msgstr "No aturar!" - -msgid "All artists" -msgstr "Tots els artistes" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "S’han trobat %1 caràtules de %2 (%3 han fallat)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 transferit" - -msgid "Export finished" -msgstr "Ha finalitzat l’exportació" - -msgid "No covers to export." -msgstr "No hi ha cap coberta que exportar." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "S’han exportat %1 caràtules de %2 (s’han omès %3)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Caràtules de %1" - -msgid "Search" -msgstr "Cerca" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Imatges (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Imatges (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Tots els fitxers (*)" - -msgid "Load cover from disk..." -msgstr "Carrega la coberta des d’un disc…" - -msgid "Save cover to disk..." -msgstr "Desa la coberta al disc dur…" - -msgid "Load cover from URL..." -msgstr "Carrega la coberta des d’un URL…" - -msgid "Search for album covers..." -msgstr "Cerca cobertes dels àlbums…" - -msgid "Unset cover" -msgstr "Esborra’n la coberta" - -msgid "Delete cover" -msgstr "Suprimeix la coberta" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "Mostra a mida completa..." - -msgid "Search automatically" -msgstr "Cerca automàticament" - -msgid "Load cover from disk" -msgstr "Carrega la portada des del disc dur" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "desconegut" - -msgid "Save album cover" -msgstr "Desa la coberta de l’àlbum" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "Total de sol·licituds de xarxa fetes" - -msgid "Average image size" -msgstr "Mida d’imatge mitjana" - -msgid "Total bytes transferred" -msgstr "Bytes totals transferits" - -msgid "Fetching cover error" -msgstr "S’ha produït un error en obtenir la coberta" - -msgid "The site you requested does not exist!" -msgstr "L’adreça que heu sol·licitat no existeix." - -msgid "The site you requested is not an image!" -msgstr "L’adreça que heu sol·licitat no conté cap imatge." - -msgid "Genius Authentication" -msgstr "Autenticació amb el Genius" - -msgid "Please open this URL in your browser" -msgstr "" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "" - -msgid "User interface" -msgstr "Interfície d’usuari" - -msgid "Streaming" -msgstr "" - -msgid "Add directory..." -msgstr "Afegeix un directori…" - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 necessita autenticació." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 no necessita autenticació." - -msgid "No provider selected." -msgstr "" - -msgid "Authentication failed" -msgstr "Ha fallat l’autenticació" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Seleccioneu la imatge de fons" - -msgid "OSD Preview" -msgstr "Vista prèvia OSD" - -msgid "Drag to reposition" -msgstr "Arrossegueu per canviar de posició" - -msgid "About Strawberry" -msgstr "Quant a l’Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Versió %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "L’Strawberry és un reproductor de música i un organitzador de col·leccions musicals." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "" - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "" - -msgid "Contributors" -msgstr "" - -msgid "Clementine authors" -msgstr "" - -msgid "Clementine contributors" -msgstr "" - -msgid "Thanks to" -msgstr "" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "" - -msgid "(different across multiple songs)" -msgstr "(diferents a les diverses cançons)" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "Anterior" - -msgid "Next" -msgstr "Següent" - -msgid "Saving tracks" -msgstr "S’estan desant les peces" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 cançons seleccionades." - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "No s’ha definit la coberta" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Etiquetes originals" - -msgid "Suggested tags" -msgstr "Etiquetes suggerides" - -msgid "Delete files" -msgstr "Suprimeix els fitxers" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "L’Strawberry s’executa com a «snap»" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Barra lateral gran" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Barra lateral petita" - -msgid "Plain sidebar" -msgstr "Barra lateral senzilla" - -msgid "Tabs on top" -msgstr "Pestanyes a dalt de tot" - -msgid "Icons on top" -msgstr "Icones a la part superior" - -msgid "Available" -msgstr "Disponible" - -msgid "New songs" -msgstr "Cançons noves:" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Usat" - -msgid "Clear" -msgstr "Neteja" - -msgid "Reset" -msgstr "Posa a zero" - -msgid "Small album cover" -msgstr "Coberta d’àlbum petita" - -msgid "Large album cover" -msgstr "Coberta d’àlbum gran" - -msgid "Fit cover to width" -msgstr "Ajusta la coberta a l’amplada" - -msgid "Show above status bar" -msgstr "Mostra sota la barra d'estat" - -msgid "You are signed in." -msgstr "Heu iniciat la sessió." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Heu iniciat la sessió com a %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Caduca el %1" - -#, qt-format -msgid "disc %1" -msgstr "" - -#, qt-format -msgid "track %1" -msgstr "peça %1" - -msgid "Paused" -msgstr "En pausa" - -msgid "Stopped" -msgstr "Aturat" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Atura la reproducció després de: %1" - -msgid "On" -msgstr "Actiu" - -msgid "Off" -msgstr "Inactiu" - -msgid "Playlist finished" -msgstr "Llista de reproducció finalitzada" - -#, qt-format -msgid "Volume %1%" -msgstr "Volumen %1%" - -msgid "Don't shuffle" -msgstr "Sense mesclar" - -msgid "Shuffle all" -msgstr "Mescla-ho tot" - -msgid "Shuffle tracks in this album" -msgstr "Mescla les peces d’aquest àlbum" - -msgid "Shuffle albums" -msgstr "Mescla els àlbums" - -msgid "Don't repeat" -msgstr "Sense repetició" - -msgid "Repeat track" -msgstr "Repeteix la peça" - -msgid "Repeat album" -msgstr "Repeteix l'àlbum" - -msgid "Repeat playlist" -msgstr "Repeteix la llista de reproducció" - -msgid "Stop after every track" -msgstr "Atura després de cada peça" - -msgid "Intro tracks" -msgstr "Peces d’introducció" - -#, qt-format -msgid "Configure %1..." -msgstr "Configura %1…" - -msgid "Add to artists" -msgstr "" - -msgid "Add to albums" -msgstr "" - -msgid "Add to songs" -msgstr "" - -msgid "Enter search terms above to find music" -msgstr "" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "" - -msgid "Remove from favorites" -msgstr "" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 Autenticació d'Scrobbler" - -msgid "Open URL in web browser?" -msgstr "" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Feu clic a «Desa» per a copiar l’URL al porta-retalls i obriu-lo manualment amb un navegador web." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "" - -msgid "Invalid reply from web browser. Missing token." -msgstr "" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "" - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "Inicials de l’artista" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "Extensió del fitxer" - -msgid "Error copying songs" -msgstr "S’ha produït un error en copiar les cançons" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Hi ha hagut problemes en copiar algunes cançons. Els fitxers següents no s’han pogut copiar:" - -msgid "Error deleting songs" -msgstr "S’ha produït un error en suprimir les cançons" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "S’han produït problemes en suprimir algunes cançons. No s’han pogut suprimir els fitxers següents:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "Peça anterior" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "Silenci" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Premeu una combinació de tecles per utilitzar amb %1…" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "No s’ha pogut iniciar l’ordre «%1»." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Drecera per a «%1»" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "Emplenant la memòria intermèdia" - -msgid "D-Bus path" -msgstr "Camí del D-Bus" - -msgid "Serial number" -msgstr "Número de sèrie" - -msgid "Mount points" -msgstr "Punts de muntatge" - -msgid "Partition label" -msgstr "Etiqueta de la partició" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Connecta el dispositiu" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Aquest es el primer cop que connecteu aquest dispositiu. L’Strawberry analitzarà el dispositiu per a trobar música. Això pot trigar un mica." - -msgid "This device will not work properly" -msgstr "Aquest dispositiu no funcionarà correctament" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Aquest és un dispositiu MTP, però s’ha compilat l’Strawberry sense compatibilitat amb libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Si continueu, aquest dispositiu funcionarà lentament i les cançons que hi copieu podrien no reproduïr-se." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Aquest dispositiu és un iPod, però s’ha compilat l’Strawberry sense compatibilitat amb libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Aquest tipus de dispositiu no és compatible: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "S’està actualitzant %1%…" - -msgid "Not connected" -msgstr "No connectat" - -msgid "Not mounted - double click to mount" -msgstr "No s’ha muntat. Feu doble clic per muntar-ho" - -msgid "Double click to open" -msgstr "Feu doble clic per obrir" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 cançó%2" - -msgid "Safely remove device" -msgstr "Treure el dispositiu amb seguretat" - -msgid "Forget device" -msgstr "Oblida el dispositiu" - -msgid "Device properties..." -msgstr "Propietats del dispositiu…" - -msgid "Delete from device..." -msgstr "Suprimeix del dispositiu…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Oblidar un dispositiu l'eliminarà de la llista i Strawberry haurà de tornar a examinar totes les cançons el proper cop que el connecti." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Se suprimiran aquests fitxers del dispositiu, esteu segur que voleu continuar?" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "Fabricant" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "S’està carregant la base de dades de l’iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "S’ha produït un error en carregar la base de dades de l’iTunes" - -msgid "Mount point" -msgstr "Punt de muntatge" - -msgid "Device" -msgstr "Dispositiu" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "S’està carregant el dispositiu MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "No s’ha pogut crear l’element «%1» de GStreamer. Comproveu que teniu tots els connectors requerits de GStramer instal·lats" - -#, qt-format -msgid "Successfully written %1" -msgstr "Escrit satisfactòriament %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "S’estan convertint %1 fitxers emprant %2 fils" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "S’ha produït un error en processar %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "S’està començant %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "No s’ha pogut trobar un codificador per %1. Comproveu que teniu els connectors adequats de GStreamer instal·lats" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "No s’ha pogut trobar un muxer per %1. Comproveu que teniu els connectors adequats de GStreamer instal·lats" - -msgid "Start transcoding" -msgstr "Inicia la conversió" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n restants" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n han acabat" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n han fallat" - -msgid "Add files to transcode" -msgstr "Afegeix fitxers per a convertir-los" - -msgid "Open a directory to import music from" -msgstr "Obriu una carpeta des d’on s’importarà la música" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -msgid "Server URL is invalid." -msgstr "" - -msgid "Missing username or password." -msgstr "" - -msgid "Subsonic server URL is invalid." -msgstr "L’URL del servidor Subsonic no és vàlid." - -msgid "Missing Subsonic username or password." -msgstr "" - -msgid "Retrieving albums..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "" - -msgid "Configuration incomplete" -msgstr "" - -msgid "Missing server url, username or password." -msgstr "" - -msgid "Configuration incorrect" -msgstr "" - -msgid "Test successful!" -msgstr "" - -msgid "Test failed!" -msgstr "" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "" - -msgid "Missing Tidal username." -msgstr "" - -msgid "Missing Tidal password." -msgstr "" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "" - -msgid "Not authenticated with Tidal." -msgstr "" - -msgid "Missing Tidal API token, username or password." -msgstr "" - -msgid "Authenticating..." -msgstr "S’està autenticant…" - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "S’està cercant…" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "" - -msgid "Cancelled." -msgstr "S’ha cancel·lat." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "" - -msgid "Missing API token." -msgstr "" - -msgid "Missing username." -msgstr "" - -msgid "Missing password." -msgstr "" - -msgid "Spotify Authentication" -msgstr "" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "" - -msgid "Missing Qobuz app ID." -msgstr "" - -msgid "Missing Qobuz username." -msgstr "" - -msgid "Missing Qobuz password." -msgstr "" - -msgid "Not authenticated with Qobuz." -msgstr "" - -msgid "Missing Qobuz app ID or secret." -msgstr "" - -msgid "Missing app id." -msgstr "" - -msgid "Show moodbar" -msgstr "" - -msgid "Moodbar style" -msgstr "" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "" - -msgid "Frozen" -msgstr "" - -msgid "Happy" -msgstr "" - -msgid "System colors" -msgstr "Colors del sistema" - -msgid "Strawberry Music Player" -msgstr "Reproductor de música Strawberry" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Reprodueix" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Surt" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Neteja la llista de reproducció" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Posa els números de les peces en aquest ordre..." - -msgid "Set value for all selected tracks..." -msgstr "Estableix valor per a totes les peces seleccionades…" - -msgid "Edit tag..." -msgstr "Edita l’etiqueta…" - -msgid "&Settings..." -msgstr "&Paràmetres…" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&Quant a l’Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Afegeix un fitxer..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Obre un fitxer…" - -msgid "Open audio &CD..." -msgstr "" - -msgid "&Cover Manager" -msgstr "Gestor de &cobertes" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "Mode de me&scla" - -msgid "&Repeat mode" -msgstr "Mode de repetició" - -msgid "Remove from playlist" -msgstr "Suprimeix de la llista de reproducció" - -msgid "&Equalizer" -msgstr "&Equalitzador" - -msgid "&Transcode Music" -msgstr "" - -msgid "Add &folder..." -msgstr "" - -msgid "&Jump to the currently playing track" -msgstr "" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Vés a la pestanya de la següent llista de reproducció" - -msgid "Go to previous playlist tab" -msgstr "Vés a la pestanya de l'anterior llista de reproducció" - -msgid "&Update changed collection folders" -msgstr "" - -msgid "About &Qt" -msgstr "Quant al &Qt" - -msgid "&Mute" -msgstr "" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Completa les etiquetes automàticament…" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Commuta l’«scrobbling»" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "Afegeix fitxer(s) al convertidor" - -msgid "Add file to transcoder" -msgstr "Afegeix un fitxer al convertidor" - -msgid "Add stream..." -msgstr "" - -msgid "Show sidebar" -msgstr "" - -msgid "Import data from last.fm..." -msgstr "" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Música" - -msgid "P&laylist" -msgstr "" - -msgid "Help" -msgstr "" - -msgid "&Tools" -msgstr "&Eines" - -msgid "Collection advanced grouping" -msgstr "Agrupació avançada de la col·lecció" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "Agrupa la col·lecció per…" - -msgid "Second level" -msgstr "Segon nivell" - -msgid "Third level" -msgstr "Tercer nivell" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "" - -msgid "Entire collection" -msgstr "Tota la col·lecció" - -msgid "Added today" -msgstr "Afegides avui" - -msgid "Added this week" -msgstr "Afegides aquesta setmana" - -msgid "Added within three months" -msgstr "Afegides els últims tres mesos" - -msgid "Added this year" -msgstr "Afegides aquest any" - -msgid "Added this month" -msgstr "Afegides aquest mes" - -msgid "Save current grouping" -msgstr "Desa l'agrupació actual" - -msgid "Manage saved groupings" -msgstr "Gestiona agrupacions guardades" - -msgid "Enter search terms here" -msgstr "Introduïu els termes de la cerca" - -msgid "Form" -msgstr "Formulari" - -msgid "Saved Grouping Manager" -msgstr "Gestor d'agrupacions desades" - -msgid "Remove" -msgstr "Suprimeix" - -msgid "Ctrl+Up" -msgstr "Ctrl+Amunt" - -msgid "File paths" -msgstr "Camins dels fitxers" - -msgid "This can be changed later through the preferences" -msgstr "Aquesta opció es pot modificar més tard a Preferències" - -msgid "Remember my choice" -msgstr "Recorda la meva elecció" - -msgid "Stop after each track" -msgstr "Atura després de cada peça" - -msgid "Repeat" -msgstr "Repeteix" - -msgid "Shuffle" -msgstr "Mescla" - -msgid "Dynamic mode is on" -msgstr "" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "Mou cap avall" - -msgid "Move up" -msgstr "Mou cap amunt" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "Mode de cerca" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "cançons" - -msgid "Preview" -msgstr "Previsualitza" - -msgid "and" -msgstr "i" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "" - -msgid "Edit smart playlist" -msgstr "" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "Exporta les caràtules" - -msgid "Output" -msgstr "Sortida" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Introduïu un nom de fitxer per les caràtules exportades (sense extensió):" - -msgid "Export downloaded covers" -msgstr "Exporta les caràtules baixades" - -msgid "Export embedded covers" -msgstr "Exporta les caràtules incrustades" - -msgid "Existing covers" -msgstr "Caràtules existents" - -msgid "Do not overwrite" -msgstr "No ho sobreescriguis" - -msgid "O&verwrite all" -msgstr "" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "Mida" - -msgid "Scale size" -msgstr "Mida de l’escala" - -msgid "Size:" -msgstr "Mida:" - -msgid "Pixel" -msgstr "Píxel" - -msgid "Cover Manager" -msgstr "Gestor de caràtules" - -msgid "Fetch automatically" -msgstr "Recull automàticament" - -msgid "Load" -msgstr "Carregar" - -msgid "Add to playlist" -msgstr "Afegeix a la llista de reproducció" - -msgid "View" -msgstr "Vista" - -msgid "Total albums:" -msgstr "Total d’àlbums:" - -msgid "Without cover:" -msgstr "Sense coberta:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Recull les caràtules que falten" - -msgid "Export Covers" -msgstr "Exporta les caràtules" - -msgid "Fetch completed" -msgstr "S'han acabat d'obtenir les dades" - -msgid "Load cover from URL" -msgstr "Carrega la coberta des d’un URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Introduïu un URL per a baixar una coberta de la Internet:" - -msgid "Settings" -msgstr "Paràmetres" - -msgid "Behavior" -msgstr "Comportament" - -msgid "Show system tray icon" -msgstr "" - -msgid "Keep running in the background when the window is closed" -msgstr "Conserva l’aplicació executant-se en segon pla quan tanqueu la finestra" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Reprèn la reproducció en l’inici" - -msgid "Show playing widget" -msgstr "" - -msgid "On startup" -msgstr "" - -msgid "Remember from &last time" -msgstr "Recorda de l'últim cop" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "Llengua" - -msgid "Use the system default" -msgstr "Utilitza el valor per defecte del sistema" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Si canvieu la llengua haureu de reiniciar l’Strawberry." - -msgid "Using the menu to add a song will..." -msgstr "En emprar el menú per a afegir una cançó…" - -msgid "Never start playing" -msgstr "Mai no comencis a reproduir" - -msgid "Play if there is nothing already playing" -msgstr "Reprodueix si encara no hi ha res reproduint-se" - -msgid "Always start playing" -msgstr "Comença sempre la reproducció" - -msgid "Pressing \"Previous\" in player will..." -msgstr "En fer clic al botó «Anterior» del reproductor…" - -msgid "Jump to previous song right away" -msgstr "Vés a la peça anterior" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Reinicia la peça i salta a l’anterior en fer clic un altre cop" - -msgid "Double clicking a song will..." -msgstr "En fer doble clic a una cançó..." - -msgid "Append to the playlist" -msgstr "Afegeix a la llista de reproducció" - -msgid "Replace the playlist" -msgstr "Substitueix la llista de reproducció" - -msgid "Add to the queue" -msgstr "Afegeix a la cua" - -msgid "Double clicking a song in the playlist will..." -msgstr "En fer doble clic a una cançó de la llista…" - -msgid "Change the currently playing song" -msgstr "Canvia la cançó que s’està reproduint ara" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Moure's dins la peça amb una tecla de drecera o la roda del ratolí" - -msgid "Time step" -msgstr "Salt en el temps" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "S’analitzaran aquestes carpetes a la recerca de música per confeccionar la vostra col·lecció" - -msgid "Add new folder..." -msgstr "Afegeix una carpeta nova…" - -msgid "Remove folder" -msgstr "Suprimeix carpeta" - -msgid "Automatic updating" -msgstr "Actualització automàtica" - -msgid "Update the collection when Strawberry starts" -msgstr "Actualitza la col·lecció quan l’Strawberry s’iniciï" - -msgid "Monitor the collection for changes" -msgstr "Monitoritza els canvis a la col·lecció" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Noms de fitxer preferits per a les caràtules dels àlbums (separats per comes)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "En la cerca de caràtules d’àlbum, Strawberry primer cercarà imatges que contenen una d’aquestes paraules.\n" -"Si no hi ha resultats, s’usarà la imatge més gran en el directori." - -msgid "Automatically open single categories in the collection tree" -msgstr "Expandeix automàticament les categories úniques en l’arbre de la col·lecció" - -msgid "Show dividers" -msgstr "Mostra els separadors" - -msgid "Show album cover art in collection" -msgstr "" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "" - -msgid "Enable Disk Cache" -msgstr "" - -msgid "Disk Cache Size" -msgstr "Mida de la memòria cau al disc" - -msgid "Current disk cache in use:" -msgstr "" - -msgid "Clear Disk Cache" -msgstr "" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Sortida d’àudio" - -msgid "Engine" -msgstr "Motor" - -msgid "ALSA plugin:" -msgstr "Connector de l’ALSA:" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "canals" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Durada de la memòria intermèdia" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Utilitza les metadades Replay Gain si estan disponibles" - -msgid "Replay Gain mode" -msgstr "Mode de l’Replay Gain" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Ràdio (mateix volum per a totes les peces)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Àlbum (volum ideal per a totes les peces)" - -msgid "Apply compression to prevent clipping" -msgstr "Aplica compressió per evitar el «clipping»" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Esvaïment" - -msgid "Fade out when stopping a track" -msgstr "Esvaeix el so en parar una peça" - -msgid "Cross-fade when changing tracks manually" -msgstr "Fusiona el so quan es canviï la peça manualment" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Fusiona el so quan es canviï la peça automàticament" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Excepte entre peces del mateix àlbum o del mateix full CUE" - -msgid "Fading duration" -msgstr "Durada de l’esvaïment" - -msgid "Fade out on pause / fade in on resume" -msgstr "Atenua el volum en pausar i en reprendre" - -msgid "Add song artist tag" -msgstr "Afegeix l’etiqueta d’artista a la cançó" - -msgid "Add song album tag" -msgstr "Afegeix l’etiqueta d’àlbum a la cançó" - -msgid "Add song title tag" -msgstr "Afegeix l’etiqueta de títol a la cançó" - -msgid "Add song albumartist tag" -msgstr "Afegeix l’etiqueta «albumartist» a la cançó" - -msgid "Add song year tag" -msgstr "Afegeix l’etiqueta d’any a la cançó" - -msgid "Add song composer tag" -msgstr "Afegeix l’etiqueta de compositor a la cançó" - -msgid "Add song performer tag" -msgstr "Afegeix etiqueta d’intèrpret de la cançó" - -msgid "Add song grouping tag" -msgstr "Afegeix etiqueta d’agrupació de la cançó" - -msgid "Add song disc tag" -msgstr "Afegeix l’etiqueta de disc a la cançó" - -msgid "Add song track tag" -msgstr "Afegeix l’etiqueta de número de peça a la cançó" - -msgid "Add song genre tag" -msgstr "Afegeix l’etiqueta de gènere a la cançó" - -msgid "Add song length tag" -msgstr "Afegeix l’etiqueta de durada a la cançó" - -msgid "Add song play count" -msgstr "Afegeix el nombre de reproduccions" - -msgid "Add song skip count" -msgstr "Afegeix comptador de passades de cançó" - -msgid "Add a new line if supported by the notification type" -msgstr "Afegeix una línia nova si és compatible amb el tipus de notificació" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Afegeix el nom de fitxer de la cançó" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Afegeix una valoració a la cançó" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "Resum" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "" - -msgid "Song Lyrics" -msgstr "" - -msgid "Automatically search for album cover" -msgstr "" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "Lletra tipogràfica" - -msgid "Font size" -msgstr "" - -msgid " pt" -msgstr "pt" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "" - -msgid "Automatically select current playing track" -msgstr "" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "En desar una llista de reproducció, els camins dels fitxers han de ser" - -msgid "A&utomatic" -msgstr "Automàtic" - -msgid "Absolu&te" -msgstr "" - -msgid "Re&lative" -msgstr "" - -msgid "As&k when saving" -msgstr "&Pregunta en desar" - -msgid "Metadata" -msgstr "Metadades" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "En habilitar aquesta opció, podreu fer clic en la cançó seleccionada de la llista de reproducció i editar els valors directament" - -msgid "Enable song metadata inline edition with click" -msgstr "Edita les metadades d’una cançó amb un clic" - -msgid "Write metadata when saving playlists" -msgstr "" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "" - -msgid "Show love button" -msgstr "" - -msgid "Submit scrobbles every" -msgstr "" - -msgid " seconds" -msgstr " segons" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Flux de dades" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Entra" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Testimoni d’usuari:" - -msgid "Covers" -msgstr "" - -msgid "Cover providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "" - -msgid "Authentication" -msgstr "Autenticació" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "" - -msgid "Save album covers in album directory" -msgstr "" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "" - -msgid "Lowercase filename" -msgstr "" - -msgid "Replace spaces with dashes" -msgstr "" - -msgid "Lyrics" -msgstr "" - -msgid "Lyrics providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "" - -msgid "Network Proxy" -msgstr "Servidor intermediari de xarxa" - -msgid "&Use the system proxy settings" -msgstr "" - -msgid "Direct internet connection" -msgstr "Connexió directa a Internet" - -msgid "&Manual proxy configuration" -msgstr "" - -msgid "HTTP proxy" -msgstr "Servidor intermediari per a l’HTTP" - -msgid "SOCKS proxy" -msgstr "Servidor intermediari per al SOCKS" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "Empra autentificació" - -msgid "Username" -msgstr "Nom d’usuari" - -msgid "Password" -msgstr "Contrasenya" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "Aparença" - -msgid "Style" -msgstr "Estil" - -msgid "Use system theme icons" -msgstr "" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "Colors de la barra de pestanyes" - -msgid "&Use the system default color" -msgstr "" - -msgid "Use custom color" -msgstr "" - -msgid "Use gradient background" -msgstr "" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "Imatge de fons" - -msgid "Default bac&kground image" -msgstr "" - -msgid "&No background image" -msgstr "" - -msgid "The album cover of the currently playing song" -msgstr "La coberta de l’àlbum de la cançó en reproducció" - -msgid "Albu&m cover" -msgstr "" - -msgid "Custom image:" -msgstr "Imatge personalitzada:" - -msgid "Browse..." -msgstr "Explora…" - -msgid "Position" -msgstr "Posició" - -msgid "Upper Left" -msgstr "" - -msgid "Upper Right" -msgstr "" - -msgid "Middle" -msgstr "" - -msgid "Bottom Left" -msgstr "" - -msgid "Bottom Right" -msgstr "" - -msgid "Max cover size" -msgstr "" - -msgid "Stretch image to fill playlist" -msgstr "" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "" - -msgid "Blur amount" -msgstr "Quantitat de difuminació" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Opacitat" - -msgid "40%" -msgstr "40 %" - -msgid "Icon sizes" -msgstr "" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "Color de realçament del sistema" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "Notificacions" - -msgid "Strawberry can show a message when the track changes." -msgstr "L’Strawberry pot mostrar un missatge quan la peça canviï." - -msgid "Notification type" -msgstr "Tipus de notificació" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Inhabilitat" - -msgid "Show a &native desktop notification" -msgstr "" - -msgid "Show a pretty OSD" -msgstr "Mostra un OSD bonic" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "Configuració general" - -msgid "Popup duration" -msgstr "Duració de la finestra emergent" - -msgid "Disable duration" -msgstr "Inhabilita la durada" - -msgid "Show a notification when I change the volume" -msgstr "Mostra una notificació quan canvia el volum" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Mostra una notificació quan canviï entre el modes de repetició i de mescla aleatòria" - -msgid "Show a notification when I pause playback" -msgstr "Mostra una notificació en aturar la reproducció" - -msgid "Show a notification when I resume playback" -msgstr "" - -msgid "Include album art in the notification" -msgstr "Inclou la coberta a la notificació" - -msgid "Custom message settings" -msgstr "Configuració personalitzada dels missatges" - -msgid "Use a custom message for notifications" -msgstr "Utilitza un missatge personalitzat per les notificacions" - -msgid "Body" -msgstr "Cos" - -msgid "Pretty OSD options" -msgstr "Opcions de l'OSD bonic" - -msgid "Background color" -msgstr "Color de fons" - -msgid "Text options" -msgstr "Opcions del text" - -msgid "Choose font..." -msgstr "Tria el tipus de lletra…" - -msgid "Choose color..." -msgstr "Tria el color…" - -msgid "Background opacity" -msgstr "Opacitat del fons" - -msgid "Basic Blue" -msgstr "Blau bàsic" - -msgid "Strawberry Red" -msgstr "Vermell maduixa" - -msgid "Custom..." -msgstr "Personalitza..." - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "Equalitzador" - -msgid "Preset:" -msgstr "Predefinició:" - -msgid "Enable equalizer" -msgstr "Habilita l’equalitzador" - -msgid "Enable stereo balancer" -msgstr "Activa l’equilibrador estèreo" - -msgid "Left" -msgstr "Esquerra" - -msgid "Balance" -msgstr "Balanç" - -msgid "Right" -msgstr "Dreta" - -msgid "About" -msgstr "Quant a" - -msgid "Strawberry Error" -msgstr "Error de l’Strawberry" - -msgid "Console" -msgstr "Terminal" - -msgid "Run" -msgstr "Executa" - -msgid "Edit track information" -msgstr "Edita la informació de la peça" - -msgid "Date created" -msgstr "Data de creació" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "Data de modificació" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Darrera reproducció" - -msgid "Play count" -msgstr "Comptador de reproduccions" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Taxa de bits" - -msgid "Skip count" -msgstr "Comptador d’omissions" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "Nom de fitxer" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Mida del fitxer" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Posa a zero el comptador de reproduccions" - -msgid "Change art" -msgstr "Canvia la coberta" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "Completa les etiquetes automàticament" - -msgid "Compilation" -msgstr "Compilació" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Recolector d'etiquetes" - -msgid "Sorry" -msgstr "Ho lamentem" - -msgid "Strawberry was unable to find results for this file" -msgstr "L’Strawberry no ha trobat resultats per a aquest fitxer" - -msgid "Select best possible match" -msgstr "Selecciona la millor coincidència possible" - -msgid "Add Stream" -msgstr "" - -msgid "Enter the URL of a stream:" -msgstr "" - -msgid "Enter username and password" -msgstr "" - -msgid "Import data from last.fm" -msgstr "" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "Vés-hi" - -msgid "Close" -msgstr "Tanca" - -msgid "Cancel" -msgstr "Cancel·la" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Feu-hi clic per a alternar entre el temps de reproducció restant i el total" - -msgid "You are not signed in." -msgstr "No heu iniciat la sessió." - -msgid "Sign out" -msgstr "Finalitza la sessió" - -msgid "Signing in..." -msgstr "S’està iniciant la sessió…" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "" - -msgid "Albums" -msgstr "Àlbums" - -msgid "Songs" -msgstr "" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "artistes" - -msgid "albums" -msgstr "àlbums" - -msgid "songs" -msgstr "cançons" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "Destí" - -msgid "After copying..." -msgstr "Després de copiar…" - -msgid "Keep the original files" -msgstr "Conserva els fitxers originals" - -msgid "Delete the original files" -msgstr "Suprimeix els fitxers originals" - -msgid "Naming options" -msgstr "Opcions d’anomenament" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album %title

\n\n" -"

Si demarqueu entre claus una secció de text que contingui una fitxa de remplaçament, aquesta secció no es mostrarà si la fitxa de remplaçament es troba buida.

" - -msgid "Insert..." -msgstr "Insereix…" - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "" - -msgid "Restrict characters to ASCII" -msgstr "" - -msgid "Allow extended ASCII characters" -msgstr "" - -msgid "Replace spaces with underscores" -msgstr "" - -msgid "Overwrite existing files" -msgstr "Sobreescriu els fitxers existents" - -msgid "Copy album cover artwork" -msgstr "" - -msgid "Safely remove the device after copying" -msgstr "Treure el dispositiu amb seguretat després de copiar" - -msgid "Press a key" -msgstr "Premeu una tecla" - -msgid "Global Shortcuts" -msgstr "Dreceres globals" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "Obre…" - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Obriu Preferències del sistema i permeteu que l’Strawberry «controli l’ordinador» per a utilitzar les dreceres globals a l’Strawberry." - -msgid "Shortcut" -msgstr "Drecera" - -msgctxt "Category label" -msgid "Action" -msgstr "Acció" - -msgid "&None" -msgstr "&Cap" - -msgid "&Default" -msgstr "Per &defecte" - -msgid "&Custom" -msgstr "&Personalitzades" - -msgid "Change shortcut..." -msgstr "Canvia la drecera…" - -msgid "Device Properties" -msgstr "Propietats del dispositiu" - -msgid "Icon" -msgstr "Icona" - -msgid "Hardware information" -msgstr "Informació del maquinari" - -msgid "Hardware information is only available while the device is connected." -msgstr "La informació del maquinari només està disponible mentre el dispositiu està endollat." - -msgid "Information" -msgstr "Informació" - -msgid "Supported formats" -msgstr "Formats compatibles" - -msgid "This device supports the following file formats:" -msgstr "Aquest dispositiu és compatible amb els següents formats de fitxers:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "L’Strawberry pot convertir automàticament la música que copieu en aquest dispositiu a un format que pugui reproduir." - -msgid "Do not convert any music" -msgstr "No converteixis cap musica" - -msgid "Convert any music that the device can't play" -msgstr "Convertir qualsevol música que el dispositiu no pugui reproduir" - -msgid "Convert all music" -msgstr "Converteix tota la música" - -msgid "Preferred format" -msgstr "Format preferit" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Aquest dispositiu ha de connectar-se i obrir-se abans que l’Strawberry pugui veure quins formats de fitxers admet." - -msgid "Open device" -msgstr "Obrir dispositiu" - -msgid "Querying device..." -msgstr "S’està consultant el dispositiu…" - -msgid "File formats" -msgstr "Format dels fitxers" - -msgid "Transcode Music" -msgstr "Converteix música" - -msgid "Files to transcode" -msgstr "Fitxers per convertir" - -msgid "Directory" -msgstr "Directori" - -msgid "Add..." -msgstr "Afegeix..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Afegeix totes les peces des d’una carpeta y las seves subcarpetes" - -msgid "Import..." -msgstr "Importa..." - -msgid "Output options" -msgstr "Opcions de sortida" - -msgid "Audio format" -msgstr "Format d’àudio" - -msgid "Options..." -msgstr "Opcions…" - -msgid "Alongside the originals" -msgstr "Al costat dels originals" - -msgid "Select..." -msgstr "Navega…" - -msgid "Progress" -msgstr "Progrés" - -msgid "Details..." -msgstr "Detalls…" - -msgid "Transcoder Log" -msgstr "Registre del convertidor" - -msgid " kbps" -msgstr " kb/s" - -msgid "Profile" -msgstr "Perfil" - -msgid "Main profile (MAIN)" -msgstr "Perfil principal (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Perfil de baixa complexitat (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Perfil de freqüència de mostreig escalable (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Perfil de predicció a llarg termini (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Usa el modelatge de soroll temporal" - -msgid "Allow mid/side encoding" -msgstr "Permet la codificació centre/costats" - -msgid "Block type" -msgstr "Tipus de bloc" - -msgid "Normal block type" -msgstr "Tipus de bloc normal" - -msgid "No short blocks" -msgstr "No utilitzis blocs curs" - -msgid "No long blocks" -msgstr "No utilitzis blocs llargs" - -msgid "Transcoding options" -msgstr "Opcions de conversió" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Qualitat" - -msgid "Fast" -msgstr "Ràpid" - -msgid "Best" -msgstr "Millor" - -msgid "Use bitrate management engine" -msgstr "Usa el motor de gestió de flux de bits" - -msgid "Target bitrate" -msgstr "Taxa de bits desitjada" - -msgid "Minimum bitrate" -msgstr "Taxa de bits mínima" - -msgid "disabled" -msgstr "deshabilitat" - -msgid "Maximum bitrate" -msgstr "Màxima taxa de bits" - -msgid "automatic" -msgstr "automàtic" - -msgid "Average bitrate" -msgstr "Taxa de bits mitjana" - -msgid "Encoding mode" -msgstr "Mode de codificació" - -msgid "Auto" -msgstr "" - -msgid "Ultra wide band (UWB)" -msgstr "Banda ultra ampla (UWB)" - -msgid "Wide band (WB)" -msgstr "Banda ampla (WB)" - -msgid "Narrow band (NB)" -msgstr "Banda estreta (BE)" - -msgid "Variable bit rate" -msgstr "Taxa de bits variable" - -msgid "Voice activity detection" -msgstr "Detecció de veu" - -msgid "Discontinuous transmission" -msgstr "Transmissió discontínua" - -msgid "Encoding complexity" -msgstr "Complexitat de la codificació" - -msgid "Frames per buffer" -msgstr "Trames per espai de memòria intermèdia" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "" - -msgid "Constant bitrate" -msgstr "Taxa de bits constant" - -msgid "Encoding engine quality" -msgstr "Qualitat del motor de codificació" - -msgid "Standard" -msgstr "Estàndard" - -msgid "High" -msgstr "Alt" - -msgid "Force mono encoding" -msgstr "Força la codificació mono" - -msgid "Transcoding" -msgstr "Conversió" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Aquesta configuració s’usa en el diàleg «Converteix música», i quan es converteix la música abans de copiar-la a un dispositiu." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Preferències" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "Verifica el certificat del servidor" - -msgid "Download album covers" -msgstr "" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "" - -msgid "Client ID" -msgstr "Id. del client" - -msgid "API Token" -msgstr "Testimoni de l’API" - -msgid "Audio quality" -msgstr "Qualitat d’àudio" - -msgid "Search delay" -msgstr "" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "" - -msgid "Albums search limit" -msgstr "" - -msgid "Songs search limit" -msgstr "" - -msgid "Fetch entire albums when searching songs" -msgstr "" - -msgid "Album cover size" -msgstr "" - -msgid "Stream URL method" -msgstr "" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "Id. de l’aplicació" - -msgid "App Secret" -msgstr "Secret de l’aplicació" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "" - -msgid "Enabled" -msgstr "" - -msgid "Return to Strawberry" -msgstr "Torna a l’Strawberry" - -msgid "Success!" -msgstr "Correcte!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Tanqueu el navegador i torneu a l’Strawberry." - diff --git a/src/translations/cs_CZ.po b/src/translations/cs_CZ.po deleted file mode 100644 index d9761e35..00000000 --- a/src/translations/cs_CZ.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: cs\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Czech\n" -"Language: cs_CZ\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Všechny soubory (*)" - -msgid "Context" -msgstr "Kontext" - -msgid "Collection" -msgstr "Sbírka" - -msgid "Queue" -msgstr "Fronta" - -msgid "Playlists" -msgstr "Seznamy skladeb" - -msgid "Smart playlists" -msgstr "" - -msgid "Files" -msgstr "Soubory" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "Zařízení" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Ukázat všechny písně" - -msgid "Show only duplicates" -msgstr "Ukázat pouze zdvojené" - -msgid "Show only untagged" -msgstr "Ukázat pouze neoznačené" - -msgid "Configure collection..." -msgstr "Nastavit sbírku..." - -msgid "Play" -msgstr "Přehrát" - -msgid "Stop after this track" -msgstr "Zastavit po této skladbě" - -msgid "Toggle queue status" -msgstr "Přepnout stav řady" - -msgid "Queue selected tracks to play next" -msgstr "Přidat vybrané skladby do fronty" - -msgid "Toggle skip status" -msgstr "Přepnout stav přeskakování" - -msgid "Rescan song(s)..." -msgstr "" - -msgid "Copy URL(s)..." -msgstr "Kopírovat odkaz(y)..." - -msgid "Show in collection..." -msgstr "Ukazovat ve sbírce..." - -msgid "Show in file browser..." -msgstr "Ukázat v prohlížeči souborů..." - -msgid "Organize files..." -msgstr "Uspořádat soubory..." - -msgid "Copy to collection..." -msgstr "Zkopírovat do sbírky..." - -msgid "Move to collection..." -msgstr "Přesunout do sbírky..." - -msgid "Copy to device..." -msgstr "Zkopírovat do zařízení..." - -msgid "Delete from disk..." -msgstr "Smazat z disku..." - -msgid "Check for updates..." -msgstr "Zkontrolovat aktualizace" - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Pozastavit" - -msgid "Dequeue track" -msgstr "Odstranit skladbu z řady" - -msgid "Dequeue selected tracks" -msgstr "Odstranit vybrané skladby z řady" - -msgid "Queue track" -msgstr "Přidat skladbu do řady" - -msgid "Queue selected tracks" -msgstr "Přidat vybrané skladby do řady" - -msgid "Queue to play next" -msgstr "Do fronty jako další" - -msgid "Unskip track" -msgstr "Zrušit přeskočení skladby" - -msgid "Unskip selected tracks" -msgstr "Zrušit přeskočení vybraných skladeb" - -msgid "Skip track" -msgstr "Přeskočit skladbu" - -msgid "Skip selected tracks" -msgstr "Přeskočit vybrané skladby" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Nastavit %1 na \"%2\"..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Upravit značku \"%1\"..." - -msgid "Add to another playlist" -msgstr "Přidat do jiného seznamu skladeb" - -msgid "New playlist" -msgstr "Nový seznam skladeb" - -msgid "Add file" -msgstr "Přidat soubor" - -msgid "Music" -msgstr "Hudba" - -msgid "Add folder" -msgstr "Přidat složku" - -msgid "Clear playlist" -msgstr "Vyprázdnit seznam skladeb" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Seznam skladeb obsahuje %1 skladeb. Jste si jisti že chcete seznam vyčistit? Nelze to vrátit zpátky!" - -msgid "Error" -msgstr "Chyba" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Žádná z vybraných písní nebyla vhodná ke zkopírování do zařízení" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Verze Strawberry, na kterou jste právě povýšili, vyžaduje z důvodu nových vlastností vypsaných níže úplné nové prohledání sbírky:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Chcete spustit toto úplné nové prohledání hned teď?" - -msgid "Collection rescan notice" -msgstr "Zpráva o prohledání sbírky" - -msgid "Usage" -msgstr "Zacházení" - -msgid "options" -msgstr "volby" - -msgid "URL(s)" -msgstr "Adresa (URL)" - -msgid "Player options" -msgstr "Nastavení přehrávače" - -msgid "Start the playlist currently playing" -msgstr "Přehrát současnou skladbu v seznamu skladeb" - -msgid "Play if stopped, pause if playing" -msgstr "Přehrát, pokud je zastaveno, pozastavit, pokud je přehráváno" - -msgid "Pause playback" -msgstr "Pozastavit přehrávání" - -msgid "Stop playback" -msgstr "Zastavit přehrávání" - -msgid "Stop playback after current track" -msgstr "Zastavit přehrávání po současné skladbě" - -msgid "Skip backwards in playlist" -msgstr "Předchozí skladba v seznamu skladeb" - -msgid "Skip forwards in playlist" -msgstr "Další skladba v seznamu skladeb" - -msgid "Set the volume to percent" -msgstr "Nastavit hlasitost na procent" - -msgid "Increase the volume by 4 percent" -msgstr "Zvýšit hlasitost o 4 procenta" - -msgid "Decrease the volume by 4 percent" -msgstr "Snížit hlasitost o 4 procenta" - -msgid "Increase the volume by percent" -msgstr "Zvýšit hlasitost o procent" - -msgid "Decrease the volume by percent" -msgstr "Snížit hlasitost o procent" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Skočit v nyní přehrávané skladbě na určité místo" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Přetočit v nyní přehrávané skladbě" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Spustit znovu přehrávání skladby, nebo přehrávat předchozí skladbu, jestliže ještě neuběhlo osm sekund od začátku skladby." - -msgid "Playlist options" -msgstr "Nastavení seznamu skladeb" - -msgid "Create a new playlist with files" -msgstr "Vytvořit nový seznam skladeb se soubory" - -msgid "Append files/URLs to the playlist" -msgstr "Přidat soubory/adresy do seznamu skladeb" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Nahraje soubory/adresy (URL), nahradí současný seznam skladeb" - -msgid "Play the th track in the playlist" -msgstr "Přehrát . skladbu v seznamu se skladbami" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "Další volby" - -msgid "Display the on-screen-display" -msgstr "Zobrazovat informace na obrazovce (OSD)" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Přepnout viditelnost hezkých oznámení na obrazovce (OSD)" - -msgid "Change the language" -msgstr "Změnit jazyk" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "Rovnocenné s --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Rovnocenné s --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Čárkou oddělený seznam class:level, level je 0-3" - -msgid "Print out version information" -msgstr "Vypsat informaci o verzi" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Ověření celistvosti" - -msgid "Database corruption detected." -msgstr "Databáze je poškozená." - -msgid "Backing up database" -msgstr "Záloha databáze" - -msgid "Deleting files" -msgstr "Probíhá mazání souborů" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Neznámý" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Pro tento odkaz je potřeba GStreamer." - -msgid "Preload function was not set for blocking operation." -msgstr "Funkce přednačítání nebyla nastavena pro operaci blokování." - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Soubor %1 nebyl rozpoznán jako platný zvukový soubor." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "Přehrávání disků CD je možné pouze za použití GStreamer enginu." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Seznam skladeb" - -msgid "1 day" -msgstr "1 den" - -#, qt-format -msgid "%1 days" -msgstr "%1 dnů" - -msgid "Today" -msgstr "Dnes" - -msgid "Yesterday" -msgstr "Včera" - -#, qt-format -msgid "%1 days ago" -msgstr "před %1 dny" - -msgid "Tomorrow" -msgstr "Zítra" - -#, qt-format -msgid "In %1 days" -msgstr "Za %1 dny(ů)" - -msgid "Next week" -msgstr "Příští týden" - -#, qt-format -msgid "In %1 weeks" -msgstr "Za %1 týdny(ů)" - -msgid "Show in file browser" -msgstr "Zobrazit v průzkumníku souborů" - -msgid "Too many songs selected." -msgstr "Je vybráno příliš mnoho skladeb." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "Je vybráno %1 skladeb obsažených v %2 různých složkách, chcete je všechny otevřít?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Neznámá chyba" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "umělec" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Dostupná pole" - -msgid "Framerate" -msgstr "Počet snímků" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Nízký (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Střední (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Vysoký (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Nadmíru vysoké (%1 fps)" - -msgid "No analyzer" -msgstr "Žádný analyzátor" - -msgid "Block analyzer" -msgstr "Blokový analyzátor" - -msgid "Boom analyzer" -msgstr "Růstový analyzátor" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Předzesílení" - -msgid "Custom" -msgstr "Vlastní" - -msgid "Classical" -msgstr "Klasická" - -msgid "Club" -msgstr "Klub" - -msgid "Dance" -msgstr "Taneční hudba" - -msgid "Full Bass" -msgstr "Plné basy" - -msgid "Full Treble" -msgstr "Plné výšky" - -msgid "Full Bass + Treble" -msgstr "Plné basy + výšky" - -msgid "Laptop/Headphones" -msgstr "Přenosný počítač/Sluchátka" - -msgid "Large Hall" -msgstr "Velký sál" - -msgid "Live" -msgstr "Živě" - -msgid "Party" -msgstr "Oslava" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "Měkké" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "Soft rock" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "Vynulovat" - -msgid "Save preset" -msgstr "Uložit předvolbu" - -msgid "Name" -msgstr "Název" - -msgid "Delete preset" -msgstr "Smazat předvolbu" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Opravdu chcete smazat nastavení \"%1\"?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Typ souboru" - -msgid "Length" -msgstr "Délka" - -msgid "Samplerate" -msgstr "Vzorkovací frekvence" - -msgid "Bit depth" -msgstr "Bitová hloubka" - -msgid "Bitrate" -msgstr "Datový tok" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Ukazovat obal alba" - -msgid "Show song technical data" -msgstr "Zobrazovat technická data" - -msgid "Show song lyrics" -msgstr "Zobrazovat texty skladeb" - -msgid "Automatically search for song lyrics" -msgstr "Automaticky najít texty skladeb" - -msgid "No song playing" -msgstr "Žádná skladba se nepřehrává" - -#, qt-format -msgid "%1 song" -msgstr "%1 skladba" - -#, qt-format -msgid "%1 songs" -msgstr "%1 skladby" - -#, qt-format -msgid "%1 artist" -msgstr "%1 umělec" - -#, qt-format -msgid "%1 artists" -msgstr "%1 umělci" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "%1 alba" - -msgid "kbps" -msgstr "kb/s" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "Různí umělci" - -msgid "Loading..." -msgstr "Nahrává se..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "Obnovuje se hudební sbírka" - -#, qt-format -msgid "Updating %1" -msgstr "Obnovuje se %1" - -msgid "Your collection is empty!" -msgstr "Vaše hudební sbírka je prázdná!" - -msgid "Click here to add some music" -msgstr "Klepněte sem pro přidání nějaké hudby" - -msgid "Append to current playlist" -msgstr "Přidat do současného seznamu skladeb" - -msgid "Replace current playlist" -msgstr "Nahradit současný seznam skladeb" - -msgid "Open in new playlist" -msgstr "Otevřít v novém seznamu skladeb" - -msgid "Search for this" -msgstr "Hledat toto" - -msgid "Edit track information..." -msgstr "Upravit informace o skladbě..." - -msgid "Edit tracks information..." -msgstr "Upravit informace o skladbách..." - -msgid "Rescan song(s)" -msgstr "Prohledat skladbu" - -msgid "Show in various artists" -msgstr "Ukázat pod různými umělci" - -msgid "Don't show in various artists" -msgstr "Nezobrazovat pod různými umělci" - -msgid "There are other songs in this album" -msgstr "Na tomto albu jsou další písně" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "Ukázat" - -msgid "Group by" -msgstr "Seskupovat podle" - -msgid "Display options" -msgstr "Volby zobrazení" - -msgid "Group by Album artist/Album" -msgstr "Seskupovat podle umělce alba/alba" - -msgid "Group by Album artist/Album - Disc" -msgstr "Seskupit jako Autor alba/Album - Disk" - -msgid "Group by Album artist/Year - Album" -msgstr "Seskupit jako Autor alba/Rok - Album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Seskupit jako Autor alba/Rok - Album - Disk" - -msgid "Group by Artist/Album" -msgstr "Seskupovat podle umělce/alba" - -msgid "Group by Artist/Album - Disc" -msgstr "Seskupit jako Umělec/Album - Disk" - -msgid "Group by Artist/Year - Album" -msgstr "Seskupovat podle umělce/roku - alba" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Seskupit jako Umělec/Rok - Album - Disk" - -msgid "Group by Genre/Album artist/Album" -msgstr "Seskupit jako Žánr/Autor alba/Album" - -msgid "Group by Genre/Artist/Album" -msgstr "Seskupovat podle žánru/umělce/alba" - -msgid "Group by Album Artist" -msgstr "Seskupit dle Autora alba" - -msgid "Group by Artist" -msgstr "Seskupovat podle umělce" - -msgid "Group by Album" -msgstr "Seskupovat podle alba" - -msgid "Group by Genre/Album" -msgstr "Seskupovat podle žánru/alba" - -msgid "Advanced grouping..." -msgstr "Pokročilé seskupování..." - -msgid "Grouping Name" -msgstr "Název seskupení" - -msgid "Grouping name:" -msgstr "Název seskupení:" - -msgid "First level" -msgstr "První úroveň" - -msgid "Second Level" -msgstr "Druhá úroveň" - -msgid "Third Level" -msgstr "Třetí úroveň" - -msgid "None" -msgstr "Žádná" - -msgid "Album artist" -msgstr "Umělec alba" - -msgid "Artist" -msgstr "Umělec" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "Album - Disk" - -msgid "Year - Album" -msgstr "Rok - Album" - -msgid "Year - Album - Disc" -msgstr "Rok - Album - Disk" - -msgid "Original year - Album" -msgstr "Původní rok - Album" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "Disk" - -msgid "Year" -msgstr "Rok" - -msgid "Original year" -msgstr "Původní rok" - -msgid "Genre" -msgstr "Žánr" - -msgid "Composer" -msgstr "Skladatel" - -msgid "Performer" -msgstr "Účinkující" - -msgid "Grouping" -msgstr "Seskupení" - -msgid "File type" -msgstr "Typ souboru" - -msgid "Format" -msgstr "Formát" - -msgid "Sample rate" -msgstr "Vzorkovací kmitočet" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Název" - -msgid "Track" -msgstr "Skladba" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Poznámka" - -msgid "Source" -msgstr "Zdroj" - -msgid "Mood" -msgstr "Nálada" - -msgid "Rating" -msgstr "Hodnocení" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Nahrát seznam skladeb" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Nebyly nalezeny žádné shody. Smažte obsah vyhledávacího pole, aby se znovu zobrazil celý seznam skladeb." - -msgid "stop" -msgstr "zastavit" - -msgid "Never" -msgstr "Nikdy" - -msgid "&Hide..." -msgstr "Skrýt..." - -msgid "&Stretch columns to fit window" -msgstr "Roztáhnout sloupce tak, aby se vešly do okna" - -msgid "&Reset columns to default" -msgstr "&Původní nastavení sloupců" - -msgid "&Lock rating" -msgstr "" - -msgid "&Align text" -msgstr "&Zarovnat text" - -msgid "&Left" -msgstr "&Vlevo" - -msgid "&Center" -msgstr "&Na střed" - -msgid "&Right" -msgstr "&Vpravo" - -#, qt-format -msgid "&Hide %1" -msgstr "Skrýt %1" - -msgid "New folder" -msgstr "Nová složka" - -msgid "Delete" -msgstr "Smazat" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Uložit seznam skladeb" - -msgid "Enter the name of the folder" -msgstr "Zadejte název složky" - -msgid "Copy to device" -msgstr "Zkopírovat na zařízení" - -msgid "Playlist must be open first." -msgstr "Seznam skladeb musí být nejdřív otevřen." - -msgid "Remove playlists" -msgstr "Odstranit seznamy skladeb" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Chystáte se odstranit %1 seznamů skladeb z vašich oblíbených. Jste si jisti?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Seznamy skladeb můžete označit jako oblíbený klepnutím na hvězdičku vedle názvu seznamu skladeb" - -msgid "Favorited playlists will be saved here" -msgstr "Oblíbené seznamy skladeb budou uloženy zde" - -msgid "Couldn't create playlist" -msgstr "Nepodařilo se vytvořit seznam skladeb" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Uložit seznam skladeb" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "%1 vybráno z" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automaticky" - -msgid "Relative" -msgstr "Relativní" - -msgid "Absolute" -msgstr "Absolutní" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Zavřít seznam skladeb" - -msgid "Rename playlist..." -msgstr "Přejmenovat seznam skladeb..." - -msgid "Save playlist..." -msgstr "Uložit seznam skladeb..." - -msgid "Rename playlist" -msgstr "Přejmenovat seznam skladeb" - -msgid "Enter a new name for this playlist" -msgstr "Zadejte název tohoto seznamu skladeb" - -msgid "Remove playlist" -msgstr "Odstranit seznam skladeb" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Chystáte se odstranit seznam skladeb, který není součástí vašich oblíbených seznamů skladeb: Seznam skladeb bude nenávratně odstraněn (tento krok nelze vrátit zpět). \n" -"Opravdu chcete pokračovat?" - -msgid "Warn me when closing a playlist tab" -msgstr "Varovat při zavření karty se seznamem skladeb" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Tuto volbu lze změnit v nastavení Chování" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "přidat %n skladeb" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "odstranit %n skladeb" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "Přesunout %n skladeb" - -msgid "sort songs" -msgstr "Třídit skladby" - -msgid "shuffle songs" -msgstr "Zamíchat skladby" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Chyba při načítání zvukového CD" - -msgid "Loading tracks" -msgstr "Nahrávají se skladby" - -msgid "Loading tracks info" -msgstr "Nahrávají se informace o skladbě" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Všechny seznamy skladeb (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 seznamů skladeb (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Nahrávání chytrého playlistu" - -msgid "Collection search" -msgstr "Hledání v kolekci" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr " Najít skladby z kolekce, které odpovídají kritériům, která specifikujete." - -msgid "Search terms" -msgstr "" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Skladba bude zahrnuta v seznamu skladeb, pokud splňuje tyto podmínky." - -msgid "Search options" -msgstr "" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Zvolte jak bude seznam skladeb seřazen a kolik skladeb bude obsahovat." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 skladeb nalezeno (%2 zobrazeno)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 skladeb nalezeno" - -msgid "after" -msgstr "" - -msgid "before" -msgstr "" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "" - -msgid "contains" -msgstr "" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "Hodiny" - -msgid "Days" -msgstr "Dny" - -msgid "Weeks" -msgstr "" - -msgid "Months" -msgstr "Měsíce" - -msgid "Years" -msgstr "" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "Přidat hledaný výraz" - -msgid "Newest tracks" -msgstr "Nejnovější skladby" - -msgid "50 random tracks" -msgstr "50 náhodných skladeb" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "Nikdy nepřehrané" - -msgid "Last played" -msgstr "Naposledy hrané" - -msgid "Most played" -msgstr "Nejčastěji přehrávané" - -msgid "Favourite tracks" -msgstr "Oblíbené skladby" - -msgid "Least favourite tracks" -msgstr "Nejméně oblíbené skladby" - -msgid "All tracks" -msgstr "Všechny skladby" - -msgid "Dynamic random mix" -msgstr "Dynamické míchání skladeb" - -msgid "New smart playlist..." -msgstr "Nový chytrý playlist..." - -msgid "Play next" -msgstr "Přehrát další" - -msgid "Edit smart playlist..." -msgstr "Upravit chytrý playlist..." - -msgid "Delete smart playlist" -msgstr "Odstranit chytrý playlist" - -msgid "Smart playlist" -msgstr "" - -msgid "Playlist type" -msgstr "Typ seznamu skladeb" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Chytrý playlist je dynamický seznam skladeb z vaší kolekce. Existuje několik různých typů chytrých playlistů. Každý nabízí jiný způsob výběru skladeb." - -msgid "Finish" -msgstr "Dokončit" - -msgid "Choose a name for your smart playlist" -msgstr "Zvolte jméno pro váš chytrý seznam skladeb" - -msgid "Abort" -msgstr "Přerušit" - -msgid "All albums" -msgstr "Všechna alba" - -msgid "Albums with covers" -msgstr "Alba s obaly" - -msgid "Albums without covers" -msgstr "Alba bez obalů" - -msgid "Really cancel?" -msgstr "Opravdu zrušit?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Zavření tohoto okna zastaví hledání obalů alb." - -msgid "Don't stop!" -msgstr "Nezastavovat!" - -msgid "All artists" -msgstr "Všichni umělci" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Získáno %1 obalů z %2 (%3 nezískáno)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 přeneseno" - -msgid "Export finished" -msgstr "Uložení dokončeno" - -msgid "No covers to export." -msgstr "Žádné obaly k uložení" - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Uloženo %1 obalů z %2 (%3 přeskočeno)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Obaly od %1" - -msgid "Search" -msgstr "Hledat" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Obrázky (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Obrázky (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Všechny soubory (*)" - -msgid "Load cover from disk..." -msgstr "Nahrát obal na disku..." - -msgid "Save cover to disk..." -msgstr "Uložit obal na disk..." - -msgid "Load cover from URL..." -msgstr "Nahrát obal z adresy (URL)..." - -msgid "Search for album covers..." -msgstr "Hledat obaly alb..." - -msgid "Unset cover" -msgstr "Odebrat obal" - -msgid "Delete cover" -msgstr "" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "Ukázat v plné velikosti..." - -msgid "Search automatically" -msgstr "Hledat automaticky" - -msgid "Load cover from disk" -msgstr "Nahrát obal z disku" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "neznámý" - -msgid "Save album cover" -msgstr "Uložit obal alba" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "Celkem uskutečněno síťových požadavků" - -msgid "Average image size" -msgstr "Průměrná velikost obrázku" - -msgid "Total bytes transferred" -msgstr "Celkem přeneseno bajtů" - -msgid "Fetching cover error" -msgstr "Chyba při stahování obalu" - -msgid "The site you requested does not exist!" -msgstr "Požadovaná stránka neexistuje!" - -msgid "The site you requested is not an image!" -msgstr "Požadovaná stránka není obrázek!" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "Prosím navštivte tuto adresu URL ve vašem prohlížeči." - -msgid "Redirect missing token code!" -msgstr "Přesměrování chybí kód tokenu!" - -msgid "Received invalid reply from web browser." -msgstr "Obdržena špatná odpověď od prohlížeče." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Přesměrování z Genius chybí kód položek dotazu nebo stav." - -msgid "General" -msgstr "Obecné" - -msgid "User interface" -msgstr "Uživatelské rozhraní" - -msgid "Streaming" -msgstr "Streamování" - -msgid "Add directory..." -msgstr "Přidat složku..." - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "Zadejte uživatelský token z" - -msgid "Use Tidal settings to authenticate." -msgstr "Použijte nastavení Tidal pro přihlášení." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 vyžaduje ověření." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 nevyžaduje ověření." - -msgid "No provider selected." -msgstr "Žádný poskytovatel nebyl zvolen." - -msgid "Authentication failed" -msgstr "Ověření selhalo" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Vybrat obrázek na pozadí" - -msgid "OSD Preview" -msgstr "Náhled OSD" - -msgid "Drag to reposition" -msgstr "Tažením přemístěte" - -msgid "About Strawberry" -msgstr "O Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Verze %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry je hudební přehrávač a organizér hudební kolekce." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Je to větev přehrávače Clementine z roku 2018 zaměřený na sběratele hudby a audiofily." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry je svobodný software vydávaný pod licencí GPL. Zdrojový kód je dostupný na %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "S tímto programem jste měli obdržet kopii licence GNU GPL. Pokud ne, navštivte %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Líbí se a vyhovuje vám-li Strawberry, zvažte příspěvek." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Můžete podpořit autora na %1. Také můžete jednorázově přispět pomocí %2." - -msgid "Author and maintainer" -msgstr "Autor a vedoucí" - -msgid "Contributors" -msgstr "Přispěvatelé" - -msgid "Clementine authors" -msgstr "Autoři Clementine" - -msgid "Clementine contributors" -msgstr "Přispěvatelé Clementine" - -msgid "Thanks to" -msgstr "Díky" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Díky všem ostatním přispěvatelům Amaroku a Clementine." - -msgid "(different across multiple songs)" -msgstr "(liší se u jednotlivých písní)" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "Předchozí" - -msgid "Next" -msgstr "Další" - -msgid "Saving tracks" -msgstr "Ukládají se skladby" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Obal nenastaven" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Původní značky" - -msgid "Suggested tags" -msgstr "Navrhované značky" - -msgid "Delete files" -msgstr "Smazat soubory" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "Opravdu chcete pokračovat?" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Hodnota \"Naposledy přehráno\" pro %1 skladeb bylo přijato." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Hodnota \"Počet přehrání\" pro %1 skladeb byla přijata." - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Bylo zjištěno, že Strawberry běží jako Snap" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Pro Ubuntu je na %1 dostupné oficiální PPA." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Jsou dostupná oficiální vydání pro Debian a Ubuntu. Tato vydání také fungují s většinou jejich derivátů. Navštivte %1 pro více informací." - -msgid "For a better experience please consider the other options above." -msgstr "Pro lepší zážitek, prosím zvažte ostatní dostupné možnosti." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Velký postranní panel" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Malý postranní panel" - -msgid "Plain sidebar" -msgstr "Prostý postranní panel" - -msgid "Tabs on top" -msgstr "Karty nahoře" - -msgid "Icons on top" -msgstr "Ikony nahoře" - -msgid "Available" -msgstr "Dostupné" - -msgid "New songs" -msgstr "Nové písně" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Použito" - -msgid "Clear" -msgstr "Smazat" - -msgid "Reset" -msgstr "Obnovit výchozí" - -msgid "Small album cover" -msgstr "Malý obal alba" - -msgid "Large album cover" -msgstr "Velký obal alba" - -msgid "Fit cover to width" -msgstr "Přizpůsobit obal šířce" - -msgid "Show above status bar" -msgstr "Ukazovat nad stavovým řádkem" - -msgid "You are signed in." -msgstr "Jste přihlášen." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Jste přihlášen jako %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Vyprší %1" - -#, qt-format -msgid "disc %1" -msgstr "disk %1" - -#, qt-format -msgid "track %1" -msgstr "skladba %1" - -msgid "Paused" -msgstr "Pozastaveno" - -msgid "Stopped" -msgstr "Zastaveno" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Zastavit přehrávání po skladbě: %1" - -msgid "On" -msgstr "Zapnuto" - -msgid "Off" -msgstr "Vypnuto" - -msgid "Playlist finished" -msgstr "Seznam skladeb dokončen" - -#, qt-format -msgid "Volume %1%" -msgstr "Hlasitost %1 %" - -msgid "Don't shuffle" -msgstr "Nemíchat" - -msgid "Shuffle all" -msgstr "Zamíchat vše" - -msgid "Shuffle tracks in this album" -msgstr "Zamíchat skladby na tomto albu" - -msgid "Shuffle albums" -msgstr "Zamíchat alba" - -msgid "Don't repeat" -msgstr "Neopakovat" - -msgid "Repeat track" -msgstr "Opakovat skladbu" - -msgid "Repeat album" -msgstr "Opakovat album" - -msgid "Repeat playlist" -msgstr "Opakovat seznam skladeb" - -msgid "Stop after every track" -msgstr "Zastavit po každé skladbě" - -msgid "Intro tracks" -msgstr "Skladby úvodu" - -#, qt-format -msgid "Configure %1..." -msgstr "Nastavit %1..." - -msgid "Add to artists" -msgstr "Přidat k umělcům" - -msgid "Add to albums" -msgstr "Přidat do alb" - -msgid "Add to songs" -msgstr "Přidat ke skladbám" - -msgid "Enter search terms above to find music" -msgstr "Výše zadejte hledaný výraz pro vyhledání hudby" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Klikněte zde pro načtení hudby" - -msgid "Remove from favorites" -msgstr "Odstranit z oblíbených" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 Ověření systému pro doporučování hudby (scrobbler)" - -msgid "Open URL in web browser?" -msgstr "Otevřít URL v prohlížeči?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Klikněte na \"Uložit\" pro zkopírování URL do schránky a ruční otevření v prohlížeči." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Nelze otevřít adresu URL. Prosím otevřete tuto URL ve vašem prohlížeči" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Špatná odpověď od prohlížeče. Token chybí." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Systém pro doporučování hudby %1 není přihlášen!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "Přihlášení na ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "Chybějící jméno, prosím, nejdříve se přihlašte k last.fm!" - -msgid "Organizing files" -msgstr "Organizace souborů" - -msgid "Artist's initial" -msgstr "Začáteční písmena umělce" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Datový tok" - -msgid "File extension" -msgstr "Přípona souboru" - -msgid "Error copying songs" -msgstr "Chyba při kopírování písní" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Při kopírování některých písní nastaly potíže. Nepodařilo se zkopírovat následující soubory:" - -msgid "Error deleting songs" -msgstr "Chyba při mazání písní" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Při mazání některých písní nastaly potíže. Nepodařilo se smazat následující soubory:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "Předchozí skladba" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "Ztlumit" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "To Miluju!" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Stiskněte klávesovou zkratku, která se použije pro %1..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Příkaz \"%1\" se nepodařilo provést." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Klávesová zkratka pro %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Použití klávesových zkratek X11 na %1 není doporučeno a může zapříčinit nereagující klávesnici!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "Zkratky na %1 jsou většinou používány přes MPRIS a KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "Ukládá se do vyrovnávací paměti" - -msgid "D-Bus path" -msgstr "Cesta k D-Bus" - -msgid "Serial number" -msgstr "Sériové číslo" - -msgid "Mount points" -msgstr "Přípojné body" - -msgid "Partition label" -msgstr "Štítek oddílu" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Připojit zařízení" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Toto zařízení bylo připojeno poprvé. Strawberry na něm nyní hledá hudební soubory - může to chvíli trvat." - -msgid "This device will not work properly" -msgstr "Toto zařízení nebude pracovat správně" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Toto je zařízení MTP, ale Strawberry byl sestaven bez podpory pro libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Budete-li pokračovat, toto zařízení bude pracovat pomalu a písně na něj kopírované nemusí fungovat." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Toto je zařízení iPod, ale Strawberry byl sestaven bez podpory pro libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Tento typ zařízení není podporován: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Obnovuje se %1%..." - -msgid "Not connected" -msgstr "Nepřipojeno" - -msgid "Not mounted - double click to mount" -msgstr "Nepřipojeno - dvojitým klepnutím připojíte" - -msgid "Double click to open" -msgstr "Klepnout dvakrát pro otevření" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 skladba%2" - -msgid "Safely remove device" -msgstr "Bezpečně odebrat zařízení" - -msgid "Forget device" -msgstr "Zapomenout zařízení" - -msgid "Device properties..." -msgstr "Vlastnosti zařízení..." - -msgid "Delete from device..." -msgstr "Smazat ze zařízení..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Zařízení bude odstraněno z tohoto seznamu. Po opětovném připojení je Strawberry bude muset znovu celé prohledat." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Tyto soubory budou smazány ze zařízení. Opravdu chcete pokračovat?" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "Výrobce" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Nahrává se databáze iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Při nahrávání databáze iTunes nastala chyba" - -msgid "Mount point" -msgstr "Přípojný bod" - -msgid "Device" -msgstr "Zařízení" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Nahrává se zařízení MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Chyba při připojování k MTP zařízení %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Nepodařilo se vytvořit prvek GStreamer \"%1\" - ujistěte se, že máte nainstalovány všechny požadované přídavné moduly GStreamer" - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 úspěšně zapsán" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Převádí se %1 souborů s %2 procesy" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Chyba při zpracovávání %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Spouští se %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Nepodařilo se najít kodér \"%1\" - ujistěte se, že máte nainstalovány správné přídavné moduly GStreamer" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Nepodařilo se najít multiplexer pro \"%1\" - ujistěte se, že máte nainstalovány správné přídavné moduly GStreamer" - -msgid "Start transcoding" -msgstr "Převést" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "zůstávají %n" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "dokončeno %n" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "nepodařilo se %n" - -msgid "Add files to transcode" -msgstr "Přidat soubory pro překódování" - -msgid "Open a directory to import music from" -msgstr "Otevřít adresář a zavést hudbu v něm" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Chyba při přenastavování CCDA zařízení do připraveného stavu." - -msgid "Error while setting CDDA device to pause state." -msgstr "Chyba při přenastavování CCDA zařízení do pozastaveného stavu." - -msgid "Error while querying CDDA tracks." -msgstr "Chyba při dotazování na CDDA stopy." - -msgid "Server URL is invalid." -msgstr "Adresa serveru není správná." - -msgid "Missing username or password." -msgstr "Chybějící uživatelské jméno nebo heslo." - -msgid "Subsonic server URL is invalid." -msgstr "Adresa serveru Subsonic není správná." - -msgid "Missing Subsonic username or password." -msgstr "Chybějící uživatelské jméno nebo heslo pro Subsonic." - -msgid "Retrieving albums..." -msgstr "Načítání alb..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Načítání skladeb z %1 alba..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Načítání skladeb z %1 alb..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Načítání obalů alb pro %1 album..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Načítání obalů alb pro %1 alb..." - -msgid "Configuration incomplete" -msgstr "Konfigurace není hotová" - -msgid "Missing server url, username or password." -msgstr "Chybějící URL serveru, uživatelské jméno nebo heslo." - -msgid "Configuration incorrect" -msgstr "Konfigurace není správná" - -msgid "Test successful!" -msgstr "Test uspěl!" - -msgid "Test failed!" -msgstr "Test selhal!" - -msgid "Reply from Tidal is missing query items." -msgstr "Odpověď od Tidal neobsahuje dotazové položky." - -msgid "Missing Tidal API token." -msgstr "Chybějící API token pro Tidal." - -msgid "Missing Tidal username." -msgstr "Chybějící uživatelské jméno k Tidal." - -msgid "Missing Tidal password." -msgstr "Chybějící heslo k Tidal." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Nejste přihlášeni k Tidal a byl dosažen maximální počet pokusů o přihlášení." - -msgid "Not authenticated with Tidal." -msgstr "Nejste přihlášeni k Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Chybějící API token, uživatelské jméno nebo heslo pro Tidal." - -msgid "Authenticating..." -msgstr "Probíhá ověření..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "Vyhlevávání..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "Žádná shoda." - -msgid "Cancelled." -msgstr "Zrušeno." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "Chybějící ID klienta pro Tidal." - -msgid "Missing API token." -msgstr "Chybějící API token." - -msgid "Missing username." -msgstr "Chybějící uživatelské jméno." - -msgid "Missing password." -msgstr "Chybějící heslo." - -msgid "Spotify Authentication" -msgstr "Přihlášení ke Spotify" - -msgid "Redirect missing token code or state!" -msgstr "Přesměrování chybí kód tokenu nebo stav!" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Byl dosažen maximální počet pokusů o přihlášení." - -msgid "Missing Qobuz app ID." -msgstr "Chybějící ID aplikace Qobuz." - -msgid "Missing Qobuz username." -msgstr "Chybějící Qobuz uživatelské jméno." - -msgid "Missing Qobuz password." -msgstr "Chybějící Qobuz heslo." - -msgid "Not authenticated with Qobuz." -msgstr "Nejste přihlášeni ke službě Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Chybějící ID aplikace, nebo tajemství služby Qobuz." - -msgid "Missing app id." -msgstr "Chybějící ID aplikace." - -msgid "Show moodbar" -msgstr "Zobrazit ukazatel nálady" - -msgid "Moodbar style" -msgstr "Styl Ukazatele nálady" - -msgid "Normal" -msgstr "Normální" - -msgid "Angry" -msgstr "Naštvaný" - -msgid "Frozen" -msgstr "Zamrznutý" - -msgid "Happy" -msgstr "Šťastný" - -msgid "System colors" -msgstr "Systémové barvy" - -msgid "Strawberry Music Player" -msgstr "Přehrávač hudby Strawberry" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Přehrát" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Zastavit" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Další skladba" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Ukončit" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Vyčistit seznam skladeb" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Přečíslovat skladby v tomto pořadí..." - -msgid "Set value for all selected tracks..." -msgstr "Nastavit hodnotu pro vybrané skladby..." - -msgid "Edit tag..." -msgstr "Upravit značku..." - -msgid "&Settings..." -msgstr "&Nastavení" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&O Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "Z&amíchat seznam skladeb" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Přidat soubor..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Otevřít soubor" - -msgid "Open audio &CD..." -msgstr "Otevřít zvukové CD" - -msgid "&Cover Manager" -msgstr "&Správce obalů" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "Režim míchání" - -msgid "&Repeat mode" -msgstr "Režim opakování" - -msgid "Remove from playlist" -msgstr "Odstranit ze seznamu skladeb" - -msgid "&Equalizer" -msgstr "&Ekvalizér" - -msgid "&Transcode Music" -msgstr "&Převést hudbu" - -msgid "Add &folder..." -msgstr "Přidat &složku" - -msgid "&Jump to the currently playing track" -msgstr "&Skočit na aktuálně přehrávanou skladbu" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Nový seznam skladeb" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Uložit seznam skladeb..." - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Načíst seznam skladeb" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Jít na další kartu seznamu skladeb" - -msgid "Go to previous playlist tab" -msgstr "Jít na předchozí kartu seznamu skladeb" - -msgid "&Update changed collection folders" -msgstr "&Aktualizovat změny ve složkách kolekce" - -msgid "About &Qt" -msgstr "O &Qt" - -msgid "&Mute" -msgstr "&Ztlumit" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Provést úplné nové prohledání sbírky" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Doplnit značky automaticky..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Přepnout odesílání informací o přehrávání" - -msgid "Remove &duplicates from playlist" -msgstr "Odstranit &duplikáty ze seznamu skladeb" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Odstranit &nedostupné skladby ze seznamu skladeb" - -msgid "Add file(s) to transcoder" -msgstr "Přidat soubor(y) k překódování" - -msgid "Add file to transcoder" -msgstr "Přidat soubor k překódování" - -msgid "Add stream..." -msgstr "Přidat přenos..." - -msgid "Show sidebar" -msgstr "Zobrazovat boční panel" - -msgid "Import data from last.fm..." -msgstr "Importovat data z last.fm..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "Hudba" - -msgid "P&laylist" -msgstr "Seznam sklad&eb" - -msgid "Help" -msgstr "Pomoc" - -msgid "&Tools" -msgstr "Nástroje" - -msgid "Collection advanced grouping" -msgstr "Pokročilé seskupování sbírky" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "Seskupovat v hudební sbírce podle..." - -msgid "Second level" -msgstr "Druhá úroveň" - -msgid "Third level" -msgstr "Třetí úroveň" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "Filtr Kolekce" - -msgid "Entire collection" -msgstr "Celá sbírka" - -msgid "Added today" -msgstr "Přidána dnes" - -msgid "Added this week" -msgstr "Přidána tento týden" - -msgid "Added within three months" -msgstr "Přidána během tří měsíců" - -msgid "Added this year" -msgstr "Přidána tento rok" - -msgid "Added this month" -msgstr "Přidána tento měsíc" - -msgid "Save current grouping" -msgstr "Uložit nynější seskupení" - -msgid "Manage saved groupings" -msgstr "Spravovat uložená seskupení" - -msgid "Enter search terms here" -msgstr "Zde zadejte hledané výrazy" - -msgid "Form" -msgstr "Formulář" - -msgid "Saved Grouping Manager" -msgstr "Spravce uložených seskupení" - -msgid "Remove" -msgstr "Odstranit" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "Souborové cesty" - -msgid "This can be changed later through the preferences" -msgstr "Toto lze změnit později v nastavení" - -msgid "Remember my choice" -msgstr "Zapamatovat si moji volbu" - -msgid "Stop after each track" -msgstr "Zastavit po každé skladbě" - -msgid "Repeat" -msgstr "Opakovat" - -msgid "Shuffle" -msgstr "Zamíchat" - -msgid "Dynamic mode is on" -msgstr "Dynamický režim je zapnutý" - -msgid "New tracks will be added automatically." -msgstr "Nové skladby budou přidány automaticky." - -msgid "Expand" -msgstr "Rozbalit" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "Zobrazení fronty" - -msgid "Move down" -msgstr "Posunout dolů" - -msgid "Move up" -msgstr "Posunout nahoru" - -msgid "Ctrl+Down" -msgstr "Ctrl+Šipka dolů" - -msgid "Search mode" -msgstr "" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "Zahrnout všechny skladby" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "Omezení" - -msgid "Show all the songs" -msgstr "" - -msgid "Only show the first" -msgstr "Zobrazit pouze první" - -msgid " songs" -msgstr "skladby" - -msgid "Preview" -msgstr "Náhled" - -msgid "and" -msgstr "" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "Nový chytrý playlist" - -msgid "Edit smart playlist" -msgstr "Upravit chytrý playlist" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "Uložit obaly" - -msgid "Output" -msgstr "Výstup" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Zadejte souborový název pro uložené obaly (bez přípony):" - -msgid "Export downloaded covers" -msgstr "Uložit stažené obaly" - -msgid "Export embedded covers" -msgstr "Uložit vložené obaly" - -msgid "Existing covers" -msgstr "Stávající obaly" - -msgid "Do not overwrite" -msgstr "Nepřepisovat" - -msgid "O&verwrite all" -msgstr "Přeps&at vše" - -msgid "Overwrite s&maller ones only" -msgstr "Přepsat pouze menší" - -msgid "Size" -msgstr "Velikost" - -msgid "Scale size" -msgstr "Velikost měřítka" - -msgid "Size:" -msgstr "Velikost:" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "Správce obalů" - -msgid "Fetch automatically" -msgstr "Stáhnout automaticky" - -msgid "Load" -msgstr "Načíst" - -msgid "Add to playlist" -msgstr "Přidat do seznamu skladeb" - -msgid "View" -msgstr "Pohled" - -msgid "Total albums:" -msgstr "Alb celkem:" - -msgid "Without cover:" -msgstr "Bez obalu:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Stáhnout chybějící obaly" - -msgid "Export Covers" -msgstr "Uložit obaly" - -msgid "Fetch completed" -msgstr "Stahování dokončeno" - -msgid "Load cover from URL" -msgstr "Nahrát obal z adresy (URL)" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Zadejte adresu (URL) ke stažení obalu z internetu:" - -msgid "Settings" -msgstr "Nastavení" - -msgid "Behavior" -msgstr "Chování" - -msgid "Show system tray icon" -msgstr "Zobrazovat ikonu v systémové oblasti" - -msgid "Keep running in the background when the window is closed" -msgstr "Při zavření okna nechat běžet na pozadí" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Obnovit přehrávání při spuštění" - -msgid "Show playing widget" -msgstr "Zobrazit widget s přehráváním" - -msgid "On startup" -msgstr "Při startu" - -msgid "Remember from &last time" -msgstr "&Obnovit předchozí stav" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "Skrýt hlavní okno" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "Jazyk" - -msgid "Use the system default" -msgstr "Použít výchozí nastavení systému" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Pokud změníte jazyk, budete muset Strawberry spustit znovu." - -msgid "Using the menu to add a song will..." -msgstr "Použití nabídky pro přidání písně..." - -msgid "Never start playing" -msgstr "Nikdy nezačít přehrávání" - -msgid "Play if there is nothing already playing" -msgstr "Hrát, pokud se již něco nepřehrává" - -msgid "Always start playing" -msgstr "Vždy začít přehrávat" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Po stisknutí Předchozí v přehrávači nastane..." - -msgid "Jump to previous song right away" -msgstr "Skočit ihned na předchozí píseň" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Spustit píseň znovu, potom, v případě že je tlačítko opět stisknuto, skočit na předchozí" - -msgid "Double clicking a song will..." -msgstr "Dvojité klepnutí na píseň..." - -msgid "Append to the playlist" -msgstr "Přidat do seznamu skladeb" - -msgid "Replace the playlist" -msgstr "Nahradit seznam skladeb" - -msgid "Add to the queue" -msgstr "Přidat do řady" - -msgid "Double clicking a song in the playlist will..." -msgstr "Dvojité klepnutí na píseň v seznamu skladeb způsobí..." - -msgid "Change the currently playing song" -msgstr "Změnit nyní přehrávanou píseň" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Posunování pomocí klávesové zkratky nebo kolečka myši" - -msgid "Time step" -msgstr "Časový krok" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Strawberry bude novou hudbu pro vaši sbírku hledat v těchto složkách" - -msgid "Add new folder..." -msgstr "Přidat novou složku..." - -msgid "Remove folder" -msgstr "Odstranit složku" - -msgid "Automatic updating" -msgstr "Automatická aktualizace" - -msgid "Update the collection when Strawberry starts" -msgstr "Při spuštění Strawberry obnovit hudební sbírku" - -msgid "Monitor the collection for changes" -msgstr "Sledovat změny ve sbírce" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "Označit zmizelé skladby jako nedostupné" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Upřednostňované názvy souborů s obaly alb (oddělené čárkou)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Při hledání obalu alba se Strawberry nejprve podívá po obrázkových souborech, jež obsahují jedno z těchto slov.\n" -"Pokud nenajde žádné, které by se shodovaly, potom použije největší obrázek v adresáři." - -msgid "Automatically open single categories in the collection tree" -msgstr "Automaticky otevřít jednotlivé skupiny ve stromu sbírky" - -msgid "Show dividers" -msgstr "Ukazovat oddělovače" - -msgid "Show album cover art in collection" -msgstr "Ukazovat obaly alb v kolekci" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Mezipaměť obalů alb" - -msgid "Enable Disk Cache" -msgstr "Povolit mezipaměť na disku" - -msgid "Disk Cache Size" -msgstr "Velikost mezipaměti na disku" - -msgid "Current disk cache in use:" -msgstr "Využití mezipaměti na disku:" - -msgid "Clear Disk Cache" -msgstr "Vyčistit mezipaměť na disku" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "Povolit mazání souborů v kontextové nabídce pravého kliknutí" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Zvukový výstup" - -msgid "Engine" -msgstr "" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "hardware" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "Povolit ovládání hlasitosti" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "Mezipaměť" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Délka vyrovnávací paměti" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "Výchozí nastavení" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "Zesílení přehrávaných skladeb" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Používat metadata pro zesílení přehrávaných skladeb, jsou-li dostupná" - -msgid "Replay Gain mode" -msgstr "Režim zesílení přehrávaných skladeb" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Rádio (shodná hlasitost pro všechny skladby)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (ideální hlasitost pro všechny skladby)" - -msgid "Apply compression to prevent clipping" -msgstr "Použít kompresi, aby se zabránilo ořezávání zvuku (clippingu)" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Slábnutí" - -msgid "Fade out when stopping a track" -msgstr "Zeslabit při zastavování skladby" - -msgid "Cross-fade when changing tracks manually" -msgstr "Prolínání při ruční změně skladby" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Prolínání při automatické změně skladby" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Kromě mezistop na tom samém albu nebo v tom samém listu CUE" - -msgid "Fading duration" -msgstr "Doba slábnutí" - -msgid "Fade out on pause / fade in on resume" -msgstr "Zeslabení při pozastavení/Zesílení při obnovení přehrávání" - -msgid "Add song artist tag" -msgstr "Přidat značku umělec písně" - -msgid "Add song album tag" -msgstr "Přidat značku album písně" - -msgid "Add song title tag" -msgstr "Přidat značku název písně" - -msgid "Add song albumartist tag" -msgstr "Přidat značku umělec alba písně" - -msgid "Add song year tag" -msgstr "Přidat značku rok písně" - -msgid "Add song composer tag" -msgstr "Přidat značku skladatel písně" - -msgid "Add song performer tag" -msgstr "Přidat značku účinkující písně" - -msgid "Add song grouping tag" -msgstr "Přidat značku seskupení písně" - -msgid "Add song disc tag" -msgstr "Přidat značku disk písně" - -msgid "Add song track tag" -msgstr "Přidat značku pořadí písně" - -msgid "Add song genre tag" -msgstr "Přidat značku žánr písně" - -msgid "Add song length tag" -msgstr "Přidat značku délka písně" - -msgid "Add song play count" -msgstr "Přidat počet přehrání písně" - -msgid "Add song skip count" -msgstr "Přidat počet přeskočení písně" - -msgid "Add a new line if supported by the notification type" -msgstr "Přidat nový řádek, je-li to podporováno typem oznámení" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Přidat název souboru písně" - -msgid "%url%" -msgstr "%adresa%" - -msgid "Add song URL" -msgstr "Přidat URL skladby" - -msgid "%rating%" -msgstr "%hodnocení%" - -msgid "Add song rating" -msgstr "Přidat hodnocení písně" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "Vlastní nastavení textu" - -msgid "Summary" -msgstr "Shrnutí" - -msgid "Enable Items" -msgstr "Povolit Položky" - -msgid "Technical Data" -msgstr "Technická data" - -msgid "Song Lyrics" -msgstr "Texty skladeb" - -msgid "Automatically search for album cover" -msgstr "Automaticky vyhledat obal alba" - -msgid "Font for headline" -msgstr "Font nadpisu" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "Velikost fontu" - -msgid " pt" -msgstr " bodů" - -msgid "Font for data and lyrics" -msgstr "Font pro data a texty skladeb" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Pokračovat na další položku když skladba v seznamu není dostupná" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Zšednout nedostupné skladby v seznamu skladeb při jejich přehrání" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Zšednout nedostupné skladby v seznamu skladeb při startu" - -msgid "Automatically select current playing track" -msgstr "Automaticky vybrat aktuálně přehrávanou skladbu" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "Zobrazit tlačítko pro vyčištění seznamu skladeb" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Automaticky seřadit seznam skladeb po vložení nových skladeb" - -msgid "When saving a playlist, file paths should be" -msgstr "Při ukládání seznamu skladeb mají být cesty k souborům" - -msgid "A&utomatic" -msgstr "A&utomaticky" - -msgid "Absolu&te" -msgstr "Absolut&ní" - -msgid "Re&lative" -msgstr "Re&lativní" - -msgid "As&k when saving" -msgstr "Ze&ptat se při ukládání" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Pokud je zapnuto, po klepnutí na vybranou píseň v seznamu skladeb můžete upravit hodnotu značky přímo" - -msgid "Enable song metadata inline edition with click" -msgstr "Povolit upravování popisných dat písně klepnutím v řádku" - -msgid "Write metadata when saving playlists" -msgstr "Zapisovat metadata při ukládání seznamů skladeb" - -msgid "Scrobbler" -msgstr "doporučování hudby" - -msgid "Enable" -msgstr "Povolit" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Pracovat v režimu offline (pouze ukládat přehrané skladby)" - -msgid "Show scrobble button" -msgstr "Zobrazit tlačítko pro doporučování hudby" - -msgid "Show love button" -msgstr "Zobrazit tlačítko To Miluju!" - -msgid "Submit scrobbles every" -msgstr "Odeslat přehrané skladby každých" - -msgid " seconds" -msgstr " sekund" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "Preferovat autory alb při odesílání na server" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Zapnout scrobbling pro následující zdroje:" - -msgid "Local file" -msgstr "Místní soubor" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Proud" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Přihlášení" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Uživatelský token:" - -msgid "Covers" -msgstr "Obaly alb" - -msgid "Cover providers" -msgstr "Poskytovatel obalů alb" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Vyberte poskytovatele vyhledávání obalů alb." - -msgid "Authentication" -msgstr "Ověření" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Ukládání obalů alb" - -msgid "Save album covers in album directory" -msgstr "Ukládat obaly alb ve složce alba" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "Název souboru:" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "Přepsat existující soubor" - -msgid "Lowercase filename" -msgstr "Název souboru malými písmeny" - -msgid "Replace spaces with dashes" -msgstr "Nahradit mezery pomlčkami" - -msgid "Lyrics" -msgstr "Texty" - -msgid "Lyrics providers" -msgstr "Poskytovatelé textů" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Vyberte poskytovatele vyhledávání textů skladeb." - -msgid "Network Proxy" -msgstr "Síťová proxy" - -msgid "&Use the system proxy settings" -msgstr "&Použít nastavení systému" - -msgid "Direct internet connection" -msgstr "Přímé připojení k internetu" - -msgid "&Manual proxy configuration" -msgstr "&Ruční nastavení proxy" - -msgid "HTTP proxy" -msgstr "Proxy HTTP" - -msgid "SOCKS proxy" -msgstr "Proxy SOCKS" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "Použít ověření" - -msgid "Username" -msgstr "Uživatelské jméno" - -msgid "Password" -msgstr "Heslo" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "Vzhled" - -msgid "Style" -msgstr "" - -msgid "Use system theme icons" -msgstr "Použít ikony ze systémového motivu" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "" - -msgid "&Use the system default color" -msgstr "&Použít nastavení barvu systému" - -msgid "Use custom color" -msgstr "Použít vlastní barvy" - -msgid "Use gradient background" -msgstr "Použít gradientu" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "Obrázek na pozadí" - -msgid "Default bac&kground image" -msgstr "Výchozí obrázek poza&dí" - -msgid "&No background image" -msgstr "&Chybějící obrázek na pozadí" - -msgid "The album cover of the currently playing song" -msgstr "Obal alba nyní přehrávané písně" - -msgid "Albu&m cover" -msgstr "Obal alb&a" - -msgid "Custom image:" -msgstr "Vlastní obrázek:" - -msgid "Browse..." -msgstr "Procházet…" - -msgid "Position" -msgstr "Pozice" - -msgid "Upper Left" -msgstr "Vlevo nahoře" - -msgid "Upper Right" -msgstr "Vpravo nahoře" - -msgid "Middle" -msgstr "Střed" - -msgid "Bottom Left" -msgstr "Vlevo dole" - -msgid "Bottom Right" -msgstr "Vpravo dole" - -msgid "Max cover size" -msgstr "Maximální velikost obalu alba" - -msgid "Stretch image to fill playlist" -msgstr "Roztáhnout obrázek aby vyplnil seznam skladeb" - -msgid "Keep aspect ratio" -msgstr "Zachovat poměr stran" - -msgid "Do not cut image" -msgstr "Neořezávat obrázek" - -msgid "Blur amount" -msgstr "Velikost rozmazání" - -msgid "0px" -msgstr "0 px" - -msgid "Opacity" -msgstr "Neprůhlednost" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "Velikosti ikon" - -msgid "Playlist buttons" -msgstr "Tlačítka playlistů" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "Tlačítka pro ovládání přehrávání" - -msgid "Configure buttons" -msgstr "Nastavit tlačítka" - -msgid "Files, playlists and queue buttons" -msgstr "Soubory, playlisty a tlačítka fronty" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "Oznámení" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry může při změně skladby ukázat zprávu." - -msgid "Notification type" -msgstr "Druh oznámení" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Zakázáno" - -msgid "Show a &native desktop notification" -msgstr "Zobrazit &nativní upozornění na ploše" - -msgid "Show a pretty OSD" -msgstr "Ukazovat OSD" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "Obecná nastavení" - -msgid "Popup duration" -msgstr "Doba zobrazení oznámení" - -msgid "Disable duration" -msgstr "Zakázat délku" - -msgid "Show a notification when I change the volume" -msgstr "Zobrazovat oznámení při změně hlasitosti" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Ukazovat oznámení při změně režimu opakování/míchání" - -msgid "Show a notification when I pause playback" -msgstr "Ukazovat oznámení při pozastavení přehrávání" - -msgid "Show a notification when I resume playback" -msgstr "Zobrazit oznámení při pokračování v přehrávání" - -msgid "Include album art in the notification" -msgstr "Zahrnout obal alba do oznámení" - -msgid "Custom message settings" -msgstr "Nastavení vlastní zprávy" - -msgid "Use a custom message for notifications" -msgstr "Použít vlastní zprávu pro oznámení" - -msgid "Body" -msgstr "Tělo" - -msgid "Pretty OSD options" -msgstr "Možnosti vzhledu OSD" - -msgid "Background color" -msgstr "Barva pozadí" - -msgid "Text options" -msgstr "Volby pro text" - -msgid "Choose font..." -msgstr "Vybrat písmo..." - -msgid "Choose color..." -msgstr "Vybrat barvu..." - -msgid "Background opacity" -msgstr "Neprůhlednost pozadí" - -msgid "Basic Blue" -msgstr "Jednoduchá modrá" - -msgid "Strawberry Red" -msgstr "Jahodově Červená" - -msgid "Custom..." -msgstr "Vlastní..." - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "Ekvalizér" - -msgid "Preset:" -msgstr "Předvolba:" - -msgid "Enable equalizer" -msgstr "Povolit ekvalizér" - -msgid "Enable stereo balancer" -msgstr "Zapnout vyrovnávání sterea" - -msgid "Left" -msgstr "Vlevo" - -msgid "Balance" -msgstr "Vyvážení" - -msgid "Right" -msgstr "Vpravo" - -msgid "About" -msgstr "O programu" - -msgid "Strawberry Error" -msgstr "Chyba Clemetine" - -msgid "Console" -msgstr "Konzole" - -msgid "Run" -msgstr "Spustit" - -msgid "Edit track information" -msgstr "Upravit informace o skladbě" - -msgid "Date created" -msgstr "Datum vytvoření" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "Datum změny" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Naposledy hráno" - -msgid "Play count" -msgstr "Počet přehrání" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Datový tok" - -msgid "Skip count" -msgstr "Počet přeskočení" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "Název souboru" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Velikost souboru" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Vynulovat počty přehrání" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "Doplnit značky automaticky" - -msgid "Compilation" -msgstr "Kompilace" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Stahování značek" - -msgid "Sorry" -msgstr "Promiňte" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry se pro tento soubor výsledky najít nepodařilo" - -msgid "Select best possible match" -msgstr "Vyberte nejlepší možnou shodu" - -msgid "Add Stream" -msgstr "Přidat přenos" - -msgid "Enter the URL of a stream:" -msgstr "Zadejte URL streamu:" - -msgid "Enter username and password" -msgstr "Zadejte uživatelské jméno a heslo" - -msgid "Import data from last.fm" -msgstr "Importovat data z last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Zvolte data pro import z last.fm" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "Importovat!" - -msgid "Close" -msgstr "Zavřít" - -msgid "Cancel" -msgstr "Zrušit" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "Tuto zprávu již nezobrazovat." - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Klepněte pro přepnutí mezi zbývajícím časem a celkovým časem" - -msgid "You are not signed in." -msgstr "Nejste přihlášen." - -msgid "Sign out" -msgstr "Odhlásit" - -msgid "Signing in..." -msgstr "Přihlašuje se..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Umělci" - -msgid "Albums" -msgstr "Alba" - -msgid "Songs" -msgstr "Skladby" - -msgid "Refresh catalogue" -msgstr "Obnovit katalog" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "umělci" - -msgid "albums" -msgstr "alba" - -msgid "songs" -msgstr "skladby" - -msgid "Organize Files" -msgstr "Uspořádat Soubory" - -msgid "Destination" -msgstr "Cíl" - -msgid "After copying..." -msgstr "Po zkopírování..." - -msgid "Keep the original files" -msgstr "Zachovat původní soubory" - -msgid "Delete the original files" -msgstr "Smazat původní soubory" - -msgid "Naming options" -msgstr "Volby pro pojmenování" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Symboly začínají %, například: %artist %album %title

\n\n" -"

Pokud obklopíte části textu obsahující symbol složenými závorkami, tato část bude skryta, je-li symbol prázdný.

" - -msgid "Insert..." -msgstr "Vložit..." - -msgid "Remove problematic characters from filenames" -msgstr "Odstranit problémové znaky z názvů souborů" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Omezit na znaky dostupné na FAT systémech souborů" - -msgid "Restrict characters to ASCII" -msgstr "Omezit na ASCII znaky" - -msgid "Allow extended ASCII characters" -msgstr "Povolit rozšířené ASCII znaky" - -msgid "Replace spaces with underscores" -msgstr "Nahradit mezery podtržítky" - -msgid "Overwrite existing files" -msgstr "Přepsat existující soubory" - -msgid "Copy album cover artwork" -msgstr "Kopírovat obrázek alba" - -msgid "Safely remove the device after copying" -msgstr "Po dokončení kopírování bezpečně odebrat zařízení" - -msgid "Press a key" -msgstr "Stiskněte klávesu" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "Otevřít..." - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Aby bylo možné v Strawberry používat globální klávesové zkratky, je nutné spustit Nastavení Systému a povolit Strawberry \"ovládat váš počítač\"." - -msgid "Shortcut" -msgstr "Klávesová zkratka" - -msgctxt "Category label" -msgid "Action" -msgstr "Činnost" - -msgid "&None" -msgstr "Žád&né" - -msgid "&Default" -msgstr "&Výchozí" - -msgid "&Custom" -msgstr "Vl&astní" - -msgid "Change shortcut..." -msgstr "Změnit klávesovou zkratku..." - -msgid "Device Properties" -msgstr "Vlastnosti zařízení" - -msgid "Icon" -msgstr "Ikona" - -msgid "Hardware information" -msgstr "Informace o vybavení" - -msgid "Hardware information is only available while the device is connected." -msgstr "Informace o vybavení jsou dostupné pouze tehdy, když je zařízení připojeno." - -msgid "Information" -msgstr "Informace" - -msgid "Supported formats" -msgstr "Podporované formáty" - -msgid "This device supports the following file formats:" -msgstr "Toto zařízení podporuje následující formáty souborů:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry může automaticky převést hudbu kopírovanou do tohoto zařízení do formátu, který dokáže přehrát." - -msgid "Do not convert any music" -msgstr "Nepřevádět žádnou hudbu" - -msgid "Convert any music that the device can't play" -msgstr "Převést veškerou hudbu, kterou zařízení nedokáže přehrát" - -msgid "Convert all music" -msgstr "Převést všechnu hudbu" - -msgid "Preferred format" -msgstr "Upřednostňovaný formát" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Pro zjištění podporovaných formátů souborů je zařízení nejdřív nutno připojit a otevřít." - -msgid "Open device" -msgstr "Otevřít zařízení" - -msgid "Querying device..." -msgstr "Dotazování se zařízení..." - -msgid "File formats" -msgstr "Formáty souborů" - -msgid "Transcode Music" -msgstr "Převést hudbu" - -msgid "Files to transcode" -msgstr "Soubory k překódování" - -msgid "Directory" -msgstr "Složka" - -msgid "Add..." -msgstr "Přidat..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Přidat všechny skladby z adresáři a všech jeho podadresářů" - -msgid "Import..." -msgstr "Importovat..." - -msgid "Output options" -msgstr "Možnosti výstupu" - -msgid "Audio format" -msgstr "Zvukový formát" - -msgid "Options..." -msgstr "Volby..." - -msgid "Alongside the originals" -msgstr "Vedle původních" - -msgid "Select..." -msgstr "Vybrat..." - -msgid "Progress" -msgstr "Průběh" - -msgid "Details..." -msgstr "Podrobnosti..." - -msgid "Transcoder Log" -msgstr "Záznam o převodu" - -msgid " kbps" -msgstr " kb/s" - -msgid "Profile" -msgstr "Profil" - -msgid "Main profile (MAIN)" -msgstr "Hlavní profil" - -msgid "Low complexity profile (LC)" -msgstr "Nízkosložitostní profil" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Profil škálovatelného vzorkovacího kmitočtu" - -msgid "Long term prediction profile (LTP)" -msgstr "Dlouhodobý předpověďní profil" - -msgid "Use temporal noise shaping" -msgstr "Použít časové tvarování šumu" - -msgid "Allow mid/side encoding" -msgstr "Povolit kódování střed/kraj" - -msgid "Block type" -msgstr "Typ bloku" - -msgid "Normal block type" -msgstr "Běžný typ bloku" - -msgid "No short blocks" -msgstr "Žádné krátké bloky" - -msgid "No long blocks" -msgstr "Žádné dlouhé bloky" - -msgid "Transcoding options" -msgstr "Volby překódování" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Kvalita" - -msgid "Fast" -msgstr "Rychlý" - -msgid "Best" -msgstr "Nejlepší" - -msgid "Use bitrate management engine" -msgstr "Použít stroj na správu datového toku" - -msgid "Target bitrate" -msgstr "Cílový datový tok" - -msgid "Minimum bitrate" -msgstr "Nejnižší datový tok" - -msgid "disabled" -msgstr "zakázáno" - -msgid "Maximum bitrate" -msgstr "Nejvyšší datový tok" - -msgid "automatic" -msgstr "automatický" - -msgid "Average bitrate" -msgstr "Průměrný datový tok" - -msgid "Encoding mode" -msgstr "Režim kódování" - -msgid "Auto" -msgstr "Automaticky" - -msgid "Ultra wide band (UWB)" -msgstr "Ultra široké pásmo" - -msgid "Wide band (WB)" -msgstr "Široké pásmo" - -msgid "Narrow band (NB)" -msgstr "Úzké pásmo" - -msgid "Variable bit rate" -msgstr "Proměnlivý datový tok" - -msgid "Voice activity detection" -msgstr "Zjištění hlasové činnosti" - -msgid "Discontinuous transmission" -msgstr "Nesouvislý přenos" - -msgid "Encoding complexity" -msgstr "Složitost kódování" - -msgid "Frames per buffer" -msgstr "Snímků na vyrovnávací paměť" - -msgid "Optimize for &quality" -msgstr "Optimalizovat pro &kvalitu" - -msgid "Opti&mize for bitrate" -msgstr "Optimal&izovat pro datový tok" - -msgid "Constant bitrate" -msgstr "Stálý datový tok" - -msgid "Encoding engine quality" -msgstr "Kvalita kódovacího stroje" - -msgid "Standard" -msgstr "Obvyklý" - -msgid "High" -msgstr "Vysoká" - -msgid "Force mono encoding" -msgstr "Vynutit jednokanálové kódování" - -msgid "Transcoding" -msgstr "Překódování" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Tato nastavení se používají v dialogu pro překódování hudby a když je hudba před kopírováním do zařízení převáděna." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "URL serveru" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Nastavení" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "Ověřovat certifikát serveru" - -msgid "Download album covers" -msgstr "Stahovat obaly alb" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Podpora Tidal není oficiální a vyžaduje API token z registrované aplikace. S tímto vám nemůžeme pomoct." - -msgid "Use OAuth" -msgstr "Použijte OAuth" - -msgid "Client ID" -msgstr "ID Klienta" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "Kvalita zvuku" - -msgid "Search delay" -msgstr "Zpožděné vyhledávání" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Limit vyhledávaných umělců" - -msgid "Albums search limit" -msgstr "Limit vyhledávaných alb" - -msgid "Songs search limit" -msgstr "Limit vyhledaných skladeb" - -msgid "Fetch entire albums when searching songs" -msgstr "Načítat celá alba při vyhledávání" - -msgid "Album cover size" -msgstr "Velikost obalu alba" - -msgid "Stream URL method" -msgstr "Metoda URL streamu" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "ID aplikace" - -msgid "App Secret" -msgstr "Tajemství aplikace" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "Ukazatel nálady" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Ukládat .mood soubory přímo ve složkách skladeb" - -msgid "Enabled" -msgstr "Povoleno" - -msgid "Return to Strawberry" -msgstr "Návrat do Strawberry" - -msgid "Success!" -msgstr "Úspěch" - -msgid "Please close your browser and return to Strawberry." -msgstr "Zavřete, prosím, svůj prohlížeč a vraťte se do Strawberry." - diff --git a/src/translations/de_DE.po b/src/translations/de_DE.po deleted file mode 100644 index 6352400d..00000000 --- a/src/translations/de_DE.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: de\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: German\n" -"Language: de_DE\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Alle Dateien (*)" - -msgid "Context" -msgstr "Kontext" - -msgid "Collection" -msgstr "Bibliothek" - -msgid "Queue" -msgstr "Warteschlange" - -msgid "Playlists" -msgstr "Wiedergabelisten" - -msgid "Smart playlists" -msgstr "Intelligente Wiedergabelisten" - -msgid "Files" -msgstr "Dateien" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "Geräte" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Alle Titel anzeigen" - -msgid "Show only duplicates" -msgstr "Nur Doppelte anzeigen" - -msgid "Show only untagged" -msgstr "Nur ohne Schlagworte anzeigen" - -msgid "Configure collection..." -msgstr "Bibliothek einrichten …" - -msgid "Play" -msgstr "Wiedergabe" - -msgid "Stop after this track" -msgstr "Wiedergabe nach diesem Titel anhalten" - -msgid "Toggle queue status" -msgstr "Einreihungsstatus ändern" - -msgid "Queue selected tracks to play next" -msgstr "Ausgewählte Titel in die Warteschlange stellen, um sie als nächstes abzuspielen" - -msgid "Toggle skip status" -msgstr "Überspring-Status umschalten" - -msgid "Rescan song(s)..." -msgstr "Lieder erneut scannen..." - -msgid "Copy URL(s)..." -msgstr "Kopiere URL-Pfade" - -msgid "Show in collection..." -msgstr "In Bibliothek anzeigen …" - -msgid "Show in file browser..." -msgstr "In Dateiverwaltung anzeigen …" - -msgid "Organize files..." -msgstr "Dateien organisieren..." - -msgid "Copy to collection..." -msgstr "Zur Bibliothek kopieren …" - -msgid "Move to collection..." -msgstr "Zur Bibliothek verschieben …" - -msgid "Copy to device..." -msgstr "Auf das Gerät kopieren …" - -msgid "Delete from disk..." -msgstr "Von der Festplatte löschen …" - -msgid "Check for updates..." -msgstr "Nach Aktualisierungen suchen …" - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry läuft unter Rosetta" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "Sie betreiben Strawberry unter Rosetta. Der Betrieb von Strawberry unter Rosetta wird nicht unterstützt und führt zu Problemen. Bitte laden Sie Strawberry für die korrekte CPU-Architektur von %1 herunter" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry ist freie Open-Source Software. Wenn Ihnen Strawberry gefällt, können sie das Projekt sponsern. Für weitere Informationen zum Thema Sponsorschaft schauen Sie auf unsere Web-Seite %1" - -msgid "Pause" -msgstr "" - -msgid "Dequeue track" -msgstr "Titel aus der Warteschlange nehmen" - -msgid "Dequeue selected tracks" -msgstr "Titel aus der Warteschlange nehmen" - -msgid "Queue track" -msgstr "Titel in die Warteschlange einreihen" - -msgid "Queue selected tracks" -msgstr "Titel in die Warteschlange einreihen" - -msgid "Queue to play next" -msgstr "In die Warteschlange, um sie als nächstes abzuspielen" - -msgid "Unskip track" -msgstr "Titel nicht überspringen" - -msgid "Unskip selected tracks" -msgstr "Überspringen der ausgewählten Titel aufheben" - -msgid "Skip track" -msgstr "Titel überspringen" - -msgid "Skip selected tracks" -msgstr "Ausgewählte Titel überspringen" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "%1 zu »%2« einstellen …" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Schlagwort »%1« bearbeiten …" - -msgid "Add to another playlist" -msgstr "Zu anderer Wiedergabeliste hinzufügen" - -msgid "New playlist" -msgstr "Neue Wiedergabeliste" - -msgid "Add file" -msgstr "Datei hinzufügen" - -msgid "Music" -msgstr "Musik" - -msgid "Add folder" -msgstr "Ordner hinzufügen" - -msgid "Clear playlist" -msgstr "Wiedergabeliste leeren" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Die Wiedergabeliste enthält %1 Songs, die zu groß sind, um sie rückgängig zu machen. Sind Sie sicher, dass Sie die Wiedergabeliste löschen möchten?" - -msgid "Error" -msgstr "Fehler" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Keiner der gewählten Titel war zum Kopieren auf ein Gerät geeignet." - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Die Strawberry-Version, auf die Sie gerade aktualisiert haben, erfordert eine komplette Aktualisierung Ihrer Bibliothek, damit die folgenden neuen Funktionen genutzt werden können:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Möchten Sie jetzt Ihre Musik-Bibliothek erneut einlesen?" - -msgid "Collection rescan notice" -msgstr "Hinweis beim erneuten Durchsuchen der Bibliothek" - -msgid "Usage" -msgstr "Benutzung" - -msgid "options" -msgstr "Einstellungen" - -msgid "URL(s)" -msgstr "Adresse(n)" - -msgid "Player options" -msgstr "Spielereinstellungen" - -msgid "Start the playlist currently playing" -msgstr "Die aktuelle Wiedergabeliste abspielen" - -msgid "Play if stopped, pause if playing" -msgstr "Wiedergeben wenn angehalten, pausieren bei Wiedergabe" - -msgid "Pause playback" -msgstr "Wiedergabe pausieren" - -msgid "Stop playback" -msgstr "Wiedergabe anhalten" - -msgid "Stop playback after current track" -msgstr "Wiedergabe nach aktuellem Titel anhalten" - -msgid "Skip backwards in playlist" -msgstr "Vorherigen Titel in der Wiedergabeliste" - -msgid "Skip forwards in playlist" -msgstr "Nächsten Titel in der Wiedergabeliste" - -msgid "Set the volume to percent" -msgstr "Setze Lautstärke auf %" - -msgid "Increase the volume by 4 percent" -msgstr "Lautstärke um 4 % erhöhen" - -msgid "Decrease the volume by 4 percent" -msgstr "Lautstärke um 4% verringern" - -msgid "Increase the volume by percent" -msgstr "Lautstärke um Prozent erhöhen" - -msgid "Decrease the volume by percent" -msgstr "Lautstärke um Prozent verringern" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Im aktuellen Titel zu einer Position springen" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Im aktuellen Titel vorspulen" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Starten Sie den Titel oder den vorherigen Titel, wenn sie innerhalb von 8 Sekunden nach Beginn." - -msgid "Playlist options" -msgstr "Wiedergabeliste einrichten" - -msgid "Create a new playlist with files" -msgstr "Neue Wiedergabelist mit Dateien erstellen" - -msgid "Append files/URLs to the playlist" -msgstr "Dateien/Adressen an die Wiedergabeliste anhängen" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Dateien/Adressen laden und die Wiedergabeliste ersetzen" - -msgid "Play the th track in the playlist" -msgstr "Titelnummer der Wiedergabeliste abspielen" - -msgid "Play given playlist" -msgstr "Angegebene Playliste abspielen" - -msgid "Other options" -msgstr "Weitere Optionen" - -msgid "Display the on-screen-display" -msgstr "Bildschirmanzeige anzeigen" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Sichtbarkeit der Strawberry-Bildschirmanzeige anpassen" - -msgid "Change the language" -msgstr "Sprache ändern" - -msgid "Resize the window" -msgstr "Größe des Fensters ändern" - -msgid "Equivalent to --log-levels *:1" -msgstr "Äquivalent zu --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Äquivalent zu --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Komma getrennte Liste mit »class:level« (Level ist 0-3)" - -msgid "Print out version information" -msgstr "Versionsinformationen anzeigen" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr " SQL-Abfrage kann nicht ausgeführt werden: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Fehlgeschlagene SQL-Abfrage: %1" - -msgid "Integrity check" -msgstr "Integritätsprüfung" - -msgid "Database corruption detected." -msgstr "Datenbankfehler festgestellt" - -msgid "Backing up database" -msgstr "Die Datenbank wird gesichert" - -msgid "Deleting files" -msgstr "Dateien werden gelöscht" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Unbekannt" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Sie brauchen GStreamer für diese URL." - -msgid "Preload function was not set for blocking operation." -msgstr "Preload Funktion war nicht gesetzt für Blockiervorgang." - -#, qt-format -msgid "File %1 does not exist." -msgstr "Datei %1 existiert nicht. " - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Datei %1 kann nicht als korrekte Audiodatei erkannt werden." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "CD Wiedergabe ist nur mit der GStreamer Implementierung verfügbar" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Konnte Datei %1 nicht zum Lesen öffnen: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Konnte nicht CUE-Datei %1 zum Lesen öffnen: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Konnte nicht die Wiedergabeliste %1 zum Lesen öffnen: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Konnte GStreamer-Quellelement für %1 nicht erzeugen" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "Konnte kein \"GStreamer typefind\" Element für \"%1\" erstellen." - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "Konnte kein \"GStreamer fakesink\" Element für \"%1\" erstellen." - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "Konnte nicht \"GStreamer source, typefind und fakesink\" Elemente für %1 verlinken." - -msgid "Playlist" -msgstr "Wiedergabeliste" - -msgid "1 day" -msgstr "1 Tag" - -#, qt-format -msgid "%1 days" -msgstr "%1 Tage" - -msgid "Today" -msgstr "Heute" - -msgid "Yesterday" -msgstr "Gestern" - -#, qt-format -msgid "%1 days ago" -msgstr "vor %1 Tagen" - -msgid "Tomorrow" -msgstr "Morgen" - -#, qt-format -msgid "In %1 days" -msgstr "In %1 Tagen" - -msgid "Next week" -msgstr "Nächste Woche" - -#, qt-format -msgid "In %1 weeks" -msgstr "In %1 Wochen" - -msgid "Show in file browser" -msgstr "Zeige im Dateimanager" - -msgid "Too many songs selected." -msgstr "Zu viele Lieder ausgewählt." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "%1 Lieder in %2 unterschiedlichen Ordnern ausgewählt, sind Sie sicher, dass Sie sie alle öffnen wollen?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Unbekannter Fehler" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "Stellen Sie einem Suchbegriff einen Feldnamen voran, um die Suche auf dieses Feld zu beschränken, z.B:" - -msgid "artist" -msgstr "Künstler" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "Suchbegriffe für numerische Felder können mit %1 oder %2 vorangestellt werden, um die Suche expliziter zu machen, z.B:" - -msgid "rating" -msgstr "Bewertung" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "Mehrere Suchbegriffe können auch mit \"%1\" (und, standard) und \"%2\" (oder) kombiniert, sowie mit Klammern gruppiert werden." - -msgid "Available fields" -msgstr "Verfügbare Felder" - -msgid "Framerate" -msgstr "Bildwiederholrate" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Niedrig (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Mittel (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Hoch (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Sehr hoch (%1 fps)" - -msgid "No analyzer" -msgstr "Keine Visualisierung" - -msgid "Block analyzer" -msgstr "Blöcke" - -msgid "Boom analyzer" -msgstr "Boom" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "Spektrogramm" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Vorverstärkung:" - -msgid "Custom" -msgstr "Benutzerdefiniert" - -msgid "Classical" -msgstr "Klassisch" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Maximale Tiefen" - -msgid "Full Treble" -msgstr "Maximale Höhen" - -msgid "Full Bass + Treble" -msgstr "Maximale Tiefen und Höhen" - -msgid "Laptop/Headphones" -msgstr "Laptop/Kopfhörer" - -msgid "Large Hall" -msgstr "Großer Raum" - -msgid "Live" -msgstr "" - -msgid "Party" -msgstr "" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "Null" - -msgid "Save preset" -msgstr "Voreinstellung speichern" - -msgid "Name" -msgstr "" - -msgid "Delete preset" -msgstr "Voreinstellung löschen" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Sind Sie sicher, dass Sie die Voreinstellung »%1« wirklich löschen wollen?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Dateityp" - -msgid "Length" -msgstr "Länge" - -msgid "Samplerate" -msgstr "Abtastrate" - -msgid "Bit depth" -msgstr "Bit-Tiefe" - -msgid "Bitrate" -msgstr "" - -msgid "EBU R 128 Integrated Loudness" -msgstr "EBU R 128 Integrierte Lautheit" - -msgid "EBU R 128 Loudness Range" -msgstr "EBU R 128 Lautstärke Bereich" - -msgid "Show album cover" -msgstr "Titelbilder anzeigen" - -msgid "Show song technical data" -msgstr "Zeige die technischen Daten des Liedes" - -msgid "Show song lyrics" -msgstr "Zeige Liedtexte" - -msgid "Automatically search for song lyrics" -msgstr "Automatisch nach Liedtexten suchen" - -msgid "No song playing" -msgstr "Es wird kein Lied gespielt" - -#, qt-format -msgid "%1 song" -msgstr "%1 Lied" - -#, qt-format -msgid "%1 songs" -msgstr "%1 Lieder" - -#, qt-format -msgid "%1 artist" -msgstr "%1 Künstler" - -#, qt-format -msgid "%1 artists" -msgstr "%1 Künstler" - -#, qt-format -msgid "%1 album" -msgstr "%1 Album" - -#, qt-format -msgid "%1 albums" -msgstr "%1 Alben" - -msgid "kbps" -msgstr "Kb/s" - -msgid "Saving playcounts and ratings" -msgstr "Speichern von Wiedergabezahlen und Bewertungen" - -msgid "Various artists" -msgstr "Verschiedene Interpreten" - -msgid "Loading..." -msgstr "Wird geladen …" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "Bibliotheks-SQL-Abfrage kann nicht ausgeführt werden: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "Aktualisieren der Datenbank %1." - -msgid "Updating collection" -msgstr "Bibliothek wird aktualisiert" - -#, qt-format -msgid "Updating %1" -msgstr "Aktualisiere %1" - -msgid "Your collection is empty!" -msgstr "Ihre Bibliothek ist leer!" - -msgid "Click here to add some music" -msgstr "Hier klicken, um Musik hinzuzufügen" - -msgid "Append to current playlist" -msgstr "Zur aktuellen Wiedergabeliste hinzufügen" - -msgid "Replace current playlist" -msgstr "Wiedergabeliste ersetzen" - -msgid "Open in new playlist" -msgstr "In einer neuen Wiedergabeliste öffnen" - -msgid "Search for this" -msgstr "Nach diesem suchen" - -msgid "Edit track information..." -msgstr "Metadaten bearbeiten …" - -msgid "Edit tracks information..." -msgstr "Metadaten bearbeiten …" - -msgid "Rescan song(s)" -msgstr "Lied erneut scannen" - -msgid "Show in various artists" -msgstr "Unter »Verschiedene Interpreten« anzeigen" - -msgid "Don't show in various artists" -msgstr "Nicht unter »Verschiedene Interpreten« anzeigen" - -msgid "There are other songs in this album" -msgstr "Dieses Album enthält auch andere Titel" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Möchten Sie die anderen Songs auf diesem Album auch zu Various Artists verschieben?" - -msgid "Show" -msgstr "Anzeigen" - -msgid "Group by" -msgstr "Sortieren nach" - -msgid "Display options" -msgstr "Anzeigeoptionen" - -msgid "Group by Album artist/Album" -msgstr "Nach Albuminterpret/Album gruppieren" - -msgid "Group by Album artist/Album - Disc" -msgstr "Gruppe von Album Künstler/Album - Disc" - -msgid "Group by Album artist/Year - Album" -msgstr "Gruppe von Album Künstler/Jahr - Album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Gruppe von Album Künstler/Jahr - Album - Disc" - -msgid "Group by Artist/Album" -msgstr "Interpret/Album" - -msgid "Group by Artist/Album - Disc" -msgstr "Gruppe nach Künstler/Album - Disc" - -msgid "Group by Artist/Year - Album" -msgstr "Interpret/Jahr" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Gruppe nach Künstler/Jahr - Album - Disc" - -msgid "Group by Genre/Album artist/Album" -msgstr "Gruppe nach Genre/Album Künstler/Album" - -msgid "Group by Genre/Artist/Album" -msgstr "Genre/Interpret/Album" - -msgid "Group by Album Artist" -msgstr "Gruppieren nach Album-Künstler" - -msgid "Group by Artist" -msgstr "Interpret" - -msgid "Group by Album" -msgstr "Album" - -msgid "Group by Genre/Album" -msgstr "Genre/Album" - -msgid "Advanced grouping..." -msgstr "Erweiterte Sortierung …" - -msgid "Grouping Name" -msgstr "Sortiername" - -msgid "Grouping name:" -msgstr "Sortiername:" - -msgid "First level" -msgstr "Erste Stufe" - -msgid "Second Level" -msgstr "Zweite Stufe" - -msgid "Third Level" -msgstr "Dritte Stufe" - -msgid "None" -msgstr "Nichts" - -msgid "Album artist" -msgstr "Album-Interpret" - -msgid "Artist" -msgstr "Interpret" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "" - -msgid "Year - Album" -msgstr "Jahr – Album" - -msgid "Year - Album - Disc" -msgstr "Jahr - Album - Disc" - -msgid "Original year - Album" -msgstr "Ursprüngliches Jahr - Album" - -msgid "Original year - Album - Disc" -msgstr "Originaljahr - Album - Disc" - -msgid "Disc" -msgstr "CD-Nr." - -msgid "Year" -msgstr "Jahr" - -msgid "Original year" -msgstr "Ursprüngliches Jahr" - -msgid "Genre" -msgstr "" - -msgid "Composer" -msgstr "Komponist" - -msgid "Performer" -msgstr "Besetzung" - -msgid "Grouping" -msgstr "Sortierung" - -msgid "File type" -msgstr "Dateityp" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "Abtastrate" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Titel" - -msgid "Track" -msgstr "Titel-Nr." - -msgid "Original Year" -msgstr "Ursprüngliches Jahr" - -msgid "Album Artist" -msgstr "Album-Interpret" - -msgid "Play Count" -msgstr "Wiedergabezähler" - -msgid "Skip Count" -msgstr "Übersprungzähler" - -msgid "Last Played" -msgstr "Zuletzt gespielt" - -msgid "Sample Rate" -msgstr "Abtastrate" - -msgid "Bit Depth" -msgstr "Bit-Tiefe" - -msgid "File Name" -msgstr "Dateiname" - -msgid "File Name (without path)" -msgstr "Dateiname (ohne Dateipfad)" - -msgid "File Size" -msgstr "Dateigröße" - -msgid "File Type" -msgstr "Dateityp" - -msgid "Date Modified" -msgstr "Änderungsdatum" - -msgid "Date Created" -msgstr "Erstellungsdatum" - -msgid "Comment" -msgstr "Kommentar" - -msgid "Source" -msgstr "Quelle" - -msgid "Mood" -msgstr "Stimmung" - -msgid "Rating" -msgstr "Bewertung" - -msgid "CUE" -msgstr "Stichwort" - -msgid "Integrated Loudness" -msgstr "Integrierte Lautheit" - -msgid "Loudness Range" -msgstr "Lautstärkeumfang" - -msgid "Undo" -msgstr "Rückgängig machen" - -msgid "Redo" -msgstr "Wiederholen" - -msgid "Load playlist" -msgstr "Wiedergabeliste laden" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Keine Treffer. Leeren Sie das Suchfeld, um wieder die gesamte Wiedergabeliste anzuzeigen." - -msgid "stop" -msgstr "Anhalten" - -msgid "Never" -msgstr "Niemals" - -msgid "&Hide..." -msgstr "&Ausblenden …" - -msgid "&Stretch columns to fit window" -msgstr "&Spalten an Fenstergröße anpassen" - -msgid "&Reset columns to default" -msgstr "&Zurücksetzen der Spalten auf Standard" - -msgid "&Lock rating" -msgstr "&Lock Bewertung" - -msgid "&Align text" -msgstr "&Text ausrichten" - -msgid "&Left" -msgstr "&Links" - -msgid "&Center" -msgstr "&Zentriert" - -msgid "&Right" -msgstr "&Rechts" - -#, qt-format -msgid "&Hide %1" -msgstr "%1 &ausblenden" - -msgid "New folder" -msgstr "Neuer Ordner" - -msgid "Delete" -msgstr "Löschen" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Wiedergabeliste speichern" - -msgid "Enter the name of the folder" -msgstr "Geben Sie den Namen des Ordners ein" - -msgid "Copy to device" -msgstr "Kopieren auf ein Gerät" - -msgid "Playlist must be open first." -msgstr "Die Wiedergabeliste muss zuerst geöffnet sein." - -msgid "Remove playlists" -msgstr "Wiedergabeliste entfernen" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Wollen Sie %1 Wiedergabelisten löschen?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Sie können Wiedergabelisten favorisieren, indem Sie das Stern-Symbol neben dem Namen anklicken" - -msgid "Favorited playlists will be saved here" -msgstr "Favorisierte Wiedergabelisten werden hier gespeichert" - -msgid "Couldn't create playlist" -msgstr "Wiedergabeliste konnte nicht erstellt werden" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Wiedergabeliste speichern" - -msgid "Unknown playlist extension" -msgstr "Unbekannte Dateiendung für Wiedergabeliste." - -msgid "Unknown file extension for playlist." -msgstr "Unbekannte Dateiendung für Wiedergabeliste." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 ausgewählt von" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "%n Stück(e)" - -msgid "Automatic" -msgstr "Automatisch" - -msgid "Relative" -msgstr "Relativ" - -msgid "Absolute" -msgstr "Absolut" - -msgid "Star playlist" -msgstr "Star-Playlist" - -msgid "Close playlist" -msgstr "Wiedergabeliste schließen" - -msgid "Rename playlist..." -msgstr "Wiedergabeliste umbenennen …" - -msgid "Save playlist..." -msgstr "Wiedergabeliste speichern …" - -msgid "Rename playlist" -msgstr "Wiedergabeliste umbenennen" - -msgid "Enter a new name for this playlist" -msgstr "Neuer Name für diese Wiedergabeliste" - -msgid "Remove playlist" -msgstr "Wiedergabeliste entfernen" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Sie entfernen eine nicht favorisierte Wiedergabeliste. Die Wiedergabeliste wird gelöscht (Diese Aktion kann nicht rückgängig gemacht werden).\n" -"Möchten Sie wirklich fortfahren?" - -msgid "Warn me when closing a playlist tab" -msgstr "Hinweis beim Schließen eines Wiedergabelistenreiters anzeigen" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Diese Einstellung kann in den »Verhalten«-Einstellungen geändert werden" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Hier doppelklicken, um diese Wiedergabeliste zu Favoriten hinzuzufügen, damit sie gespeichert und in der linken Seitenleiste unter \"Wiedergabelisten\" zugänglich gemacht wird." - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "%n Titel hinzufügen" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "%n Titel entfernen" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "Verschiebe %n Titel" - -msgid "sort songs" -msgstr "Titel sortieren" - -msgid "shuffle songs" -msgstr "Titel mischen" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Fehler beim Laden der Audio-CD" - -msgid "Loading tracks" -msgstr "Titel werden geladen" - -msgid "Loading tracks info" -msgstr "Titelinfo wird geladen" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Alle Wiedergabelisten (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 Wiedergabelisten (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Lade intelligente Wiedergabeliste" - -msgid "Collection search" -msgstr "Bibliothek durchsuchen" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Suchen Sie nach Titeln in Ihrer Bibliothek, die den von Ihnen angegebenen Kriterien entsprechen." - -msgid "Search terms" -msgstr "Suchbegriffe" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Ein Lied wird in die Wiedergabeliste aufgenommen, wenn es diesen Bedingungen entspricht." - -msgid "Search options" -msgstr "Suchoptionen" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Wählen Sie aus, wie die Wiedergabeliste sortiert und wie viele Titel sie enthalten soll." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 Lieder gefunden (zeigt %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 Lieder gefunden" - -msgid "after" -msgstr "danach" - -msgid "before" -msgstr "davor" - -msgid "on" -msgstr "an" - -msgid "not on" -msgstr "nicht an" - -msgid "in the last" -msgstr "als letztes" - -msgid "not in the last" -msgstr "nicht als letztes" - -msgid "between" -msgstr "dazwischen" - -msgid "contains" -msgstr "beinhaltet" - -msgid "does not contain" -msgstr "beinhaltet nicht" - -msgid "starts with" -msgstr "beginnt mit" - -msgid "ends with" -msgstr "ended mit" - -msgid "greater than" -msgstr "größer als" - -msgid "less than" -msgstr "weniger als" - -msgid "equals" -msgstr "ist gleich" - -msgid "not equals" -msgstr "ist nicht gleich" - -msgid "empty" -msgstr "leer" - -msgid "not empty" -msgstr "nicht leer" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "älteste zuerst" - -msgid "newest first" -msgstr "Neueste zuerst" - -msgid "shortest first" -msgstr "kürzeste zuerst" - -msgid "longest first" -msgstr "Längste zuerst" - -msgid "smallest first" -msgstr "kleinste zuerst" - -msgid "biggest first" -msgstr "Größte zuerst" - -msgid "Hours" -msgstr "Stunden" - -msgid "Days" -msgstr "Tage" - -msgid "Weeks" -msgstr "Wochen" - -msgid "Months" -msgstr "Monate" - -msgid "Years" -msgstr "Jahre" - -msgid "The second value must be greater than the first one!" -msgstr "Der zweite Wert muss größer sein als der erste!" - -msgid "Add search term" -msgstr "Ergänze Suchbegriff" - -msgid "Newest tracks" -msgstr "Neueste Titel" - -msgid "50 random tracks" -msgstr "50 zufällige Titel" - -msgid "Ever played" -msgstr "Jemals gespielt" - -msgid "Never played" -msgstr "Nie gespielt" - -msgid "Last played" -msgstr "Zuletzt gespielt" - -msgid "Most played" -msgstr "Am meisten gespielt" - -msgid "Favourite tracks" -msgstr "Lieblingstitel" - -msgid "Least favourite tracks" -msgstr "Am wenigsten gemochte Titel" - -msgid "All tracks" -msgstr "Alle Lieder" - -msgid "Dynamic random mix" -msgstr "Dynamischer Zufallsmix" - -msgid "New smart playlist..." -msgstr "Neue intelligente Wiedergabeliste..." - -msgid "Play next" -msgstr "Spiele als nächstes" - -msgid "Edit smart playlist..." -msgstr "Bearbeiten Sie die intelligente Wiedergabeliste..." - -msgid "Delete smart playlist" -msgstr "Löschen Sie die intelligente Wiedergabeliste" - -msgid "Smart playlist" -msgstr "Intelligente Wiedergabeliste" - -msgid "Playlist type" -msgstr "Art der Wiedergabenliste" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Eine intelligente Wiedergabeliste ist eine dynamische Liste von Titeln, die aus Ihrer Bibliothek stammen. Es gibt verschiedene Arten von intelligenten Wiedergabelisten, die verschiedene Möglichkeiten zur Auswahl von Songs bieten." - -msgid "Finish" -msgstr "Fertigstellen" - -msgid "Choose a name for your smart playlist" -msgstr "Wählen Sie einen Namen für Ihre intelligente Wiedergabeliste" - -msgid "Abort" -msgstr "Abbrechen" - -msgid "All albums" -msgstr "Alle Alben" - -msgid "Albums with covers" -msgstr "Alben mit Titelbildern" - -msgid "Albums without covers" -msgstr "Alben ohne Titelbilder" - -msgid "Really cancel?" -msgstr "Wirklich abbrechen?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Das Schließen dieses Fensters bricht das Suchen nach Titelbildern ab." - -msgid "Don't stop!" -msgstr "Nicht anhalten!" - -msgid "All artists" -msgstr "Alle Interpreten" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "%1 Titelbilder von %2 wurden gefunden (%3 fehlgeschlagen)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 übertragen" - -msgid "Export finished" -msgstr "Export beendet" - -msgid "No covers to export." -msgstr "Keine Titelbilder zum Exportieren." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "%1 von %2 Titelbildern exportiert (%3 übersprungen)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "Konnte Titelbild nicht in Datei \"%1\" einbetten." - -#, qt-format -msgid "Covers from %1" -msgstr "Titelbild von %1" - -msgid "Search" -msgstr "Suche" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Bilder (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Bilder (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Alle Dateien (*)" - -msgid "Load cover from disk..." -msgstr "Titelbild von Festplatte laden …" - -msgid "Save cover to disk..." -msgstr "Titelbild auf Festplatte speichern …" - -msgid "Load cover from URL..." -msgstr "Titelbild von Adresse laden …" - -msgid "Search for album covers..." -msgstr "Nach Titelbild suchen …" - -msgid "Unset cover" -msgstr "Titelbild entfernen" - -msgid "Delete cover" -msgstr "Titelbild löschen" - -msgid "Clear cover" -msgstr "Titelbild löschen" - -msgid "Show fullsize..." -msgstr "In Originalgröße anzeigen …" - -msgid "Search automatically" -msgstr "Automatisch suchen" - -msgid "Load cover from disk" -msgstr "Titelbild von Festplatte laden" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Titelbild-Datei %1 konnte nicht zum Lesen geöffnet werden: %2 " - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "Titelbild-Datei %1 ist leer." - -msgid "unknown" -msgstr "Unbekannt" - -msgid "Save album cover" -msgstr "Titelbild speichern" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Titelbild-Datei %1 konnte nicht zum Schreiben geöffnet werden: %2 " - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Schreiben des Titelbilds in Datei %1 fehlgeschlagen: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Titelbild konnte nicht in Datei %1 geschrieben werden." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Titelbild-Datei %1 konnte nicht gelöscht werden: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Titelbild konnte nicht in Datei %1 geschrieben werden: %2" - -msgid "Total network requests made" -msgstr "Insgesamt gestellte Netzwerkanfragen" - -msgid "Average image size" -msgstr "Durchschnittliche Bildgröße" - -msgid "Total bytes transferred" -msgstr "Insgesamt übertragene Bytes" - -msgid "Fetching cover error" -msgstr "Abrufen des Titelbildes ist fehlgeschlagen" - -msgid "The site you requested does not exist!" -msgstr "Die aufgerufene Seite existiert nicht!" - -msgid "The site you requested is not an image!" -msgstr "Die angeforderte Seite ist kein Bild!" - -msgid "Genius Authentication" -msgstr "Genius Authentifizierung" - -msgid "Please open this URL in your browser" -msgstr "Bitte öffne diese URL in deinem Browser" - -msgid "Redirect missing token code!" -msgstr "Bei der Weiterleitung fehlt der Token-Code!" - -msgid "Received invalid reply from web browser." -msgstr "Empfange ungültige Antwort vom Webbrowser." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Bei der Weiterleitung von Genius fehlt der Code oder Status der abgefragten Elemente." - -msgid "General" -msgstr "Allgemein" - -msgid "User interface" -msgstr "Benutzeroberfläche" - -msgid "Streaming" -msgstr "" - -msgid "Add directory..." -msgstr "Verzeichnis hinzufügen …" - -msgid "Write all playcounts and ratings to files" -msgstr "Alle Wiedergabezahlen und Bewertungen in Dateien schreiben" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Sind Sie sicher, dass Sie Wiedergabezahlen und Bewertungen aller Lieder in Ihrer Bibliothek in die Dateien der Lieder einbetten möchten?" - -msgid "Enter your user token from" -msgstr "Ihr Benutzer-Token eingeben von" - -msgid "Use Tidal settings to authenticate." -msgstr "Benutze Tidal Einstellungen zum Authentifizieren. " - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Verwenden Sie die Qobuz-Einstellungen zur Authentifizierung." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 muss sich authentifizieren." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 braucht keine Authentifizierung." - -msgid "No provider selected." -msgstr "Kein Anbieter ausgewählt. " - -msgid "Authentication failed" -msgstr "Authentifizierung fehlgeschlagen" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "Manuell entfernt (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "Durch Titelbildsuche setzen (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "Automatisch in Albumsordner gefunden (%1)" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "Eingebettetes Titelbild (%1)" - -msgid "Select background image" -msgstr "Hintergrundbild wählen" - -msgid "OSD Preview" -msgstr "Vorschau der Bildschirmanzeige" - -msgid "Drag to reposition" -msgstr "Klicken und ziehen um die Position zu ändern" - -msgid "About Strawberry" -msgstr "Über Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry ist ein Musikspieler und organisiert Musiksammlungen." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Es ist ein Fork von Clementine, die 2018 veröffentlicht wurde und sich an Musiksammler und Audiophile richtet." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry ist eine kostenlose Software, die unter der GPL veröffentlicht wird. Der Quellcode ist auf %1 verfügbar." - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Sie sollten zusammen mit diesem Programm eine Kopie der GNU General Public License erhalten haben. Wenn nicht, siehe %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Wenn Ihnen Strawberry gefällt und Sie es nutzen können, sollten Sie sponsern oder spenden." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Sie können den Autor auf %1 sponsern. Sie können auch eine einmalige Zahlung über %2 vornehmen." - -msgid "Author and maintainer" -msgstr "Autor und Betreuer" - -msgid "Contributors" -msgstr "Beitragende" - -msgid "Clementine authors" -msgstr "Autoren von Clementine" - -msgid "Clementine contributors" -msgstr "Beitragende zu Clementine" - -msgid "Thanks to" -msgstr "Dank an" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Dank an all die anderen, die zu Amarok und Clementine beigetragen haben." - -msgid "(different across multiple songs)" -msgstr "(unterschiedlich für mehrere Titel)" - -msgid "Different art across multiple songs." -msgstr "Verschiedene Bilder über mehrere Lieder hinweg." - -msgid "Previous" -msgstr "Vorheriger" - -msgid "Next" -msgstr "Weiter" - -msgid "Saving tracks" -msgstr "Titel werden gespeichert" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 Lieder ausgewählt." - -msgid "Yes" -msgstr "Ja" - -msgid "No" -msgstr "Nein" - -msgid "Cover is unset." -msgstr "Titelbild ist nicht gesetzt." - -msgid "Cover from embedded image." -msgstr "Titelbild aus eingebettetem Bild" - -#, qt-format -msgid "Cover from %1" -msgstr "Titelbild von %1" - -msgid "Cover art not set" -msgstr "Titelbild nicht ausgewählt" - -msgid "Album cover editing is only available for collection songs." -msgstr "Das Bearbeiten von Titelbildern ist nur in der Bibliothek möglich." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Titelbild geändert: wird beim Speichern geleert." - -msgid "Cover changed: Will be unset when saved." -msgstr "Titelbild geändert: wird beim Speichern zurückgesetzt." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Titelbild geändert: wird beim Speichern gelöscht." - -msgid "Cover changed: Will set new when saved." -msgstr "Titelbild geändert: wird beim Speichern neu gesetzt." - -msgid "Reset song play statistics" -msgstr "Titel-Wiedergabestatistiken zurücksetzen" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "Sind Sie sicher, dass Sie die Wiedergabestatistiken dieses Titels zurücksetzen möchten?" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Ursprüngliche Schlagworte" - -msgid "Suggested tags" -msgstr "Vorgeschlagene Schlagworte" - -msgid "Delete files" -msgstr "Dateien löschen" - -msgid "The following files will be deleted from disk:" -msgstr "Die folgenden Dateien werden von der Festplatte gelöscht:" - -msgid "Are you sure you want to continue?" -msgstr "Sind Sie sicher, dass Sie weitermachen wollen?" - -msgid "Receiving initial data from last.fm..." -msgstr "Empfangen von Anfangsdaten von last.fm ..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Empfange Wiedergabezahl für %1 Songs und letztes Wiedergabedatum für %2 Songs." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Empfange letztes Wiedergabedatum für %1 Songs." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Empfange Wiedergabezahl für %1 Songs." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Wiedergabezahl für %1 Songs und letztes Wiedergabedatum für %2 Songs empfangen." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Letztes Wiedergabedatum für %1 Songs erhalten." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Wiedergabezahl für %1 Lieder empfangen." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry läuft als Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Es wird erkannt, dass Strawberry als Snap ausgeführt wird" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry ist langsamer und unterliegt Einschränkungen, wenn sie als Snap ausgeführt wird. Der Zugriff auf das Root-Dateisystem (/) funktioniert nicht. Möglicherweise gibt es auch andere Einschränkungen, z. B. den Zugriff auf bestimmte Geräte oder Netzwerkfreigaben." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Für Ubuntu gibt es ein offizielles PPA-Repository unter %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Für Debian und Ubuntu sind offizielle Releases verfügbar, die auch für die meisten ihrer Derivate funktionieren. Weitere Informationen finden Sie unter %1." - -msgid "For a better experience please consider the other options above." -msgstr "Für eine bessere Erfahrung berücksichtigen Sie bitte die anderen oben genannten Optionen." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Bevor Sie den Snap deinstallieren, sollten Sie die strawberry.conf und strawberry.db aus dem Ordner ~/snap kopieren, um Ihre Einstellungen nicht zu verlieren:" - -msgid "Uninstall the snap with:" -msgstr "Deinstalliere den Snap mit:" - -msgid "Install strawberry through PPA:" -msgstr "Strawberry aus PPA installieren:" - -msgid "Select directory for the playlists" -msgstr "Wählen Sie ein Verzeichnis für die Wiedergabelisten" - -msgid "Directory does not exist." -msgstr "Das Verzeichnis existiert nicht." - -msgid "Large sidebar" -msgstr "Große Seitenleiste" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Schmale Seitenleiste" - -msgid "Plain sidebar" -msgstr "Einfache Seitenleiste" - -msgid "Tabs on top" -msgstr "Reiter oben" - -msgid "Icons on top" -msgstr "Symbole oben" - -msgid "Available" -msgstr "Verfügbar" - -msgid "New songs" -msgstr "Neue Titel" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Belegt" - -msgid "Clear" -msgstr "Leeren" - -msgid "Reset" -msgstr "Zurücksetzen" - -msgid "Small album cover" -msgstr "Kleines Titelbild" - -msgid "Large album cover" -msgstr "Großes Titelbild" - -msgid "Fit cover to width" -msgstr "Titelbild an Breite anpassen" - -msgid "Show above status bar" -msgstr "Oberhalb der Statusleiste anzeigen" - -msgid "You are signed in." -msgstr "Sie sind angemeldet." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Sie sind angemeldet als %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Läuft aus am %1" - -#, qt-format -msgid "disc %1" -msgstr "CD %1" - -#, qt-format -msgid "track %1" -msgstr "Titel %1" - -msgid "Paused" -msgstr "Pausiert" - -msgid "Stopped" -msgstr "Angehalten" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Wiedergabe wird nach diesem Lied angehalten: %1" - -msgid "On" -msgstr "An" - -msgid "Off" -msgstr "Aus" - -msgid "Playlist finished" -msgstr "Wiedergabeliste beendet" - -#, qt-format -msgid "Volume %1%" -msgstr "Lautstärke %1%" - -msgid "Don't shuffle" -msgstr "Zufallsmodus aus" - -msgid "Shuffle all" -msgstr "Zufällige Titelreihenfolge" - -msgid "Shuffle tracks in this album" -msgstr "Zufällige Titelreihenfolge innerhalb dieses Albums" - -msgid "Shuffle albums" -msgstr "Zufällige Albenreihenfolge" - -msgid "Don't repeat" -msgstr "Wiederholung aus" - -msgid "Repeat track" -msgstr "Titel wiederholen" - -msgid "Repeat album" -msgstr "Album wiederholen" - -msgid "Repeat playlist" -msgstr "Wiedergabeliste wiederholen" - -msgid "Stop after every track" -msgstr "Wiedergabe nach jedem Titel anhalten" - -msgid "Intro tracks" -msgstr "Einleitungstitel" - -#, qt-format -msgid "Configure %1..." -msgstr "%1 konfigurieren …" - -msgid "Add to artists" -msgstr "Zu Künstlern hinzufügen" - -msgid "Add to albums" -msgstr "Zu Alben hinzufügen" - -msgid "Add to songs" -msgstr "Zu den Liedern hinzufügen" - -msgid "Enter search terms above to find music" -msgstr "Oberhalb Suchkriterien eingeben um Musik zu finden" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Klicken Sie hier um Musik zu abzuholen" - -msgid "Remove from favorites" -msgstr "Aus den Favoriten entfernen" - -msgid "Open homepage" -msgstr "Homepage öffnen" - -msgid "Donate" -msgstr "Spenden" - -msgid "Refresh channels" -msgstr "Kanäle erneuern" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Empfange %1 Kanäle. " - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 Scrobbler Authentifizierung" - -msgid "Open URL in web browser?" -msgstr "Die URL im Webbrowser öffnen?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Drücken Sie \"Speichern\", um die URL in die Zwischenablage zu kopieren und sie manuell in einem Webbrowser zu öffnen." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Konnte die URL nicht öffnen. Bitte diese URL im Browser öffnen" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Ungültige Antwort vom Webbrowser. Token fehlt." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "Ungültige Antwort vom Webbrowser erhalten. Versuchen Sie einen anderen Webbrowser." - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Scrobbler %1 ist nicht authentifiziert!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Scrobbler %1 Fehler: %2" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz Authentifizierung" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "Konnte scrobble %1 - %2 aufgrund eines Fehlers nicht ausführen: %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "Fehlende MusicBrainz Aufnahmenkennung (recording ID) für %1 %2 %3" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "ListenBrainz Fehler: %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Fehlender Benutzername, bitte melden Sie sich zuerst bei last.fm an!" - -msgid "Organizing files" -msgstr "Dateien organisieren" - -msgid "Artist's initial" -msgstr "Initialen des Interpreten" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "Dateiendung" - -msgid "Error copying songs" -msgstr "Fehler beim Kopieren der Titel" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Beim Kopieren einiger Titel ist ein Fehler aufgetreten. Die folgenden Dateien konnten nicht kopiert werden:" - -msgid "Error deleting songs" -msgstr "Fehler beim Löschen der Titel" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Beim Löschen einiger Titel ist ein Fehler aufgetreten. Die folgenden Dateien konnten nicht gelöscht werden:" - -msgid "Play/Pause" -msgstr "Abspielen/Pausieren" - -msgid "Stop" -msgstr "Anhalten" - -msgid "Stop playing after current track" -msgstr "Wiedergabe nach aktuellem Titel anhalten" - -msgid "Next track" -msgstr "Nächster Titel" - -msgid "Previous track" -msgstr "Vorheriger Titel" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "Lautstärke erhöhen" - -msgid "Decrease volume" -msgstr "Lautstärke verringern" - -msgid "Mute" -msgstr "Stumm" - -msgid "Seek forward" -msgstr "Vorspulen" - -msgid "Seek backward" -msgstr "Zurückspulen" - -msgid "Show/Hide" -msgstr "Einblenden/Ausblenden" - -msgid "Show OSD" -msgstr "Bildschirmanzeige anzeigen" - -msgid "Toggle Pretty OSD" -msgstr "Schalten Sie das OSD um" - -msgid "Change shuffle mode" -msgstr "Zufallsmodus ändern" - -msgid "Change repeat mode" -msgstr "Wiederholungsart ändern" - -msgid "Enable/disable scrobbling" -msgstr "Scrobbeln ein-/ausschalten" - -msgid "Love" -msgstr "Lieben" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Eine Tastenkombination für %1 drücken …" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Der Befehl »%1« konnte nicht ausgeführt werden." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Tastenkürzel für %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Die Verwendung von X11-Tastenkombinationen auf %1 wird nicht empfohlen und kann dazu führen, dass die Tastatur nicht mehr reagiert!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "Verknüpfungen zu %1 werden normalerweise über MPRIS und KGlobalAccel verwendet." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "Verknüpfungen zu %1 werden normalerweise über Gnome Settings Daemon verwendet und sollten stattdessen im gnome-settings-daemon konfiguriert werden." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "Verknüpfungen zu %1 werden normalerweise über Gnome Settings Daemon verwendet und sollten stattdessen im cinnamon-settings-daemon konfiguriert werden." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "Verknüpfungen zu %1 werden normalerweise über MATE Settings Daemon verwendet und sollten stattdessen dort konfiguriert werden." - -msgid "Buffering" -msgstr "Puffern" - -msgid "D-Bus path" -msgstr "D-Bus Pfad" - -msgid "Serial number" -msgstr "Seriennummer" - -msgid "Mount points" -msgstr "Einhängepunkte" - -msgid "Partition label" -msgstr "Partitionsbezeichnung" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Gerät verbinden" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Dieses Gerät wurde zum ersten Mal verbunden. Strawberry wird es nun nach Musikdateien durchsuchen – das kann einige Zeit dauern." - -msgid "This device will not work properly" -msgstr "Dieses Gerät wird nicht ordnungsgemäß funktionieren" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Dies ist ein MTP-Gerät, aber Strawberry wurde ohne Unterstützung für libmtp kompiliert." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Wenn Sie fortfahren, wird das Gerät langsam arbeiten und kopierte Titel könnten nicht abspielbar sein." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Dies ist ein iPod, aber Strawberry wurde ohne Unterstützung für libgpod kompiliert." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Diese Geräteart wird nicht unterstützt: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "%1% wird aktualisiert …" - -msgid "Not connected" -msgstr "Nicht verbunden" - -msgid "Not mounted - double click to mount" -msgstr "Nicht eingehängt – doppelklicken zum Einhängen" - -msgid "Double click to open" -msgstr "Zum Öffnen doppelklicken" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 Lied%2" - -msgid "Safely remove device" -msgstr "Gerät sicher entfernen" - -msgid "Forget device" -msgstr "Gerät vergessen" - -msgid "Device properties..." -msgstr "Geräteeinstellungen …" - -msgid "Delete from device..." -msgstr "Vom Gerät löschen …" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Das Vergessen eines Geräts wird es aus dieser Liste entfernen und Strawberry wird beim nächsten Verbinden alle Titel erneut erfassen müssen." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Diese Dateien werden vom Gerät gelöscht. Möchten Sie wirklich fortfahren?" - -msgid "Model" -msgstr "Modell" - -msgid "Manufacturer" -msgstr "Hersteller" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "iPod-Datenbank wird geladen" - -msgid "An error occurred loading the iTunes database" -msgstr "Beim Laden der iTunes-Datenbank ist ein Fehler aufgetreten" - -msgid "Mount point" -msgstr "Einhängepunkt" - -msgid "Device" -msgstr "Gerät" - -msgid "URI" -msgstr "Adresse" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "MTP-Gerät wird geladen" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Fehler beim Verbinden zu MTP Gerät %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "GStreamer-Element »%1« konnte nicht erstellt werden. Stellen Sie sicher, dass alle nötigen GStreamer-Erweiterungen installiert sind." - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 erfolgreich geschrieben" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "%1 Dateien werden mit %2 Prozessen umgewandelt" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Fehler bei %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Starte %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Es konnte kein Kodierer für %1 gefunden werden. Prüfen Sie, ob die erforderlichen GStreamer-Erweiterungen installiert sind." - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Es konnte kein Multiplexer für %1 gefunden werden. Prüfen Sie ob die erforderlichen GStreamer-Erweiterungen installiert sind." - -msgid "Start transcoding" -msgstr "Umwandeln starten" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n verbleibend" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n abgeschlossen" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n fehlgeschlagen" - -msgid "Add files to transcode" -msgstr "Dateien zum Umwandeln hinzufügen" - -msgid "Open a directory to import music from" -msgstr "Verzeichnis öffnen, um Musik von dort zu importieren" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Fehler beim Einstellen des CDDA-Geräts in die Bereitschaft. " - -msgid "Error while setting CDDA device to pause state." -msgstr "Fehler beim Einstellen des CDDA-Geräts in den Pausenzustand." - -msgid "Error while querying CDDA tracks." -msgstr "Fehler beim Abfragen von CDDA-Titeln." - -msgid "Server URL is invalid." -msgstr "Server URL ist ungültig." - -msgid "Missing username or password." -msgstr "Benutzername oder Passwort fehlt" - -msgid "Subsonic server URL is invalid." -msgstr "Subsonic Server URL ist ungültig." - -msgid "Missing Subsonic username or password." -msgstr "Subsonic Benutzername oder Passwort fehlt" - -msgid "Retrieving albums..." -msgstr "Empfange Alben..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Empfange Lieder für %1 Album..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Empfange Lieder für %1 Alben..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Empfange Titelbild für %1 Album... " - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Empfange Titelbilder für %1 Alben..." - -msgid "Configuration incomplete" -msgstr "Einstellungen nicht vollständig" - -msgid "Missing server url, username or password." -msgstr "Server URL, Benutzername oder Passwort fehlt" - -msgid "Configuration incorrect" -msgstr "Konfiguration inkorrekt" - -msgid "Test successful!" -msgstr "Test erfolgreich!" - -msgid "Test failed!" -msgstr "Test misslungen!" - -msgid "Reply from Tidal is missing query items." -msgstr "Bei der Antwort von Tidal fehlen Abfrageelemente." - -msgid "Missing Tidal API token." -msgstr "Tidal API-Token fehlt." - -msgid "Missing Tidal username." -msgstr "Tidal Benutzername fehlt." - -msgid "Missing Tidal password." -msgstr "Tidal Passwort fehlt. " - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Nicht bei Tidal authentifiziert und maximale Anzahl von Anmeldeversuchen erreicht." - -msgid "Not authenticated with Tidal." -msgstr "Nicht bei Tidal authentifiziert." - -msgid "Missing Tidal API token, username or password." -msgstr "Tidal API-Token, Benutzername oder Passwort fehlt." - -msgid "Authenticating..." -msgstr "Authentifiziere..." - -msgid "Receiving artists..." -msgstr "Empfange Künstler..." - -msgid "Receiving albums..." -msgstr "Empfange Alben..." - -msgid "Receiving songs..." -msgstr "Empfange Lieder..." - -msgid "Searching..." -msgstr "Suche..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "Empfange Alben von %1 Künstler..." - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "Empfange Alben von %1 Künstlern..." - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "Empfange Lieder für %1 Album..." - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "Empfange Lieder für %1 Alben..." - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "Empfange Titelbild für %1 Album..." - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "Empfange Titelbilder für %1 Alben..." - -msgid "No match." -msgstr "Keine Übereinstimmung." - -msgid "Cancelled." -msgstr "Abgebrochen." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "URL mit %1 verschlüsseltem Stream von Tidal erhalten. Strawberry unterstützt derzeit keine verschlüsselten Streams." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Erhaltene URL mit verschlüsseltem Stream von Tidal. Strawberry unterstützt derzeit keine verschlüsselten Streams." - -msgid "Missing Tidal client ID." -msgstr "Tidal Kunden ID fehlt." - -msgid "Missing API token." -msgstr "API-Token fehlt." - -msgid "Missing username." -msgstr "Fehlender Benutzername." - -msgid "Missing password." -msgstr "Fehlendes Passwort." - -msgid "Spotify Authentication" -msgstr "Spotify Authentifizierung" - -msgid "Redirect missing token code or state!" -msgstr "Bei der Weiterleitung fehlen Token-Code oder Status!" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Maximale Anzahl von Anmeldeversuchen erreicht." - -msgid "Missing Qobuz app ID." -msgstr "Fehlende Qobuz-App-ID." - -msgid "Missing Qobuz username." -msgstr "Fehlender Qobuz Benutzername." - -msgid "Missing Qobuz password." -msgstr "Fehlendes Qobuz Passwort." - -msgid "Not authenticated with Qobuz." -msgstr "Nicht mit Qobuz authentifiziert." - -msgid "Missing Qobuz app ID or secret." -msgstr "Fehlende Qobuz-App-ID oder geheim." - -msgid "Missing app id." -msgstr "Fehlende App-ID." - -msgid "Show moodbar" -msgstr "Zeige Stimmungsbarometer" - -msgid "Moodbar style" -msgstr "Stil des Stimmungsbarometers" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "Wütend" - -msgid "Frozen" -msgstr "Eingefroren" - -msgid "Happy" -msgstr "Freude!" - -msgid "System colors" -msgstr "Systemfarben" - -msgid "Strawberry Music Player" -msgstr "Strawberry Musik-Player" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "Abspielen" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "Nächstes Lied" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Beenden" - -msgid "Ctrl+Q" -msgstr "Strg+Q" - -msgid "Ctrl+Alt+V" -msgstr "Strg+Alt+V" - -msgid "&Clear playlist" -msgstr "Wiedergabeliste zurücksetzen" - -msgid "Ctrl+K" -msgstr "Strg+K" - -msgid "Ctrl+E" -msgstr "Strg+E" - -msgid "Renumber tracks in this order..." -msgstr "Musiktitel in dieser Reihenfolge neu nummerieren …" - -msgid "Set value for all selected tracks..." -msgstr "Wert für ausgewählte Titel einstellen …" - -msgid "Edit tag..." -msgstr "Schlagwort bearbeiten …" - -msgid "&Settings..." -msgstr "&Einstellungen..." - -msgid "Ctrl+P" -msgstr "Strg+P" - -msgid "&About Strawberry" -msgstr "&Über Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "M&ische die Wiedergabeliste" - -msgid "Ctrl+H" -msgstr "Strg+H" - -msgid "&Add file..." -msgstr "&Datei hinzufügen..." - -msgid "Ctrl+Shift+A" -msgstr "Strg+Umschalt+A" - -msgid "&Open file..." -msgstr "Datei öffnen" - -msgid "Open audio &CD..." -msgstr "Öffne Audio &CD" - -msgid "&Cover Manager" -msgstr "&Titelbildverwaltung" - -msgid "C&onsole" -msgstr "Konsole" - -msgid "&Shuffle mode" -msgstr "&Zufallsmodus" - -msgid "&Repeat mode" -msgstr "&Wiederholungsart" - -msgid "Remove from playlist" -msgstr "Aus der Wiedergabeliste entfernen" - -msgid "&Equalizer" -msgstr "" - -msgid "&Transcode Music" -msgstr "Musik umwandeln" - -msgid "Add &folder..." -msgstr "&Ordner hinzufügen..." - -msgid "&Jump to the currently playing track" -msgstr "Zum aktuell abgespielten Lied springen" - -msgid "Ctrl+J" -msgstr "Strg+J" - -msgid "&New playlist" -msgstr "Neue Wiedergabeliste" - -msgid "Ctrl+N" -msgstr "Strg+N" - -msgid "Save &playlist..." -msgstr "Speichere W&iedergabeliste" - -msgid "Ctrl+S" -msgstr "Strg+S" - -msgid "&Load playlist..." -msgstr "Wiedergabeliste laden" - -msgid "Ctrl+Shift+O" -msgstr "Strg+Umschalt+O" - -msgid "&Save all playlists..." -msgstr "Alle Wiedergabelisten speichern..." - -msgid "Go to next playlist tab" -msgstr "Zum nächsten Wiedergabelistenreiter wechseln" - -msgid "Go to previous playlist tab" -msgstr "Zum vorherigen Wiedergabelistenreiter wechseln" - -msgid "&Update changed collection folders" -msgstr "&Aktualisieren der veränderten Bibliotheks-Ordner" - -msgid "About &Qt" -msgstr "Über &Qt" - -msgid "&Mute" -msgstr "&Stummschalten" - -msgid "Ctrl+M" -msgstr "Strg+M" - -msgid "&Do a full collection rescan" -msgstr "&Die gesamte Bibliothek neu scannen" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Schlagworte automatisch vervollständigen …" - -msgid "Ctrl+T" -msgstr "Strg+T" - -msgid "Toggle scrobbling" -msgstr "Scrobbeln ein- oder ausschalten" - -msgid "Remove &duplicates from playlist" -msgstr "Entferne &Duplikate aus der Wiedergabeliste" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Entferne &Unverfügbare Titel aus der Wiedergabeliste" - -msgid "Add file(s) to transcoder" -msgstr "Datei(en) zum Umwandler hinzufügen" - -msgid "Add file to transcoder" -msgstr "Datei zum Umwandler hinzufügen" - -msgid "Add stream..." -msgstr "Datenstrom hinzufügen..." - -msgid "Show sidebar" -msgstr "Seitenleiste anzeigen" - -msgid "Import data from last.fm..." -msgstr "Importieren Sie Daten aus last.fm..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Musik" - -msgid "P&laylist" -msgstr "P&layliste" - -msgid "Help" -msgstr "Hilfe" - -msgid "&Tools" -msgstr "Werk&zeuge" - -msgid "Collection advanced grouping" -msgstr "Erweiterte Bibliothekssortierung" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Sie können die Organisation der Songs in der Bibliothek ändern." - -msgid "Group Collection by..." -msgstr "Bibliothek sortieren nach …" - -msgid "Second level" -msgstr "Zweite Stufe" - -msgid "Third level" -msgstr "Dritte Stufe" - -msgid "Separate albums by grouping tag" -msgstr "Alben nach Sortierung-Schlagwort trennen" - -msgid "Collection Filter" -msgstr "Bibliotheksfilter" - -msgid "Entire collection" -msgstr "Gesamte Bibliothek" - -msgid "Added today" -msgstr "Heute hinzugefügt" - -msgid "Added this week" -msgstr "Diese Woche hinzugefügt" - -msgid "Added within three months" -msgstr "In den letzten drei Monaten hinzugefügt" - -msgid "Added this year" -msgstr "Dieses Jahr hinzugefügt" - -msgid "Added this month" -msgstr "Diesen Monat hinzugefügt" - -msgid "Save current grouping" -msgstr "Aktuelle Sortierung speichern" - -msgid "Manage saved groupings" -msgstr "Gespeicherte Sortierungen verwalten" - -msgid "Enter search terms here" -msgstr "Bibliothek durchsuchen" - -msgid "Form" -msgstr "Formular" - -msgid "Saved Grouping Manager" -msgstr "Gespeicherte Sortierung verwalten" - -msgid "Remove" -msgstr "Entfernen" - -msgid "Ctrl+Up" -msgstr "Strg+Oben" - -msgid "File paths" -msgstr "Dateipfade" - -msgid "This can be changed later through the preferences" -msgstr "Das kann später in den Einstellungen geändert werden" - -msgid "Remember my choice" -msgstr "Meine Auswahl merken" - -msgid "Stop after each track" -msgstr "Wiedergabe nach jedem Titel anhalten" - -msgid "Repeat" -msgstr "Wiederholung" - -msgid "Shuffle" -msgstr "Zufallsmodus" - -msgid "Dynamic mode is on" -msgstr "Dynamischer Modus ist an" - -msgid "New tracks will be added automatically." -msgstr "Neue Titel werden automatisch hinzugefügt." - -msgid "Expand" -msgstr "Ausdehnen" - -msgid "Repopulate" -msgstr "Neu füllen" - -msgid "Turn off" -msgstr "Abschalten" - -msgid "QueueView" -msgstr "Ansicht Warteschlange" - -msgid "Move down" -msgstr "Nach unten" - -msgid "Move up" -msgstr "Nach oben" - -msgid "Ctrl+Down" -msgstr "Strg+Down" - -msgid "Search mode" -msgstr "Suchmodus" - -msgid "Match every search term (AND)" -msgstr "Passend zu jedem Suchbegriff (UND)" - -msgid "Match one or more search terms (OR)" -msgstr "Übereinstimmend mit einem oder mehreren Suchbegriffen (ODER)" - -msgid "Include all songs" -msgstr "Alle Titel zusammen" - -msgid "Sorting" -msgstr "Sortieren" - -msgid "Put songs in a random order" -msgstr "Ordne die Songs in zufälliger Reihenfolge an" - -msgid "Sort songs by" -msgstr "Sortiere Titel nach" - -msgid "Limits" -msgstr "Begrenzungen" - -msgid "Show all the songs" -msgstr "Zeige alle Lieder" - -msgid "Only show the first" -msgstr "Zeige nur die ersten" - -msgid " songs" -msgstr "Lieder" - -msgid "Preview" -msgstr "Vorschau" - -msgid "and" -msgstr "und" - -msgid "ago" -msgstr "zuvor" - -msgid "New smart playlist" -msgstr "Neue intelligente Wiedergabeliste" - -msgid "Edit smart playlist" -msgstr "Bearbeiten Sie die intelligente Wiedergabeliste" - -msgid "Use dynamic mode" -msgstr "Benutze den dynamischen Modus" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "Im dynamischen Modus werden bei jedem Ende eines Songs neue Titel ausgewählt und zur Wiedergabeliste hinzugefügt." - -msgid "Export covers" -msgstr "Titelbilder exportieren" - -msgid "Output" -msgstr "Ausgabe" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Dateiname für exportierte Titelbilder eingeben (ohne Dateiendung):" - -msgid "Export downloaded covers" -msgstr "Heruntergeladene Titelbilder exportieren" - -msgid "Export embedded covers" -msgstr "Eingebettete Titelbilder exportieren" - -msgid "Existing covers" -msgstr "Existierende Titelbilder" - -msgid "Do not overwrite" -msgstr "Nicht überschreiben" - -msgid "O&verwrite all" -msgstr "Alles überschreiben" - -msgid "Overwrite s&maller ones only" -msgstr "Überschreibe nur k&leinere" - -msgid "Size" -msgstr "Größe" - -msgid "Scale size" -msgstr "Bildgröße anpassen" - -msgid "Size:" -msgstr "Größe:" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "Titelbildverwaltung" - -msgid "Fetch automatically" -msgstr "Automatisch abrufen" - -msgid "Load" -msgstr "Laden" - -msgid "Add to playlist" -msgstr "Zur Wiedergabeliste hinzufügen" - -msgid "View" -msgstr "Ansicht" - -msgid "Total albums:" -msgstr "Gesamte Alben:" - -msgid "Without cover:" -msgstr "Ohne Titelbild:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Fehlende Titelbilder abrufen" - -msgid "Export Covers" -msgstr "Titelbilder exportieren" - -msgid "Fetch completed" -msgstr "Abrufen abgeschlossen" - -msgid "Load cover from URL" -msgstr "Titelbild von Adresse laden" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Geben Sie eine Adresse ein, um das Titelbild aus dem Internet herunterzuladen:" - -msgid "Settings" -msgstr "Einstellungen" - -msgid "Behavior" -msgstr "Verhalten" - -msgid "Show system tray icon" -msgstr "Zeige das Symbol in der Systemleiste" - -msgid "Keep running in the background when the window is closed" -msgstr "Im Hintergrund weiterlaufen lassen, wenn das Fenster geschlossen wurde" - -msgid "Show song progress on system tray icon" -msgstr "Zeigen Sie den Song-Fortschritt auf dem Taskleisten Symbol an" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Wiedergabe beim Start fortsetzten" - -msgid "Show playing widget" -msgstr "Zeige Abspielwidget" - -msgid "On startup" -msgstr "Beim Laden" - -msgid "Remember from &last time" -msgstr "Erinnerung an &letztes Mal" - -msgid "Show the main window" -msgstr "Zeige das Hauptfenster" - -msgid "Hide the main window" -msgstr "Das Hauptfenster verbergen" - -msgid "Show the main window maximized" -msgstr "Zeige das Hauptfenster maximiert" - -msgid "Show the main window minimized" -msgstr "Zeige das Hauptfenster minimiert" - -msgid "Language" -msgstr "Sprache" - -msgid "Use the system default" -msgstr "Standardeinstellungen des Systems benutzen" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Sie müssen Strawberry nach dem Ändern der Sprache neu starten." - -msgid "Using the menu to add a song will..." -msgstr "Beim Hinzufügen eines Titels über das Kontextmenü …" - -msgid "Never start playing" -msgstr "Nie mit der Wiedergabe beginnen" - -msgid "Play if there is nothing already playing" -msgstr "Mit der Wiedergabe beginnen, falls gerade nichts anderes abgespielt wird" - -msgid "Always start playing" -msgstr "Immer mit der Wiedergabe beginnen" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Im Spieler auf »Vorheriger« drücken, wird …" - -msgid "Jump to previous song right away" -msgstr "Gleich zum vorherigen Titel springen" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Titel neu starten, dann zum vorherigen Titel springen, wenn nochmal gedrückt" - -msgid "Double clicking a song will..." -msgstr "Beim Doppelklick auf einen Titel diesen …" - -msgid "Append to the playlist" -msgstr "Zur Wiedergabeliste hinzufügen" - -msgid "Replace the playlist" -msgstr "Die Wiedergabeliste ersetzen lassen" - -msgid "Add to the queue" -msgstr "In die Warteschlange einreihen" - -msgid "Double clicking a song in the playlist will..." -msgstr "Doppelt auf einen Titel in der Wiedergabeliste klicken wird …" - -msgid "Change the currently playing song" -msgstr "Den aktuell spielenden Titel ändern" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Mit Tastaturkürzel oder Mausrad spulen" - -msgid "Time step" -msgstr "Zeitschritt" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Diese Ordner werden durchsucht, um Ihre Bibliothek zu erstellen" - -msgid "Add new folder..." -msgstr "Neuen Ordner hinzufügen …" - -msgid "Remove folder" -msgstr "Ordner entfernen" - -msgid "Automatic updating" -msgstr "Automatisches Aktualisieren" - -msgid "Update the collection when Strawberry starts" -msgstr "Bibliothek beim Programmstart aktualisieren" - -msgid "Monitor the collection for changes" -msgstr "Bibliothek auf Änderungen überwachen" - -msgid "Song fingerprinting and tracking" -msgstr "Song-Fingerprinting und -Tracking" - -msgid "Mark disappeared songs unavailable" -msgstr "Verschwundene Lieder als nicht verfügbar markieren" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "Durchführung einer EBU R 128 Analyse (Benötigt für EBU R 128 Lautstärke-Normalisierung)" - -msgid "Expire unavailable songs after" -msgstr "Nicht verfügbare Lieder laufen ab nach" - -msgid "days" -msgstr "Tage" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Bevorzugte Dateinamen für Titelbilder (durch Komma getrennt):" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Auf der Suche nach Titelbildern wird Strawberry zuerst nach Bilddateien suchen, die eines dieser Wörter enthalten.\n" -"Falls es keine Treffer gibt, wird das größte Bild aus dem Verzeichnis ausgewählt." - -msgid "Automatically open single categories in the collection tree" -msgstr "Im Bibliotheksbaum automatisch Einzelkategorien öffnen" - -msgid "Show dividers" -msgstr "Trenner anzeigen" - -msgid "Show album cover art in collection" -msgstr "Zeige Titelbilder in der Bibliothek" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Titelbilder-Cache" - -msgid "Enable Disk Cache" -msgstr "Cachespeicher einschalten" - -msgid "Disk Cache Size" -msgstr "Größe des Cachespeichers auf der Festplatte" - -msgid "Current disk cache in use:" -msgstr "Aktuell wird dieser Cachespeicher genutzt:" - -msgid "Clear Disk Cache" -msgstr "Lösche Cachespeicher" - -msgid "Song playcounts and ratings" -msgstr "Wiedergabezahlen und Bewertungen für Song" - -msgid "Save playcounts to song tags when possible" -msgstr "Wiedergabezahlen nach Möglichkeit in Song-Tags speichern" - -msgid "Save ratings to song tags when possible" -msgstr "Speichern Sie Bewertungen nach Möglichkeit in Song-Tags" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Wiedergabezahl in der Datenbank überschreiben, wenn Songs erneut von der Festplatte eingelesen werden" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Bewertung in der Datenbank überschreiben, wenn Songs erneut von der Festplatte eingelesen werden" - -msgid "Save playcounts and ratings to files now" -msgstr "Wiedergabezahlen und Bewertungen jetzt in Dateien speichern" - -msgid "Enable delete files in the right click context menu" -msgstr "Aktivieren Sie das Löschen von Dateien im Kontextmenü mit der rechten Maustaste" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Tonausgabe" - -msgid "Engine" -msgstr "" - -msgid "ALSA plugin:" -msgstr "ALSA-Plugin:" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "PCM" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "Optionen" - -msgid "Enable volume control" -msgstr "Lautstärkeregler einschalten" - -msgid "Upmix / downmix to" -msgstr "Upmix/Downmix zu" - -msgid "channels" -msgstr "Kanäle" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "Kopfhörer-Wiedergabe von Stereo-Aufnahmen verbessern (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "HTTP/2 für Streaming aktivieren" - -msgid "Use strict SSL mode" -msgstr "\"Strict SSL\" Modus verwenden" - -msgid "Buffer" -msgstr "Puffer" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Pufferdauer" - -msgid "High watermark" -msgstr "Höchstwert" - -msgid "Low watermark" -msgstr "Niedrigster Wert" - -msgid "Defaults" -msgstr "Voreinstellungen" - -msgid "Audio normalization" -msgstr "Audio-Normalisierung" - -msgid "No audio normalization" -msgstr "Keine Audio-Normalisierung" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Replay Gain Metadaten benutzen, wenn verfügbar" - -msgid "Replay Gain mode" -msgstr "Replay Gain" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (gleicher Pegel für alle Titel)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (idealer Pegel für alle Titel)" - -msgid "Apply compression to prevent clipping" -msgstr "Komprimieren um Übersteuerung zu vermeiden" - -msgid "Fallback-gain" -msgstr "Gespeichertes Gain" - -msgid "EBU R 128 Loudness Normalization" -msgstr "EBU R 128 Lautstärke Normalisierung" - -msgid "Perform track loudness normalization" -msgstr "Lautstärke-Normalisierung anwenden" - -msgid "Target Level" -msgstr "Ziel Level:" - -msgid "Fading" -msgstr "Überblenden" - -msgid "Fade out when stopping a track" -msgstr "Ausblenden, wenn ein Titel angehalten wird" - -msgid "Cross-fade when changing tracks manually" -msgstr "Überblenden bei manuellem Titelwechsel" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Überblenden bei automatischem Titelwechsel" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Außer für Titel des gleichen Albums oder des gleichen Cuesheets." - -msgid "Fading duration" -msgstr "Dauer:" - -msgid "Fade out on pause / fade in on resume" -msgstr "Ausblenden bei Pause / Einblenden beim Fortsetzen" - -msgid "Add song artist tag" -msgstr "Interpret des aktuellen Titels" - -msgid "Add song album tag" -msgstr "Album des aktuellen Titels" - -msgid "Add song title tag" -msgstr "Titelname hinzufügen" - -msgid "Add song albumartist tag" -msgstr "Albuminterpret des aktuellen Titels" - -msgid "Add song year tag" -msgstr "Titelerscheinungsjahr hinzufügen" - -msgid "Add song composer tag" -msgstr "Titelkomponist hinzufügen" - -msgid "Add song performer tag" -msgstr "Titelbesetzung hinzufügen" - -msgid "Add song grouping tag" -msgstr "Titelsortierung hinzufügen" - -msgid "Add song disc tag" -msgstr "Titelmedium hinzufügen" - -msgid "Add song track tag" -msgstr "Titelnummer hinzufügen" - -msgid "Add song genre tag" -msgstr "Titelgenre hinzufügen" - -msgid "Add song length tag" -msgstr "Titellänge hinzufügen" - -msgid "Add song play count" -msgstr "Titelwiedergabezähler hinzufügen" - -msgid "Add song skip count" -msgstr "Titelübersprungzähler hinzufügen" - -msgid "Add a new line if supported by the notification type" -msgstr "Zeilenumbruch (falls von der gewählten Art der Benachrichtigung unterstützt)" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Titeldateiname hinzufügen" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Lied-URL hinzufügen" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "TItelbewertung hinzufügen" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "Original-Titelerscheinungsjahr hinzufügen" - -msgid "Custom text settings" -msgstr "Benutzerdefinierte Texteinstellungen" - -msgid "Summary" -msgstr "Kopfzeile:" - -msgid "Enable Items" -msgstr "Elemente aktivieren" - -msgid "Technical Data" -msgstr "Technische Daten" - -msgid "Song Lyrics" -msgstr "Liedtexte" - -msgid "Automatically search for album cover" -msgstr "Automatisch nach Titelbildern suchen" - -msgid "Font for headline" -msgstr "Schriftart für die Überschrift" - -msgid "Font" -msgstr "Schriftart" - -msgid "Font size" -msgstr "Schriftgröße" - -msgid " pt" -msgstr ".pt" - -msgid "Font for data and lyrics" -msgstr "Schriftart für Daten und Liedtexte" - -msgid "Use alternating row colors" -msgstr "Verwenden Sie abwechselnde Zeilenfarben" - -msgid "Show bars on the currently playing track" -msgstr "Zeigen Sie einen Balken auf dem aktuell wiedergegebenen Titel an" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Zeigen Sie eine leuchtende Animation auf dem aktuell abgespielten Titel" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Zum nächsten Lied in der Wiedergabeliste weitergehen, wenn das Lied nicht verfügbar ist" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Ausgrauen von Liedern während des Abspielens, die nicht verfügbar sind " - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Ausgrauen von Liedern während des Startens, die nicht verfügbar sind " - -msgid "Automatically select current playing track" -msgstr "Automatisch den aktuellen Song auswählen" - -msgid "Enable playlist toolbar" -msgstr "Wiedergabelisten-Toolbar aktivieren" - -msgid "Enable playlist clear button" -msgstr "Wiedergabeliste löschen - Knopf aktivieren" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Sortierliste beim Einfügen von Songs automatisch sortieren" - -msgid "When saving a playlist, file paths should be" -msgstr "Beim Speichern einer Wiedergabeliste sollte der Dateipfad folgendes sein" - -msgid "A&utomatic" -msgstr "A&utomatisch" - -msgid "Absolu&te" -msgstr "Absolu&t" - -msgid "Re&lative" -msgstr "Re&lativ" - -msgid "As&k when saving" -msgstr "Nachfragen beim Speichern" - -msgid "Metadata" -msgstr "Metadaten" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Wenn aktiviert, können Sie mit einem Klick auf einen Titel in der Wiedergabeliste, die Schlagwortwerte direkt bearbeiten" - -msgid "Enable song metadata inline edition with click" -msgstr "Direktausgabe der Titelmetadaten mit Klick aktivieren" - -msgid "Write metadata when saving playlists" -msgstr "Metadaten schreiben, wenn Wiedergabelisten gespeichert werden" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Aktivieren" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Lieder werden gescrobbelt, wenn sie gültige Metadaten haben und länger als 30 Sekunden sind, mindestens die Hälfte ihrer Dauer oder 4 Minuten (je nachdem, was früher eintritt) abgespielt wurden." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Offline arbeiten (Nur im Speicher scrobbeln)" - -msgid "Show scrobble button" -msgstr "Zeige den Knopf fürs Scrobbeln" - -msgid "Show love button" -msgstr "Zeige den Knopf für Lieben" - -msgid "Submit scrobbles every" -msgstr "Übermittle Scrobbles alle" - -msgid " seconds" -msgstr " Sekunden" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "Dies ist die Verzögerung zwischen dem Scrobblen eines Songs und dem Senden der Scrobbles an den Server. Wenn Sie die Zeit auf 0 Sekunden einstellen, werden Scrobbles sofort gesendet)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Alben Künstler bevorzugen wenn man Scrobbler sendet" - -msgid "Show dialog for errors" -msgstr "Dialogfeld für Fehler anzeigen" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Scrobbeln für die folgenden Quellen aktivieren:" - -msgid "Local file" -msgstr "Lokale Datei" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Datenstrom" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Anmelden" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "ListenBrainz" - -msgid "User token:" -msgstr "Benutzer-Token:" - -msgid "Covers" -msgstr "Titelbilder" - -msgid "Cover providers" -msgstr "Anbieter für Titelbilder" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Wählen Sie die Anbieter aus, die Sie für die Suche nach Titelbildern nutzen wollen." - -msgid "Authentication" -msgstr "Authentifizierung" - -msgid "Album cover types" -msgstr "Titelbild Arten" - -msgid "Saving album covers" -msgstr "Speichere Titelbilder" - -msgid "Save album covers in album directory" -msgstr "Speichere Titelbilder im Album Ordner" - -msgid "Save album covers in cache directory" -msgstr "Titelbilder im Cache-Verzeichnis speichern" - -msgid "Save album covers as embedded cover" -msgstr "Speichere Titelbilder als eingebettetes Titelbild" - -msgid "Filename:" -msgstr "Dateiname:" - -msgid "Pattern" -msgstr "Muster" - -msgid "Random" -msgstr "Zufällig" - -msgid "Overwrite existing file" -msgstr "Überschreibe bestehende Datei" - -msgid "Lowercase filename" -msgstr "Dateiname in Kleinbuchstaben" - -msgid "Replace spaces with dashes" -msgstr "Leerzeichen durch Bindestriche ersetzen" - -msgid "Lyrics" -msgstr "Songtexte" - -msgid "Lyrics providers" -msgstr "Anbieter für Songtexte" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Wähle die Anbieter aus, die du für die Suche nach Liedtexten nutzen willst. " - -msgid "Network Proxy" -msgstr "Netzwerkvermittlung" - -msgid "&Use the system proxy settings" -msgstr "System-Proxy-Einstellungen verwenden" - -msgid "Direct internet connection" -msgstr "Direkte Verbindung zum Internet" - -msgid "&Manual proxy configuration" -msgstr "&Manuelle Konfiguration des Proxy" - -msgid "HTTP proxy" -msgstr "HTTP-Proxy" - -msgid "SOCKS proxy" -msgstr "SOCKS-Proxy" - -msgid "Port" -msgstr "Anschluss (Port)" - -msgid "Use authentication" -msgstr "Legitimierung verwenden" - -msgid "Username" -msgstr "Benutzername" - -msgid "Password" -msgstr "Passwort:" - -msgid "Use proxy settings for streaming" -msgstr "Verwenden Sie die Proxy-Einstellungen für das Streaming" - -msgid "Appearance" -msgstr "Erscheinungsbild" - -msgid "Style" -msgstr "Stil" - -msgid "Use system theme icons" -msgstr "Symbole des System-Themes verwenden" - -msgid "Settings require restart." -msgstr "Einstellungen erfordern einen Neustart. " - -msgid "Tabbar colors" -msgstr "Farben der Reiterleiste" - -msgid "&Use the system default color" -msgstr "System Standardfarben benutzen" - -msgid "Use custom color" -msgstr "Benutze benutzerdefinierte Farbe" - -msgid "Use gradient background" -msgstr "Benutze Hintergrund mit Farbverlauf" - -msgid "Select tabbar color:" -msgstr "Wähle die Farbe der Reiterleiste" - -msgid "Background image" -msgstr "Hintergrundbild" - -msgid "Default bac&kground image" -msgstr "Default Hintergrundbild" - -msgid "&No background image" -msgstr "Kein Hintergrundbild" - -msgid "The album cover of the currently playing song" -msgstr "Das Titelbild des gerade abgespielten Titels" - -msgid "Albu&m cover" -msgstr "" - -msgid "Custom image:" -msgstr "Benutzerdefiniertes Bild:" - -msgid "Browse..." -msgstr "Durchsuchen …" - -msgid "Position" -msgstr "" - -msgid "Upper Left" -msgstr "Oben links" - -msgid "Upper Right" -msgstr "Oben rechts" - -msgid "Middle" -msgstr "Mitte" - -msgid "Bottom Left" -msgstr "Unten links" - -msgid "Bottom Right" -msgstr "Unten rechts" - -msgid "Max cover size" -msgstr "Maximale Titelbildgröße" - -msgid "Stretch image to fill playlist" -msgstr "Bild strecken, um die Wiedergabeliste zu füllen" - -msgid "Keep aspect ratio" -msgstr "Das Seitenverhältnis behalten" - -msgid "Do not cut image" -msgstr "Bild nicht beschneiden" - -msgid "Blur amount" -msgstr "Unschärfe" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Deckkraft" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "Größe der Symbole" - -msgid "Playlist buttons" -msgstr "Steuerung der Playliste" - -msgid "Tabbar large mode" -msgstr "Tab-Leiste großer Modus" - -msgid "Play control buttons" -msgstr "Steuerungstasten" - -msgid "Configure buttons" -msgstr "Knöpfe einrichten" - -msgid "Files, playlists and queue buttons" -msgstr "Tasten für Dateien, Playlisten und Warteschlange" - -msgid "Tabbar small mode" -msgstr "Tab-Leiste kleiner Modus" - -msgid "Playlist playing song color" -msgstr "Playlist spielt Songfarbe" - -msgid "System highlight color" -msgstr "Hervorhebungsfarbe des Systems" - -msgid "Custom color" -msgstr "Benutzerdefinierte Farbe" - -msgid "Select playlist playing song color:" -msgstr "Wählen Sie die Wiedergabeliste, in der die Songfarbe wiedergegeben wird:" - -msgid "Notifications" -msgstr "Benachrichtigungen" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry kann Benachrichtigungen beim Titelwechsel anzeigen" - -msgid "Notification type" -msgstr "Art der Benachrichtigung" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Deaktiviert" - -msgid "Show a &native desktop notification" -msgstr "Zeige die &Desktop Benachrichtigungen an" - -msgid "Show a pretty OSD" -msgstr "Strawberry-Bildschirmanzeige anzeigen" - -msgid "Show a popup fro&m the system tray" -msgstr "Zeige ein Popup vo&n der Systemleiste" - -msgid "General settings" -msgstr "Allgemeine Einstellungen" - -msgid "Popup duration" -msgstr "Anzeigedauer" - -msgid "Disable duration" -msgstr "Permanente Anzeige" - -msgid "Show a notification when I change the volume" -msgstr "Benachrichtigung bei Änderung der Lautstärke anzeigen" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Eine Benachrichtigung, bei Änderung der Wiederholungsart bzw. des Zufallsmodus, anzeigen" - -msgid "Show a notification when I pause playback" -msgstr "Eine Benachrichtigung anzeigen, wenn die Wiedergabe angehalten wird" - -msgid "Show a notification when I resume playback" -msgstr "Zeige eine Benachrichtigung, wenn ich wieder abspiele" - -msgid "Include album art in the notification" -msgstr "Titelbild in der Benachrichtigung anzeigen" - -msgid "Custom message settings" -msgstr "Benutzerdefinierte Benachrichtigungseinstellungen" - -msgid "Use a custom message for notifications" -msgstr "Einen benutzerdefinierten Text für Benachrichtigungen benutzen" - -msgid "Body" -msgstr "Textkörper:" - -msgid "Pretty OSD options" -msgstr "Einstellungen für die Strawberry-Bildschirmanzeige" - -msgid "Background color" -msgstr "Hintergrundfarbe:" - -msgid "Text options" -msgstr "Texteinstellungen:" - -msgid "Choose font..." -msgstr "Schriftart wählen …" - -msgid "Choose color..." -msgstr "Farbe wählen …" - -msgid "Background opacity" -msgstr "Deckkraft:" - -msgid "Basic Blue" -msgstr "Standardblau" - -msgid "Strawberry Red" -msgstr "Strawberry Rot" - -msgid "Custom..." -msgstr "Eigene …" - -msgid "Enable fading" -msgstr "Ein-/Ausblenden aktivieren" - -msgid "Equalizer" -msgstr "" - -msgid "Preset:" -msgstr "Voreinstellung:" - -msgid "Enable equalizer" -msgstr "Equalizer aktivieren" - -msgid "Enable stereo balancer" -msgstr "Stereo Verteiler einschalten" - -msgid "Left" -msgstr "Links" - -msgid "Balance" -msgstr "" - -msgid "Right" -msgstr "Rechts" - -msgid "About" -msgstr "Über" - -msgid "Strawberry Error" -msgstr "Strawberry-Fehler" - -msgid "Console" -msgstr "Konsole" - -msgid "Run" -msgstr "Ausführen" - -msgid "Edit track information" -msgstr "Metadaten bearbeiten" - -msgid "Date created" -msgstr "Erstellt" - -msgid "Art Automatic" -msgstr "Bild automatisch" - -msgid "Date modified" -msgstr "Geändert" - -msgid "Art Embedded" -msgstr "Bild eingebettet" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Zuletzt gespielt" - -msgid "Play count" -msgstr "Wiedergabezähler" - -msgid "EBU R 128 integrated loudness" -msgstr "EBU R 128 Integrierte Lautheit" - -msgid "Bit rate" -msgstr "Bitrate" - -msgid "Skip count" -msgstr "Übersprungzähler" - -msgid "Path" -msgstr "Dateipfad" - -msgid "Filename" -msgstr "Dateiname" - -msgid "Art Unset" -msgstr "Bild nicht gesetzt" - -msgid "File size" -msgstr "Dateigröße" - -msgid "Art Manual" -msgstr "Bild manuell" - -msgid "EBU R 128 loudness range" -msgstr "EBU R 128 Lautstärke Bereich" - -msgid "Reset play counts" -msgstr "Wiedergabezähler zurücksetzen" - -msgid "Change art" -msgstr "Bild ändern" - -msgid "Embedded cover" -msgstr "Eingebettetes Titelbild" - -msgid "Complete tags automatically" -msgstr "Schlagworte automatisch vervollständigen" - -msgid "Compilation" -msgstr "Zusammenstellung" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Schlagwortsammler" - -msgid "Sorry" -msgstr "Entschuldigung" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry konnte keine Ergebnisse für diese Datei finden." - -msgid "Select best possible match" -msgstr "Bitte die bestmögliche Übereinstimmung auswählen" - -msgid "Add Stream" -msgstr "Datenstrom hinzufügen" - -msgid "Enter the URL of a stream:" -msgstr "Gebe die URL eines Datenstromes ein:" - -msgid "Enter username and password" -msgstr "Geben Sie Benutzername und Passwort ein" - -msgid "Import data from last.fm" -msgstr "Importieren Sie Daten aus last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Wählen Sie die zu importierenden Daten aus last.fm aus" - -msgid "Play counts" -msgstr "Wiedergabezähler" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Warnung: Der Wiedergabezähler und das letzte Wiedergabedatum von last.fm ersetzen vollständig dieselben Daten für die übereinstimmenden Songs. Der Wiedergabezähler ersetzt die Daten basierend auf dem Interpreten und dem Songtitel für dieselben Alben! Bitte sichern Sie Ihre Datenbank, bevor Sie beginnen." - -msgid "Go!" -msgstr "Los!" - -msgid "Close" -msgstr "Schließen" - -msgid "Cancel" -msgstr "Abbrechen" - -msgid "Message Dialog" -msgstr "Meldungsfenster" - -msgid "Do not show this message again." -msgstr "Zeige diese Nachricht nicht wieder." - -msgid "Select directory for saving playlists" -msgstr "Wählen Sie ein Verzeichnis zum Speichern von Wiedergabelisten" - -msgid "Type" -msgstr "Typ" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Klicken Sie, um zwischen verbleibender und Gesamtzeit zu wechseln" - -msgid "You are not signed in." -msgstr "Sie sind nicht angemeldet." - -msgid "Sign out" -msgstr "Abmelden" - -msgid "Signing in..." -msgstr "Anmelden …" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Künstler" - -msgid "Albums" -msgstr "Alben" - -msgid "Songs" -msgstr "Lieder" - -msgid "Refresh catalogue" -msgstr "Bibliothek erneuern" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "Künstler" - -msgid "albums" -msgstr "Alben" - -msgid "songs" -msgstr "Titel" - -msgid "Organize Files" -msgstr "Dateien organisieren" - -msgid "Destination" -msgstr "Ziel:" - -msgid "After copying..." -msgstr "Nach dem Kopieren …" - -msgid "Keep the original files" -msgstr "Ursprüngliche Dateien behalten" - -msgid "Delete the original files" -msgstr "Ursprüngliche Dateien löschen" - -msgid "Naming options" -msgstr "Benennungsoptionen" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Schlüsselwörter beginnen mit %, zum Beispiel: %artist %album %title

\n\n" -"

Steht ein Textbereich in geschweiften Klammern, wird dieser nicht angezeigt, falls das Schlüsselwort leer ist.

" - -msgid "Insert..." -msgstr "Einfügen …" - -msgid "Remove problematic characters from filenames" -msgstr "Entferne problematische Zeichen aus Dateinamen" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Beschränke auf die in FAT-Dateisystemen erlaubten Zeichen" - -msgid "Restrict characters to ASCII" -msgstr "Beschränke Zeichen auf ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Erlaube erweiterte ASCII Zeichen" - -msgid "Replace spaces with underscores" -msgstr "Leerzeichen mit Unterstrichen ersetzen" - -msgid "Overwrite existing files" -msgstr "Bestehende Dateien überschreiben" - -msgid "Copy album cover artwork" -msgstr "Kopiere Titelbild" - -msgid "Safely remove the device after copying" -msgstr "Das Gerät nach dem Kopiervorgang sicher entfernen" - -msgid "Press a key" -msgstr "Taste drücken" - -msgid "Global Shortcuts" -msgstr "Allgemeine Tastenkürzel" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Verwenden Sie Gnome-Verknüpfungen (GSD), sofern verfügbar" - -msgid "Open..." -msgstr "Öffnen …" - -msgid "Use MATE shortcuts when available" -msgstr "Verwenden Sie MATE-Shortcuts, wenn verfügbar" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Verwenden Sie KDE-Verknüpfungen (KGlobalAccel), sofern verfügbar" - -msgid "Use X11 shortcuts when available" -msgstr "Verwenden Sie X11-Verknüpfungen, sofern verfügbar" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Sie müssen die Systemeinstellungen öffnen und \"Zugriff für Hilfsgeräte aktivieren\" in »Bedienhilfen« aktivieren, um Strawberrys Tastenkürzel zu benutzen." - -msgid "Shortcut" -msgstr "Tastenkürzel" - -msgctxt "Category label" -msgid "Action" -msgstr "Aktion" - -msgid "&None" -msgstr "&Keine" - -msgid "&Default" -msgstr "" - -msgid "&Custom" -msgstr "&Benutzerdefiniert" - -msgid "Change shortcut..." -msgstr "Tastenkürzel ändern …" - -msgid "Device Properties" -msgstr "Geräteeinstellungen" - -msgid "Icon" -msgstr "Symbol" - -msgid "Hardware information" -msgstr "Hardwareinformationen" - -msgid "Hardware information is only available while the device is connected." -msgstr "Die Hardwareinformationen sind nur verfügbar, solange das Gerät angeschlossen ist." - -msgid "Information" -msgstr "" - -msgid "Supported formats" -msgstr "Unterstützte Formate" - -msgid "This device supports the following file formats:" -msgstr "Dieses Gerät unterstützt die folgenden Dateiformate:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry kann die Musik, die Sie auf dieses Gerät kopieren, automatisch in ein Format umwandeln, welches das Gerät wiedergeben kann." - -msgid "Do not convert any music" -msgstr "Nichts umwandeln" - -msgid "Convert any music that the device can't play" -msgstr "Musik umwandeln, die das Gerät nicht wiedergeben kann" - -msgid "Convert all music" -msgstr "Gesamte Musik umwandeln" - -msgid "Preferred format" -msgstr "Bevorzugtes Format" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Dieses Gerät muss verbunden und geöffnet sein, bevor Strawberry feststellen kann, welche Dateiformate es unterstützt." - -msgid "Open device" -msgstr "Gerät öffnen" - -msgid "Querying device..." -msgstr "Gerät wird abgefragt …" - -msgid "File formats" -msgstr "Dateiformate" - -msgid "Transcode Music" -msgstr "Musik umwandeln" - -msgid "Files to transcode" -msgstr "Dateien zum Umwandeln" - -msgid "Directory" -msgstr "Verzeichnis" - -msgid "Add..." -msgstr "Hinzufügen..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Alle Titel aus einem Verzeichnis, inklusive Unterverzeichnisse, hinzufügen" - -msgid "Import..." -msgstr "Importieren" - -msgid "Output options" -msgstr "Ausgabeoptionen" - -msgid "Audio format" -msgstr "Tonformat" - -msgid "Options..." -msgstr "Optionen …" - -msgid "Alongside the originals" -msgstr "Neben den ursprünglichen Dateien" - -msgid "Select..." -msgstr "Auswählen …" - -msgid "Progress" -msgstr "Fortschritt" - -msgid "Details..." -msgstr "Details …" - -msgid "Transcoder Log" -msgstr "Umwandlungsprotokoll" - -msgid " kbps" -msgstr "kBit/s" - -msgid "Profile" -msgstr "Profil" - -msgid "Main profile (MAIN)" -msgstr "Hauptprofil (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Geringes Komplexitätsprofil (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Skalierbares Abtastratenprofil (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Langzeitvorhersageprofil (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Zeitliche Rauschformung verwenden" - -msgid "Allow mid/side encoding" -msgstr "Kodierung der Mitten/Seiten zulassen" - -msgid "Block type" -msgstr "Blocktyp" - -msgid "Normal block type" -msgstr "Normaler Blocktyp" - -msgid "No short blocks" -msgstr "Keine kurzen Blöcke" - -msgid "No long blocks" -msgstr "Keine langen Blöcke" - -msgid "Transcoding options" -msgstr "Umwandlungsoptionen" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Qualität" - -msgid "Fast" -msgstr "Schnell" - -msgid "Best" -msgstr "Optimal" - -msgid "Use bitrate management engine" -msgstr "Bitratenverwaltung verwenden" - -msgid "Target bitrate" -msgstr "Ziel-Bitrate" - -msgid "Minimum bitrate" -msgstr "Minimale Bitrate" - -msgid "disabled" -msgstr "abgeschaltet" - -msgid "Maximum bitrate" -msgstr "Maximale Bitrate" - -msgid "automatic" -msgstr "automatisch" - -msgid "Average bitrate" -msgstr "Durchschnittliche Bitrate" - -msgid "Encoding mode" -msgstr "Kodierungsmodus" - -msgid "Auto" -msgstr "Automatisch" - -msgid "Ultra wide band (UWB)" -msgstr "Ulte Weit Band (UWB)" - -msgid "Wide band (WB)" -msgstr "Breitband (WB)" - -msgid "Narrow band (NB)" -msgstr "Schmal-Band (NB)" - -msgid "Variable bit rate" -msgstr "Variable Bitrate" - -msgid "Voice activity detection" -msgstr "Sprachaktivitätserkennung" - -msgid "Discontinuous transmission" -msgstr "Unterbrochene Übertragung" - -msgid "Encoding complexity" -msgstr "Kodierungkomplexität" - -msgid "Frames per buffer" -msgstr "Frames pro Puffer" - -msgid "Optimize for &quality" -msgstr "Optimiere auf &Qualität" - -msgid "Opti&mize for bitrate" -msgstr "Opti&miere auf Bitrate" - -msgid "Constant bitrate" -msgstr "Konstante Bitrate" - -msgid "Encoding engine quality" -msgstr "Kodierungsqualität" - -msgid "Standard" -msgstr "" - -msgid "High" -msgstr "Hoch" - -msgid "Force mono encoding" -msgstr "Monokodierung erzwingen" - -msgid "Transcoding" -msgstr "Umwandlung" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Diese Einstellungen werden im »Musik umwandeln«-Dialog und beim Umwandeln von Musik vor der Übertragung auf ein Gerät verwendet." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "" - -msgid "Authentication method:" -msgstr "Authentifizierungsmethode:" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Einstellungen" - -msgid "Use HTTP/2 when possible" -msgstr "Verwenden Sie nach Möglichkeit HTTP/2" - -msgid "Verify server certificate" -msgstr "Server Zertifikat verifizieren" - -msgid "Download album covers" -msgstr "Titelbilder herunterladen" - -msgid "Server-side scrobbling" -msgstr "Serverseitiges Scrobbling" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "Lieder löschen" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Der Tidal-Support ist nicht offiziell und erfordert ein API-Token aus einer registrierten Anwendung, um zu funktionieren. Wir können Ihnen nicht helfen, diese zu bekommen." - -msgid "Use OAuth" -msgstr "Benutze OAuth" - -msgid "Client ID" -msgstr "" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "Tonqualität" - -msgid "Search delay" -msgstr "Suche verzögert" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Künstler Suchlimit" - -msgid "Albums search limit" -msgstr "Alben Suchlimit" - -msgid "Songs search limit" -msgstr "Lieder Suchlimit" - -msgid "Fetch entire albums when searching songs" -msgstr "Abrufen des ganzen Albums wenn nach Liedern gesucht wird" - -msgid "Album cover size" -msgstr "Titelbildgröße" - -msgid "Stream URL method" -msgstr "Datenstrom URL Methode" - -msgid "Append explicit to album title for explicit albums" -msgstr "\"Nicht jugendfrei\" zu Titeln nicht jugendfreier Alben hinzufügen" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Der Qobuz-Support ist nicht offiziell und erfordert eine API-App-ID und ein Secret einer registrierten Anwendung, um zu funktionieren. Wir können Ihnen nicht helfen, diese zu bekommen." - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "Base64 kodiertes Geheimnis (Base64 encoded secret)" - -msgid "Moodbar" -msgstr "Stimmungsbarometer" - -msgid "Show a moodbar in the track progress bar" -msgstr "Einen Stimmungsbalken in der Fortschrittsleiste des Liedes anzeigen" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Speichern Sie die .mood-Dateien direkt in den Lieder-Ordnern" - -msgid "Enabled" -msgstr "Aktiviert" - -msgid "Return to Strawberry" -msgstr "Zu Strawberry zurückkehren" - -msgid "Success!" -msgstr "Erfolg!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Bitte Browser schließen und zu Strawberry zurückkehren" - diff --git a/src/translations/es_AR.po b/src/translations/es_AR.po deleted file mode 100644 index 45f87dcd..00000000 --- a/src/translations/es_AR.po +++ /dev/null @@ -1,4355 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: es-AR\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Spanish, Argentina\n" -"Language: es_AR\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Todos los archivos (*)" - -msgid "Context" -msgstr "Contexto" - -msgid "Collection" -msgstr "Colección" - -msgid "Queue" -msgstr "Cola" - -msgid "Playlists" -msgstr "Listas" - -msgid "Smart playlists" -msgstr "Listas inteligentes" - -msgid "Files" -msgstr "Archivos" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "Dispositivos" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Mostrar todas las pistas" - -msgid "Show only duplicates" -msgstr "Mostrar solo los duplicados" - -msgid "Show only untagged" -msgstr "Solo mostrar no etiquetadas" - -msgid "Configure collection..." -msgstr "Configurar colección…" - -msgid "Play" -msgstr "Reproducir" - -msgid "Stop after this track" -msgstr "Detener reproducción al finalizar la pista actual" - -msgid "Toggle queue status" -msgstr "Cambiar estado de la cola" - -msgid "Queue selected tracks to play next" -msgstr "Poner en cola las pistas seleccionadas para reproducir a continuación" - -msgid "Toggle skip status" -msgstr "Alternar estado de avance" - -msgid "Rescan song(s)..." -msgstr "Volver a escanear tema(s)..." - -msgid "Copy URL(s)..." -msgstr "Copiar URL…" - -msgid "Show in collection..." -msgstr "Mostrar en la colección…" - -msgid "Show in file browser..." -msgstr "Mostrar en el gestor de archivos…" - -msgid "Organize files..." -msgstr "Organizar archivos…" - -msgid "Copy to collection..." -msgstr "Copiar en la colección…" - -msgid "Move to collection..." -msgstr "Mover a la colección…" - -msgid "Copy to device..." -msgstr "Copiar en un dispositivo…" - -msgid "Delete from disk..." -msgstr "Eliminar del disco…" - -msgid "Check for updates..." -msgstr "Buscar actualizaciones…" - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Pausar" - -msgid "Dequeue track" -msgstr "Quitar la pista de la cola" - -msgid "Dequeue selected tracks" -msgstr "Quitar las pistas seleccionadas de la cola" - -msgid "Queue track" -msgstr "Poner pista en cola" - -msgid "Queue selected tracks" -msgstr "Poner en cola las pistas seleccionadas" - -msgid "Queue to play next" -msgstr "Poner en cola para reproducir a continuación" - -msgid "Unskip track" -msgstr "No omitir pista" - -msgid "Unskip selected tracks" -msgstr "No omitir pistas seleccionadas" - -msgid "Skip track" -msgstr "Omitir pista" - -msgid "Skip selected tracks" -msgstr "Omitir pistas seleccionadas" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Establecer %1 a «%2»…" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Editar etiqueta «%1»…" - -msgid "Add to another playlist" -msgstr "Añadir a otra lista de reproducción" - -msgid "New playlist" -msgstr "Lista nueva" - -msgid "Add file" -msgstr "Añadir archivo" - -msgid "Music" -msgstr "Música" - -msgid "Add folder" -msgstr "Añadir carpeta" - -msgid "Clear playlist" -msgstr "Vaciar lista de reproducción" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "La lista de reproducción tiene %1 temas, demasiadas para deshacer, ¿estás seguro de que quieres eliminarla?" - -msgid "Error" -msgstr "" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Ninguna de las pistas seleccionadas era apta para copiarse en un dispositivo" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "La versión de Strawberry a la que se acaba de actualizar necesita volver a analizar la colección debido a estas nuevas funciones:" - -msgid "Would you like to run a full rescan right now?" -msgstr "¿Quiere ejecutar un nuevo análisis completo ahora?" - -msgid "Collection rescan notice" -msgstr "Notificación de nuevo análisis de la colección" - -msgid "Usage" -msgstr "Uso" - -msgid "options" -msgstr "opciones" - -msgid "URL(s)" -msgstr "URL" - -msgid "Player options" -msgstr "Opciones del reproductor" - -msgid "Start the playlist currently playing" -msgstr "Iniciar la lista de reproducción actualmente en reproducción" - -msgid "Play if stopped, pause if playing" -msgstr "Reproducir si detenido, pausar si en reproducción" - -msgid "Pause playback" -msgstr "Pausar la reproducción" - -msgid "Stop playback" -msgstr "Detener reproducción" - -msgid "Stop playback after current track" -msgstr "Detener reproducción al terminar la pista actual" - -msgid "Skip backwards in playlist" -msgstr "Saltar hacia atrás en la lista de reproducción" - -msgid "Skip forwards in playlist" -msgstr "Saltar hacia adelante en la lista de reproducción" - -msgid "Set the volume to percent" -msgstr "Establecer el volumen en %" - -msgid "Increase the volume by 4 percent" -msgstr "Aumentar el volumen en un 4 %" - -msgid "Decrease the volume by 4 percent" -msgstr "Reduce el volumen en un 4 %" - -msgid "Increase the volume by percent" -msgstr "Aumentar el volumen en  %" - -msgid "Decrease the volume by percent" -msgstr "Reduce el volumen en  %" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Moverse en la pista actual hacia una posición absoluta" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Moverse en la pista actual hacia una posición relativa" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Reiniciar la pista o saltar a la anterior si no han transcurrido 8 segundos desde su inicio." - -msgid "Playlist options" -msgstr "Opciones de la lista de reproducción" - -msgid "Create a new playlist with files" -msgstr "Crear una lista de reproducción nueva con archivos" - -msgid "Append files/URLs to the playlist" -msgstr "Añadir archivos/URL a la lista de reproducción" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Carga archivos/URL, reemplaza la lista de reproducción actual" - -msgid "Play the th track in the playlist" -msgstr "Reproducir la .ª pista de la lista de reproducción" - -msgid "Play given playlist" -msgstr "Reproducir lista indicada" - -msgid "Other options" -msgstr "Otras opciones" - -msgid "Display the on-screen-display" -msgstr "Mostrar indicadores en pantalla" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Conmutar visibilidad del panel de información en pantalla estético" - -msgid "Change the language" -msgstr "Cambiar el idioma" - -msgid "Resize the window" -msgstr "Redimensionar la ventana" - -msgid "Equivalent to --log-levels *:1" -msgstr "Equivalente a --log-levels*:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Equivalente a --log-levels*:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Lista separada por comas de la clase:nivel, el nivel es 0-3" - -msgid "Print out version information" -msgstr "Mostrar información de versión" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Comprobación de integridad" - -msgid "Database corruption detected." -msgstr "Se han detectado errores en la base de datos" - -msgid "Backing up database" -msgstr "Haciendo copia de respaldo de la base de datos" - -msgid "Deleting files" -msgstr "Eliminando los archivos" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Desconocido" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Necesita GStreamer para este URL" - -msgid "Preload function was not set for blocking operation." -msgstr "La función de precarga no se ajustó para un funcionamiento con bloqueo." - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "El archivo de audio %1 no parece válido." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "La reproducción de CD solo es posible con el motor GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Lista" - -msgid "1 day" -msgstr "1 día" - -#, qt-format -msgid "%1 days" -msgstr "%1 días" - -msgid "Today" -msgstr "Hoy" - -msgid "Yesterday" -msgstr "Ayer" - -#, qt-format -msgid "%1 days ago" -msgstr "hace %1 días" - -msgid "Tomorrow" -msgstr "Mañana" - -#, qt-format -msgid "In %1 days" -msgstr "En %1 días" - -msgid "Next week" -msgstr "Próxima semana" - -#, qt-format -msgid "In %1 weeks" -msgstr "En %1 semanas" - -msgid "Show in file browser" -msgstr "Mostrar en el navegador de archivos" - -msgid "Too many songs selected." -msgstr "Demasiadas pistas seleccionadas" - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "Se han seleccionado %1 temas en %2 directorios. ¿Confirma que quiere abrirlos todos?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Error desconocido" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "artista" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Campos disponibles" - -msgid "Framerate" -msgstr "Tasa de fotogramas" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Baja (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Media (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Alta (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Muy alta (%1 fps)" - -msgid "No analyzer" -msgstr "Sin analizador" - -msgid "Block analyzer" -msgstr "Analizador de bloques" - -msgid "Boom analyzer" -msgstr "Analizador de resonancia" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Preamplificador" - -msgid "Custom" -msgstr "Personalizado" - -msgid "Classical" -msgstr "Clásica" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Graves completos" - -msgid "Full Treble" -msgstr "Agudos completos" - -msgid "Full Bass + Treble" -msgstr "Graves y agudos completos" - -msgid "Laptop/Headphones" -msgstr "Portátil/auriculares" - -msgid "Large Hall" -msgstr "Salón grande" - -msgid "Live" -msgstr "En directo" - -msgid "Party" -msgstr "Fiesta" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "Soft rock" - -msgid "Techno" -msgstr "Tecno" - -msgid "Zero" -msgstr "Cero" - -msgid "Save preset" -msgstr "Guardar ajuste predefinido" - -msgid "Name" -msgstr "Nombre" - -msgid "Delete preset" -msgstr "Eliminar ajuste predefinido" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "¿Confirma que quiere eliminar el ajuste predefinido «%1»?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Tipo de archivo" - -msgid "Length" -msgstr "Duración" - -msgid "Samplerate" -msgstr "Frecuencia" - -msgid "Bit depth" -msgstr "Resolución" - -msgid "Bitrate" -msgstr "Tasa de bits" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Mostrar cubierta del álbum" - -msgid "Show song technical data" -msgstr "Mostrar información técnica de la canción" - -msgid "Show song lyrics" -msgstr "Mostrar letras" - -msgid "Automatically search for song lyrics" -msgstr "Buscar automáticamente la letra de la canción" - -msgid "No song playing" -msgstr "No suena nada" - -#, qt-format -msgid "%1 song" -msgstr "%1 canción" - -#, qt-format -msgid "%1 songs" -msgstr "%1 canciones" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artista" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artistas" - -#, qt-format -msgid "%1 album" -msgstr "%1 álbum" - -#, qt-format -msgid "%1 albums" -msgstr "%1 álbumes" - -msgid "kbps" -msgstr "kb/s" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "Varios artistas" - -msgid "Loading..." -msgstr "Cargando…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "Actualizando la colección" - -#, qt-format -msgid "Updating %1" -msgstr "Actualizando %1" - -msgid "Your collection is empty!" -msgstr "La colección está vacía." - -msgid "Click here to add some music" -msgstr "Pulse aquí para añadir música" - -msgid "Append to current playlist" -msgstr "Añadir a la lista de reproducción actual" - -msgid "Replace current playlist" -msgstr "Reemplazar lista de reproducción actual" - -msgid "Open in new playlist" -msgstr "Abrir en una lista nueva" - -msgid "Search for this" -msgstr "Buscar esto" - -msgid "Edit track information..." -msgstr "Editar información de la pista…" - -msgid "Edit tracks information..." -msgstr "Editar información de las pistas…" - -msgid "Rescan song(s)" -msgstr "Volver a escanear pistas" - -msgid "Show in various artists" -msgstr "Mostrar en Varios artistas" - -msgid "Don't show in various artists" -msgstr "No mostrar en Varios artistas" - -msgid "There are other songs in this album" -msgstr "Hay otras pistas en este álbum" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "¿Le gustaría mover también el resto de temas del álbum a Varios artistas?" - -msgid "Show" -msgstr "Mostrar" - -msgid "Group by" -msgstr "Agrupar por" - -msgid "Display options" -msgstr "Opciones de visualización" - -msgid "Group by Album artist/Album" -msgstr "Agrupar por artista del álbum/álbum" - -msgid "Group by Album artist/Album - Disc" -msgstr "Agrupar por artista del álbum/álbum - disco" - -msgid "Group by Album artist/Year - Album" -msgstr "Agrupar por artista del álbum/año - álbum" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Agrupar por artista del álbum/año - álbum - disco" - -msgid "Group by Artist/Album" -msgstr "Agrupar por artista/álbum" - -msgid "Group by Artist/Album - Disc" -msgstr "Agrupar por artista/álbum - disco" - -msgid "Group by Artist/Year - Album" -msgstr "Agrupar por artista/año - álbum" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Agrupar por artista/año - álbum - disco" - -msgid "Group by Genre/Album artist/Album" -msgstr "Agrupar por género/artista del álbum/álbum" - -msgid "Group by Genre/Artist/Album" -msgstr "Agrupar por género/artista/álbum" - -msgid "Group by Album Artist" -msgstr "Agrupar por artista del álbum" - -msgid "Group by Artist" -msgstr "Agrupar por artista" - -msgid "Group by Album" -msgstr "Agrupar por álbum" - -msgid "Group by Genre/Album" -msgstr "Agrupar por género/álbum" - -msgid "Advanced grouping..." -msgstr "Agrupamiento avanzado…" - -msgid "Grouping Name" -msgstr "Nombre de agrupamiento" - -msgid "Grouping name:" -msgstr "Nombre de agrupamiento:" - -msgid "First level" -msgstr "Primer nivel" - -msgid "Second Level" -msgstr "Segundo nivel" - -msgid "Third Level" -msgstr "Tercer nivel" - -msgid "None" -msgstr "Ninguno" - -msgid "Album artist" -msgstr "Artista del álbum" - -msgid "Artist" -msgstr "Artista" - -msgid "Album" -msgstr "Álbum" - -msgid "Album - Disc" -msgstr "Álbum - Disco" - -msgid "Year - Album" -msgstr "Año - álbum" - -msgid "Year - Album - Disc" -msgstr "Año - álbum - disco" - -msgid "Original year - Album" -msgstr "Año original - álbum" - -msgid "Original year - Album - Disc" -msgstr "Año original - álbum - disco" - -msgid "Disc" -msgstr "Disco" - -msgid "Year" -msgstr "Año" - -msgid "Original year" -msgstr "Año original" - -msgid "Genre" -msgstr "Género" - -msgid "Composer" -msgstr "Compositor" - -msgid "Performer" -msgstr "Intérprete" - -msgid "Grouping" -msgstr "Agrupamiento" - -msgid "File type" -msgstr "Tipo" - -msgid "Format" -msgstr "Formato" - -msgid "Sample rate" -msgstr "Frecuencia" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Título" - -msgid "Track" -msgstr "Pista" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Comentario" - -msgid "Source" -msgstr "Origen" - -msgid "Mood" -msgstr "Ánimo" - -msgid "Rating" -msgstr "Valoración" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Cargar lista de reproducción" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "No se encontraron coincidencias. Borre el texto introducido en el cuadro de búsqueda para mostrar la lista completa de nuevo." - -msgid "stop" -msgstr "detener" - -msgid "Never" -msgstr "Nunca" - -msgid "&Hide..." -msgstr "&Ocultar…" - -msgid "&Stretch columns to fit window" -msgstr "&Ajustar columnas a la ventana" - -msgid "&Reset columns to default" -msgstr "&Reajustar columnas a valores iniciales" - -msgid "&Lock rating" -msgstr "B&loquear valoración" - -msgid "&Align text" -msgstr "&Alinear el texto" - -msgid "&Left" -msgstr "&Izquierda" - -msgid "&Center" -msgstr "&Centrar" - -msgid "&Right" -msgstr "&Derecha" - -#, qt-format -msgid "&Hide %1" -msgstr "&Ocultar «%1»" - -msgid "New folder" -msgstr "Carpeta nueva" - -msgid "Delete" -msgstr "Eliminar" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Guardar lista de reproducción" - -msgid "Enter the name of the folder" -msgstr "Escriba el nombre de la carpeta" - -msgid "Copy to device" -msgstr "Copiar en un dispositivo" - -msgid "Playlist must be open first." -msgstr "La lista debe abrirse primero." - -msgid "Remove playlists" -msgstr "Eliminar listas de reproducción" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "¿Confirma que quiere eliminar %1 listas de reproducción de sus favoritos?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Puede marcar listas de reproducción como favoritas pulsando en los iconos con forma de estrella junto a sus nombres" - -msgid "Favorited playlists will be saved here" -msgstr "Sus listas favoritas se guardarán aquí" - -msgid "Couldn't create playlist" -msgstr "No se pudo crear la lista de reproducción" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Guardar lista de reproducción" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "%1 seleccionado de" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automático" - -msgid "Relative" -msgstr "Relativo" - -msgid "Absolute" -msgstr "Absoluto" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Cerrar lista de reproducción" - -msgid "Rename playlist..." -msgstr "Cambiar nombre de lista…" - -msgid "Save playlist..." -msgstr "Guardar lista de reproducción…" - -msgid "Rename playlist" -msgstr "Cambiar nombre de lista" - -msgid "Enter a new name for this playlist" -msgstr "Introduzca un nombre nuevo para esta lista de reproducción" - -msgid "Remove playlist" -msgstr "Eliminar lista de reproducción" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Está a punto de eliminar una lista de reproducción que no está entre sus favoritas (esta acción no se puede deshacer).\n" -"¿Confirma que quiere continuar?" - -msgid "Warn me when closing a playlist tab" -msgstr "Avisarme antes de cerrar una pestaña de lista de reproducción" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Puede modificar esta opción en la pestaña «Comportamiento» en Preferencias" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Pulse dos veces para convertir esta lista en favorita y que se guarde y quede accesible en el panel «Listas» de la barra izquierda" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "añadir %n pistas" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "quitar %n temas" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "mover %n temas" - -msgid "sort songs" -msgstr "ordenar temas" - -msgid "shuffle songs" -msgstr "mezclar temas" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Error al cargar el CD de audio." - -msgid "Loading tracks" -msgstr "Cargando pistas" - -msgid "Loading tracks info" -msgstr "Cargando información de pistas" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Todas las listas de reproducción (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 listas de reproducción (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Cargando lista inteligente" - -msgid "Collection search" -msgstr "Búsqueda en la colección" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Encuentre temas en la colección que coincidan con los criterios que especifique." - -msgid "Search terms" -msgstr "Términos de búsqueda" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Se incluirá el tema si cumple estas condiciones." - -msgid "Search options" -msgstr "Opciones de búsqueda" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Selecciona como se ordenará la lista y qué temas contendrá" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 canciones encontradas (se muestran %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 canciones encontradas" - -msgid "after" -msgstr "Después" - -msgid "before" -msgstr "antes" - -msgid "on" -msgstr "el" - -msgid "not on" -msgstr "no el" - -msgid "in the last" -msgstr "en el último" - -msgid "not in the last" -msgstr "no en los últimos" - -msgid "between" -msgstr "entre" - -msgid "contains" -msgstr "contiene" - -msgid "does not contain" -msgstr "no contiene" - -msgid "starts with" -msgstr "comienza por" - -msgid "ends with" -msgstr "termina en" - -msgid "greater than" -msgstr "mayor que" - -msgid "less than" -msgstr "menos de" - -msgid "equals" -msgstr "es igual a" - -msgid "not equals" -msgstr "no es igual a" - -msgid "empty" -msgstr "vacío" - -msgid "not empty" -msgstr "no vacío" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "el más antiguo primero" - -msgid "newest first" -msgstr "El más nuevo primero" - -msgid "shortest first" -msgstr "el más corto primero" - -msgid "longest first" -msgstr "El más largo primero" - -msgid "smallest first" -msgstr "el más pequeño primero" - -msgid "biggest first" -msgstr "primero el mayor" - -msgid "Hours" -msgstr "Horas" - -msgid "Days" -msgstr "Días" - -msgid "Weeks" -msgstr "Semanas" - -msgid "Months" -msgstr "Meses" - -msgid "Years" -msgstr "Años" - -msgid "The second value must be greater than the first one!" -msgstr "El segundo valor debe ser mayor que el primero." - -msgid "Add search term" -msgstr "Añadir término de búsqueda" - -msgid "Newest tracks" -msgstr "Pistas más nuevas" - -msgid "50 random tracks" -msgstr "50 pistas aleatorias" - -msgid "Ever played" -msgstr "Ya reproducido" - -msgid "Never played" -msgstr "Nunca reproducidas" - -msgid "Last played" -msgstr "Últimas reproducidas" - -msgid "Most played" -msgstr "Más reproducidas" - -msgid "Favourite tracks" -msgstr "Pistas favoritas" - -msgid "Least favourite tracks" -msgstr "Pistas menos valoradas" - -msgid "All tracks" -msgstr "Todas las pistas" - -msgid "Dynamic random mix" -msgstr "Mezcla aleatoria dinámica" - -msgid "New smart playlist..." -msgstr "Lista inteligente nueva…" - -msgid "Play next" -msgstr "Reproducir siguiente" - -msgid "Edit smart playlist..." -msgstr "Editar lista inteligente..." - -msgid "Delete smart playlist" -msgstr "Eliminar lista inteligente" - -msgid "Smart playlist" -msgstr "Lista inteligentes" - -msgid "Playlist type" -msgstr "Tipo de lista" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Una lista inteligente es una lista dinámica de temas de la fonoteca. Hay distintos tipos de listas inteligentes que permiten seleccionar los temas de distintas maneras." - -msgid "Finish" -msgstr "Terminar" - -msgid "Choose a name for your smart playlist" -msgstr "Escoja un nombre para su lista inteligente" - -msgid "Abort" -msgstr "Interrumpir" - -msgid "All albums" -msgstr "Todos los álbumes" - -msgid "Albums with covers" -msgstr "Álbumes con cubierta" - -msgid "Albums without covers" -msgstr "Álbumes sin cubierta" - -msgid "Really cancel?" -msgstr "¿Confirma que quiere cancelar?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Si cierra esta ventana se detendrá la búsqueda de cubiertas para los álbumes." - -msgid "Don't stop!" -msgstr "¡No detener!" - -msgid "All artists" -msgstr "Todos los artistas" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Se obtuvieron %1 cubiertas de %2 (%3 fallaron)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 transferido" - -msgid "Export finished" -msgstr "Exportación finalizada" - -msgid "No covers to export." -msgstr "No hay ninguna cubierta que exportar." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Se han exportado %1 cubiertas de %2 (%3 omitidas)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Cubiertas de %1" - -msgid "Search" -msgstr "Buscar" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Imágenes (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Imágenes (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Todos los archivos (*)" - -msgid "Load cover from disk..." -msgstr "Cargar cubierta desde disco…" - -msgid "Save cover to disk..." -msgstr "Guardar la cubierta en el disco…" - -msgid "Load cover from URL..." -msgstr "Cargar cubierta desde un URL…" - -msgid "Search for album covers..." -msgstr "Buscar cubiertas de álbumes…" - -msgid "Unset cover" -msgstr "Quitar la cubierta" - -msgid "Delete cover" -msgstr "Eliminar cubierta" - -msgid "Clear cover" -msgstr "Eliminar cubierta" - -msgid "Show fullsize..." -msgstr "Mostrar a tamaño completo…" - -msgid "Search automatically" -msgstr "Buscar automáticamente" - -msgid "Load cover from disk" -msgstr "Cargar cubierta desde el disco" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "Desconocido" - -msgid "Save album cover" -msgstr "Guardar la cubierta del álbum" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "Total de solicitudes hechas a la red" - -msgid "Average image size" -msgstr "Tamaño medio de imagen" - -msgid "Total bytes transferred" -msgstr "Total de bytes transferidos" - -msgid "Fetching cover error" -msgstr "Error al obtener la cubierta" - -msgid "The site you requested does not exist!" -msgstr "El sitio indicado no existe." - -msgid "The site you requested is not an image!" -msgstr "El sitio indicado no es una imagen." - -msgid "Genius Authentication" -msgstr "Autenticación con Genius" - -msgid "Please open this URL in your browser" -msgstr "Abra este URL en el navegador" - -msgid "Redirect missing token code!" -msgstr "¡Falta código del token de redirección!" - -msgid "Received invalid reply from web browser." -msgstr "Se recibió una respuesta no válida del navegador." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Redirección Genius carece de código de elementos de búsqueda o estado." - -msgid "General" -msgstr "" - -msgid "User interface" -msgstr "Interfaz de usuario" - -msgid "Streaming" -msgstr "Transmitiendo" - -msgid "Add directory..." -msgstr "Añadir carpeta…" - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "Introduzca su ficha de usuario de" - -msgid "Use Tidal settings to authenticate." -msgstr "Usar ajustes de Tidal para autenticarse." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Usar ajustes de Qobuz para autenticarse." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 necesita autenticación." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 no necesita autenticación." - -msgid "No provider selected." -msgstr "No se ha seleccionado ningún proveedor." - -msgid "Authentication failed" -msgstr "Falló la autenticación" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Elija la imagen de fondo" - -msgid "OSD Preview" -msgstr "Previsualización del panel de información en pantalla" - -msgid "Drag to reposition" -msgstr "Arrastre para reposicionar" - -msgid "About Strawberry" -msgstr "Acerca de Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Versión %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry es un reproductor y catalogador de colecciones musicales." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Es un desarrollo derivado de Clementine lanzado en 2018 destinado a melómanos y audiófilos." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry es un programa libre, disponible en virtud de la licencia GPL. El código fuente puede encontrarse en %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Debería haber recibido una copia de la Licencia Pública General GNU junto con este programa. Si no es así, diríjase a %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Si le gusta Strawberry y le da uso, plantéese patrocinarlo o realizar una donación." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Puede patrocinar al autor en %1. También puede realizar una aportación económica a través de %2." - -msgid "Author and maintainer" -msgstr "Autor y responsable" - -msgid "Contributors" -msgstr "Colaboradores" - -msgid "Clementine authors" -msgstr "Autores de Clementine" - -msgid "Clementine contributors" -msgstr "Colaboradores de Clementine" - -msgid "Thanks to" -msgstr "Gracias a" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Gracias al resto de colaboradores de Amarok y Clementine" - -msgid "(different across multiple songs)" -msgstr "(diferentes en cada canción)" - -msgid "Different art across multiple songs." -msgstr "Hay imágenes distintas en múltiples temas." - -msgid "Previous" -msgstr "Anterior" - -msgid "Next" -msgstr "Siguiente" - -msgid "Saving tracks" -msgstr "Guardando las pistas" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 temas seleccionados" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Cubierta no definida" - -msgid "Album cover editing is only available for collection songs." -msgstr "La edición de las cubiertas de los álbumes solo está disponible para las canciones de la fonoteca." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Cubierta modificada: se restablecerá al guardar." - -msgid "Cover changed: Will be unset when saved." -msgstr "Cubierta modificada: se desactivará al guardar." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Cubierta modificada: se eliminará al guardar." - -msgid "Cover changed: Will set new when saved." -msgstr "Cubierta modificada: se establecerá la nueva al guardar." - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Etiquetas originales" - -msgid "Suggested tags" -msgstr "Etiquetas sugeridas" - -msgid "Delete files" -msgstr "Eliminar archivos" - -msgid "The following files will be deleted from disk:" -msgstr "Los siguientes archivos serán borrados del disco:" - -msgid "Are you sure you want to continue?" -msgstr "¿Confirma que quiere continuar?" - -msgid "Receiving initial data from last.fm..." -msgstr "Recibiendo datos iniciales de Last.fm…" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Recibiendo info de nº de reproducciones para %1 temas y última reproducción para %2 temas." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Recibiendo info de última reproducción para %1 temas." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Recibiendo info de nº de reproducciones para %1 temas." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Recuentos de %1 reproducciones y última reproducción para %2 temas recibida." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Info de última reproducción para %1 temas recibida." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Recuentos de reproducciones para %1 temas recibidos." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry se está ejecutando como un Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Se ha detectado que Strawbery está ejecutándose como un «snap»" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry se está ejecutando como un snap" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Hay un repositorio PPA oficial para Ubuntu en %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Existen versiones oficiales para Debian y Ubuntu que también funcionan en la mayor parte de sus derivados. Mira %1 para obtener más información." - -msgid "For a better experience please consider the other options above." -msgstr "Tenga en cuenta las opciones anteriores para lograr una experiencia óptima." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "Desinstale el «snap» con:" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Barra lateral grande" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Barra lateral pequeña" - -msgid "Plain sidebar" -msgstr "Barra lateral simple" - -msgid "Tabs on top" -msgstr "Pestañas en la parte superior" - -msgid "Icons on top" -msgstr "Iconos en la parte superior" - -msgid "Available" -msgstr "Disponible" - -msgid "New songs" -msgstr "Canciones nuevas" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "En uso:" - -msgid "Clear" -msgstr "Borrar" - -msgid "Reset" -msgstr "Restablecer" - -msgid "Small album cover" -msgstr "Cubierta de álbum pequeña" - -msgid "Large album cover" -msgstr "Cubierta de álbum grande" - -msgid "Fit cover to width" -msgstr "Ajustar cubierta a anchura" - -msgid "Show above status bar" -msgstr "Mostrar sobre la barra de estado" - -msgid "You are signed in." -msgstr "Ha accedido a su cuenta." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Ha accedido como %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Caduca el %1" - -#, qt-format -msgid "disc %1" -msgstr "disco %1" - -#, qt-format -msgid "track %1" -msgstr "pista %1" - -msgid "Paused" -msgstr "En pausa" - -msgid "Stopped" -msgstr "Detenido" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Detener reproducción tras la pista: %1" - -msgid "On" -msgstr "Activado" - -msgid "Off" -msgstr "Desactivado" - -msgid "Playlist finished" -msgstr "Lista de reproducción finalizada" - -#, qt-format -msgid "Volume %1%" -msgstr "Volumen %1%" - -msgid "Don't shuffle" -msgstr "No mezclar" - -msgid "Shuffle all" -msgstr "Mezclar todo" - -msgid "Shuffle tracks in this album" -msgstr "Mezclar pistas de este álbum" - -msgid "Shuffle albums" -msgstr "Mezclar álbumes" - -msgid "Don't repeat" -msgstr "No repetir" - -msgid "Repeat track" -msgstr "Repetir pista" - -msgid "Repeat album" -msgstr "Repetir álbum" - -msgid "Repeat playlist" -msgstr "Repetir lista de reproducción" - -msgid "Stop after every track" -msgstr "Detener reproducción al finalizar cada pista" - -msgid "Intro tracks" -msgstr "Pistas de introducción" - -#, qt-format -msgid "Configure %1..." -msgstr "Configurar %1…" - -msgid "Add to artists" -msgstr "Añadir a artistas" - -msgid "Add to albums" -msgstr "Añadir a álbumes" - -msgid "Add to songs" -msgstr "Añadir a temas" - -msgid "Enter search terms above to find music" -msgstr "Introduzca términos de búsqueda arriba para buscar en la colección" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Pulse aquí para recuperar música" - -msgid "Remove from favorites" -msgstr "Eliminar de favoritos" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "Autenticación en el servicio de registro de reproducciones %1" - -msgid "Open URL in web browser?" -msgstr "¿Quiere abrir el URL en el navegador?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Pulse en «Guardar» para copiar el URL en el portapapeles y ábralo en el navegador manualmente." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "No se ha podido abrir URL. Por favor, ábrela en tu navegador" - -msgid "Invalid reply from web browser. Missing token." -msgstr "El servidor web devolvió una respuesta no válida. Falta la ficha." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "¡No se ha iniciado sesión en servicio de registro de reproducción %1!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Registro de reproducción %1 error: %2" - -msgid "ListenBrainz Authentication" -msgstr "Autenticación en ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "Falta el usuario; acceda a Last.fm primero." - -msgid "Organizing files" -msgstr "Organizando archivos" - -msgid "Artist's initial" -msgstr "Iniciales del artista" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Tasa de bits" - -msgid "File extension" -msgstr "Extensión del archivo" - -msgid "Error copying songs" -msgstr "Error al copiar pistas" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Hubo problemas al copiar algunas pistas. No se pudieron copiar los siguientes archivos:" - -msgid "Error deleting songs" -msgstr "Error al eliminar pistas" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Hubo problemas al eliminar algunas pistas. No se pudieron eliminar los siguientes archivos:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "Pista anterior" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "Silenciar" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "Me gusta" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Oprima una combinación de teclas para usar con %1…" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "No se pudo iniciar la orden «%1»." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Atajo para %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Usar atajos de X11 en %1 no es recomendable y puede hacer que el teclado no responda eficientemente." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "Los atajos en %1 se usan normalmente a través de GMPRIS y KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "Guardando en búfer" - -msgid "D-Bus path" -msgstr "Ruta de D-Bus" - -msgid "Serial number" -msgstr "Número de serie" - -msgid "Mount points" -msgstr "Puntos de montaje" - -msgid "Partition label" -msgstr "Etiqueta de partición" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Conectar dispositivo" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Esta es la primera vez que conecta este dispositivo. Strawberry analizará el dispositivo ahora para encontrar archivos de música; esto podría tardar un poco." - -msgid "This device will not work properly" -msgstr "Este dispositivo no funcionará correctamente" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Este es un dispositivo MTP, pero se compiló Strawberry sin compatibilidad con libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Si continúa, este dispositivo funcionará con lentitud y las pistas que se copien en él podrían no funcionar." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Esto es un iPod, pero se compiló Strawberry sin compatibilidad con libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "No se admite este tipo de dispositivo: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Actualizando… (%1%)" - -msgid "Not connected" -msgstr "No conectado" - -msgid "Not mounted - double click to mount" -msgstr "Sin montar. Pulse dos veces para montar" - -msgid "Double click to open" -msgstr "Doble clic para abrir" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 canción%2" - -msgid "Safely remove device" -msgstr "Quitar dispositivo con seguridad" - -msgid "Forget device" -msgstr "Olvidar dispositivo" - -msgid "Device properties..." -msgstr "Propiedades del dispositivo…" - -msgid "Delete from device..." -msgstr "Eliminar del dispositivo…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Olvidar un dispositivo lo eliminará de la lista y Strawberry tendrá que volver a examinar todas las pistas la próxima vez que lo conecte." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Se eliminarán estos archivos del dispositivo. ¿Confirma que quiere continuar?" - -msgid "Model" -msgstr "Modelo" - -msgid "Manufacturer" -msgstr "Fabricante" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Cargando la base de datos del iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Se produjo un error al cargar la base de datos de iTunes" - -msgid "Mount point" -msgstr "Punto de montaje" - -msgid "Device" -msgstr "Dispositivo" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Cargando el dispositivo MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Error al conectar al dispositivo MTP %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados todos los complementos necesarios de GStreamer." - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 se ha escrito correctamente" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Convirtiendo %1 archivos usando %2 procesos" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Error al procesar %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Iniciando %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "No se pudo encontrar un codificador para %1; compruebe que tiene instalados los complementos correctos de GStreamer" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "No se pudo encontrar un mezclador para %1; compruebe que tiene instalados los complementos correctos de GStreamer" - -msgid "Start transcoding" -msgstr "Iniciar la conversión" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n pendientes" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n completados" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n falló" - -msgid "Add files to transcode" -msgstr "Añadir archivos que convertir" - -msgid "Open a directory to import music from" -msgstr "Abrir una carpeta de la que importar música" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Error al reactivar el dispositivo CDDA." - -msgid "Error while setting CDDA device to pause state." -msgstr "Error al poner en pausa el dispositivo CDDA." - -msgid "Error while querying CDDA tracks." -msgstr "Error de acceso a las pistas CDDA." - -msgid "Server URL is invalid." -msgstr "La dirección URL del servidor es inválida." - -msgid "Missing username or password." -msgstr "Falta el usuario o la contraseña." - -msgid "Subsonic server URL is invalid." -msgstr "La dirección URL del servidor de Subsonic es errónea" - -msgid "Missing Subsonic username or password." -msgstr "Falta el usuario o la contraseña de Qobuz." - -msgid "Retrieving albums..." -msgstr "Buscando álbumes..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Buscando pistas de %1 álbum..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Buscando pistas de %1 álbumes..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Buscando cubierta del álbum %1..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Buscando cubiertas de %1 álbumes." - -msgid "Configuration incomplete" -msgstr "Configuración incompleta" - -msgid "Missing server url, username or password." -msgstr "Falta el URL del servidor, el usuario o la contraseña." - -msgid "Configuration incorrect" -msgstr "Configuración incorrecta" - -msgid "Test successful!" -msgstr "¡Prueba correcta!" - -msgid "Test failed!" -msgstr "¡Prueba fallida!" - -msgid "Reply from Tidal is missing query items." -msgstr "Faltan elementos en la respuesta de Tidal." - -msgid "Missing Tidal API token." -msgstr "Falta la ficha de API de Tidal." - -msgid "Missing Tidal username." -msgstr "Falta el usuario de Tidal." - -msgid "Missing Tidal password." -msgstr "Falta la contraseña de Tidal." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Se ha alcanzado el número máximo de intentos sin lograr acceder a Tidal." - -msgid "Not authenticated with Tidal." -msgstr "No se ha accedido a Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Falta la ficha de la API de Tidal, el usuario o la contraseña." - -msgid "Authenticating..." -msgstr "Autenticando…" - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "Buscando..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "Sin coincidencias." - -msgid "Cancelled." -msgstr "Cancelado." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "Falta el identificador de cliente de Tidal." - -msgid "Missing API token." -msgstr "Falta la ficha de la API." - -msgid "Missing username." -msgstr "Falta el usuario." - -msgid "Missing password." -msgstr "Falta la contraseña." - -msgid "Spotify Authentication" -msgstr "Autenticación en Spotify" - -msgid "Redirect missing token code or state!" -msgstr "¡Falta código de token o estado!" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Se ha alcanzado el número máximo de intentos de acceso." - -msgid "Missing Qobuz app ID." -msgstr "Falta el identificador de aplicación de Qobuz." - -msgid "Missing Qobuz username." -msgstr "Falta el usuario de Qobuz." - -msgid "Missing Qobuz password." -msgstr "Falta la contraseña de Qobuz." - -msgid "Not authenticated with Qobuz." -msgstr "No se ha accedido a Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Falta el identificador de aplicación o el secreto de Qobuz." - -msgid "Missing app id." -msgstr "Falta el identificador de aplicación." - -msgid "Show moodbar" -msgstr "Mostrar barra de ánimo" - -msgid "Moodbar style" -msgstr "Estilo de la barra de ánimo" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "Enfadado" - -msgid "Frozen" -msgstr "Congelado" - -msgid "Happy" -msgstr "Feliz" - -msgid "System colors" -msgstr "Colores del sistema" - -msgid "Strawberry Music Player" -msgstr "Reproductor de música Strawberry" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Reproducir" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Detener" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "Pista &siguiente" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Salir" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Borrar lista de reproducción" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Reordenar pistas en este orden…" - -msgid "Set value for all selected tracks..." -msgstr "Establecer valor para todas las pistas seleccionadas…" - -msgid "Edit tag..." -msgstr "Editar etiqueta…" - -msgid "&Settings..." -msgstr "&Configuración…" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&Acerca de Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "&Mezclar lista de reproducción" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Añadir archivo..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Abrir archivo..." - -msgid "Open audio &CD..." -msgstr "Abrir &CD de audio..." - -msgid "&Cover Manager" -msgstr "&Gestor de cubiertas" - -msgid "C&onsole" -msgstr "C&onsola" - -msgid "&Shuffle mode" -msgstr "Modo &aleatorio" - -msgid "&Repeat mode" -msgstr "Modo de &repetición" - -msgid "Remove from playlist" -msgstr "Quitar de la lista de reproducción" - -msgid "&Equalizer" -msgstr "&Ecualizador" - -msgid "&Transcode Music" -msgstr "Conver&tir música" - -msgid "Add &folder..." -msgstr "Añadir &carpeta..." - -msgid "&Jump to the currently playing track" -msgstr "&Saltar a la pista en reproducción" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "Lista de reproducción &nueva" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Guardar lista de re&producción" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Cargar lista de reproducción..." - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Ir a la siguiente pestaña de lista de reproducción" - -msgid "Go to previous playlist tab" -msgstr "Ir a la anterior pestaña de lista de reproducción" - -msgid "&Update changed collection folders" -msgstr "&Actualizar carpetas de la fonoteca con cambios" - -msgid "About &Qt" -msgstr "Acerca de &Qt" - -msgid "&Mute" -msgstr "&Silenciar" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "Anali&zar de nuevo toda la fonoteca" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Completar etiquetas automáticamente…" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Alternar seguimiento de reproducción" - -msgid "Remove &duplicates from playlist" -msgstr "Quitar &duplicados de la lista de reproducción" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Quitar pistas &no disponibles de la lista de reproducción" - -msgid "Add file(s) to transcoder" -msgstr "Añadir archivo(s) que convertir" - -msgid "Add file to transcoder" -msgstr "Añadir archivo que convertir" - -msgid "Add stream..." -msgstr "Añadir emisora…" - -msgid "Show sidebar" -msgstr "Mostrar barra lateral" - -msgid "Import data from last.fm..." -msgstr "Importar datos de Last.fm…" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Música" - -msgid "P&laylist" -msgstr "Lista de re&producción" - -msgid "Help" -msgstr "Ayuda" - -msgid "&Tools" -msgstr "&Herramientas" - -msgid "Collection advanced grouping" -msgstr "Agrupamiento avanzado de la colección" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Puede modificar cómo se organizan los temas en la fonoteca" - -msgid "Group Collection by..." -msgstr "Agrupar colección por…" - -msgid "Second level" -msgstr "Segundo nivel" - -msgid "Third level" -msgstr "Tercer nivel" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "Filtro de colección" - -msgid "Entire collection" -msgstr "Fonoteca completa" - -msgid "Added today" -msgstr "Añadidas hoy" - -msgid "Added this week" -msgstr "Añadidas esta semana" - -msgid "Added within three months" -msgstr "Añadidas en los últimos tres meses" - -msgid "Added this year" -msgstr "Añadidas este año" - -msgid "Added this month" -msgstr "Añadidas este mes" - -msgid "Save current grouping" -msgstr "Guardar agrupamiento actual" - -msgid "Manage saved groupings" -msgstr "Gestionar agrupamientos guardados" - -msgid "Enter search terms here" -msgstr "Introduzca aquí términos de búsqueda" - -msgid "Form" -msgstr "Formulario" - -msgid "Saved Grouping Manager" -msgstr "Gestor de agrupamientos guardados" - -msgid "Remove" -msgstr "Eliminar" - -msgid "Ctrl+Up" -msgstr "Ctrl+Arriba" - -msgid "File paths" -msgstr "Rutas de archivos" - -msgid "This can be changed later through the preferences" -msgstr "Esta opción puede modificarse luego en Preferencias" - -msgid "Remember my choice" -msgstr "Recordar mi elección" - -msgid "Stop after each track" -msgstr "Detener reproducción al finalizar cada pista" - -msgid "Repeat" -msgstr "Repetir" - -msgid "Shuffle" -msgstr "Aleatorio" - -msgid "Dynamic mode is on" -msgstr "Modo dinámico activado" - -msgid "New tracks will be added automatically." -msgstr "Las pistas nuevas se añadirán automáticamente." - -msgid "Expand" -msgstr "Expandir" - -msgid "Repopulate" -msgstr "Volver a poblar" - -msgid "Turn off" -msgstr "Apagar" - -msgid "QueueView" -msgstr "Vista de la cola" - -msgid "Move down" -msgstr "Bajar" - -msgid "Move up" -msgstr "Subir" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "Mode de búsqueda" - -msgid "Match every search term (AND)" -msgstr "Hacer coincidir todos los términos (Y)" - -msgid "Match one or more search terms (OR)" -msgstr "Hacer coincidir algún término (O)" - -msgid "Include all songs" -msgstr "Incluir todas las canciones" - -msgid "Sorting" -msgstr "Ordenación" - -msgid "Put songs in a random order" -msgstr "Disponer canciones en orden aleatorio" - -msgid "Sort songs by" -msgstr "Ordenar temas por" - -msgid "Limits" -msgstr "Límites" - -msgid "Show all the songs" -msgstr "Mostrar todos los temas" - -msgid "Only show the first" -msgstr "Mostrar solo el primero" - -msgid " songs" -msgstr "temas" - -msgid "Preview" -msgstr "Previsualización" - -msgid "and" -msgstr "y" - -msgid "ago" -msgstr "hace" - -msgid "New smart playlist" -msgstr "Lista inteligente nueva" - -msgid "Edit smart playlist" -msgstr "Editar lista inteligente" - -msgid "Use dynamic mode" -msgstr "Usar modo dinámico" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "En el modo dinámico se escogerán y añadirán nuevas pistas cada vez que un tema finalice." - -msgid "Export covers" -msgstr "Exportar cubiertas" - -msgid "Output" -msgstr "Salida" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Introduzca un nombre de archivo para las cubiertas exportadas (sin extensión):" - -msgid "Export downloaded covers" -msgstr "Exportar cubiertas descargadas" - -msgid "Export embedded covers" -msgstr "Exportar cubiertas incrustadas" - -msgid "Existing covers" -msgstr "Cubiertas existentes" - -msgid "Do not overwrite" -msgstr "No sobrescribir" - -msgid "O&verwrite all" -msgstr "&Sobrescribir todo" - -msgid "Overwrite s&maller ones only" -msgstr "Sobrescribir únicamente los &más pequeños" - -msgid "Size" -msgstr "Tamaño" - -msgid "Scale size" -msgstr "Tamaño de escala" - -msgid "Size:" -msgstr "Tamaño:" - -msgid "Pixel" -msgstr "Píxel" - -msgid "Cover Manager" -msgstr "Gestor de cubiertas" - -msgid "Fetch automatically" -msgstr "Obtener automáticamente" - -msgid "Load" -msgstr "Cargar" - -msgid "Add to playlist" -msgstr "Añadir a la lista de reproducción" - -msgid "View" -msgstr "Ver" - -msgid "Total albums:" -msgstr "Álbumes totales:" - -msgid "Without cover:" -msgstr "Sin cubierta:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Obtener las cubiertas que faltan" - -msgid "Export Covers" -msgstr "Exportar cubiertas" - -msgid "Fetch completed" -msgstr "Descarga finalizada" - -msgid "Load cover from URL" -msgstr "Cargar cubierta desde un URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Introduzca un URL para descargar una cubierta de la Internet:" - -msgid "Settings" -msgstr "Configuración" - -msgid "Behavior" -msgstr "Comportamiento" - -msgid "Show system tray icon" -msgstr "Mostrar icono en la bandeja del sistema" - -msgid "Keep running in the background when the window is closed" -msgstr "Seguir ejecutando el programa en segundo plano al cerrar la ventana" - -msgid "Show song progress on system tray icon" -msgstr "Mostrar avance en el icono de la bandeja del sistema" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Reanudar la reproducción al iniciar" - -msgid "Show playing widget" -msgstr "Mostrar mini aplicación de reproducción" - -msgid "On startup" -msgstr "Al iniciar" - -msgid "Remember from &last time" -msgstr "Recordar de la ú<ima vez" - -msgid "Show the main window" -msgstr "Mostrar ventana principal" - -msgid "Hide the main window" -msgstr "Oculta la ventana principal" - -msgid "Show the main window maximized" -msgstr "Mostrar ventana principal maximizada" - -msgid "Show the main window minimized" -msgstr "Mostrar ventana principal minimizada" - -msgid "Language" -msgstr "Idioma" - -msgid "Use the system default" -msgstr "Utilizar valor predeterminado del sistema" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Necesitará reiniciar Strawberry si cambia el idioma." - -msgid "Using the menu to add a song will..." -msgstr "Al usar el menú para añadir una canción…" - -msgid "Never start playing" -msgstr "Nunca comenzar la reproducción" - -msgid "Play if there is nothing already playing" -msgstr "Reproducir si no hay nada en reproducción" - -msgid "Always start playing" -msgstr "Comenzar siempre la reproducción" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Al pulsar en el botón «Anterior» del reproductor…" - -msgid "Jump to previous song right away" -msgstr "Ir a la pista anterior inmediatamente" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Reiniciar la pista e ir a la anterior si se hace clic nuevamente" - -msgid "Double clicking a song will..." -msgstr "Al pulsar dos veces en una canción…" - -msgid "Append to the playlist" -msgstr "Añadir a la lista de reproducción" - -msgid "Replace the playlist" -msgstr "Reemplazar la lista de reproducción" - -msgid "Add to the queue" -msgstr "Añadir a la cola" - -msgid "Double clicking a song in the playlist will..." -msgstr "Al pulsar dos veces en una canción en la lista de reproducción…" - -msgid "Change the currently playing song" -msgstr "Cambiar la pista actualmente en reproducción" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Moverse en la pista mediante un atajo de teclado o la rueda del ratón" - -msgid "Time step" -msgstr "Salto en el tiempo" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Estas carpetas se analizarán en busca de música para crear su colección" - -msgid "Add new folder..." -msgstr "Añadir carpeta nueva…" - -msgid "Remove folder" -msgstr "Quitar carpeta" - -msgid "Automatic updating" -msgstr "Actualización automática" - -msgid "Update the collection when Strawberry starts" -msgstr "Actualizar la colección al iniciar Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Vigilar cambios en la colección" - -msgid "Song fingerprinting and tracking" -msgstr "Identificación y seguimiento de canciones" - -msgid "Mark disappeared songs unavailable" -msgstr "Marcar las pistas desaparecidas como no disponibles" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "días" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Nombres de archivo preferidos para las portadas (separados por comas)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Al buscar la cubierta, Strawberry tratará de localizar primero imágenes que contengan una de estas palabras. Si no hay resultados, se usará la imagen más grande de la carpeta." - -msgid "Automatically open single categories in the collection tree" -msgstr "Expandir automáticamente categorías únicas en la colección" - -msgid "Show dividers" -msgstr "Mostrar divisores" - -msgid "Show album cover art in collection" -msgstr "Mostrar cubierta del álbum en la colección" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Antememoria de mapa de bits de cubiertas" - -msgid "Enable Disk Cache" -msgstr "Activar antememoria de disco" - -msgid "Disk Cache Size" -msgstr "Tamaño de antememoria de disco" - -msgid "Current disk cache in use:" -msgstr "Antememoria de disco en uso:" - -msgid "Clear Disk Cache" -msgstr "Vaciar antememoria de disco" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "Activar eliminación de archivos en el menú contextual del botón secundario del ratón" - -msgid "Backend" -msgstr "Sistema de audio" - -msgid "Audio output" -msgstr "Salida de audio" - -msgid "Engine" -msgstr "Motor" - -msgid "ALSA plugin:" -msgstr "Complemento de ALSA:" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "Activar control de volumen" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "canales" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "Búfer" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Duración del búfer" - -msgid "High watermark" -msgstr "Marca de agua alta" - -msgid "Low watermark" -msgstr "Marca de agua baja" - -msgid "Defaults" -msgstr "Valores predeterminados" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "Ajuste de volumen en reproducción" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Usar metadatos de ajuste de volumen en reproducción si están disponibles" - -msgid "Replay Gain mode" -msgstr "Modo de ajuste de volumen en reproducción" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (volumen igual para todas las pistas)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Álbum (volumen idóneo para todas las pistas)" - -msgid "Apply compression to prevent clipping" -msgstr "Aplicar compresión para evitar saturación" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Fundido" - -msgid "Fade out when stopping a track" -msgstr "Fundido al detener la reproducción" - -msgid "Cross-fade when changing tracks manually" -msgstr "Fundido encadenado al cambiar pistas manualmente" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Fundido encadenado al cambiar pistas automáticamente" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Excepto entre pistas del mismo álbum o en la misma hoja CUE" - -msgid "Fading duration" -msgstr "Duración del fundido" - -msgid "Fade out on pause / fade in on resume" -msgstr "Fundido al pausar / reanudar" - -msgid "Add song artist tag" -msgstr "Añadir etiqueta de artista a la canción" - -msgid "Add song album tag" -msgstr "Añadir etiqueta de álbum a la canción" - -msgid "Add song title tag" -msgstr "Añadir etiqueta de título a la canción" - -msgid "Add song albumartist tag" -msgstr "Añadir etiqueta de artista del álbum a la canción" - -msgid "Add song year tag" -msgstr "Añadir etiqueta de año a la canción" - -msgid "Add song composer tag" -msgstr "Añadir etiqueta de compositor a la canción" - -msgid "Add song performer tag" -msgstr "Añadir etiqueta de intérprete a la canción" - -msgid "Add song grouping tag" -msgstr "Añadir etiqueta de agrupamiento a la canción" - -msgid "Add song disc tag" -msgstr "Añadir etiqueta de disco a la canción" - -msgid "Add song track tag" -msgstr "Añadir etiqueta de pista a la canción" - -msgid "Add song genre tag" -msgstr "Añadir etiqueta de género a la canción" - -msgid "Add song length tag" -msgstr "Añadir etiqueta de duración a la canción" - -msgid "Add song play count" -msgstr "Añadir contador de reproducciones de la canción" - -msgid "Add song skip count" -msgstr "Añadir contador de omisiones de la canción" - -msgid "Add a new line if supported by the notification type" -msgstr "Añadir un salto de renglón si el tipo de notificación lo permite" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Añadir nombre de archivo de la canción" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Añadir URL del tema" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Añadir valoración de la canción" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "Añadir etiqueta de año original" - -msgid "Custom text settings" -msgstr "Configuración de texto personalizada" - -msgid "Summary" -msgstr "Resumen" - -msgid "Enable Items" -msgstr "Activar elementos" - -msgid "Technical Data" -msgstr "Información técnica" - -msgid "Song Lyrics" -msgstr "Letra de la canción" - -msgid "Automatically search for album cover" -msgstr "Buscar automáticamente la cubierta del álbum" - -msgid "Font for headline" -msgstr "Tipo de letra de títulos" - -msgid "Font" -msgstr "Tipo de letra" - -msgid "Font size" -msgstr "Tamaño de letra" - -msgid " pt" -msgstr "pt" - -msgid "Font for data and lyrics" -msgstr "Tipo de letra de datos y letras" - -msgid "Use alternating row colors" -msgstr "Utilizar colores alternados en las filas" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Saltar al siguiente elemento en la lista de reproducción si una canción no está disponible" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Mostrar en gris las pistas no disponibles en listas de reproducción al reproducir" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Mostrar en gris las pistas no disponibles en listas de reproducción al iniciar" - -msgid "Automatically select current playing track" -msgstr "Seleccionar automáticamente la pista en reproducción" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "Activar botón de borrado de lista de reproducción" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Ordenar la lista automáticamente al insertar temas" - -msgid "When saving a playlist, file paths should be" -msgstr "Al guardar una lista de reproducción las rutas de archivo deben ser" - -msgid "A&utomatic" -msgstr "A&utomático" - -msgid "Absolu&te" -msgstr "Absolu&to" - -msgid "Re&lative" -msgstr "Re&lativo" - -msgid "As&k when saving" -msgstr "&Preguntar al guardar" - -msgid "Metadata" -msgstr "Metadatos" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Al activar esta opción podrá pulsar en la canción seleccionada de la lista de reproducción y editar la etiqueta directamente" - -msgid "Enable song metadata inline edition with click" -msgstr "Editar metadatos de pistas directamente" - -msgid "Write metadata when saving playlists" -msgstr "Escribir los metadatos al guardar las listas de reproducción" - -msgid "Scrobbler" -msgstr "Registro de reproducción" - -msgid "Enable" -msgstr "Activar" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "La reproducción de una canción es registrada solo si dispone de metadatos válidos, dura más de 30 segundos y se ha reproducido al menos durante la mitad de su duración o 4 minutos (lo que ocurra primero)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Trabajar sin conexión (solo registros de reproducción prealmacenados)" - -msgid "Show scrobble button" -msgstr "Mostrar botón de registro de reproducción" - -msgid "Show love button" -msgstr "Mostrar el botón \"Me gusta\"" - -msgid "Submit scrobbles every" -msgstr "Emitir al servidor de registro cada" - -msgid " seconds" -msgstr " segundos" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "Preferir artista del álbum al registrar reproducción" - -msgid "Show dialog for errors" -msgstr "Mostrar errores" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Activar seguimiento de reproducción para:" - -msgid "Local file" -msgstr "Archivo local" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Transmisión" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Acceder" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Ficha de usuario:" - -msgid "Covers" -msgstr "Cubiertas" - -msgid "Cover providers" -msgstr "Proveedores de cubiertas" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Selecciona los proveedores de búsqueda de cubiertas." - -msgid "Authentication" -msgstr "Autenticación" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Guardando cubiertas de álbumes" - -msgid "Save album covers in album directory" -msgstr "Guardar las cubiertas en la carpeta de álbumes" - -msgid "Save album covers in cache directory" -msgstr "Guardar cubiertas en directorio de antememoria" - -msgid "Save album covers as embedded cover" -msgstr "Guardar cubiertas del álbum como elementos incrustados" - -msgid "Filename:" -msgstr "Archivo:" - -msgid "Pattern" -msgstr "Pauta" - -msgid "Random" -msgstr "Al azar" - -msgid "Overwrite existing file" -msgstr "Sobrescribir archivo existente" - -msgid "Lowercase filename" -msgstr "Nombre de archivo en minúsculas" - -msgid "Replace spaces with dashes" -msgstr "Sustituir espacios por guiones" - -msgid "Lyrics" -msgstr "Letras" - -msgid "Lyrics providers" -msgstr "Proveedores de letras" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Seleccione los proveedores de búsqueda de letras." - -msgid "Network Proxy" -msgstr "Proxy de la red" - -msgid "&Use the system proxy settings" -msgstr "&Utilizar configuración de «proxy» del sistema" - -msgid "Direct internet connection" -msgstr "Conexión directa a Internet" - -msgid "&Manual proxy configuration" -msgstr "&Configuración manual del proxy" - -msgid "HTTP proxy" -msgstr "Proxy HTTP" - -msgid "SOCKS proxy" -msgstr "Proxy SOCKS" - -msgid "Port" -msgstr "Puerto" - -msgid "Use authentication" -msgstr "Usar autenticación" - -msgid "Username" -msgstr "Usuario" - -msgid "Password" -msgstr "Contraseña" - -msgid "Use proxy settings for streaming" -msgstr "Usar ajustes de proxy para transmisión" - -msgid "Appearance" -msgstr "Apariencia" - -msgid "Style" -msgstr "Estilo" - -msgid "Use system theme icons" -msgstr "Usar iconos del tema del sistema" - -msgid "Settings require restart." -msgstr "Los ajustes requieren reiniciar." - -msgid "Tabbar colors" -msgstr "Colores barra pestañas" - -msgid "&Use the system default color" -msgstr "&Usar el color predeterminado del sistema" - -msgid "Use custom color" -msgstr "Usar color personalizado" - -msgid "Use gradient background" -msgstr "Usar fondo degradado" - -msgid "Select tabbar color:" -msgstr "Seleccionar color barra pestañas:" - -msgid "Background image" -msgstr "Imagen de fondo" - -msgid "Default bac&kground image" -msgstr "Imagen de &fondo predeterminada" - -msgid "&No background image" -msgstr "&Sin imagen de fondo" - -msgid "The album cover of the currently playing song" -msgstr "La cubierta del álbum de la canción en reproducción" - -msgid "Albu&m cover" -msgstr "C&ubierta del álbum" - -msgid "Custom image:" -msgstr "Imagen personalizada:" - -msgid "Browse..." -msgstr "Examinar…" - -msgid "Position" -msgstr "Posición" - -msgid "Upper Left" -msgstr "Superior izquierda" - -msgid "Upper Right" -msgstr "Superior derecha" - -msgid "Middle" -msgstr "Medio" - -msgid "Bottom Left" -msgstr "Inferior izquierda" - -msgid "Bottom Right" -msgstr "Inferior derecha" - -msgid "Max cover size" -msgstr "Tamaño máximo de cubierta" - -msgid "Stretch image to fill playlist" -msgstr "Ajustar la imagen a la lista de reproducción" - -msgid "Keep aspect ratio" -msgstr "Mantener proporción" - -msgid "Do not cut image" -msgstr "No recortar la imagen" - -msgid "Blur amount" -msgstr "Cantidad de desenfoque" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Opacidad" - -msgid "40%" -msgstr "40 %" - -msgid "Icon sizes" -msgstr "Tamaños de iconos" - -msgid "Playlist buttons" -msgstr "Botones de lista de reproducción" - -msgid "Tabbar large mode" -msgstr "Barra pequeña" - -msgid "Play control buttons" -msgstr "Botones de control de reproducción" - -msgid "Configure buttons" -msgstr "Configurar botones" - -msgid "Files, playlists and queue buttons" -msgstr "Botones de archivos, listas y cola" - -msgid "Tabbar small mode" -msgstr "Barra grande" - -msgid "Playlist playing song color" -msgstr "Color de canción en repr. en lista" - -msgid "System highlight color" -msgstr "Color de resalte del sistema" - -msgid "Custom color" -msgstr "Color personalizado" - -msgid "Select playlist playing song color:" -msgstr "Seleccione el color de canción en repr. en listas:" - -msgid "Notifications" -msgstr "Notificaciones" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry puede mostrar un mensaje cuando la pista cambie." - -msgid "Notification type" -msgstr "Tipo de notificación" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Desactivado" - -msgid "Show a &native desktop notification" -msgstr "Mostrar una notificación &nativa del sistema" - -msgid "Show a pretty OSD" -msgstr "Mostrar panel de información en pantalla chulo" - -msgid "Show a popup fro&m the system tray" -msgstr "Mostrar una notificación en la bandeja del siste&ma" - -msgid "General settings" -msgstr "Configuración general" - -msgid "Popup duration" -msgstr "Duración de la notificación emergente" - -msgid "Disable duration" -msgstr "Desactivar duración" - -msgid "Show a notification when I change the volume" -msgstr "Mostrar una notificación al cambiar el volumen" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Mostrar una notificación al cambiar entre los modos repetir/aleatorio" - -msgid "Show a notification when I pause playback" -msgstr "Mostrar una notificación al pausar la reproducción" - -msgid "Show a notification when I resume playback" -msgstr "Mostrar una notificación cuando reanude la reproducción" - -msgid "Include album art in the notification" -msgstr "Incluir cubierta en la notificación" - -msgid "Custom message settings" -msgstr "Configuración de mensaje personalizado" - -msgid "Use a custom message for notifications" -msgstr "Usar un mensaje personalizado para las notificaciones" - -msgid "Body" -msgstr "Cuerpo" - -msgid "Pretty OSD options" -msgstr "Panel de información en pantalla estético" - -msgid "Background color" -msgstr "Color de fondo" - -msgid "Text options" -msgstr "Opciones del texto" - -msgid "Choose font..." -msgstr "Elegir tipo de letra…" - -msgid "Choose color..." -msgstr "Elegir color…" - -msgid "Background opacity" -msgstr "Opacidad del fondo" - -msgid "Basic Blue" -msgstr "Azul básico" - -msgid "Strawberry Red" -msgstr "Rojo de Strawberry" - -msgid "Custom..." -msgstr "Personalizado…" - -msgid "Enable fading" -msgstr "Activar transición gradual" - -msgid "Equalizer" -msgstr "Ecualizador" - -msgid "Preset:" -msgstr "Ajuste predefinido:" - -msgid "Enable equalizer" -msgstr "Activar ecualizador" - -msgid "Enable stereo balancer" -msgstr "Activar equilibrador estéreo" - -msgid "Left" -msgstr "Izquierda" - -msgid "Balance" -msgstr "Equilibrio" - -msgid "Right" -msgstr "Derecha" - -msgid "About" -msgstr "Acerca de" - -msgid "Strawberry Error" -msgstr "Error de Strawberry" - -msgid "Console" -msgstr "Consola" - -msgid "Run" -msgstr "Ejecutar" - -msgid "Edit track information" -msgstr "Editar información de la pista" - -msgid "Date created" -msgstr "Fecha de creación" - -msgid "Art Automatic" -msgstr "Cubierta automática" - -msgid "Date modified" -msgstr "Fecha de modificación" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Última reproducción" - -msgid "Play count" -msgstr "Número de reproducciones" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Tasa de bits" - -msgid "Skip count" -msgstr "Número de omisiones" - -msgid "Path" -msgstr "Ruta" - -msgid "Filename" -msgstr "Nombre del archivo" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Tamaño del archivo" - -msgid "Art Manual" -msgstr "Cubierta manual" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Reiniciar contador de reproducciones" - -msgid "Change art" -msgstr "Cambiar cubierta" - -msgid "Embedded cover" -msgstr "Cubierta incrustada" - -msgid "Complete tags automatically" -msgstr "Completar etiquetas automáticamente" - -msgid "Compilation" -msgstr "Compilación" - -msgid "Tags" -msgstr "Etiquetas" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Obtener etiquetas" - -msgid "Sorry" -msgstr "Lo sentimos" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry no encontró resultados para este archivo" - -msgid "Select best possible match" -msgstr "Seleccionar la mejor coincidencia" - -msgid "Add Stream" -msgstr "Añadir emisora" - -msgid "Enter the URL of a stream:" -msgstr "Introduzca el URL de una emisora:" - -msgid "Enter username and password" -msgstr "Introduzca usuario y contraseña" - -msgid "Import data from last.fm" -msgstr "Importar datos de Last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Escoja qué información importar de Last.fm" - -msgid "Play counts" -msgstr "Contadores de reproducción" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Atención: se reemplazará el recuento de reproducciones y la última reproducción de los temas coincidentes con los datos procedentes de Last.fm. El recuento de reproducciones se sobreescribirá atendiendo a artista y nombre del tema. Haga una copia de respaldo de su base de datos antes de comenzar." - -msgid "Go!" -msgstr "Ir" - -msgid "Close" -msgstr "Cerrar" - -msgid "Cancel" -msgstr "Cancelar" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "No volver a mostrar este mensaje." - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Pulse para alternar entre el tiempo restante y el total" - -msgid "You are not signed in." -msgstr "No ha accedido a su cuenta." - -msgid "Sign out" -msgstr "Cerrar sesión" - -msgid "Signing in..." -msgstr "Iniciando sesión…" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Artistas" - -msgid "Albums" -msgstr "Álbumes" - -msgid "Songs" -msgstr "Pistas" - -msgid "Refresh catalogue" -msgstr "Actualizar catálogo" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "artistas" - -msgid "albums" -msgstr "álbumes" - -msgid "songs" -msgstr "temas" - -msgid "Organize Files" -msgstr "Organizar archivos" - -msgid "Destination" -msgstr "Destino" - -msgid "After copying..." -msgstr "Después de copiar…" - -msgid "Keep the original files" -msgstr "Mantener los archivos originales" - -msgid "Delete the original files" -msgstr "Eliminar los archivos originales" - -msgid "Naming options" -msgstr "Opciones de nomenclatura" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Las fichas comienzan por %, por ejemplo: %artist %album %title

\n\n" -"

Si encierra una sección de texto que contenga una ficha entre llaves, esa sección no se mostrará si la ficha está vacía.

" - -msgid "Insert..." -msgstr "Insertar…" - -msgid "Remove problematic characters from filenames" -msgstr "Elimina caracteres especiales de nombres de archivo" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Limitar a caracteres permitidos en sistemas de archivos FAT" - -msgid "Restrict characters to ASCII" -msgstr "Limitar caracteres a conjunto ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Admitir caracteres de ASCII ampliado" - -msgid "Replace spaces with underscores" -msgstr "Sustituir espacios pòr caracteres de subrayado" - -msgid "Overwrite existing files" -msgstr "Sobrescribir los archivos existentes" - -msgid "Copy album cover artwork" -msgstr "Copiar cubierta del álbum" - -msgid "Safely remove the device after copying" -msgstr "Quitar dispositivo con seguridad después de copiar" - -msgid "Press a key" -msgstr "Presione una tecla" - -msgid "Global Shortcuts" -msgstr "Atajos generales" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Utilizar atajos de Gnome (GSD) cuando sea posible" - -msgid "Open..." -msgstr "Abrir…" - -msgid "Use MATE shortcuts when available" -msgstr "Utilizar atajos de MATE si están disponibles" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Utilizar atajos de KDE (GSD) cuando sea posible" - -msgid "Use X11 shortcuts when available" -msgstr "Usar atajos de X11 cuando sea posible" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Debe abrir las Preferencias del sistema y permitir que Strawberry «controle el equipo» para utilizar atajos globales en Strawberry." - -msgid "Shortcut" -msgstr "Atajo" - -msgctxt "Category label" -msgid "Action" -msgstr "Acción" - -msgid "&None" -msgstr "&Ninguno" - -msgid "&Default" -msgstr "&Predeterminado" - -msgid "&Custom" -msgstr "&Personalizado" - -msgid "Change shortcut..." -msgstr "Cambiar atajo…" - -msgid "Device Properties" -msgstr "Propiedades del dispositivo" - -msgid "Icon" -msgstr "Icono" - -msgid "Hardware information" -msgstr "Información del hardware" - -msgid "Hardware information is only available while the device is connected." -msgstr "La información del hardware solo está disponible cuando el dispositivo está conectado." - -msgid "Information" -msgstr "Información" - -msgid "Supported formats" -msgstr "Formatos admitidos" - -msgid "This device supports the following file formats:" -msgstr "Este dispositivo admite los formatos de archivo siguientes:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry puede convertir automáticamente la música que copie en este dispositivo en un formato que pueda reproducir." - -msgid "Do not convert any music" -msgstr "No convertir ninguna pista" - -msgid "Convert any music that the device can't play" -msgstr "Convertir las pistas que el dispositivo no pueda reproducir" - -msgid "Convert all music" -msgstr "Convertir toda la música" - -msgid "Preferred format" -msgstr "Formato preferido" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Este dispositivo debe conectarse y abrirse antes de que Strawberry pueda ver qué formatos de archivo admite." - -msgid "Open device" -msgstr "Abrir dispositivo" - -msgid "Querying device..." -msgstr "Consultando dispositivo…" - -msgid "File formats" -msgstr "Formatos de archivo" - -msgid "Transcode Music" -msgstr "Convertir música" - -msgid "Files to transcode" -msgstr "Archivos que convertir" - -msgid "Directory" -msgstr "Directorio" - -msgid "Add..." -msgstr "Añadir..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Añadir todas las pistas de una carpeta y sus subcarpetas" - -msgid "Import..." -msgstr "Importar…" - -msgid "Output options" -msgstr "Opciones de salida" - -msgid "Audio format" -msgstr "Formato de audio" - -msgid "Options..." -msgstr "Opciones…" - -msgid "Alongside the originals" -msgstr "Junto a los originales" - -msgid "Select..." -msgstr "Seleccionar..." - -msgid "Progress" -msgstr "Progreso" - -msgid "Details..." -msgstr "Detalles…" - -msgid "Transcoder Log" -msgstr "Registro del conversor" - -msgid " kbps" -msgstr " kb/s" - -msgid "Profile" -msgstr "Perfil" - -msgid "Main profile (MAIN)" -msgstr "Perfil principal (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Perfil de baja complejidad (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Perfil de tasa de muestreo escalable (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Perfil de predicción a largo plazo (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Usar conformación de ruido temporal" - -msgid "Allow mid/side encoding" -msgstr "Permitir codificación MS (suma / diferencia)" - -msgid "Block type" -msgstr "Tipo de bloque" - -msgid "Normal block type" -msgstr "Tipo de bloque normal" - -msgid "No short blocks" -msgstr "Sin bloques cortos" - -msgid "No long blocks" -msgstr "Sin bloques largos" - -msgid "Transcoding options" -msgstr "Opciones de conversión" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Calidad" - -msgid "Fast" -msgstr "Rápido" - -msgid "Best" -msgstr "Mejor" - -msgid "Use bitrate management engine" -msgstr "Usar el motor de gestión de flujo de bits" - -msgid "Target bitrate" -msgstr "Tasa de bits objetivo" - -msgid "Minimum bitrate" -msgstr "Tasa de bits mínima" - -msgid "disabled" -msgstr "desactivado" - -msgid "Maximum bitrate" -msgstr "Tasa de bits máxima" - -msgid "automatic" -msgstr "automático" - -msgid "Average bitrate" -msgstr "Tasa media de bits" - -msgid "Encoding mode" -msgstr "Modo de codificación" - -msgid "Auto" -msgstr "Autom." - -msgid "Ultra wide band (UWB)" -msgstr "Banda ultraancha (UWB)" - -msgid "Wide band (WB)" -msgstr "Banda ancha (WB)" - -msgid "Narrow band (NB)" -msgstr "Banda estrecha (NB)" - -msgid "Variable bit rate" -msgstr "Tasa de bits variable" - -msgid "Voice activity detection" -msgstr "Detección de actividad de voz" - -msgid "Discontinuous transmission" -msgstr "Transmisión discontinua" - -msgid "Encoding complexity" -msgstr "Complejidad de codificación" - -msgid "Frames per buffer" -msgstr "Fotogramas por búfer" - -msgid "Optimize for &quality" -msgstr "Optimizar para &calidad" - -msgid "Opti&mize for bitrate" -msgstr "Opti&mizar para tasa de bits" - -msgid "Constant bitrate" -msgstr "Tasa de bits constante" - -msgid "Encoding engine quality" -msgstr "Calidad del motor de codificación" - -msgid "Standard" -msgstr "Estándar" - -msgid "High" -msgstr "Alto" - -msgid "Force mono encoding" -msgstr "Forzar la codificación monoaural" - -msgid "Transcoding" -msgstr "Convirtiendo" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Estos ajustes se usa en la ventana «Convertir música» y al convertir canciones antes de copiarlas en un dispositivo." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "URL del servidor" - -msgid "Authentication method:" -msgstr "Metodo de autentificacion" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Preferencias" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "Verificar el certificado del servidor" - -msgid "Download album covers" -msgstr "Descargar las cubiertas de los álbumes" - -msgid "Server-side scrobbling" -msgstr "Seguimiento de reproducción en el servidor" - -msgid "Test" -msgstr "Probar" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "La compatibilidad con Tidal no es oficial y precisa de una ficha de API procedente de una aplicación registrada. No le podemos ayudar a conseguirla." - -msgid "Use OAuth" -msgstr "Utilizar OAuth" - -msgid "Client ID" -msgstr "Id. de cliente" - -msgid "API Token" -msgstr "Ficha de API" - -msgid "Audio quality" -msgstr "Calidad de audio" - -msgid "Search delay" -msgstr "Demora de búsqueda" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Límites de búsqueda de artistas" - -msgid "Albums search limit" -msgstr "Límites de búsqueda de álbumes" - -msgid "Songs search limit" -msgstr "Límite de búsqueda de pistas" - -msgid "Fetch entire albums when searching songs" -msgstr "Devolver el álbum completo al buscar pistas" - -msgid "Album cover size" -msgstr "Tamaño de la cubierta del álbum" - -msgid "Stream URL method" -msgstr "Método de streaming de URL" - -msgid "Append explicit to album title for explicit albums" -msgstr "Añadir «explícito» al nombre de los álbumes explícitos" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "La compatibilidad con Qobuz no es oficial y precisa de una ficha de API procedente de una aplicación registrada. No le podemos ayudar a conseguirla." - -msgid "App ID" -msgstr "Id. de aplic." - -msgid "App Secret" -msgstr "Secreto de aplicación" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "Barra de ánimo" - -msgid "Show a moodbar in the track progress bar" -msgstr "Mostrar una barra de ánimo en la barra de progreso" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Guardar archivos .mood directamente en las carpetas de las pistas" - -msgid "Enabled" -msgstr "Activado" - -msgid "Return to Strawberry" -msgstr "Volver a Strawberry" - -msgid "Success!" -msgstr "¡Hecho!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Cierre el navegador y vuelva a Strawberry." - diff --git a/src/translations/es_ES.po b/src/translations/es_ES.po deleted file mode 100644 index e5f700e3..00000000 --- a/src/translations/es_ES.po +++ /dev/null @@ -1,4355 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: es-ES\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Spanish\n" -"Language: es_ES\n" -"PO-Revision-Date: 2024-09-29 20:05\n" - -msgid "All Files (*)" -msgstr "Todos los archivos (*)" - -msgid "Context" -msgstr "Contexto" - -msgid "Collection" -msgstr "Colección" - -msgid "Queue" -msgstr "Cola" - -msgid "Playlists" -msgstr "Listas" - -msgid "Smart playlists" -msgstr "Listas inteligentes" - -msgid "Files" -msgstr "Archivos" - -msgid "Radios" -msgstr "Radios" - -msgid "Devices" -msgstr "Dispositivos" - -msgid "Subsonic" -msgstr "Subsonic" - -msgid "Tidal" -msgstr "Tidal" - -msgid "Spotify" -msgstr "Spotify" - -msgid "Qobuz" -msgstr "Qobuz" - -msgid "Show all songs" -msgstr "Mostrar todos los temas" - -msgid "Show only duplicates" -msgstr "Mostrar solo los duplicados" - -msgid "Show only untagged" -msgstr "Solo mostrar no etiquetadas" - -msgid "Configure collection..." -msgstr "Configurar colección…" - -msgid "Play" -msgstr "Reproducir" - -msgid "Stop after this track" -msgstr "Detener reproducción al finalizar la pista actual" - -msgid "Toggle queue status" -msgstr "Cambiar estado de la cola" - -msgid "Queue selected tracks to play next" -msgstr "Poner en cola las pistas seleccionadas para reproducir a continuación" - -msgid "Toggle skip status" -msgstr "Alternar estado de avance" - -msgid "Rescan song(s)..." -msgstr "Volver a escanear tema(s)..." - -msgid "Copy URL(s)..." -msgstr "Copiar URL…" - -msgid "Show in collection..." -msgstr "Mostrar en la colección…" - -msgid "Show in file browser..." -msgstr "Mostrar en el gestor de archivos…" - -msgid "Organize files..." -msgstr "Organizar archivos…" - -msgid "Copy to collection..." -msgstr "Copiar en la colección…" - -msgid "Move to collection..." -msgstr "Mover a la colección…" - -msgid "Copy to device..." -msgstr "Copiar en un dispositivo…" - -msgid "Delete from disk..." -msgstr "Eliminar del disco…" - -msgid "Check for updates..." -msgstr "Buscar actualizaciones…" - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry ejecutándose bajo Rosetta" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "Estás ejecutando Strawberry bajo Rosetta. Ejecutar Strawberry bajo Rosetta no está soportado y se sabe que da problemas. Deberías descargar Strawberry para la arquitectura de CPU correcta desde %1" - -msgid "Sponsoring Strawberry" -msgstr "Patrocinar Strawberry" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry es software libre y de código abierto. Si te gusta Strawberry, por favor considera patrocinar el proyecto. Para más información sobre el patrocinio, visita nuestro sitio web %1" - -msgid "Pause" -msgstr "Pausar" - -msgid "Dequeue track" -msgstr "Quitar la pista de la cola" - -msgid "Dequeue selected tracks" -msgstr "Quitar las pistas seleccionadas de la cola" - -msgid "Queue track" -msgstr "Poner pista en cola" - -msgid "Queue selected tracks" -msgstr "Poner en cola las pistas seleccionadas" - -msgid "Queue to play next" -msgstr "Poner en cola para reproducir a continuación" - -msgid "Unskip track" -msgstr "No omitir pista" - -msgid "Unskip selected tracks" -msgstr "No omitir pistas seleccionadas" - -msgid "Skip track" -msgstr "Omitir pista" - -msgid "Skip selected tracks" -msgstr "Omitir pistas seleccionadas" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Establecer %1 a «%2»…" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Editar etiqueta «%1»…" - -msgid "Add to another playlist" -msgstr "Añadir a otra lista de reproducción" - -msgid "New playlist" -msgstr "Lista nueva" - -msgid "Add file" -msgstr "Añadir archivo" - -msgid "Music" -msgstr "Música" - -msgid "Add folder" -msgstr "Añadir carpeta" - -msgid "Clear playlist" -msgstr "Vaciar lista de reproducción" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "La lista de reproducción tiene %1 temas, demasiados para deshacer, ¿estás seguro de que quiere eliminarla?" - -msgid "Error" -msgstr "Error" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Ninguna de los temas seleccionados podía copiarse en un dispositivo" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "La versión de Strawberry a la que se acaba de actualizar necesita volver a analizar la colección debido a estas nuevas funciones:" - -msgid "Would you like to run a full rescan right now?" -msgstr "¿Quiere ejecutar un nuevo análisis completo ahora?" - -msgid "Collection rescan notice" -msgstr "Notificación de nuevo análisis de la colección" - -msgid "Usage" -msgstr "Uso" - -msgid "options" -msgstr "opciones" - -msgid "URL(s)" -msgstr "URL" - -msgid "Player options" -msgstr "Opciones del reproductor" - -msgid "Start the playlist currently playing" -msgstr "Iniciar la lista de reproducción actualmente en reproducción" - -msgid "Play if stopped, pause if playing" -msgstr "Reproducir si detenido, pausar si en reproducción" - -msgid "Pause playback" -msgstr "Pausar la reproducción" - -msgid "Stop playback" -msgstr "Detener reproducción" - -msgid "Stop playback after current track" -msgstr "Detener reproducción al terminar la pista actual" - -msgid "Skip backwards in playlist" -msgstr "Saltar hacia atrás en la lista de reproducción" - -msgid "Skip forwards in playlist" -msgstr "Saltar hacia adelante en la lista de reproducción" - -msgid "Set the volume to percent" -msgstr "Establecer el volumen en %" - -msgid "Increase the volume by 4 percent" -msgstr "Aumentar el volumen en un 4 %" - -msgid "Decrease the volume by 4 percent" -msgstr "Reduce el volumen en un 4 %" - -msgid "Increase the volume by percent" -msgstr "Aumentar el volumen en  %" - -msgid "Decrease the volume by percent" -msgstr "Reduce el volumen en  %" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Desplazarse en la pista en reproducción hasta una posición absoluta" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Desplazarse en la pista en reproducción un tiempo determinado" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Reiniciar la pista o saltar a la anterior si no han transcurrido 8 segundos desde su inicio." - -msgid "Playlist options" -msgstr "Opciones de la lista de reproducción" - -msgid "Create a new playlist with files" -msgstr "Crear una lista de reproducción nueva con archivos" - -msgid "Append files/URLs to the playlist" -msgstr "Añadir archivos/URL a la lista de reproducción" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Carga archivos/URL, reemplaza la lista de reproducción actual" - -msgid "Play the th track in the playlist" -msgstr "Reproducir la .ª pista de la lista de reproducción" - -msgid "Play given playlist" -msgstr "Reproducir lista indicada" - -msgid "Other options" -msgstr "Otras opciones" - -msgid "Display the on-screen-display" -msgstr "Mostrar indicadores en pantalla" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Conmutar visibilidad del panel de información estilizado" - -msgid "Change the language" -msgstr "Cambiar el idioma" - -msgid "Resize the window" -msgstr "Redimensionar la ventana" - -msgid "Equivalent to --log-levels *:1" -msgstr "Equivalente a --log-levels*:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Equivalente a --log-levels*:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Lista separada por comas de la clase:nivel, el nivel es 0-3" - -msgid "Print out version information" -msgstr "Mostrar información de versión" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "No se puede ejecutar la consulta SQL: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Falló la consulta SQL: %1" - -msgid "Integrity check" -msgstr "Comprobación de integridad" - -msgid "Database corruption detected." -msgstr "Se han detectado errores en la base de datos." - -msgid "Backing up database" -msgstr "Haciendo copia de respaldo de la base de datos" - -msgid "Deleting files" -msgstr "Eliminando los archivos" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "No se pudo crear el directorio %1." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "El fichero de destino %1 existe, pero no está permitida la sobreescritura." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "El fichero de destino %1 existe, pero no está permitida la sobreescritura" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "No se pudo copiar el fichero %1 a %2." - -msgid "Unknown" -msgstr "Desconocido" - -msgid "LUFS" -msgstr "LUFS" - -msgid "LU" -msgstr "LU" - -msgid "You need GStreamer for this URL." -msgstr "Necesita GStreamer para este URL." - -msgid "Preload function was not set for blocking operation." -msgstr "La función de precarga no se ajustó para un funcionamiento con bloqueo." - -#, qt-format -msgid "File %1 does not exist." -msgstr "El archivo %1 no existe." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "El archivo de audio %1 no parece válido." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "La reproducción de CD solo es posible con el motor GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "No se ha podido abrir el archivo %1 para leer: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "No se ha podido leer el archivo CUE %1: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "No se ha podido leer el archivo de lista de reproducción %1: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "No se ha podido crear una fuente GStreamer para %1" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "No se pudo crear el elemento typefind de GStreamer para %1" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "No se pudo crear el elemento fakesink de GStreamer para %1" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "No se pudieron vincular los elementos fuente, typefind y fakesink de GStreamer para %1" - -msgid "Playlist" -msgstr "Lista" - -msgid "1 day" -msgstr "1 día" - -#, qt-format -msgid "%1 days" -msgstr "%1 días" - -msgid "Today" -msgstr "Hoy" - -msgid "Yesterday" -msgstr "Ayer" - -#, qt-format -msgid "%1 days ago" -msgstr "hace %1 días" - -msgid "Tomorrow" -msgstr "Mañana" - -#, qt-format -msgid "In %1 days" -msgstr "En %1 días" - -msgid "Next week" -msgstr "Próxima semana" - -#, qt-format -msgid "In %1 weeks" -msgstr "En %1 semanas" - -msgid "Show in file browser" -msgstr "Mostrar en el navegador de archivos" - -msgid "Too many songs selected." -msgstr "Demasiados temas seleccionados." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "Se han seleccionado %1 temas en %2 directorios. ¿Confirma que quiere abrirlos todas?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "Falló la carga de la imagen desde datos para %1" - -msgid "Success" -msgstr "Éxito" - -msgid "File is unsupported" -msgstr "El archivo no es compatible" - -msgid "Filename is missing" -msgstr "Falta el nombre del archivo" - -msgid "File does not exist" -msgstr "El archivo no existe" - -msgid "File could not be opened" -msgstr "No se pudo abrir el archivo" - -msgid "Could not parse file" -msgstr "No se pudo procesar el archivo" - -msgid "Could save file" -msgstr "Se pudo guardar el archivo" - -msgid "Unknown error" -msgstr "Error desconocido" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "Utilice un nombre de campo como prefijo del término de búsqueda para limitar la búsqueda a ese campo, p. ej.:" - -msgid "artist" -msgstr "artista" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "busca todos los artistas que contienen la palabra %1. " - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "Los términos de búsqueda para campos numéricos pueden llevar %1 o %2 como prefijos para refinar la búsqueda, p. ej.: " - -msgid "rating" -msgstr "valoración" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "También pueden combinarse múltiples términos de búsqueda con \"%1\" (por defecto) y \"%2\", así como agrupados con paréntesis. " - -msgid "Available fields" -msgstr "Campos disponibles" - -msgid "Buffering" -msgstr "Guardando en búfer" - -msgid "Framerate" -msgstr "Tasa de fotogramas" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Baja (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Media (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Alta (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Muy alta (%1 fps)" - -msgid "No analyzer" -msgstr "Sin analizador" - -msgid "Block analyzer" -msgstr "Analizador de bloques" - -msgid "Boom analyzer" -msgstr "Analizador de resonancia" - -msgid "Turbine" -msgstr "Turbine" - -msgid "Sonogram" -msgstr "Sonograma" - -msgid "WaveRubber" -msgstr "WaveRubber" - -msgid "Pre-amp" -msgstr "Preamplificador" - -msgid "Custom" -msgstr "Personalizado" - -msgid "Classical" -msgstr "Clásica" - -msgid "Club" -msgstr "Club" - -msgid "Dance" -msgstr "Música de baile" - -msgid "Full Bass" -msgstr "Graves completos" - -msgid "Full Treble" -msgstr "Agudos completos" - -msgid "Full Bass + Treble" -msgstr "Graves y agudos completos" - -msgid "Laptop/Headphones" -msgstr "Portátil/auriculares" - -msgid "Large Hall" -msgstr "Salón grande" - -msgid "Live" -msgstr "En directo" - -msgid "Party" -msgstr "Fiesta" - -msgid "Pop" -msgstr "Pop" - -msgid "Reggae" -msgstr "Reggae" - -msgid "Rock" -msgstr "Rock" - -msgid "Soft" -msgstr "Suave" - -msgid "Ska" -msgstr "Ska" - -msgid "Soft Rock" -msgstr "Soft rock" - -msgid "Techno" -msgstr "Tecno" - -msgid "Zero" -msgstr "Cero" - -msgid "Save preset" -msgstr "Guardar ajuste predefinido" - -msgid "Name" -msgstr "Nombre" - -msgid "Delete preset" -msgstr "Eliminar ajuste predefinido" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "¿Confirma que quiere eliminar el ajuste predefinido «%1»?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 dB" - -msgid "Filetype" -msgstr "Tipo de archivo" - -msgid "Length" -msgstr "Duración" - -msgid "Samplerate" -msgstr "Frecuencia" - -msgid "Bit depth" -msgstr "Resolución" - -msgid "Bitrate" -msgstr "Tasa de bits" - -msgid "EBU R 128 Integrated Loudness" -msgstr "Volumen integrado EBU R 128" - -msgid "EBU R 128 Loudness Range" -msgstr "Rango de volumen EBU R 128" - -msgid "Show album cover" -msgstr "Mostrar portada del álbum" - -msgid "Show song technical data" -msgstr "Mostrar información técnica del tema" - -msgid "Show song lyrics" -msgstr "Mostrar letras" - -msgid "Automatically search for song lyrics" -msgstr "Buscar automáticamente la letra de los temas" - -msgid "No song playing" -msgstr "No está sonando ningún tema" - -#, qt-format -msgid "%1 song" -msgstr "%1 tema" - -#, qt-format -msgid "%1 songs" -msgstr "%1 temas" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artista" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artistas" - -#, qt-format -msgid "%1 album" -msgstr "%1 álbum" - -#, qt-format -msgid "%1 albums" -msgstr "%1 álbumes" - -msgid "kbps" -msgstr "kb/s" - -msgid "Saving playcounts and ratings" -msgstr "Guardando nº de reproducciones y valoraciones" - -msgid "Various artists" -msgstr "Varios artistas" - -msgid "Loading..." -msgstr "Cargando…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "No se puede ejecutar la consulta SQL de la colección: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "Actualizando base de datos de %1." - -msgid "Updating collection" -msgstr "Actualizando la colección" - -#, qt-format -msgid "Updating %1" -msgstr "Actualizando %1" - -msgid "Your collection is empty!" -msgstr "La colección está vacía!" - -msgid "Click here to add some music" -msgstr "Pulse aquí para añadir música" - -msgid "Append to current playlist" -msgstr "Añadir a la lista de reproducción actual" - -msgid "Replace current playlist" -msgstr "Reemplazar lista de reproducción actual" - -msgid "Open in new playlist" -msgstr "Abrir en una lista nueva" - -msgid "Search for this" -msgstr "Buscar esto" - -msgid "Edit track information..." -msgstr "Editar información de la pista…" - -msgid "Edit tracks information..." -msgstr "Editar información de las pistas…" - -msgid "Rescan song(s)" -msgstr "Volver a escanear tema(s)" - -msgid "Show in various artists" -msgstr "Mostrar en Varios artistas" - -msgid "Don't show in various artists" -msgstr "No mostrar en Varios artistas" - -msgid "There are other songs in this album" -msgstr "Hay otros temas en este álbum" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "¿Le gustaría mover también el resto de temas del álbum a Varios artistas?" - -msgid "Show" -msgstr "Mostrar" - -msgid "Group by" -msgstr "Agrupar por" - -msgid "Display options" -msgstr "Opciones de visualización" - -msgid "Group by Album artist/Album" -msgstr "Agrupar por artista del álbum/álbum" - -msgid "Group by Album artist/Album - Disc" -msgstr "Agrupar por artista del álbum/álbum - disco" - -msgid "Group by Album artist/Year - Album" -msgstr "Agrupar por artista del álbum/año - álbum" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Agrupar por artista del álbum/año - álbum - disco" - -msgid "Group by Artist/Album" -msgstr "Agrupar por artista/álbum" - -msgid "Group by Artist/Album - Disc" -msgstr "Agrupar por artista/álbum - disco" - -msgid "Group by Artist/Year - Album" -msgstr "Agrupar por artista/año - álbum" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Agrupar por artista/año - álbum - disco" - -msgid "Group by Genre/Album artist/Album" -msgstr "Agrupar por género/artista del álbum/álbum" - -msgid "Group by Genre/Artist/Album" -msgstr "Agrupar por género/artista/álbum" - -msgid "Group by Album Artist" -msgstr "Agrupar por artista del álbum" - -msgid "Group by Artist" -msgstr "Agrupar por artista" - -msgid "Group by Album" -msgstr "Agrupar por álbum" - -msgid "Group by Genre/Album" -msgstr "Agrupar por género/álbum" - -msgid "Advanced grouping..." -msgstr "Agrupamiento avanzado…" - -msgid "Grouping Name" -msgstr "Nombre de agrupamiento" - -msgid "Grouping name:" -msgstr "Nombre de agrupamiento:" - -msgid "First level" -msgstr "Primer nivel" - -msgid "Second Level" -msgstr "Segundo nivel" - -msgid "Third Level" -msgstr "Tercer nivel" - -msgid "None" -msgstr "Ninguno" - -msgid "Album artist" -msgstr "Artista del álbum" - -msgid "Artist" -msgstr "Artista" - -msgid "Album" -msgstr "Álbum" - -msgid "Album - Disc" -msgstr "Álbum - Disco" - -msgid "Year - Album" -msgstr "Año - álbum" - -msgid "Year - Album - Disc" -msgstr "Año - álbum - disco" - -msgid "Original year - Album" -msgstr "Año original - álbum" - -msgid "Original year - Album - Disc" -msgstr "Año original - álbum - disco" - -msgid "Disc" -msgstr "Disco" - -msgid "Year" -msgstr "Año" - -msgid "Original year" -msgstr "Año original" - -msgid "Genre" -msgstr "Género" - -msgid "Composer" -msgstr "Compositor" - -msgid "Performer" -msgstr "Intérprete" - -msgid "Grouping" -msgstr "Agrupamiento" - -msgid "File type" -msgstr "Tipo" - -msgid "Format" -msgstr "Formato" - -msgid "Sample rate" -msgstr "Frecuencia" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "No se pudieron escribir los metadatos en %1" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "No se pudieron escribir los metadatos en %1: %2" - -msgid "Title" -msgstr "Título" - -msgid "Track" -msgstr "Pista" - -msgid "Original Year" -msgstr "Año original" - -msgid "Album Artist" -msgstr "Artista del álbum" - -msgid "Play Count" -msgstr "Número de reproducciones" - -msgid "Skip Count" -msgstr "Número de saltos" - -msgid "Last Played" -msgstr "Última reproducción" - -msgid "Sample Rate" -msgstr "Frecuencia de muestreo" - -msgid "Bit Depth" -msgstr "Profundidad de bit" - -msgid "File Name" -msgstr "Nombre de fichero" - -msgid "File Name (without path)" -msgstr "Nombre de fichero (sin ruta)" - -msgid "File Size" -msgstr "Tamaño del fichero" - -msgid "File Type" -msgstr "Tipo de fichero" - -msgid "Date Modified" -msgstr "Fecha de modificación" - -msgid "Date Created" -msgstr "Fecha de creación" - -msgid "Comment" -msgstr "Comentario" - -msgid "Source" -msgstr "Origen" - -msgid "Mood" -msgstr "Ánimo" - -msgid "Rating" -msgstr "Valoración" - -msgid "CUE" -msgstr "CUE" - -msgid "Integrated Loudness" -msgstr "Volumen integrado" - -msgid "Loudness Range" -msgstr "Rango de volumen" - -msgid "Undo" -msgstr "Deshacer" - -msgid "Redo" -msgstr "Volver a hacer" - -msgid "Load playlist" -msgstr "Cargar lista de reproducción" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "No se encontraron coincidencias. Borre el texto introducido en el cuadro de búsqueda para mostrar la lista completa de nuevo." - -msgid "stop" -msgstr "detener" - -msgid "Never" -msgstr "Nunca" - -msgid "&Hide..." -msgstr "&Ocultar…" - -msgid "&Stretch columns to fit window" -msgstr "&Ajustar columnas a la ventana" - -msgid "&Reset columns to default" -msgstr "&Reajustar columnas a valores iniciales" - -msgid "&Lock rating" -msgstr "B&loquear valoración" - -msgid "&Align text" -msgstr "&Alinear el texto" - -msgid "&Left" -msgstr "&Izquierda" - -msgid "&Center" -msgstr "&Centrar" - -msgid "&Right" -msgstr "&Derecha" - -#, qt-format -msgid "&Hide %1" -msgstr "&Ocultar «%1»" - -msgid "New folder" -msgstr "Carpeta nueva" - -msgid "Delete" -msgstr "Eliminar" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Guardar lista de reproducción" - -msgid "Enter the name of the folder" -msgstr "Escriba el nombre de la carpeta" - -msgid "Copy to device" -msgstr "Copiar en un dispositivo" - -msgid "Playlist must be open first." -msgstr "La lista debe abrirse primero." - -msgid "Remove playlists" -msgstr "Eliminar listas de reproducción" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "¿Confirma que quiere eliminar %1 listas de reproducción de sus favoritos?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Puede marcar listas de reproducción como favoritas pulsando en los iconos con forma de estrella junto a sus nombres" - -msgid "Favorited playlists will be saved here" -msgstr "Sus listas favoritas se guardarán aquí" - -msgid "Couldn't create playlist" -msgstr "No se pudo crear la lista de reproducción" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Guardar lista de reproducción" - -msgid "Unknown playlist extension" -msgstr "Extensión de la lista de reproducción desconocida" - -msgid "Unknown file extension for playlist." -msgstr "Extensión desconocida para lista de reproducción." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 seleccionado de" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "%n pista(s)" - -msgid "Automatic" -msgstr "Automático" - -msgid "Relative" -msgstr "Relativo" - -msgid "Absolute" -msgstr "Absoluto" - -msgid "Star playlist" -msgstr "Marcar lista de reproducción como favorita" - -msgid "Close playlist" -msgstr "Cerrar lista de reproducción" - -msgid "Rename playlist..." -msgstr "Cambiar nombre de lista…" - -msgid "Save playlist..." -msgstr "Guardar lista de reproducción…" - -msgid "Rename playlist" -msgstr "Cambiar nombre de lista" - -msgid "Enter a new name for this playlist" -msgstr "Introduzca un nombre nuevo para esta lista de reproducción" - -msgid "Remove playlist" -msgstr "Eliminar lista de reproducción" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Está a punto de eliminar una lista de reproducción que no está entre sus favoritas (esta acción no se puede deshacer).\n" -"¿Confirma que quiere continuar?" - -msgid "Warn me when closing a playlist tab" -msgstr "Avisarme antes de cerrar una pestaña de lista de reproducción" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Puede modificar esta opción en la pestaña «Comportamiento» en Preferencias" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Pulse dos veces para convertir esta lista en favorita y que se guarde y quede accesible en el panel «Listas» de la barra izquierda" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "añadir %n temas" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "quitar %n temas" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "mover %n temas" - -msgid "sort songs" -msgstr "ordenar temas" - -msgid "shuffle songs" -msgstr "mezclar temas" - -msgid "Hz" -msgstr "Hz" - -msgid "Bit" -msgstr "Bit" - -msgid "Error while loading audio CD." -msgstr "Error al cargar el CD de audio." - -msgid "Loading tracks" -msgstr "Cargando pistas" - -msgid "Loading tracks info" -msgstr "Cargando información de pistas" - -msgid "Saving CUE files is not supported." -msgstr "Guardar archivos CUE no está soportado." - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "No sé cómo manejar %1" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Todas las listas de reproducción (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 listas de reproducción (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "Tipo de fichero desconocido: %1" - -#, qt-format -msgid "Could not open file %1" -msgstr "No se pudo abrir el fichero %1" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "El directorio %1 no existe." - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "No se pudo abrir %1 para escritura." - -msgid "Loading smart playlist" -msgstr "Cargando lista inteligente" - -msgid "Collection search" -msgstr "Búsqueda en la colección" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Encontrar temas que coincidan con sus criterios en la colección." - -msgid "Search terms" -msgstr "Términos de búsqueda" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Se incluirá el tema si cumple estas condiciones." - -msgid "Search options" -msgstr "Opciones de búsqueda" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Seleccionar como se ordenará la lista y qué temas contendrá." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 temas encontrados (se muestran %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 temas encontrados" - -msgid "after" -msgstr "después" - -msgid "before" -msgstr "antes" - -msgid "on" -msgstr "el" - -msgid "not on" -msgstr "no el" - -msgid "in the last" -msgstr "en el último" - -msgid "not in the last" -msgstr "no en los últimos" - -msgid "between" -msgstr "entre" - -msgid "contains" -msgstr "contiene" - -msgid "does not contain" -msgstr "no contiene" - -msgid "starts with" -msgstr "comienza por" - -msgid "ends with" -msgstr "termina en" - -msgid "greater than" -msgstr "mayor que" - -msgid "less than" -msgstr "menos de" - -msgid "equals" -msgstr "es igual a" - -msgid "not equals" -msgstr "no es igual a" - -msgid "empty" -msgstr "vacío" - -msgid "not empty" -msgstr "no vacío" - -msgid "A-Z" -msgstr "A-Z" - -msgid "Z-A" -msgstr "Z-A" - -msgid "oldest first" -msgstr "el más antiguo primero" - -msgid "newest first" -msgstr "el más nuevo primero" - -msgid "shortest first" -msgstr "el más corto primero" - -msgid "longest first" -msgstr "el más largo primero" - -msgid "smallest first" -msgstr "el más pequeño primero" - -msgid "biggest first" -msgstr "primero el mayor" - -msgid "Hours" -msgstr "Horas" - -msgid "Days" -msgstr "Días" - -msgid "Weeks" -msgstr "Semanas" - -msgid "Months" -msgstr "Meses" - -msgid "Years" -msgstr "Años" - -msgid "The second value must be greater than the first one!" -msgstr "El segundo valor debe ser mayor que el primero!" - -msgid "Add search term" -msgstr "Añadir término de búsqueda" - -msgid "Newest tracks" -msgstr "Pistas más nuevas" - -msgid "50 random tracks" -msgstr "50 pistas aleatorias" - -msgid "Ever played" -msgstr "Ya reproducido" - -msgid "Never played" -msgstr "Nunca reproducidas" - -msgid "Last played" -msgstr "Últimas reproducidas" - -msgid "Most played" -msgstr "Más reproducidas" - -msgid "Favourite tracks" -msgstr "Pistas favoritas" - -msgid "Least favourite tracks" -msgstr "Pistas menos valoradas" - -msgid "All tracks" -msgstr "Todas las pistas" - -msgid "Dynamic random mix" -msgstr "Mezcla aleatoria dinámica" - -msgid "New smart playlist..." -msgstr "Lista inteligente nueva…" - -msgid "Play next" -msgstr "Reproducir siguiente" - -msgid "Edit smart playlist..." -msgstr "Editar lista inteligente..." - -msgid "Delete smart playlist" -msgstr "Eliminar lista inteligente" - -msgid "Smart playlist" -msgstr "Lista inteligentes" - -msgid "Playlist type" -msgstr "Tipo de lista" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Una lista inteligente es una lista dinámica de temas de la biblioteca. Hay distintos tipos de listas inteligentes que permiten seleccionar los temas de distintas maneras." - -msgid "Finish" -msgstr "Terminar" - -msgid "Choose a name for your smart playlist" -msgstr "Escoja un nombre para su lista inteligente" - -msgid "Abort" -msgstr "Interrumpir" - -msgid "All albums" -msgstr "Todos los álbumes" - -msgid "Albums with covers" -msgstr "Álbumes con portada" - -msgid "Albums without covers" -msgstr "Álbumes sin portada" - -msgid "Really cancel?" -msgstr "¿Confirma que quiere cancelar?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Si cierra esta ventana se detendrá la búsqueda de portadas para los álbumes." - -msgid "Don't stop!" -msgstr "¡No detener!" - -msgid "All artists" -msgstr "Todos los artistas" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Se obtuvieron %1 portadas de %2 (%3 fallaron)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 transferido" - -msgid "Export finished" -msgstr "Exportación finalizada" - -msgid "No covers to export." -msgstr "No hay ninguna portada que exportar." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Se han exportado %1 portadas de %2 (%3 omitidas)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "No se pudo guardar la portada en el fichero %1." - -#, qt-format -msgid "Covers from %1" -msgstr "Portadas de %1" - -msgid "Search" -msgstr "Buscar" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Imágenes (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Imágenes (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Todos los archivos (*)" - -msgid "Load cover from disk..." -msgstr "Cargar portada desde disco…" - -msgid "Save cover to disk..." -msgstr "Guardar la portada en el disco…" - -msgid "Load cover from URL..." -msgstr "Cargar portada desde un URL…" - -msgid "Search for album covers..." -msgstr "Buscar portadas de álbumes…" - -msgid "Unset cover" -msgstr "Quitar la portada" - -msgid "Delete cover" -msgstr "Eliminar portada" - -msgid "Clear cover" -msgstr "Eliminar portada" - -msgid "Show fullsize..." -msgstr "Mostrar a tamaño completo…" - -msgid "Search automatically" -msgstr "Buscar automáticamente" - -msgid "Load cover from disk" -msgstr "Cargar portada desde disco" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "No se ha podido leer el archivo de portada %1: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "El archivo de portada %1 está vacío." - -msgid "unknown" -msgstr "desconocido" - -msgid "Save album cover" -msgstr "Guardar la portada del álbum" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "No se ha podido escribir el archivo de portada %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Error escribiendo la portada en el archivo %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Error escribiendo la portada en el archivo %1." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "No se ha podido eliminar el archivo de portada %1: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "No se ha podido escribir la portada en el archivo %1: %2" - -msgid "Total network requests made" -msgstr "Total de solicitudes hechas a la red" - -msgid "Average image size" -msgstr "Tamaño medio de imagen" - -msgid "Total bytes transferred" -msgstr "Total de bytes transferidos" - -msgid "Fetching cover error" -msgstr "Error al obtener la portada" - -msgid "The site you requested does not exist!" -msgstr "El sitio indicado no existe!" - -msgid "The site you requested is not an image!" -msgstr "El sitio indicado no es una imagen!" - -msgid "Genius Authentication" -msgstr "Autenticación con Genius" - -msgid "Please open this URL in your browser" -msgstr "Abra este URL en el navegador" - -msgid "Redirect missing token code!" -msgstr "¡Falta código del token de redirección!" - -msgid "Received invalid reply from web browser." -msgstr "Se recibió una respuesta no válida del navegador." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Redirección Genius carece de código de elementos de búsqueda o estado." - -msgid "General" -msgstr "General" - -msgid "User interface" -msgstr "Interfaz de usuario" - -msgid "Streaming" -msgstr "Retransmitiendo" - -msgid "Add directory..." -msgstr "Añadir carpeta…" - -msgid "Write all playcounts and ratings to files" -msgstr "Escribir en los archivos todas las estadísticas de reproducción y valoraciones" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "¿Está seguro de que quiere guardar el nº de reproducciones y las valoraciones de todos los temas de su colección?" - -msgid "Enter your user token from" -msgstr "Introduzca su token de usuario de" - -msgid "Use Tidal settings to authenticate." -msgstr "Usar ajustes de Tidal para autenticarse." - -msgid "Use Spotify settings to authenticate." -msgstr "Usar ajustes de Spotify para autenticarse." - -msgid "Use Qobuz settings to authenticate." -msgstr "Usar ajustes de Qobuz para autenticarse." - -#, qt-format -msgid "%1 needs authentication." -msgstr "ubiertalaylists%1 necesita autenticación." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 no necesita autenticación." - -msgid "No provider selected." -msgstr "No se ha seleccionado ningún proveedor." - -msgid "Authentication failed" -msgstr "Falló la autenticación" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "Indefinido manualmente (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "Establecer mediante la búsqueda de portada de álbum (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "Tomado automáticamente del directorio del álbum (%1)" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "Portada de álbum incrustada (%1)" - -msgid "Select background image" -msgstr "Elija la imagen de fondo" - -msgid "OSD Preview" -msgstr "Previsualización del panel de información" - -msgid "Drag to reposition" -msgstr "Arrastre para reposicionar" - -msgid "About Strawberry" -msgstr "Acerca de Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Versión %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry es un reproductor y catalogador de colecciones musicales." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Es un desarrollo derivado de Clementine lanzado en 2018 destinado a melómanos y audiófilos." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry es un programa libre, disponible en virtud de la licencia GPL. El código fuente puede encontrarse en %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Debería haber recibido una copia de la Licencia Pública General GNU junto con este programa. Si no es así, diríjase a %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Si le gusta Strawberry y le da uso, plantéese patrocinarlo o realizar una donación." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Puede patrocinar al autor en %1. También puede realizar una aportación económica a través de %2." - -msgid "Author and maintainer" -msgstr "Autor y responsable" - -msgid "Contributors" -msgstr "Colaboradores" - -msgid "Clementine authors" -msgstr "Autores de Clementine" - -msgid "Clementine contributors" -msgstr "Colaboradores de Clementine" - -msgid "Thanks to" -msgstr "Gracias a" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Gracias al resto de colaboradores de Amarok y Clementine." - -msgid "(different across multiple songs)" -msgstr "(diferentes en múltiples temas)" - -msgid "Different art across multiple songs." -msgstr "Hay imágenes distintas en múltiples temas." - -msgid "Previous" -msgstr "Anterior" - -msgid "Next" -msgstr "Siguiente" - -msgid "Saving tracks" -msgstr "Guardando las pistas" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 temas seleccionados." - -msgid "Yes" -msgstr "Sí" - -msgid "No" -msgstr "No" - -msgid "Cover is unset." -msgstr "La portada no está definida." - -msgid "Cover from embedded image." -msgstr "Portada de la imagen incrustada." - -#, qt-format -msgid "Cover from %1" -msgstr "Portada de %1" - -msgid "Cover art not set" -msgstr "Portada no definida" - -msgid "Album cover editing is only available for collection songs." -msgstr "La edición de las portada de los álbumes solo está disponible para los temas de la biblioteca." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Portada modificada: se restablecerá al guardar." - -msgid "Cover changed: Will be unset when saved." -msgstr "Portada modificada: se desactivará al guardar." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Portada modificada: se eliminará al guardar." - -msgid "Cover changed: Will set new when saved." -msgstr "Portada modificada: se establecerá la nueva al guardar." - -msgid "Reset song play statistics" -msgstr "Reiniciar estadísticas de reproducción de la canción" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "¿Estás seguro de que quieres restablecer las estadísticas de reproducción de esta canción?" - -msgid "loading..." -msgstr "cargando..." - -msgid "Not found." -msgstr "No encontrado." - -msgid "Original tags" -msgstr "Etiquetas originales" - -msgid "Suggested tags" -msgstr "Etiquetas sugeridas" - -msgid "Delete files" -msgstr "Eliminar archivos" - -msgid "The following files will be deleted from disk:" -msgstr "Los siguientes archivos serán borrados del disco:" - -msgid "Are you sure you want to continue?" -msgstr "¿Confirma que quiere continuar?" - -msgid "Receiving initial data from last.fm..." -msgstr "Recibiendo datos iniciales de Last.fm…" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Recibiendo info de nº de reproducciones para %1 temas y última reproducción para %2 temas." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Recibiendo info de última reproducción para %1 temas." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Recibiendo info de nº de reproducciones para %1 temas." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Nº de %1 reproducciones y última reproducción para %2 temas recibidas." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Última reproducción para %1 temas recibidas." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Nº de reproducciones para %1 temas recibidas." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry se está ejecutando como un Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Se ha detectado que Strawbery está ejecutándose como un «snap»" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry se está ejecutando como un snap. Será imposible acceder a la partición raíz (/). Pueden producirse otras restricciones, como la imposibilidad de acceder a determinados dispositivos o recursos compartidos de red." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Hay un repositorio PPA oficial para Ubuntu en %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Existen versiones oficiales para Debian y Ubuntu que también funcionan en la mayor parte de sus derivados. Mira %1 para obtener más información." - -msgid "For a better experience please consider the other options above." -msgstr "Tenga en cuenta las opciones anteriores para lograr una experiencia óptima." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Copia los archivos strawberry.conf y strawberry.db de tu directorio ~/snap antes de desinstalar el paquete snap para no perder tu configuración:" - -msgid "Uninstall the snap with:" -msgstr "Desinstale el «snap» con:" - -msgid "Install strawberry through PPA:" -msgstr "Instalar Strawberry mediante un PPA:" - -msgid "Select directory for the playlists" -msgstr "Seleccione una carpeta para las listas de reproducción" - -msgid "Directory does not exist." -msgstr "La carpeta no existe." - -msgid "Large sidebar" -msgstr "Barra lateral grande" - -msgid "Icons sidebar" -msgstr "Barra lateral de iconos" - -msgid "Small sidebar" -msgstr "Barra lateral pequeña" - -msgid "Plain sidebar" -msgstr "Barra lateral simple" - -msgid "Tabs on top" -msgstr "Pestañas en la parte superior" - -msgid "Icons on top" -msgstr "Iconos en la parte superior" - -msgid "Available" -msgstr "Disponible" - -msgid "New songs" -msgstr "Temas nuevos" - -msgid "Exceeded by" -msgstr "Superado en" - -msgid "Used" -msgstr "En uso:" - -msgid "Clear" -msgstr "Borrar" - -msgid "Reset" -msgstr "Restablecer" - -msgid "Small album cover" -msgstr "Portada de álbum pequeña" - -msgid "Large album cover" -msgstr "Portadas de álbum grande" - -msgid "Fit cover to width" -msgstr "Ajustar portadas a anchura" - -msgid "Show above status bar" -msgstr "Mostrar sobre la barra de estado" - -msgid "You are signed in." -msgstr "Ha accedido a su cuenta." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Ha accedido como %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Caduca el %1" - -#, qt-format -msgid "disc %1" -msgstr "disco %1" - -#, qt-format -msgid "track %1" -msgstr "pista %1" - -msgid "Paused" -msgstr "En pausa" - -msgid "Stopped" -msgstr "Detenido" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Detener reproducción tras la pista: %1" - -msgid "On" -msgstr "Activado" - -msgid "Off" -msgstr "Desactivado" - -msgid "Playlist finished" -msgstr "Lista de reproducción finalizada" - -#, qt-format -msgid "Volume %1%" -msgstr "Volumen %1%" - -msgid "Don't shuffle" -msgstr "No mezclar" - -msgid "Shuffle all" -msgstr "Mezclar todo" - -msgid "Shuffle tracks in this album" -msgstr "Mezclar pistas de este álbum" - -msgid "Shuffle albums" -msgstr "Mezclar álbumes" - -msgid "Don't repeat" -msgstr "No repetir" - -msgid "Repeat track" -msgstr "Repetir pista" - -msgid "Repeat album" -msgstr "Repetir álbum" - -msgid "Repeat playlist" -msgstr "Repetir lista de reproducción" - -msgid "Stop after every track" -msgstr "Detener reproducción al finalizar cada pista" - -msgid "Intro tracks" -msgstr "Pistas de introducción" - -#, qt-format -msgid "Configure %1..." -msgstr "Configurar %1…" - -msgid "Add to artists" -msgstr "Añadir a artistas" - -msgid "Add to albums" -msgstr "Añadir a álbumes" - -msgid "Add to songs" -msgstr "Añadir a temas" - -msgid "Enter search terms above to find music" -msgstr "Introduzca términos de búsqueda arriba para buscar en la colección" - -msgid "The streaming collection is empty!" -msgstr "¡La colección de streaming está vacía!" - -msgid "Click here to retrieve music" -msgstr "Pulse aquí para recuperar música" - -msgid "Remove from favorites" -msgstr "Eliminar de favoritos" - -msgid "Open homepage" -msgstr "Abrir página principal" - -msgid "Donate" -msgstr "Donar" - -msgid "Refresh channels" -msgstr "Actualizar canales" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Obteniendo %1 channels" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "Autenticación en el servicio de registro de reproducciones %1" - -msgid "Open URL in web browser?" -msgstr "¿Quiere abrir el URL en el navegador?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Pulse en «Guardar» para copiar el URL en el portapapeles y ábralo en el navegador manualmente." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "No se ha podido abrir URL. Por favor, ábrala en su navegador" - -msgid "Invalid reply from web browser. Missing token." -msgstr "El servidor web devolvió una respuesta no válida. Falta el token." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "Se ha recibido una respuesta no válida del navegador web. Prueba con otro navegador." - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "¡No se ha iniciado sesión en servicio de registro de reproducción %1!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Registro de reproducción %1 error: %2" - -msgid "ListenBrainz Authentication" -msgstr "Autenticación en ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "No se hacer el scrobble de %1 - %2 debido al error: %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "Falta el ID de grabación de MusicBrainz para %1 %2 %3" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "Error de ListenBrainz: %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Falta el usuario; acceda a Last.fm primero!" - -msgid "Organizing files" -msgstr "Organizando archivos" - -msgid "Artist's initial" -msgstr "Iniciales del artista" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Tasa de bits" - -msgid "File extension" -msgstr "Extensión del archivo" - -msgid "Error copying songs" -msgstr "Error al copiar temas" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Hubo problemas al copiar algunos temas. No se pudieron copiar los siguientes archivos:" - -msgid "Error deleting songs" -msgstr "Error al eliminar temas" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Hubo problemas al eliminar algunos temas. No se pudieron eliminar los siguientes archivos:" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados todos los complementos necesarios de GStreamer" - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 se ha escrito correctamente" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Convirtiendo %1 archivos usando %2 procesos" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Error al procesar %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Iniciando %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "No se pudo encontrar un codificador para %1; compruebe que tiene instalados los complementos correctos de GStreamer" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "No se pudo encontrar un mezclador para %1; compruebe que tiene instalados los complementos correctos de GStreamer" - -msgid "Start transcoding" -msgstr "Iniciar la conversión" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n pendientes" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n completados" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n falló" - -msgid "Add files to transcode" -msgstr "Añadir archivos que convertir" - -msgid "Open a directory to import music from" -msgstr "Abrir una carpeta de la que importar música" - -msgid "Play/Pause" -msgstr "Reproducir/Pausar" - -msgid "Stop" -msgstr "Detener" - -msgid "Stop playing after current track" -msgstr "Detener la reproducción tras la pista actual" - -msgid "Next track" -msgstr "Pista siguiente" - -msgid "Previous track" -msgstr "Pista anterior" - -msgid "Restart or previous track" -msgstr "Reiniciar o pista anterior" - -msgid "Increase volume" -msgstr "Aumentar el volumen" - -msgid "Decrease volume" -msgstr "Reducir el volumen" - -msgid "Mute" -msgstr "Silenciar" - -msgid "Seek forward" -msgstr "Desplazarse hacia adelante" - -msgid "Seek backward" -msgstr "Desplazarse hacia atrás" - -msgid "Show/Hide" -msgstr "Mostrar/Ocultar" - -msgid "Show OSD" -msgstr "Mostrar panel de información" - -msgid "Toggle Pretty OSD" -msgstr "Conmutar panel de información estilizado" - -msgid "Change shuffle mode" -msgstr "Cambiar el modo de reproducción aleatoria" - -msgid "Change repeat mode" -msgstr "Cambiar el modo de repetición" - -msgid "Enable/disable scrobbling" -msgstr "Activar o desactivar seguimiento de reproducción" - -msgid "Love" -msgstr "Me gusta" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Oprima una combinación de teclas para usar con %1…" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "No se pudo iniciar la orden «%1»." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Atajo para %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Usar atajos de X11 en %1 no es recomendable y puede hacer que el teclado no responda eficientemente!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr " Los atajos en %1 se usan normalmente a través de GMPRIS y KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr " Los atajos en %1 se utilizan habitualmente a través de Gnome Settings Daemon y deben configurarse en gnome-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr " Los atajos en %1 se utilizan habitualmente a través de Gnome Settings Daemon y deben configurarse en cinnamon-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr " Los atajos en %1 se utilizan habitualmente a través de MATE Settings Daemon y deben configurarse allí." - -msgid "D-Bus path" -msgstr "Ruta de D-Bus" - -msgid "Serial number" -msgstr "Número de serie" - -msgid "Mount points" -msgstr "Puntos de montaje" - -msgid "Partition label" -msgstr "Etiqueta de partición" - -msgid "UUID" -msgstr "UUID" - -msgid "Connect device" -msgstr "Conectar dispositivo" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Esta es la primera vez que conecta este dispositivo. Strawberry analizará el dispositivo ahora para encontrar archivos de música; esto podría tardar un poco." - -msgid "This device will not work properly" -msgstr "Este dispositivo no funcionará correctamente" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Este es un dispositivo MTP, pero se compiló Strawberry sin compatibilidad con libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Si continúa, este dispositivo funcionará con lentitud y los temas que se copien en él podrían no funcionar." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Esto es un iPod, pero se compiló Strawberry sin compatibilidad con libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "No se admite este tipo de dispositivo: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Actualizando… (%1%)" - -msgid "Not connected" -msgstr "No conectado" - -msgid "Not mounted - double click to mount" -msgstr "Sin montar. Pulse dos veces para montar" - -msgid "Double click to open" -msgstr "Doble clic para abrir" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 tema%2" - -msgid "Safely remove device" -msgstr "Quitar dispositivo con seguridad" - -msgid "Forget device" -msgstr "Olvidar dispositivo" - -msgid "Device properties..." -msgstr "Propiedades del dispositivo…" - -msgid "Delete from device..." -msgstr "Eliminar del dispositivo…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Olvidar un dispositivo lo eliminará de la lista y Strawberry tendrá que volver a examinar todos los temas la próxima vez que lo conecte." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Se eliminarán estos archivos del dispositivo. ¿Confirma que quiere continuar?" - -msgid "Model" -msgstr "Modelo" - -msgid "Manufacturer" -msgstr "Fabricante" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "No se pudo copiar %1 a %2: %3" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "Falló la escritura en la base de datos: %1" - -msgid "Writing database failed." -msgstr "Falló la escritura en la base de datos." - -msgid "Loading iPod database" -msgstr "Cargando la base de datos del iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Se produjo un error al cargar la base de datos de iTunes" - -msgid "Mount point" -msgstr "Punto de montaje" - -msgid "Device" -msgstr "Dispositivo" - -msgid "URI" -msgstr "URI" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "Dispositivo MTP no válido: %1" - -msgid "Could not open MTP device." -msgstr "No se pudo abrir el dispositivo MTP." - -#, qt-format -msgid "MTP error: %1" -msgstr "Error MTP: %1" - -msgid "MTP device not found." -msgstr "Dispositivo MTP no encontrado." - -msgid "Loading MTP device" -msgstr "Cargando el dispositivo MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Error al conectar al dispositivo MTP %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "Error al conectar con el dispositivo MTP %1: %2" - -msgid "Identifying song" -msgstr "Identificando canción" - -msgid "Fingerprinting song" -msgstr "Creando huella digital de canción" - -msgid "Downloading metadata" -msgstr "Descargando metadatos" - -msgid "Error while setting CDDA device to ready state." -msgstr "Error al reactivar el dispositivo CDDA." - -msgid "Error while setting CDDA device to pause state." -msgstr "Error al poner en pausa el dispositivo CDDA." - -msgid "Error while querying CDDA tracks." -msgstr "Error de acceso a las pistas CDDA." - -msgid "Server URL is invalid." -msgstr "La dirección URL del servidor es inválida." - -msgid "Missing username or password." -msgstr "Falta el usuario o la contraseña." - -msgid "Subsonic server URL is invalid." -msgstr "La dirección URL del servidor de Subsonic es errónea." - -msgid "Missing Subsonic username or password." -msgstr "Falta el usuario o la contraseña de Qobuz." - -msgid "Retrieving albums..." -msgstr "Buscando álbumes..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Buscando temas de %1 álbum..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Buscando temas de %1 álbumes..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Buscando la portada del álbum %1..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Buscando portadas de %1 álbumes." - -msgid "Configuration incomplete" -msgstr "Configuración incompleta" - -msgid "Missing server url, username or password." -msgstr "Falta el URL del servidor, el usuario o la contraseña." - -msgid "Configuration incorrect" -msgstr "Configuración incorrecta" - -msgid "Test successful!" -msgstr "¡Prueba correcta!" - -msgid "Test failed!" -msgstr "¡Prueba fallida!" - -msgid "Reply from Tidal is missing query items." -msgstr "Faltan elementos en la respuesta de Tidal." - -msgid "Missing Tidal API token." -msgstr "Falta el token de API de Tidal." - -msgid "Missing Tidal username." -msgstr "Falta el usuario de Tidal." - -msgid "Missing Tidal password." -msgstr "Falta la contraseña de Tidal." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Se ha alcanzado el número máximo de intentos sin lograr acceder a Tidal." - -msgid "Not authenticated with Tidal." -msgstr "No se ha accedido a Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Falta el token de la API de Tidal, el usuario o la contraseña." - -msgid "Authenticating..." -msgstr "Autenticando…" - -msgid "Receiving artists..." -msgstr "Artistas receptores..." - -msgid "Receiving albums..." -msgstr "Recepción de álbumes..." - -msgid "Receiving songs..." -msgstr "Recibir canciones..." - -msgid "Searching..." -msgstr "Buscando..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "Recibir álbumes de %1 artista..." - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "Recibir álbumes de artistas de %1..." - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "Recibir canciones del álbum %1..." - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "Recibir canciones de álbumes de %1..." - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "Recibir la portada del álbum de %1..." - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "Recibir portadas de álbumes de %1 álbumes..." - -msgid "No match." -msgstr "Sin coincidencias." - -msgid "Cancelled." -msgstr "Cancelado." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Se ha recibido URL con %1 transmisión cifrada de Tidal. Strawberry no soporta flujos cifrados por ahora." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Se ha recibido URL con una transmisión cifrada de Tidal. Strawberry no soporta flujos cifrados por ahora." - -msgid "Missing Tidal client ID." -msgstr "Falta el identificador de cliente de Tidal." - -msgid "Missing API token." -msgstr "Falta el token de la API." - -msgid "Missing username." -msgstr "Falta el usuario." - -msgid "Missing password." -msgstr "Falta la contraseña." - -msgid "Spotify Authentication" -msgstr "Autenticación en Spotify" - -msgid "Redirect missing token code or state!" -msgstr "¡Falta código de token o estado!" - -msgid "Not authenticated with Spotify." -msgstr "No autenticado con Spotify." - -msgid "Data missing error" -msgstr "Error de datos inexistentes" - -msgid "Maximum number of login attempts reached." -msgstr "Se ha alcanzado el número máximo de intentos de acceso." - -msgid "Missing Qobuz app ID." -msgstr "Falta el identificador de aplicación de Qobuz." - -msgid "Missing Qobuz username." -msgstr "Falta el usuario de Qobuz." - -msgid "Missing Qobuz password." -msgstr "Falta la contraseña de Qobuz." - -msgid "Not authenticated with Qobuz." -msgstr "No se ha accedido a Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Falta el identificador de aplicación o el secreto de Qobuz." - -msgid "Missing app id." -msgstr "Falta el identificador de aplicación." - -msgid "Show moodbar" -msgstr "Mostrar barra de ánimo" - -msgid "Moodbar style" -msgstr "Estilo de la barra de ánimo" - -msgid "Normal" -msgstr "Normal" - -msgid "Angry" -msgstr "Enfadado" - -msgid "Frozen" -msgstr "Congelado" - -msgid "Happy" -msgstr "Feliz" - -msgid "System colors" -msgstr "Colores del sistema" - -msgid "Strawberry Music Player" -msgstr "Reproductor de música Strawberry" - -msgid "F5" -msgstr "F5" - -msgid "&Play" -msgstr "&Reproducir" - -msgid "F6" -msgstr "F6" - -msgid "&Stop" -msgstr "&Detener" - -msgid "F7" -msgstr "F7" - -msgid "&Next track" -msgstr "Pista &siguiente" - -msgid "F8" -msgstr "F8" - -msgid "&Quit" -msgstr "&Salir" - -msgid "Ctrl+Q" -msgstr "Ctrl+Q" - -msgid "Ctrl+Alt+V" -msgstr "Ctrl+Alt+V" - -msgid "&Clear playlist" -msgstr "&Borrar lista de reproducción" - -msgid "Ctrl+K" -msgstr "Ctrl+K" - -msgid "Ctrl+E" -msgstr "Ctrl+E" - -msgid "Renumber tracks in this order..." -msgstr "Reordenar pistas en este orden…" - -msgid "Set value for all selected tracks..." -msgstr "Establecer valor para todas las pistas seleccionadas…" - -msgid "Edit tag..." -msgstr "Editar etiqueta…" - -msgid "&Settings..." -msgstr "&Configuración…" - -msgid "Ctrl+P" -msgstr "Ctrl+P" - -msgid "&About Strawberry" -msgstr "&Acerca de Strawberry" - -msgid "F1" -msgstr "F1" - -msgid "S&huffle playlist" -msgstr "&Mezclar lista de reproducción" - -msgid "Ctrl+H" -msgstr "Ctrl+H" - -msgid "&Add file..." -msgstr "&Añadir archivo..." - -msgid "Ctrl+Shift+A" -msgstr "Ctrl+Shift+A" - -msgid "&Open file..." -msgstr "&Abrir archivo..." - -msgid "Open audio &CD..." -msgstr "Abrir &CD de audio..." - -msgid "&Cover Manager" -msgstr "Gestor de &portadas" - -msgid "C&onsole" -msgstr "C&onsola" - -msgid "&Shuffle mode" -msgstr "Modo &aleatorio" - -msgid "&Repeat mode" -msgstr "Modo de &repetición" - -msgid "Remove from playlist" -msgstr "Quitar de la lista de reproducción" - -msgid "&Equalizer" -msgstr "&Ecualizador" - -msgid "&Transcode Music" -msgstr "Conver&tir música" - -msgid "Add &folder..." -msgstr "Añadir &carpeta..." - -msgid "&Jump to the currently playing track" -msgstr "&Saltar a la pista en reproducción" - -msgid "Ctrl+J" -msgstr "Ctrl+J" - -msgid "&New playlist" -msgstr "Lista de reproducción &nueva" - -msgid "Ctrl+N" -msgstr "Ctrl+N" - -msgid "Save &playlist..." -msgstr "Guardar lista de re&producción..." - -msgid "Ctrl+S" -msgstr "Ctrl+S" - -msgid "&Load playlist..." -msgstr "&Cargar lista de reproducción..." - -msgid "Ctrl+Shift+O" -msgstr "Ctrl+Shift+O" - -msgid "&Save all playlists..." -msgstr "&Guardar todas las lista de reproducción..." - -msgid "Go to next playlist tab" -msgstr "Ir a la siguiente pestaña de lista de reproducción" - -msgid "Go to previous playlist tab" -msgstr "Ir a la anterior pestaña de lista de reproducción" - -msgid "&Update changed collection folders" -msgstr "&Actualizar carpetas de la biblioteca con cambios" - -msgid "About &Qt" -msgstr "Acerca de &Qt" - -msgid "&Mute" -msgstr "&Silenciar" - -msgid "Ctrl+M" -msgstr "Ctrl+M" - -msgid "&Do a full collection rescan" -msgstr "Anali&zar de nuevo toda la biblioteca" - -msgid "Stop collection scan" -msgstr "Detener análisis de la colección" - -msgid "Complete tags automatically..." -msgstr "Completar etiquetas automáticamente…" - -msgid "Ctrl+T" -msgstr "Ctrl+T" - -msgid "Toggle scrobbling" -msgstr "Alternar seguimiento de reproducción" - -msgid "Remove &duplicates from playlist" -msgstr "Quitar &duplicados de la lista de reproducción" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Quitar pistas &no disponibles de la lista de reproducción" - -msgid "Add file(s) to transcoder" -msgstr "Añadir archivo(s) que convertir" - -msgid "Add file to transcoder" -msgstr "Añadir archivo que convertir" - -msgid "Add stream..." -msgstr "Añadir retransmisión…" - -msgid "Show sidebar" -msgstr "Mostrar barra lateral" - -msgid "Import data from last.fm..." -msgstr "Importar datos de Last.fm…" - -msgid "MenuPopupToolButton" -msgstr "MenuPopupToolButton" - -msgid "&Music" -msgstr "&Música" - -msgid "P&laylist" -msgstr "Lista de re&producción" - -msgid "Help" -msgstr "Ayuda" - -msgid "&Tools" -msgstr "&Herramientas" - -msgid "Collection advanced grouping" -msgstr "Agrupamiento avanzado de la colección" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Puede modificar cómo se organizan los temas en la biblioteca." - -msgid "Group Collection by..." -msgstr "Agrupar colección por…" - -msgid "Second level" -msgstr "Segundo nivel" - -msgid "Third level" -msgstr "Tercer nivel" - -msgid "Separate albums by grouping tag" -msgstr "Álbumes separados por etiqueta de grupo" - -msgid "Collection Filter" -msgstr "Filtro de colección" - -msgid "Entire collection" -msgstr "Biblioteca completa" - -msgid "Added today" -msgstr "Añadidas hoy" - -msgid "Added this week" -msgstr "Añadidas esta semana" - -msgid "Added within three months" -msgstr "Añadidas en los últimos tres meses" - -msgid "Added this year" -msgstr "Añadidas este año" - -msgid "Added this month" -msgstr "Añadidas este mes" - -msgid "Save current grouping" -msgstr "Guardar agrupamiento actual" - -msgid "Manage saved groupings" -msgstr "Gestionar agrupamientos guardados" - -msgid "Enter search terms here" -msgstr "Introduzca aquí términos de búsqueda" - -msgid "Form" -msgstr "Formulario" - -msgid "Saved Grouping Manager" -msgstr "Gestor de agrupamientos guardados" - -msgid "Remove" -msgstr "Eliminar" - -msgid "Ctrl+Up" -msgstr "Ctrl+Arriba" - -msgid "File paths" -msgstr "Rutas de archivos" - -msgid "This can be changed later through the preferences" -msgstr "Esta opción puede modificarse luego en Preferencias" - -msgid "Remember my choice" -msgstr "Recordar mi elección" - -msgid "Stop after each track" -msgstr "Detener reproducción al finalizar cada pista" - -msgid "Repeat" -msgstr "Repetir" - -msgid "Shuffle" -msgstr "Aleatorio" - -msgid "Dynamic mode is on" -msgstr "Modo dinámico activado" - -msgid "New tracks will be added automatically." -msgstr "Las pistas nuevas se añadirán automáticamente." - -msgid "Expand" -msgstr "Expandir" - -msgid "Repopulate" -msgstr "Volver a poblar" - -msgid "Turn off" -msgstr "Apagar" - -msgid "QueueView" -msgstr "Vista de la cola" - -msgid "Move down" -msgstr "Bajar" - -msgid "Move up" -msgstr "Subir" - -msgid "Ctrl+Down" -msgstr "Ctrl+Down" - -msgid "Search mode" -msgstr "Mode de búsqueda" - -msgid "Match every search term (AND)" -msgstr "Hacer coincidir todos los términos (Y)" - -msgid "Match one or more search terms (OR)" -msgstr "Hacer coincidir algún término (O)" - -msgid "Include all songs" -msgstr "Incluir todas los temas" - -msgid "Sorting" -msgstr "Ordenación" - -msgid "Put songs in a random order" -msgstr "Disponer temas en orden aleatorio" - -msgid "Sort songs by" -msgstr "Ordenar temas por" - -msgid "Limits" -msgstr "Límites" - -msgid "Show all the songs" -msgstr "Mostrar todos los temas" - -msgid "Only show the first" -msgstr "Mostrar solo el primero" - -msgid " songs" -msgstr " temas" - -msgid "Preview" -msgstr "Previsualización" - -msgid "and" -msgstr "y" - -msgid "ago" -msgstr "hace" - -msgid "New smart playlist" -msgstr "Lista inteligente nueva" - -msgid "Edit smart playlist" -msgstr "Editar lista inteligente" - -msgid "Use dynamic mode" -msgstr "Usar modo dinámico" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "En el modo dinámico se escogerán y añadirán nuevas pistas cada vez que un tema finalice." - -msgid "Export covers" -msgstr "Exportar portadas" - -msgid "Output" -msgstr "Salida" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Introduzca un nombre de archivo para las portadas exportadas (sin extensión):" - -msgid "Export downloaded covers" -msgstr "Exportar portadas descargadas" - -msgid "Export embedded covers" -msgstr "Exportar portadas incrustadas" - -msgid "Existing covers" -msgstr "Portadas existentes" - -msgid "Do not overwrite" -msgstr "No sobrescribir" - -msgid "O&verwrite all" -msgstr "&Sobrescribir todo" - -msgid "Overwrite s&maller ones only" -msgstr "Sobrescribir únicamente los &más pequeños" - -msgid "Size" -msgstr "Tamaño" - -msgid "Scale size" -msgstr "Tamaño de escala" - -msgid "Size:" -msgstr "Tamaño:" - -msgid "Pixel" -msgstr "Píxel" - -msgid "Cover Manager" -msgstr "Gestor de portadas" - -msgid "Fetch automatically" -msgstr "Obtener automáticamente" - -msgid "Load" -msgstr "Cargar" - -msgid "Add to playlist" -msgstr "Añadir a la lista de reproducción" - -msgid "View" -msgstr "Ver" - -msgid "Total albums:" -msgstr "Álbumes totales:" - -msgid "Without cover:" -msgstr "Sin portada:" - -msgid "0" -msgstr "0" - -msgid "Fetch Missing Covers" -msgstr "Obtener las portadas que faltan" - -msgid "Export Covers" -msgstr "Exportar portadas" - -msgid "Fetch completed" -msgstr "Descarga finalizada" - -msgid "Load cover from URL" -msgstr "Cargar portada desde un URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Introduzca un URL para descargar una portada de Internet:" - -msgid "Settings" -msgstr "Configuración" - -msgid "Behavior" -msgstr "Comportamiento" - -msgid "Show system tray icon" -msgstr "Mostrar icono en la bandeja del sistema" - -msgid "Keep running in the background when the window is closed" -msgstr "Seguir ejecutando el programa en segundo plano al cerrar la ventana" - -msgid "Show song progress on system tray icon" -msgstr "Mostrar avance en el icono de la bandeja del sistema" - -msgid "Show song progress on taskbar" -msgstr "Mostrar progreso de la canción en la barra de tareas" - -msgid "Resume playback on start" -msgstr "Reanudar la reproducción al iniciar" - -msgid "Show playing widget" -msgstr "Mostrar mini aplicación de reproducción" - -msgid "On startup" -msgstr "Al iniciar" - -msgid "Remember from &last time" -msgstr "Recordar de la ú<ima vez" - -msgid "Show the main window" -msgstr "Mostrar ventana principal" - -msgid "Hide the main window" -msgstr "Oculta la ventana principal" - -msgid "Show the main window maximized" -msgstr "Mostrar ventana principal maximizada" - -msgid "Show the main window minimized" -msgstr "Mostrar ventana principal minimizada" - -msgid "Language" -msgstr "Idioma" - -msgid "Use the system default" -msgstr "Utilizar valor predeterminado del sistema" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Necesitará reiniciar Strawberry si cambia el idioma." - -msgid "Using the menu to add a song will..." -msgstr "Usar el menú para añadir un tema…" - -msgid "Never start playing" -msgstr "Nunca comenzar la reproducción" - -msgid "Play if there is nothing already playing" -msgstr "Reproducir si no hay nada en reproducción" - -msgid "Always start playing" -msgstr "Comenzar siempre la reproducción" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Al pulsar en el botón «Anterior» del reproductor…" - -msgid "Jump to previous song right away" -msgstr "Ir al tema anterior inmediatamente" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Reiniciar el tema e ir al anterior si se hace clic nuevamente" - -msgid "Double clicking a song will..." -msgstr "Al pulsar dos veces en un tema…" - -msgid "Append to the playlist" -msgstr "Añadir a la lista de reproducción" - -msgid "Replace the playlist" -msgstr "Reemplazar la lista de reproducción" - -msgid "Add to the queue" -msgstr "Añadir a la cola" - -msgid "Double clicking a song in the playlist will..." -msgstr "Al pulsar dos veces en un tema en la lista de reproducción…" - -msgid "Change the currently playing song" -msgstr "Cambia el tema actualmente en reproducción" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Desplazarse usando un atajo de teclado o la rueda del ratón" - -msgid "Time step" -msgstr "Salto en el tiempo" - -msgid " s" -msgstr " s" - -msgid "Volume Increment" -msgstr "Incremento de volumen" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Estas carpetas se analizarán en busca de música para crear su colección" - -msgid "Add new folder..." -msgstr "Añadir carpeta nueva…" - -msgid "Remove folder" -msgstr "Quitar carpeta" - -msgid "Automatic updating" -msgstr "Actualización automática" - -msgid "Update the collection when Strawberry starts" -msgstr "Actualizar la colección al iniciar Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Vigilar cambios en la colección" - -msgid "Song fingerprinting and tracking" -msgstr "Identificación y seguimiento de temas" - -msgid "Mark disappeared songs unavailable" -msgstr "Marcar los temas desaparecidas como no disponibles" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "Realizar análisis de canción EBU R 128 (requerido para la normalización de volumen EBU R 128)" - -msgid "Expire unavailable songs after" -msgstr "Hacer que los tema no disponibles expiren tras" - -msgid "days" -msgstr "días" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Nombres de archivo preferidos para las portadas (separados por comas)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Al buscar la portada, Strawberry tratará de localizar primero imágenes que contengan una de estas palabras. Si no hay resultados, se usará la imagen más grande de la carpeta." - -msgid "Automatically open single categories in the collection tree" -msgstr "Expandir automáticamente categorías únicas en la colección" - -msgid "Show dividers" -msgstr "Mostrar divisores" - -msgid "Show album cover art in collection" -msgstr "Mostrar portada del álbum en la colección" - -msgid "Use various artists for compilation albums" -msgstr "Usar varios artistas para los álbumes recopilatorios" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "Omitir artículos precedentes («el», «a», «un») al ordenar los nombres de artistas" - -msgid "Album cover pixmap cache" -msgstr "Caché de mapa de bits de portadas" - -msgid "Enable Disk Cache" -msgstr "Activar caché de disco" - -msgid "Disk Cache Size" -msgstr "Tamaño de caché de disco" - -msgid "Current disk cache in use:" -msgstr "Caché de disco en uso:" - -msgid "Clear Disk Cache" -msgstr "Vaciar caché de disco" - -msgid "Song playcounts and ratings" -msgstr "Nº de reproducciones y valoraciones" - -msgid "Save playcounts to song tags when possible" -msgstr "Guardar nº de reproducciones en las etiquetas de los temas cuando sea posible" - -msgid "Save ratings to song tags when possible" -msgstr "Guardar valoraciones en las etiquetas de los temas cuando sea posible" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Sobreescribir el número de reproducciones al volver a leer los temas desde el disco" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Sobreescribir valoraciones al volver a leer los temas desde el disco" - -msgid "Save playcounts and ratings to files now" -msgstr "Guarda nº de reproducciones y valoraciones en archivos ahora" - -msgid "Enable delete files in the right click context menu" -msgstr "Activar eliminación de archivos en el menú contextual del botón secundario del ratón" - -msgid "Backend" -msgstr "Sistema de audio" - -msgid "Audio output" -msgstr "Salida de audio" - -msgid "Engine" -msgstr "Motor" - -msgid "ALSA plugin:" -msgstr "Complemento de ALSA:" - -msgid "hw" -msgstr "hw" - -msgid "p&lughw" -msgstr "p&lughw" - -msgid "pcm" -msgstr "pcm" - -msgid "Exclusive mode (Experimental)" -msgstr "Modo exclusivo (experimental)" - -msgid "Options" -msgstr "Opciones" - -msgid "Enable volume control" -msgstr "Activar control de volumen" - -msgid "Upmix / downmix to" -msgstr "Remezclar a" - -msgid "channels" -msgstr "canales" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "Mejorar la escucha por auriculares de grabaciones de audio estéreo (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "Habilitar HTTP/2 para streaming" - -msgid "Use strict SSL mode" -msgstr "Usar modo SSL estricto" - -msgid "Buffer" -msgstr "Búfer" - -msgid " ms" -msgstr " ms" - -msgid "Buffer duration" -msgstr "Duración del búfer" - -msgid "High watermark" -msgstr "Marca de agua alta" - -msgid "Low watermark" -msgstr "Marca de agua baja" - -msgid "Defaults" -msgstr "Valores predeterminados" - -msgid "Audio normalization" -msgstr "Normalización de audio" - -msgid "No audio normalization" -msgstr "Sin normalización de audio" - -msgid "Replay Gain" -msgstr "Ajuste de volumen en reproducción" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Usar metadatos de ajuste de volumen en reproducción si están disponibles" - -msgid "Replay Gain mode" -msgstr "Modo de ajuste de volumen en reproducción" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (volumen igual para todas las pistas)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Álbum (volumen idóneo para todas las pistas)" - -msgid "Apply compression to prevent clipping" -msgstr "Aplicar compresión para evitar saturación" - -msgid "Fallback-gain" -msgstr "Ganancia por defecto" - -msgid "EBU R 128 Loudness Normalization" -msgstr "Normalización de volumen EBU R 128" - -msgid "Perform track loudness normalization" -msgstr "Realizar la normalización de volumen de la pista" - -msgid "Target Level" -msgstr "Nivel de destino" - -msgid "Fading" -msgstr "Fundido" - -msgid "Fade out when stopping a track" -msgstr "Fundido al detener la reproducción" - -msgid "Cross-fade when changing tracks manually" -msgstr "Fundido encadenado al cambiar pistas manualmente" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Fundido encadenado al cambiar pistas automáticamente" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Excepto entre pistas del mismo álbum o en la misma hoja CUE" - -msgid "Fading duration" -msgstr "Duración del fundido" - -msgid "Fade out on pause / fade in on resume" -msgstr "Fundido al pausar / reanudar" - -msgid "Add song artist tag" -msgstr "Añadir etiqueta de artista a al tema" - -msgid "Add song album tag" -msgstr "Añadir etiqueta de álbum al tema" - -msgid "Add song title tag" -msgstr "Añadir etiqueta de título al tema" - -msgid "Add song albumartist tag" -msgstr "Añadir etiqueta de artista del álbum al tema" - -msgid "Add song year tag" -msgstr "Añadir etiqueta de año al tema" - -msgid "Add song composer tag" -msgstr "Añadir etiqueta de compositor al tema" - -msgid "Add song performer tag" -msgstr "Añadir etiqueta de intérprete al tema" - -msgid "Add song grouping tag" -msgstr "Añadir etiqueta de agrupamiento al tema" - -msgid "Add song disc tag" -msgstr "Añadir etiqueta de disco al tema" - -msgid "Add song track tag" -msgstr "Añadir etiqueta de pista al tema" - -msgid "Add song genre tag" -msgstr "Añadir etiqueta de género al tema" - -msgid "Add song length tag" -msgstr "Añadir etiqueta de duración al tema" - -msgid "Add song play count" -msgstr "Añadir contador de reproducciones del tema" - -msgid "Add song skip count" -msgstr "Añadir contador de omisiones del tema" - -msgid "Add a new line if supported by the notification type" -msgstr "Añadir un salto de renglón si el tipo de notificación lo permite" - -msgid "%filename%" -msgstr "%filename%" - -msgid "Add song filename" -msgstr "Añadir nombre de archivo del tema" - -msgid "%url%" -msgstr "%url%" - -msgid "Add song URL" -msgstr "Añadir URL del tema" - -msgid "%rating%" -msgstr "%rating%" - -msgid "Add song rating" -msgstr "Añadir valoración del tema" - -msgid "%originalyear%" -msgstr "%originalyear%" - -msgid "Add song original year tag" -msgstr "Añadir etiqueta de año original" - -msgid "Custom text settings" -msgstr "Configuración de texto personalizada" - -msgid "Summary" -msgstr "Resumen" - -msgid "Enable Items" -msgstr "Activar elementos" - -msgid "Technical Data" -msgstr "Información técnica" - -msgid "Song Lyrics" -msgstr "Letra" - -msgid "Automatically search for album cover" -msgstr "Buscar automáticamente la portada del álbum" - -msgid "Font for headline" -msgstr "Tipo de letra de títulos" - -msgid "Font" -msgstr "Tipo de letra" - -msgid "Font size" -msgstr "Tamaño de letra" - -msgid " pt" -msgstr " pt" - -msgid "Font for data and lyrics" -msgstr "Tipo de letra de datos y letras" - -msgid "Use alternating row colors" -msgstr "Utilizar colores alternados en las filas" - -msgid "Show bars on the currently playing track" -msgstr "Mostrar barras en la pista en reproducción" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Mostrar una animación en la pista en reproducción" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Saltar al siguiente elemento en la lista de reproducción si un tema no está disponible" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Mostrar en gris los temas no disponibles en las listas de reproducción al reproducir" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Mostrar en gris los temas no disponibles en listas de reproducción al iniciar" - -msgid "Automatically select current playing track" -msgstr "Seleccionar automáticamente la pista en reproducción" - -msgid "Enable playlist toolbar" -msgstr "Activar barra de herramientas de reproducción" - -msgid "Enable playlist clear button" -msgstr "Activar botón de borrado de lista de reproducción" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Ordenar la lista automáticamente al insertar temas" - -msgid "When saving a playlist, file paths should be" -msgstr "Al guardar una lista de reproducción las rutas de archivo deben ser" - -msgid "A&utomatic" -msgstr "A&utomático" - -msgid "Absolu&te" -msgstr "Absolu&to" - -msgid "Re&lative" -msgstr "Re&lativo" - -msgid "As&k when saving" -msgstr "&Preguntar al guardar" - -msgid "Metadata" -msgstr "Metadatos" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Al activar esta opción podrá hacer clic en el tema seleccionado de la lista de reproducción y editar su la etiqueta directamente" - -msgid "Enable song metadata inline edition with click" -msgstr "Editar metadatos de temas directamente" - -msgid "Write metadata when saving playlists" -msgstr "Escribir los metadatos al guardar las listas de reproducción" - -msgid "Scrobbler" -msgstr "Registro de reproducción" - -msgid "Enable" -msgstr "Activar" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "La reproducción de un tema se registra solo si dispone de metadatos válidos, dura más de 30 segundos y se ha reproducido al menos durante la mitad de su duración o 4 minutos (lo que ocurra primero)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Trabajar sin conexión (solo registros de reproducción prealmacenados)" - -msgid "Show scrobble button" -msgstr "Mostrar botón de registro de reproducción" - -msgid "Show love button" -msgstr "Mostrar el botón \"Me gusta\"" - -msgid "Submit scrobbles every" -msgstr "Emitir al servidor de registro cada" - -msgid " seconds" -msgstr " segundos" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(Este es el tiempo de espera hasta que los registros de reproducción se envían al servidor. Ajustar el tiempo a 0 segundos enviará los registros inmediatamente)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Preferir artista del álbum al registrar reproducción" - -msgid "Show dialog for errors" -msgstr "Mostrar errores" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "Eliminar «remastered» y similares del título del álbum" - -msgid "Enable scrobbling for the following sources:" -msgstr "Activar seguimiento de reproducción para:" - -msgid "Local file" -msgstr "Archivo local" - -msgid "CDDA" -msgstr "CDDA" - -msgid "SomaFM" -msgstr "SomaFM" - -msgid "Stream" -msgstr "Retransmisión" - -msgid "Radio Paradise" -msgstr "Radio Paradise" - -msgid "Last.fm" -msgstr "Last.fm" - -msgid "Login" -msgstr "Acceder" - -msgid "Libre.fm" -msgstr "Libre.fm" - -msgid "Listenbrainz" -msgstr "ListenBrainz" - -msgid "User token:" -msgstr "Token de usuario:" - -msgid "Covers" -msgstr "Portadas" - -msgid "Cover providers" -msgstr "Proveedores de postadas" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Selecciona los proveedores de búsqueda de portadas." - -msgid "Authentication" -msgstr "Autenticación" - -msgid "Album cover types" -msgstr "Tipos de portada de álbum" - -msgid "Saving album covers" -msgstr "Guardando portadas de álbumes" - -msgid "Save album covers in album directory" -msgstr "Guardar las portadas en la carpeta de álbumes" - -msgid "Save album covers in cache directory" -msgstr "Guardar portadas en carpeta de caché" - -msgid "Save album covers as embedded cover" -msgstr "Guardar portadas del álbum como elementos incrustados" - -msgid "Filename:" -msgstr "Archivo:" - -msgid "Pattern" -msgstr "Pauta" - -msgid "Random" -msgstr "Al azar" - -msgid "Overwrite existing file" -msgstr "Sobrescribir archivo existente" - -msgid "Lowercase filename" -msgstr "Nombre de archivo en minúsculas" - -msgid "Replace spaces with dashes" -msgstr "Sustituir espacios por guiones" - -msgid "Lyrics" -msgstr "Letras" - -msgid "Lyrics providers" -msgstr "Proveedores de letras" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Seleccione los proveedores de búsqueda de letras." - -msgid "Network Proxy" -msgstr "Proxy de la red" - -msgid "&Use the system proxy settings" -msgstr "&Utilizar configuración de «proxy» del sistema" - -msgid "Direct internet connection" -msgstr "Conexión directa a Internet" - -msgid "&Manual proxy configuration" -msgstr "&Configuración manual del proxy" - -msgid "HTTP proxy" -msgstr "Proxy HTTP" - -msgid "SOCKS proxy" -msgstr "Proxy SOCKS" - -msgid "Port" -msgstr "Puerto" - -msgid "Use authentication" -msgstr "Usar autenticación" - -msgid "Username" -msgstr "Usuario" - -msgid "Password" -msgstr "Contraseña" - -msgid "Use proxy settings for streaming" -msgstr "Usar ajustes de proxy para retransmisión" - -msgid "Appearance" -msgstr "Apariencia" - -msgid "Style" -msgstr "Estilo" - -msgid "Use system theme icons" -msgstr "Usar iconos del tema del sistema" - -msgid "Settings require restart." -msgstr "Los ajustes requieren reiniciar." - -msgid "Tabbar colors" -msgstr "Colores barra pestañas" - -msgid "&Use the system default color" -msgstr "&Usar el color predeterminado del sistema" - -msgid "Use custom color" -msgstr "Usar color personalizado" - -msgid "Use gradient background" -msgstr "Usar fondo degradado" - -msgid "Select tabbar color:" -msgstr "Seleccionar color barra pestañas:" - -msgid "Background image" -msgstr "Imagen de fondo" - -msgid "Default bac&kground image" -msgstr "Imagen de &fondo predeterminada" - -msgid "&No background image" -msgstr "&Sin imagen de fondo" - -msgid "The album cover of the currently playing song" -msgstr "La portada del álbum del tema en reproducción" - -msgid "Albu&m cover" -msgstr "&Portada del álbum" - -msgid "Custom image:" -msgstr "Imagen personalizada:" - -msgid "Browse..." -msgstr "Examinar…" - -msgid "Position" -msgstr "Posición" - -msgid "Upper Left" -msgstr "Superior izquierda" - -msgid "Upper Right" -msgstr "Superior derecha" - -msgid "Middle" -msgstr "Medio" - -msgid "Bottom Left" -msgstr "Inferior izquierda" - -msgid "Bottom Right" -msgstr "Inferior derecha" - -msgid "Max cover size" -msgstr "Tamaño máximo de portada" - -msgid "Stretch image to fill playlist" -msgstr "Ajustar la imagen a la lista de reproducción" - -msgid "Keep aspect ratio" -msgstr "Mantener proporción" - -msgid "Do not cut image" -msgstr "No recortar la imagen" - -msgid "Blur amount" -msgstr "Cantidad de desenfoque" - -msgid "0px" -msgstr "0 px" - -msgid "Opacity" -msgstr "Opacidad" - -msgid "40%" -msgstr "40 %" - -msgid "Icon sizes" -msgstr "Tamaños de iconos" - -msgid "Playlist buttons" -msgstr "Botones de lista de reproducción" - -msgid "Tabbar large mode" -msgstr "Barra pequeña" - -msgid "Play control buttons" -msgstr "Botones de control de reproducción" - -msgid "Configure buttons" -msgstr "Configurar botones" - -msgid "Files, playlists and queue buttons" -msgstr "Botones de archivos, listas y cola" - -msgid "Tabbar small mode" -msgstr "Barra grande" - -msgid "Playlist playing song color" -msgstr "Color de tema de la lista en reproducción" - -msgid "System highlight color" -msgstr "Color de resalte del sistema" - -msgid "Custom color" -msgstr "Color personalizado" - -msgid "Select playlist playing song color:" -msgstr "Color de tema de la lista en reproducción:" - -msgid "Notifications" -msgstr "Notificaciones" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry puede mostrar un mensaje cuando la pista cambie." - -msgid "Notification type" -msgstr "Tipo de notificación" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Desactivado" - -msgid "Show a &native desktop notification" -msgstr "Mostrar una notificación &nativa del sistema" - -msgid "Show a pretty OSD" -msgstr "Mostrar panel de información estilizado" - -msgid "Show a popup fro&m the system tray" -msgstr "Mostrar una notificación en la bandeja del siste&ma" - -msgid "General settings" -msgstr "Configuración general" - -msgid "Popup duration" -msgstr "Duración de la notificación emergente" - -msgid "Disable duration" -msgstr "Desactivar duración" - -msgid "Show a notification when I change the volume" -msgstr "Mostrar una notificación al cambiar el volumen" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Mostrar una notificación al cambiar entre los modos repetir/aleatorio" - -msgid "Show a notification when I pause playback" -msgstr "Mostrar una notificación al pausar la reproducción" - -msgid "Show a notification when I resume playback" -msgstr "Mostrar una notificación cuando reanude la reproducción" - -msgid "Include album art in the notification" -msgstr "Incluir portada en la notificación" - -msgid "Custom message settings" -msgstr "Configuración de mensaje personalizado" - -msgid "Use a custom message for notifications" -msgstr "Usar un mensaje personalizado para las notificaciones" - -msgid "Body" -msgstr "Cuerpo" - -msgid "Pretty OSD options" -msgstr "Panel de información estilizado" - -msgid "Background color" -msgstr "Color de fondo" - -msgid "Text options" -msgstr "Opciones del texto" - -msgid "Choose font..." -msgstr "Elegir tipo de letra…" - -msgid "Choose color..." -msgstr "Elegir color…" - -msgid "Background opacity" -msgstr "Opacidad del fondo" - -msgid "Basic Blue" -msgstr "Azul básico" - -msgid "Strawberry Red" -msgstr "Rojo de Strawberry" - -msgid "Custom..." -msgstr "Personalizado…" - -msgid "Enable fading" -msgstr "Activar transición gradual" - -msgid "Transcoding" -msgstr "Convirtiendo" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Estos ajustes se usa en la ventana «Convertir música» y al convertir canciones antes de copiarlas en un dispositivo." - -msgid "FLAC" -msgstr "FLAC" - -msgid "WavPack" -msgstr "WavPack" - -msgid "Vorbis" -msgstr "Vorbis" - -msgid "Opus" -msgstr "Opus" - -msgid "Speex" -msgstr "Speex" - -msgid "AAC" -msgstr "AAC" - -msgid "ASF (WMA)" -msgstr "ASF (WMA)" - -msgid "MP3" -msgstr "MP3" - -msgid "Equalizer" -msgstr "Ecualizador" - -msgid "Preset:" -msgstr "Ajuste predefinido:" - -msgid "Enable equalizer" -msgstr "Activar ecualizador" - -msgid "Enable stereo balancer" -msgstr "Activar equilibrador estéreo" - -msgid "Left" -msgstr "Izquierda" - -msgid "Balance" -msgstr "Equilibrio" - -msgid "Right" -msgstr "Derecha" - -msgid "About" -msgstr "Acerca de" - -msgid "Strawberry Error" -msgstr "Error de Strawberry" - -msgid "Console" -msgstr "Consola" - -msgid "Run" -msgstr "Ejecutar" - -msgid "Edit track information" -msgstr "Editar información de la pista" - -msgid "Date created" -msgstr "Fecha de creación" - -msgid "Art Automatic" -msgstr "Portada automática" - -msgid "Date modified" -msgstr "Fecha de modificación" - -msgid "Art Embedded" -msgstr "Arte incrustado" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Última reproducción" - -msgid "Play count" -msgstr "Número de reproducciones" - -msgid "EBU R 128 integrated loudness" -msgstr "volumen integrado EBU R 128" - -msgid "Bit rate" -msgstr "Tasa de bits" - -msgid "Skip count" -msgstr "Número de omisiones" - -msgid "Path" -msgstr "Ruta" - -msgid "Filename" -msgstr "Nombre del archivo" - -msgid "Art Unset" -msgstr "Arte sin establecer" - -msgid "File size" -msgstr "Tamaño del archivo" - -msgid "Art Manual" -msgstr "Portada manual" - -msgid "EBU R 128 loudness range" -msgstr "rango de volumen EBU R 128" - -msgid "Reset play counts" -msgstr "Reiniciar contador de reproducciones" - -msgid "Change art" -msgstr "Cambiar portada" - -msgid "Embedded cover" -msgstr "Portada incrustada" - -msgid "Complete tags automatically" -msgstr "Completar etiquetas automáticamente" - -msgid "Compilation" -msgstr "Compilación" - -msgid "Tags" -msgstr "Etiquetas" - -msgid "Complete lyrics automatically" -msgstr "Completa letra automáticamente" - -msgid "Tag fetcher" -msgstr "Obtener etiquetas" - -msgid "Sorry" -msgstr "Lo sentimos" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry no encontró resultados para este archivo" - -msgid "Select best possible match" -msgstr "Seleccionar la mejor coincidencia" - -msgid "Add Stream" -msgstr "Añadir retransmisión" - -msgid "Enter the URL of a stream:" -msgstr "Introduzca el URL de una retransmisión:" - -msgid "Enter username and password" -msgstr "Introduzca usuario y contraseña" - -msgid "Import data from last.fm" -msgstr "Importar datos de Last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Escoja qué información importar de Last.fm" - -msgid "Play counts" -msgstr "Contadores de reproducción" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Atención: se reemplazará el recuento de reproducciones y la última reproducción de los temas coincidentes con los datos procedentes de Last.fm. El recuento de reproducciones se sobreescribirá atendiendo al artista y nombre del tema. Haga una copia de seguridad de su base de datos antes de comenzar." - -msgid "Go!" -msgstr "Ir!" - -msgid "Close" -msgstr "Cerrar" - -msgid "Cancel" -msgstr "Cancelar" - -msgid "Message Dialog" -msgstr "Cuadro de diálogo de mensajes" - -msgid "Do not show this message again." -msgstr "No volver a mostrar este mensaje." - -msgid "Select directory for saving playlists" -msgstr "Seleccione una carpeta para guardar las listas de reproducción" - -msgid "Type" -msgstr "Tipo" - -msgid "0:00:00" -msgstr "0:00:00" - -msgid "Click to toggle between remaining time and total time" -msgstr "Pulse para alternar entre el tiempo restante y el total" - -msgid "You are not signed in." -msgstr "No ha accedido a su cuenta." - -msgid "Sign out" -msgstr "Cerrar sesión" - -msgid "Signing in..." -msgstr "Iniciando sesión…" - -msgid "Streaming Tabs View" -msgstr "Vista de pestañas de streaming" - -msgid "Artists" -msgstr "Artistas" - -msgid "Albums" -msgstr "Álbumes" - -msgid "Songs" -msgstr "Temas" - -msgid "Refresh catalogue" -msgstr "Actualizar catálogo" - -msgid "Streaming Search View" -msgstr "Vista de búsqueda en streaming" - -msgid "artists" -msgstr "artistas" - -msgid "albums" -msgstr "álbumes" - -msgid "songs" -msgstr "temas" - -msgid "Organize Files" -msgstr "Organizar archivos" - -msgid "Destination" -msgstr "Destino" - -msgid "After copying..." -msgstr "Después de copiar…" - -msgid "Keep the original files" -msgstr "Mantener los archivos originales" - -msgid "Delete the original files" -msgstr "Eliminar los archivos originales" - -msgid "Naming options" -msgstr "Opciones de nomenclatura" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Los tokens comienzan por %, por ejemplo: %artist %album %title

\n\n" -"

Si encierra una sección de texto que contenga un token entre llaves, esa sección no se mostrará si el token está vacío.

" - -msgid "Insert..." -msgstr "Insertar…" - -msgid "Remove problematic characters from filenames" -msgstr "Elimina caracteres especiales de nombres de archivo" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Limitar a caracteres permitidos en sistemas de archivos FAT" - -msgid "Restrict characters to ASCII" -msgstr "Limitar caracteres a conjunto ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Admitir caracteres de ASCII ampliado" - -msgid "Replace spaces with underscores" -msgstr "Sustituir espacios pòr caracteres de subrayado" - -msgid "Overwrite existing files" -msgstr "Sobrescribir los archivos existentes" - -msgid "Copy album cover artwork" -msgstr "Copiar portada del álbum" - -msgid "Safely remove the device after copying" -msgstr "Quitar dispositivo con seguridad después de copiar" - -msgid "Transcode Music" -msgstr "Convertir música" - -msgid "Files to transcode" -msgstr "Archivos que convertir" - -msgid "Directory" -msgstr "Carpeta" - -msgid "Add..." -msgstr "Añadir..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Añadir todas las pistas de una carpeta y sus subcarpetas" - -msgid "Import..." -msgstr "Importar…" - -msgid "Output options" -msgstr "Opciones de salida" - -msgid "Audio format" -msgstr "Formato de audio" - -msgid "Options..." -msgstr "Opciones…" - -msgid "Alongside the originals" -msgstr "Junto a los originales" - -msgid "Select..." -msgstr "Seleccionar..." - -msgid "Progress" -msgstr "Progreso" - -msgid "Details..." -msgstr "Detalles…" - -msgid "Transcoder Log" -msgstr "Registro del conversor" - -msgid " kbps" -msgstr " kb/s" - -msgid "Profile" -msgstr "Perfil" - -msgid "Main profile (MAIN)" -msgstr "Perfil principal (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Perfil de baja complejidad (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Perfil de tasa de muestreo escalable (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Perfil de predicción a largo plazo (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Usar conformación de ruido temporal" - -msgid "Allow mid/side encoding" -msgstr "Permitir codificación MS (suma / diferencia)" - -msgid "Block type" -msgstr "Tipo de bloque" - -msgid "Normal block type" -msgstr "Tipo de bloque normal" - -msgid "No short blocks" -msgstr "Sin bloques cortos" - -msgid "No long blocks" -msgstr "Sin bloques largos" - -msgid "Transcoding options" -msgstr "Opciones de conversión" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Calidad" - -msgid "Fast" -msgstr "Rápido" - -msgid "Best" -msgstr "Mejor" - -msgid "Use bitrate management engine" -msgstr "Usar el motor de gestión de flujo de bits" - -msgid "Target bitrate" -msgstr "Tasa de bits objetivo" - -msgid "Minimum bitrate" -msgstr "Tasa de bits mínima" - -msgid "disabled" -msgstr "desactivado" - -msgid "Maximum bitrate" -msgstr "Tasa de bits máxima" - -msgid "automatic" -msgstr "automático" - -msgid "Average bitrate" -msgstr "Tasa media de bits" - -msgid "Encoding mode" -msgstr "Modo de codificación" - -msgid "Auto" -msgstr "Autom." - -msgid "Ultra wide band (UWB)" -msgstr "Banda ultraancha (UWB)" - -msgid "Wide band (WB)" -msgstr "Banda ancha (WB)" - -msgid "Narrow band (NB)" -msgstr "Banda estrecha (NB)" - -msgid "Variable bit rate" -msgstr "Tasa de bits variable" - -msgid "Voice activity detection" -msgstr "Detección de actividad de voz" - -msgid "Discontinuous transmission" -msgstr "Transmisión discontinua" - -msgid "Encoding complexity" -msgstr "Complejidad de codificación" - -msgid "Frames per buffer" -msgstr "Fotogramas por búfer" - -msgid "Optimize for &quality" -msgstr "Optimizar para &calidad" - -msgid "Opti&mize for bitrate" -msgstr "Opti&mizar para tasa de bits" - -msgid "Constant bitrate" -msgstr "Tasa de bits constante" - -msgid "Encoding engine quality" -msgstr "Calidad del motor de codificación" - -msgid "Standard" -msgstr "Estándar" - -msgid "High" -msgstr "Alto" - -msgid "Force mono encoding" -msgstr "Forzar la codificación monoaural" - -msgid "Press a key" -msgstr "Presione una tecla" - -msgid "Global Shortcuts" -msgstr "Atajos generales" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Utilizar atajos de Gnome (GSD) cuando sea posible" - -msgid "Open..." -msgstr "Abrir…" - -msgid "Use MATE shortcuts when available" -msgstr "Utilizar atajos de MATE si están disponibles" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Utilizar atajos de KDE (GSD) cuando sea posible" - -msgid "Use X11 shortcuts when available" -msgstr "Usar atajos de X11 cuando sea posible" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Debe abrir las Preferencias del sistema y permitir que Strawberry «controle el equipo» para utilizar atajos globales en Strawberry." - -msgid "Shortcut" -msgstr "Atajo" - -msgctxt "Category label" -msgid "Action" -msgstr "Acción" - -msgid "&None" -msgstr "&Ninguno" - -msgid "&Default" -msgstr "&Predeterminado" - -msgid "&Custom" -msgstr "&Personalizado" - -msgid "Change shortcut..." -msgstr "Cambiar atajo…" - -msgid "Device Properties" -msgstr "Propiedades del dispositivo" - -msgid "Icon" -msgstr "Icono" - -msgid "Hardware information" -msgstr "Información del hardware" - -msgid "Hardware information is only available while the device is connected." -msgstr "La información del hardware solo está disponible cuando el dispositivo está conectado." - -msgid "Information" -msgstr "Información" - -msgid "Supported formats" -msgstr "Formatos admitidos" - -msgid "This device supports the following file formats:" -msgstr "Este dispositivo admite los formatos de archivo siguientes:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry puede convertir automáticamente la música que copie en este dispositivo en un formato que pueda reproducir." - -msgid "Do not convert any music" -msgstr "No convertir ninguna pista" - -msgid "Convert any music that the device can't play" -msgstr "Convertir las pistas que el dispositivo no pueda reproducir" - -msgid "Convert all music" -msgstr "Convertir toda la música" - -msgid "Preferred format" -msgstr "Formato preferido" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Este dispositivo debe conectarse y abrirse antes de que Strawberry pueda ver qué formatos de archivo admite." - -msgid "Open device" -msgstr "Abrir dispositivo" - -msgid "Querying device..." -msgstr "Consultando dispositivo…" - -msgid "File formats" -msgstr "Formatos de archivo" - -msgid "Server URL" -msgstr "URL del servidor" - -msgid "Authentication method:" -msgstr "Método de autenticación:" - -msgid "Hex" -msgstr "Hex" - -msgid "MD5 token (Recommended)" -msgstr "Token MD5 (recomendado)" - -msgid "Preferences" -msgstr "Preferencias" - -msgid "Use HTTP/2 when possible" -msgstr "Usar HTTP/2 cuando sea posible" - -msgid "Verify server certificate" -msgstr "Verificar el certificado del servidor" - -msgid "Download album covers" -msgstr "Descargar las portadas de los álbumes" - -msgid "Server-side scrobbling" -msgstr "Seguimiento de reproducción en el servidor" - -msgid "Test" -msgstr "Probar" - -msgid "Delete songs" -msgstr "Eliminar temas" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "La compatibilidad con Tidal no es oficial y precisa de un token de API procedente de una aplicación registrada. No le podemos ayudar a conseguirlo." - -msgid "Use OAuth" -msgstr "Utilizar OAuth" - -msgid "Client ID" -msgstr "Id. de cliente" - -msgid "API Token" -msgstr "Token de API" - -msgid "Audio quality" -msgstr "Calidad de audio" - -msgid "Search delay" -msgstr "Demora de búsqueda" - -msgid "ms" -msgstr "ms" - -msgid "Artists search limit" -msgstr "Límites de búsqueda de artistas" - -msgid "Albums search limit" -msgstr "Límites de búsqueda de álbumes" - -msgid "Songs search limit" -msgstr "Límite de búsqueda de temas" - -msgid "Fetch entire albums when searching songs" -msgstr "Devolver el álbum completo al buscar temas" - -msgid "Album cover size" -msgstr "Tamaño de la portada del álbum" - -msgid "Stream URL method" -msgstr "Método de retransmisión de URL" - -msgid "Append explicit to album title for explicit albums" -msgstr "Añadir «explícito» al nombre de los álbumes explícitos" - -msgid "Basic authentication" -msgstr "Autenticación básica" - -msgid "Authenticate" -msgstr "Autenticar" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "

No se detecta el plugin GStreamer de Spotify, por lo que no podrás transmitir canciones desde Spotify sin él. Véase la Wiki para las instrucciones de cómo instalar el plugin.

" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "La compatibilidad con Qobuz no es oficial y precisa de un token de API procedente de una aplicación registrada. No le podemos ayudar a conseguirlo." - -msgid "App ID" -msgstr "Id. de aplic." - -msgid "App Secret" -msgstr "Secreto de aplicación" - -msgid "Base64 encoded secret" -msgstr "Secreto codificado en Base64" - -msgid "Moodbar" -msgstr "Barra de ánimo" - -msgid "Show a moodbar in the track progress bar" -msgstr "Mostrar una barra de ánimo en la barra de progreso" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Guardar archivos .mood directamente en las carpetas de los temas" - -msgid "Enabled" -msgstr "Activado" - -msgid "Return to Strawberry" -msgstr "Volver a Strawberry" - -msgid "Success!" -msgstr "¡Hecho!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Cierre el navegador y vuelva a Strawberry." - diff --git a/src/translations/es_MX.po b/src/translations/es_MX.po deleted file mode 100644 index 35cd8d94..00000000 --- a/src/translations/es_MX.po +++ /dev/null @@ -1,4355 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: es-MX\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Spanish, Mexico\n" -"Language: es_MX\n" -"PO-Revision-Date: 2024-09-29 20:05\n" - -msgid "All Files (*)" -msgstr "Todos los archivos (*)" - -msgid "Context" -msgstr "Contexto" - -msgid "Collection" -msgstr "Colección" - -msgid "Queue" -msgstr "Cola" - -msgid "Playlists" -msgstr "Listas" - -msgid "Smart playlists" -msgstr "Listas inteligentes" - -msgid "Files" -msgstr "Archivos" - -msgid "Radios" -msgstr "Radios" - -msgid "Devices" -msgstr "Dispositivos" - -msgid "Subsonic" -msgstr "Subsonic" - -msgid "Tidal" -msgstr "Tidal" - -msgid "Spotify" -msgstr "Spotify" - -msgid "Qobuz" -msgstr "Qobuz" - -msgid "Show all songs" -msgstr "Mostrar todas las pistas" - -msgid "Show only duplicates" -msgstr "Mostrar solo los duplicados" - -msgid "Show only untagged" -msgstr "Solo mostrar no etiquetadas" - -msgid "Configure collection..." -msgstr "Configurar colección…" - -msgid "Play" -msgstr "Reproducir" - -msgid "Stop after this track" -msgstr "Detener reproducción al finalizar la pista actual" - -msgid "Toggle queue status" -msgstr "Cambiar estado de la cola" - -msgid "Queue selected tracks to play next" -msgstr "Poner en cola las pistas seleccionadas para reproducir a continuación" - -msgid "Toggle skip status" -msgstr "Alternar estado de avance" - -msgid "Rescan song(s)..." -msgstr "Volver a escanear tema(s)..." - -msgid "Copy URL(s)..." -msgstr "Copiar URL…" - -msgid "Show in collection..." -msgstr "Mostrar en la colección…" - -msgid "Show in file browser..." -msgstr "Mostrar en el gestor de archivos…" - -msgid "Organize files..." -msgstr "Organizar archivos…" - -msgid "Copy to collection..." -msgstr "Copiar en la colección…" - -msgid "Move to collection..." -msgstr "Mover a la colección…" - -msgid "Copy to device..." -msgstr "Copiar en un dispositivo…" - -msgid "Delete from disk..." -msgstr "Eliminar del disco…" - -msgid "Check for updates..." -msgstr "Buscar actualizaciones…" - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry ejecutándose bajo Rosetta" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "Estás ejecutando Strawberry bajo Rosetta. Ejecutar Strawberry bajo Rosetta no está soportado y se sabe que presenta problemas. Deberías descargar Strawberry para la arquitectura de CPU correcta desde %1" - -msgid "Sponsoring Strawberry" -msgstr "Patrocinar Strawberry" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry es software libre y de código abierto. Si te gusta Strawberry, por favor considera patrocinar el proyecto. Para más información sobre el patrocinio, visita nuestro sitio web %1" - -msgid "Pause" -msgstr "Pausar" - -msgid "Dequeue track" -msgstr "Quitar la pista de la cola" - -msgid "Dequeue selected tracks" -msgstr "Quitar las pistas seleccionadas de la cola" - -msgid "Queue track" -msgstr "Poner pista en cola" - -msgid "Queue selected tracks" -msgstr "Poner en cola las pistas seleccionadas" - -msgid "Queue to play next" -msgstr "Poner en cola para reproducir a continuación" - -msgid "Unskip track" -msgstr "No omitir pista" - -msgid "Unskip selected tracks" -msgstr "No omitir pistas seleccionadas" - -msgid "Skip track" -msgstr "Omitir pista" - -msgid "Skip selected tracks" -msgstr "Omitir pistas seleccionadas" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Establecer %1 a «%2»…" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Editar etiqueta «%1»…" - -msgid "Add to another playlist" -msgstr "Añadir a otra lista de reproducción" - -msgid "New playlist" -msgstr "Lista nueva" - -msgid "Add file" -msgstr "Añadir archivo" - -msgid "Music" -msgstr "Música" - -msgid "Add folder" -msgstr "Añadir carpeta" - -msgid "Clear playlist" -msgstr "Vaciar lista de reproducción" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "La lista de reproducción tiene %1 temas, demasiadas para deshacer, ¿estás seguro de que quieres eliminarla?" - -msgid "Error" -msgstr "Error" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Ninguna de las pistas seleccionadas era apta para copiarse en un dispositivo" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "La versión de Strawberry a la que se acaba de actualizar necesita volver a analizar la colección debido a estas nuevas funciones:" - -msgid "Would you like to run a full rescan right now?" -msgstr "¿Quiere ejecutar un nuevo análisis completo ahora?" - -msgid "Collection rescan notice" -msgstr "Notificación de nuevo análisis de la colección" - -msgid "Usage" -msgstr "Uso" - -msgid "options" -msgstr "opciones" - -msgid "URL(s)" -msgstr "URL" - -msgid "Player options" -msgstr "Opciones del reproductor" - -msgid "Start the playlist currently playing" -msgstr "Iniciar la lista de reproducción actualmente en reproducción" - -msgid "Play if stopped, pause if playing" -msgstr "Reproducir si detenido, pausar si en reproducción" - -msgid "Pause playback" -msgstr "Pausar la reproducción" - -msgid "Stop playback" -msgstr "Detener reproducción" - -msgid "Stop playback after current track" -msgstr "Detener reproducción al terminar la pista actual" - -msgid "Skip backwards in playlist" -msgstr "Saltar hacia atrás en la lista de reproducción" - -msgid "Skip forwards in playlist" -msgstr "Saltar hacia adelante en la lista de reproducción" - -msgid "Set the volume to percent" -msgstr "Establecer el volumen en %" - -msgid "Increase the volume by 4 percent" -msgstr "Aumentar el volumen en un 4 %" - -msgid "Decrease the volume by 4 percent" -msgstr "Reduce el volumen en un 4 %" - -msgid "Increase the volume by percent" -msgstr "Aumentar el volumen en  %" - -msgid "Decrease the volume by percent" -msgstr "Reduce el volumen en  %" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Moverse en la pista actual hacia una posición absoluta" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Moverse en la pista actual hacia una posición relativa" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Reiniciar la pista o saltar a la anterior si no han transcurrido 8 segundos desde su inicio." - -msgid "Playlist options" -msgstr "Opciones de la lista de reproducción" - -msgid "Create a new playlist with files" -msgstr "Crear una lista de reproducción nueva con archivos" - -msgid "Append files/URLs to the playlist" -msgstr "Añadir archivos/URL a la lista de reproducción" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Carga archivos/URL, reemplaza la lista de reproducción actual" - -msgid "Play the th track in the playlist" -msgstr "Reproducir la .ª pista de la lista de reproducción" - -msgid "Play given playlist" -msgstr "Reproducir lista indicada" - -msgid "Other options" -msgstr "Otras opciones" - -msgid "Display the on-screen-display" -msgstr "Mostrar indicadores en pantalla" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Conmutar visibilidad del panel de información en pantalla estético" - -msgid "Change the language" -msgstr "Cambiar el idioma" - -msgid "Resize the window" -msgstr "Redimensionar la ventana" - -msgid "Equivalent to --log-levels *:1" -msgstr "Equivalente a --log-levels*:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Equivalente a --log-levels*:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Lista separada por comas de la clase:nivel, el nivel es 0-3" - -msgid "Print out version information" -msgstr "Mostrar información de versión" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "No se puede ejecutar la consulta SQL: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Error en la consulta de SQL: %1" - -msgid "Integrity check" -msgstr "Comprobación de integridad" - -msgid "Database corruption detected." -msgstr "Se han detectado errores en la base de datos" - -msgid "Backing up database" -msgstr "Haciendo copia de respaldo de la base de datos" - -msgid "Deleting files" -msgstr "Eliminando los archivos" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "Error al crear el directorio %1." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "El archivo de destino %1 existe, pero no se permite sobrescribirlo." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "El archivo de destino %1 existe, pero no se permite sobrescribirlo" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "No se pudo copiar el archivo %1 a %2." - -msgid "Unknown" -msgstr "Desconocido" - -msgid "LUFS" -msgstr "LUFS" - -msgid "LU" -msgstr "LU" - -msgid "You need GStreamer for this URL." -msgstr "Necesita GStreamer para este URL" - -msgid "Preload function was not set for blocking operation." -msgstr "La función de precarga no se ajustó para un funcionamiento con bloqueo." - -#, qt-format -msgid "File %1 does not exist." -msgstr "El archivo %1 no existe." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "El archivo de audio %1 no parece válido." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "La reproducción de CD solo es posible con el motor GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "No se pudo abrir el archivo %1 para la lectura: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "No se pudo abrir el archivo CUE %1 para la lectura: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "No se pudo abrir el archivo de lista de reproducción %1 para la lectura: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "No se pudo crear el elemento source de GStreamer para %1" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "No se pudo crear el elemento typefind de GStreamer para %1" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "No se pudo crear el elemento fakesink de GStreamer para %1" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "No se pudieron vincular los elementos source, typefind y fakesink de GStreamer para %1" - -msgid "Playlist" -msgstr "Lista" - -msgid "1 day" -msgstr "1 día" - -#, qt-format -msgid "%1 days" -msgstr "%1 días" - -msgid "Today" -msgstr "Hoy" - -msgid "Yesterday" -msgstr "Ayer" - -#, qt-format -msgid "%1 days ago" -msgstr "hace %1 días" - -msgid "Tomorrow" -msgstr "Mañana" - -#, qt-format -msgid "In %1 days" -msgstr "En %1 días" - -msgid "Next week" -msgstr "Próxima semana" - -#, qt-format -msgid "In %1 weeks" -msgstr "En %1 semanas" - -msgid "Show in file browser" -msgstr "Mostrar en el navegador de archivos" - -msgid "Too many songs selected." -msgstr "Demasiadas pistas seleccionadas" - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "Se han seleccionado %1 temas en %2 directorios. ¿Confirma que quiere abrirlos todos?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "Error al cargar la imagen de datos para %1" - -msgid "Success" -msgstr "Éxito" - -msgid "File is unsupported" -msgstr "El archivo no está soportado" - -msgid "Filename is missing" -msgstr "Falta el nombre del archivo" - -msgid "File does not exist" -msgstr "El archivo no existe" - -msgid "File could not be opened" -msgstr "No se pudo abrir el archivo" - -msgid "Could not parse file" -msgstr "No se pudo analizar el archivo" - -msgid "Could save file" -msgstr "Se pudo guardar el archivo" - -msgid "Unknown error" -msgstr "Error desconocido" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "Utiliza un término de búsqued acon un nombre de campo para limitar la búsqueda a ese campo. Por ejemplo:" - -msgid "artist" -msgstr "artista" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "busca todos los artistas que contienen la palabra %1. " - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "Los términos de búsqueda para campos numéricos pueden llevar %1 o %2 como prefijos para refinar la búsqueda. Por ejemplo: " - -msgid "rating" -msgstr "valoración" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "También se pueden combinar múltiples términos de búsqueda con \"%1\" (por defecto) y \"%2\", así como agruparlos con paréntesis. " - -msgid "Available fields" -msgstr "Campos disponibles" - -msgid "Buffering" -msgstr "Guardando en búfer" - -msgid "Framerate" -msgstr "Tasa de fotogramas" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Baja (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Media (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Alta (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Muy alta (%1 fps)" - -msgid "No analyzer" -msgstr "Sin analizador" - -msgid "Block analyzer" -msgstr "Analizador de bloques" - -msgid "Boom analyzer" -msgstr "Analizador de resonancia" - -msgid "Turbine" -msgstr "Turbine" - -msgid "Sonogram" -msgstr "Sonograma" - -msgid "WaveRubber" -msgstr "WaveRubber" - -msgid "Pre-amp" -msgstr "Preamplificador" - -msgid "Custom" -msgstr "Personalizado" - -msgid "Classical" -msgstr "Clásica" - -msgid "Club" -msgstr "Club" - -msgid "Dance" -msgstr "Baile" - -msgid "Full Bass" -msgstr "Graves completos" - -msgid "Full Treble" -msgstr "Agudos completos" - -msgid "Full Bass + Treble" -msgstr "Graves y agudos completos" - -msgid "Laptop/Headphones" -msgstr "Portátil/auriculares" - -msgid "Large Hall" -msgstr "Salón grande" - -msgid "Live" -msgstr "En directo" - -msgid "Party" -msgstr "Fiesta" - -msgid "Pop" -msgstr "Pop" - -msgid "Reggae" -msgstr "Reggae" - -msgid "Rock" -msgstr "Rock" - -msgid "Soft" -msgstr "Suave" - -msgid "Ska" -msgstr "Ska" - -msgid "Soft Rock" -msgstr "Soft rock" - -msgid "Techno" -msgstr "Tecno" - -msgid "Zero" -msgstr "Cero" - -msgid "Save preset" -msgstr "Guardar ajuste predefinido" - -msgid "Name" -msgstr "Nombre" - -msgid "Delete preset" -msgstr "Eliminar ajuste predefinido" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "¿Confirma que quiere eliminar el ajuste predefinido «%1»?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 dB" - -msgid "Filetype" -msgstr "Tipo de archivo" - -msgid "Length" -msgstr "Duración" - -msgid "Samplerate" -msgstr "Frecuencia" - -msgid "Bit depth" -msgstr "Resolución" - -msgid "Bitrate" -msgstr "Tasa de bits" - -msgid "EBU R 128 Integrated Loudness" -msgstr "Sonoridad integrada EBU R 128" - -msgid "EBU R 128 Loudness Range" -msgstr "Rango de sonoridad EBU R 128" - -msgid "Show album cover" -msgstr "Mostrar cubierta del álbum" - -msgid "Show song technical data" -msgstr "Mostrar información técnica de la canción" - -msgid "Show song lyrics" -msgstr "Mostrar letras" - -msgid "Automatically search for song lyrics" -msgstr "Buscar automáticamente la letra de la canción" - -msgid "No song playing" -msgstr "No suena nada" - -#, qt-format -msgid "%1 song" -msgstr "%1 canción" - -#, qt-format -msgid "%1 songs" -msgstr "%1 canciones" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artista" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artistas" - -#, qt-format -msgid "%1 album" -msgstr "%1 álbum" - -#, qt-format -msgid "%1 albums" -msgstr "%1 álbumes" - -msgid "kbps" -msgstr "kb/s" - -msgid "Saving playcounts and ratings" -msgstr "Guardando el conteo de reproducciones y valoraciones" - -msgid "Various artists" -msgstr "Varios artistas" - -msgid "Loading..." -msgstr "Cargando…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "No se puede ejecutar la consulta SQL de la colección: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "Actualizando %1 base de datos." - -msgid "Updating collection" -msgstr "Actualizando la colección" - -#, qt-format -msgid "Updating %1" -msgstr "Actualizando %1" - -msgid "Your collection is empty!" -msgstr "La colección está vacía." - -msgid "Click here to add some music" -msgstr "Pulse aquí para añadir música" - -msgid "Append to current playlist" -msgstr "Añadir a la lista de reproducción actual" - -msgid "Replace current playlist" -msgstr "Reemplazar lista de reproducción actual" - -msgid "Open in new playlist" -msgstr "Abrir en una lista nueva" - -msgid "Search for this" -msgstr "Buscar esto" - -msgid "Edit track information..." -msgstr "Editar información de la pista…" - -msgid "Edit tracks information..." -msgstr "Editar información de las pistas…" - -msgid "Rescan song(s)" -msgstr "Volver a escanear pistas" - -msgid "Show in various artists" -msgstr "Mostrar en Varios artistas" - -msgid "Don't show in various artists" -msgstr "No mostrar en Varios artistas" - -msgid "There are other songs in this album" -msgstr "Hay otras pistas en este álbum" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "¿Le gustaría mover también el resto de temas del álbum a Varios artistas?" - -msgid "Show" -msgstr "Mostrar" - -msgid "Group by" -msgstr "Agrupar por" - -msgid "Display options" -msgstr "Opciones de visualización" - -msgid "Group by Album artist/Album" -msgstr "Agrupar por artista del álbum/álbum" - -msgid "Group by Album artist/Album - Disc" -msgstr "Agrupar por artista del álbum/álbum - disco" - -msgid "Group by Album artist/Year - Album" -msgstr "Agrupar por artista del álbum/año - álbum" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Agrupar por artista del álbum/año - álbum - disco" - -msgid "Group by Artist/Album" -msgstr "Agrupar por artista/álbum" - -msgid "Group by Artist/Album - Disc" -msgstr "Agrupar por artista/álbum - disco" - -msgid "Group by Artist/Year - Album" -msgstr "Agrupar por artista/año - álbum" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Agrupar por artista/año - álbum - disco" - -msgid "Group by Genre/Album artist/Album" -msgstr "Agrupar por género/artista del álbum/álbum" - -msgid "Group by Genre/Artist/Album" -msgstr "Agrupar por género/artista/álbum" - -msgid "Group by Album Artist" -msgstr "Agrupar por artista del álbum" - -msgid "Group by Artist" -msgstr "Agrupar por artista" - -msgid "Group by Album" -msgstr "Agrupar por álbum" - -msgid "Group by Genre/Album" -msgstr "Agrupar por género/álbum" - -msgid "Advanced grouping..." -msgstr "Agrupamiento avanzado…" - -msgid "Grouping Name" -msgstr "Nombre de agrupamiento" - -msgid "Grouping name:" -msgstr "Nombre de agrupamiento:" - -msgid "First level" -msgstr "Primer nivel" - -msgid "Second Level" -msgstr "Segundo nivel" - -msgid "Third Level" -msgstr "Tercer nivel" - -msgid "None" -msgstr "Ninguno" - -msgid "Album artist" -msgstr "Artista del álbum" - -msgid "Artist" -msgstr "Artista" - -msgid "Album" -msgstr "Álbum" - -msgid "Album - Disc" -msgstr "Álbum - Disco" - -msgid "Year - Album" -msgstr "Año - álbum" - -msgid "Year - Album - Disc" -msgstr "Año - álbum - disco" - -msgid "Original year - Album" -msgstr "Año original - álbum" - -msgid "Original year - Album - Disc" -msgstr "Año original - álbum - disco" - -msgid "Disc" -msgstr "Disco" - -msgid "Year" -msgstr "Año" - -msgid "Original year" -msgstr "Año original" - -msgid "Genre" -msgstr "Género" - -msgid "Composer" -msgstr "Compositor" - -msgid "Performer" -msgstr "Intérprete" - -msgid "Grouping" -msgstr "Agrupamiento" - -msgid "File type" -msgstr "Tipo" - -msgid "Format" -msgstr "Formato" - -msgid "Sample rate" -msgstr "Frecuencia" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "No se pudieron escribir los metadatos en %1" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "No se pudieron escribir los metadatos en %1: %2" - -msgid "Title" -msgstr "Título" - -msgid "Track" -msgstr "Pista" - -msgid "Original Year" -msgstr "Año original" - -msgid "Album Artist" -msgstr "Artista del álbum" - -msgid "Play Count" -msgstr "Conteo de reproducciones" - -msgid "Skip Count" -msgstr "Número de omisiones" - -msgid "Last Played" -msgstr "Última reproducción" - -msgid "Sample Rate" -msgstr "Frecuencia" - -msgid "Bit Depth" -msgstr "Profundidad de Bit" - -msgid "File Name" -msgstr "Nombre del archivo" - -msgid "File Name (without path)" -msgstr "Nombre del archivo (sin ruta)" - -msgid "File Size" -msgstr "Tamaño del archivo" - -msgid "File Type" -msgstr "Tipo del archivo" - -msgid "Date Modified" -msgstr "Fecha de modificación" - -msgid "Date Created" -msgstr "Fecha de creación" - -msgid "Comment" -msgstr "Comentario" - -msgid "Source" -msgstr "Origen" - -msgid "Mood" -msgstr "Ánimo" - -msgid "Rating" -msgstr "Valoración" - -msgid "CUE" -msgstr "CUE" - -msgid "Integrated Loudness" -msgstr "Sonoridad integrada" - -msgid "Loudness Range" -msgstr "Rango de sonoridad" - -msgid "Undo" -msgstr "Deshacer" - -msgid "Redo" -msgstr "Rehacer" - -msgid "Load playlist" -msgstr "Cargar lista de reproducción" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "No se encontraron coincidencias. Borre el texto introducido en el cuadro de búsqueda para mostrar la lista completa de nuevo." - -msgid "stop" -msgstr "detener" - -msgid "Never" -msgstr "Nunca" - -msgid "&Hide..." -msgstr "&Ocultar…" - -msgid "&Stretch columns to fit window" -msgstr "&Ajustar columnas a la ventana" - -msgid "&Reset columns to default" -msgstr "&Reajustar columnas a valores iniciales" - -msgid "&Lock rating" -msgstr "B&loquear valoración" - -msgid "&Align text" -msgstr "&Alinear el texto" - -msgid "&Left" -msgstr "&Izquierda" - -msgid "&Center" -msgstr "&Centrar" - -msgid "&Right" -msgstr "&Derecha" - -#, qt-format -msgid "&Hide %1" -msgstr "&Ocultar «%1»" - -msgid "New folder" -msgstr "Carpeta nueva" - -msgid "Delete" -msgstr "Eliminar" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Guardar lista de reproducción" - -msgid "Enter the name of the folder" -msgstr "Escriba el nombre de la carpeta" - -msgid "Copy to device" -msgstr "Copiar en un dispositivo" - -msgid "Playlist must be open first." -msgstr "La lista debe abrirse primero." - -msgid "Remove playlists" -msgstr "Eliminar listas de reproducción" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "¿Confirma que quiere eliminar %1 listas de reproducción de sus favoritos?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Puede marcar listas de reproducción como favoritas pulsando en los iconos con forma de estrella junto a sus nombres" - -msgid "Favorited playlists will be saved here" -msgstr "Sus listas favoritas se guardarán aquí" - -msgid "Couldn't create playlist" -msgstr "No se pudo crear la lista de reproducción" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Guardar lista de reproducción" - -msgid "Unknown playlist extension" -msgstr "Extensión de la lista de reproducción desconocida" - -msgid "Unknown file extension for playlist." -msgstr "Extensión de archivo desconocida para la lista de reproducción." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 seleccionado de" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "%n pista(s)" - -msgid "Automatic" -msgstr "Automático" - -msgid "Relative" -msgstr "Relativo" - -msgid "Absolute" -msgstr "Absoluto" - -msgid "Star playlist" -msgstr "Marcar lista de reproducción como favorita" - -msgid "Close playlist" -msgstr "Cerrar lista de reproducción" - -msgid "Rename playlist..." -msgstr "Cambiar nombre de lista…" - -msgid "Save playlist..." -msgstr "Guardar lista de reproducción…" - -msgid "Rename playlist" -msgstr "Cambiar nombre de lista" - -msgid "Enter a new name for this playlist" -msgstr "Introduzca un nombre nuevo para esta lista de reproducción" - -msgid "Remove playlist" -msgstr "Eliminar lista de reproducción" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Está a punto de eliminar una lista de reproducción que no está entre sus favoritas (esta acción no se puede deshacer).\n" -"¿Confirma que quiere continuar?" - -msgid "Warn me when closing a playlist tab" -msgstr "Avisarme antes de cerrar una pestaña de lista de reproducción" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Puede modificar esta opción en la pestaña «Comportamiento» en Preferencias" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Pulse dos veces para convertir esta lista en favorita y que se guarde y quede accesible en el panel «Listas» de la barra izquierda" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "añadir %n pistas" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "quitar %n temas" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "mover %n temas" - -msgid "sort songs" -msgstr "ordenar temas" - -msgid "shuffle songs" -msgstr "mezclar temas" - -msgid "Hz" -msgstr "Hz" - -msgid "Bit" -msgstr "Bit" - -msgid "Error while loading audio CD." -msgstr "Error al cargar el CD de audio." - -msgid "Loading tracks" -msgstr "Cargando pistas" - -msgid "Loading tracks info" -msgstr "Cargando información de pistas" - -msgid "Saving CUE files is not supported." -msgstr "El guardado de archivos CUE no está soportado." - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "No sé cómo manejar %1" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Todas las listas de reproducción (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 listas de reproducción (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "Tipo de vínculo desconocido: %1" - -#, qt-format -msgid "Could not open file %1" -msgstr "No se pudo abrir el archivo %1" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "El directorio %1 no existe." - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "Error al abrir %1 para escritura." - -msgid "Loading smart playlist" -msgstr "Cargando lista inteligente" - -msgid "Collection search" -msgstr "Búsqueda en la colección" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Encuentre temas en la colección que coincidan con los criterios que especifique." - -msgid "Search terms" -msgstr "Términos de búsqueda" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Se incluirá el tema si cumple estas condiciones." - -msgid "Search options" -msgstr "Opciones de búsqueda" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Selecciona como se ordenará la lista y qué temas contendrá" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 canciones encontradas (se muestran %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 canciones encontradas" - -msgid "after" -msgstr "Después" - -msgid "before" -msgstr "antes" - -msgid "on" -msgstr "el" - -msgid "not on" -msgstr "no el" - -msgid "in the last" -msgstr "en el último" - -msgid "not in the last" -msgstr "no en los últimos" - -msgid "between" -msgstr "entre" - -msgid "contains" -msgstr "contiene" - -msgid "does not contain" -msgstr "no contiene" - -msgid "starts with" -msgstr "comienza por" - -msgid "ends with" -msgstr "termina en" - -msgid "greater than" -msgstr "mayor que" - -msgid "less than" -msgstr "menos de" - -msgid "equals" -msgstr "es igual a" - -msgid "not equals" -msgstr "no es igual a" - -msgid "empty" -msgstr "vacío" - -msgid "not empty" -msgstr "no vacío" - -msgid "A-Z" -msgstr "A-Z" - -msgid "Z-A" -msgstr "Z-A" - -msgid "oldest first" -msgstr "el más antiguo primero" - -msgid "newest first" -msgstr "El más nuevo primero" - -msgid "shortest first" -msgstr "el más corto primero" - -msgid "longest first" -msgstr "El más largo primero" - -msgid "smallest first" -msgstr "el más pequeño primero" - -msgid "biggest first" -msgstr "primero el mayor" - -msgid "Hours" -msgstr "Horas" - -msgid "Days" -msgstr "Días" - -msgid "Weeks" -msgstr "Semanas" - -msgid "Months" -msgstr "Meses" - -msgid "Years" -msgstr "Años" - -msgid "The second value must be greater than the first one!" -msgstr "El segundo valor debe ser mayor que el primero." - -msgid "Add search term" -msgstr "Añadir término de búsqueda" - -msgid "Newest tracks" -msgstr "Pistas más nuevas" - -msgid "50 random tracks" -msgstr "50 pistas aleatorias" - -msgid "Ever played" -msgstr "Ya reproducido" - -msgid "Never played" -msgstr "Nunca reproducidas" - -msgid "Last played" -msgstr "Últimas reproducidas" - -msgid "Most played" -msgstr "Más reproducidas" - -msgid "Favourite tracks" -msgstr "Pistas favoritas" - -msgid "Least favourite tracks" -msgstr "Pistas menos valoradas" - -msgid "All tracks" -msgstr "Todas las pistas" - -msgid "Dynamic random mix" -msgstr "Mezcla aleatoria dinámica" - -msgid "New smart playlist..." -msgstr "Lista inteligente nueva…" - -msgid "Play next" -msgstr "Reproducir siguiente" - -msgid "Edit smart playlist..." -msgstr "Editar lista inteligente..." - -msgid "Delete smart playlist" -msgstr "Eliminar lista inteligente" - -msgid "Smart playlist" -msgstr "Lista inteligentes" - -msgid "Playlist type" -msgstr "Tipo de lista" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Una lista inteligente es una lista dinámica de temas de la fonoteca. Hay distintos tipos de listas inteligentes que permiten seleccionar los temas de distintas maneras." - -msgid "Finish" -msgstr "Terminar" - -msgid "Choose a name for your smart playlist" -msgstr "Escoja un nombre para su lista inteligente" - -msgid "Abort" -msgstr "Interrumpir" - -msgid "All albums" -msgstr "Todos los álbumes" - -msgid "Albums with covers" -msgstr "Álbumes con cubierta" - -msgid "Albums without covers" -msgstr "Álbumes sin cubierta" - -msgid "Really cancel?" -msgstr "¿Confirma que quiere cancelar?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Si cierra esta ventana se detendrá la búsqueda de cubiertas para los álbumes." - -msgid "Don't stop!" -msgstr "¡No detener!" - -msgid "All artists" -msgstr "Todos los artistas" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Se obtuvieron %1 cubiertas de %2 (%3 fallaron)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 transferido" - -msgid "Export finished" -msgstr "Exportación finalizada" - -msgid "No covers to export." -msgstr "No hay ninguna cubierta que exportar." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Se han exportado %1 cubiertas de %2 (%3 omitidas)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "No se pudo guardar la portada en el archivo %1." - -#, qt-format -msgid "Covers from %1" -msgstr "Cubiertas de %1" - -msgid "Search" -msgstr "Buscar" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Imágenes (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Imágenes (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Todos los archivos (*)" - -msgid "Load cover from disk..." -msgstr "Cargar cubierta desde disco…" - -msgid "Save cover to disk..." -msgstr "Guardar la cubierta en el disco…" - -msgid "Load cover from URL..." -msgstr "Cargar cubierta desde un URL…" - -msgid "Search for album covers..." -msgstr "Buscar cubiertas de álbumes…" - -msgid "Unset cover" -msgstr "Quitar la cubierta" - -msgid "Delete cover" -msgstr "Eliminar cubierta" - -msgid "Clear cover" -msgstr "Eliminar cubierta" - -msgid "Show fullsize..." -msgstr "Mostrar a tamaño completo…" - -msgid "Search automatically" -msgstr "Buscar automáticamente" - -msgid "Load cover from disk" -msgstr "Cargar cubierta desde el disco" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Error al abrir el archivo de portada %1 para la lectura: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "El archivo de portada %1 está vacío." - -msgid "unknown" -msgstr "Desconocido" - -msgid "Save album cover" -msgstr "Guardar la cubierta del álbum" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Error al abrir el archivo de portada %1 para la escritura: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Error escribiendo la portada en el archivo %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Error escribiendo la portada en el archivo %1." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Error al eliminar el archivo de portada %1: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Error al escribir la portada en el archivo %1: %2" - -msgid "Total network requests made" -msgstr "Total de solicitudes hechas a la red" - -msgid "Average image size" -msgstr "Tamaño medio de imagen" - -msgid "Total bytes transferred" -msgstr "Total de bytes transferidos" - -msgid "Fetching cover error" -msgstr "Error al obtener la cubierta" - -msgid "The site you requested does not exist!" -msgstr "El sitio indicado no existe." - -msgid "The site you requested is not an image!" -msgstr "El sitio indicado no es una imagen." - -msgid "Genius Authentication" -msgstr "Autenticación con Genius" - -msgid "Please open this URL in your browser" -msgstr "Abra este URL en el navegador" - -msgid "Redirect missing token code!" -msgstr "¡Falta código del token de redirección!" - -msgid "Received invalid reply from web browser." -msgstr "Se recibió una respuesta no válida del navegador." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Redirección Genius carece de código de elementos de búsqueda o estado." - -msgid "General" -msgstr "General" - -msgid "User interface" -msgstr "Interfaz de usuario" - -msgid "Streaming" -msgstr "Transmitiendo" - -msgid "Add directory..." -msgstr "Añadir carpeta…" - -msgid "Write all playcounts and ratings to files" -msgstr "Escribir todos los conteos de reproducciones y valoraciones en los archivos" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "¿Estás seguro de que quieres guardar en los archivos el conteo de reproducciones y las valoraciones para todas las canciones de tu colección?" - -msgid "Enter your user token from" -msgstr "Introduzca su ficha de usuario de" - -msgid "Use Tidal settings to authenticate." -msgstr "Usar ajustes de Tidal para autenticarse." - -msgid "Use Spotify settings to authenticate." -msgstr "Usar ajustes de Spotify para autenticarse." - -msgid "Use Qobuz settings to authenticate." -msgstr "Usar ajustes de Qobuz para autenticarse." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 necesita autenticación." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 no necesita autenticación." - -msgid "No provider selected." -msgstr "No se ha seleccionado ningún proveedor." - -msgid "Authentication failed" -msgstr "Falló la autenticación" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "Desactivar manualmente (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "Establecer mediante la búsqueda de portada de álbum (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "Elegido automáticamente de la carpeta del álbum (%1)" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "Portada de álbum incrustada (%1)" - -msgid "Select background image" -msgstr "Elija la imagen de fondo" - -msgid "OSD Preview" -msgstr "Previsualización del panel de información en pantalla" - -msgid "Drag to reposition" -msgstr "Arrastre para reposicionar" - -msgid "About Strawberry" -msgstr "Acerca de Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Versión %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry es un reproductor y catalogador de colecciones musicales." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Es un desarrollo derivado de Clementine lanzado en 2018 destinado a melómanos y audiófilos." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry es un programa libre, disponible en virtud de la licencia GPL. El código fuente puede encontrarse en %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Debería haber recibido una copia de la Licencia Pública General GNU junto con este programa. Si no es así, diríjase a %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Si le gusta Strawberry y le da uso, plantéese patrocinarlo o realizar una donación." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Puede patrocinar al autor en %1. También puede realizar una aportación económica a través de %2." - -msgid "Author and maintainer" -msgstr "Autor y responsable" - -msgid "Contributors" -msgstr "Colaboradores" - -msgid "Clementine authors" -msgstr "Autores de Clementine" - -msgid "Clementine contributors" -msgstr "Colaboradores de Clementine" - -msgid "Thanks to" -msgstr "Gracias a" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Gracias al resto de colaboradores de Amarok y Clementine" - -msgid "(different across multiple songs)" -msgstr "(diferentes en cada canción)" - -msgid "Different art across multiple songs." -msgstr "Hay imágenes distintas en múltiples temas." - -msgid "Previous" -msgstr "Anterior" - -msgid "Next" -msgstr "Siguiente" - -msgid "Saving tracks" -msgstr "Guardando las pistas" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 temas seleccionados" - -msgid "Yes" -msgstr "Sí" - -msgid "No" -msgstr "No" - -msgid "Cover is unset." -msgstr "La portada no está establecida." - -msgid "Cover from embedded image." -msgstr "Portada desde la imagen incrustrada." - -#, qt-format -msgid "Cover from %1" -msgstr "Portada de %1" - -msgid "Cover art not set" -msgstr "Cubierta no definida" - -msgid "Album cover editing is only available for collection songs." -msgstr "La edición de las cubiertas de los álbumes solo está disponible para las canciones de la fonoteca." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Cubierta modificada: se restablecerá al guardar." - -msgid "Cover changed: Will be unset when saved." -msgstr "Cubierta modificada: se desactivará al guardar." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Cubierta modificada: se eliminará al guardar." - -msgid "Cover changed: Will set new when saved." -msgstr "Cubierta modificada: se establecerá la nueva al guardar." - -msgid "Reset song play statistics" -msgstr "Restablecer estadísticas de reproducción de canción" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "¿Estás seguro de que deseas reestablecer las estadísticas de reproducción de esta canción?" - -msgid "loading..." -msgstr "cargando..." - -msgid "Not found." -msgstr "No se encontró." - -msgid "Original tags" -msgstr "Etiquetas originales" - -msgid "Suggested tags" -msgstr "Etiquetas sugeridas" - -msgid "Delete files" -msgstr "Eliminar archivos" - -msgid "The following files will be deleted from disk:" -msgstr "Los siguientes archivos serán borrados del disco:" - -msgid "Are you sure you want to continue?" -msgstr "¿Confirma que quiere continuar?" - -msgid "Receiving initial data from last.fm..." -msgstr "Recibiendo datos iniciales de Last.fm…" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Recibiendo info de nº de reproducciones para %1 temas y última reproducción para %2 temas." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Recibiendo info de última reproducción para %1 temas." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Recibiendo info de nº de reproducciones para %1 temas." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Recuentos de %1 reproducciones y última reproducción para %2 temas recibida." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Info de última reproducción para %1 temas recibida." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Recuentos de reproducciones para %1 temas recibidos." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry se está ejecutando como un Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Se ha detectado que Strawbery está ejecutándose como un «snap»" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry se está ejecutando como un snap" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Hay un repositorio PPA oficial para Ubuntu en %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Existen versiones oficiales para Debian y Ubuntu que también funcionan en la mayor parte de sus derivados. Mira %1 para obtener más información." - -msgid "For a better experience please consider the other options above." -msgstr "Tenga en cuenta las opciones anteriores para lograr una experiencia óptima." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Copia tus archivos strawberry.conf y strawberry.db de tu directorio ~/snap antes de desinstalar el paquete snap para no perder tu configuración:" - -msgid "Uninstall the snap with:" -msgstr "Desinstale el «snap» con:" - -msgid "Install strawberry through PPA:" -msgstr "Instalar Strawberry mediante un PPA:" - -msgid "Select directory for the playlists" -msgstr "Selecciona una carpeta para las listas de reproducción" - -msgid "Directory does not exist." -msgstr "El directorio no existe." - -msgid "Large sidebar" -msgstr "Barra lateral grande" - -msgid "Icons sidebar" -msgstr "Barra lateral de iconos" - -msgid "Small sidebar" -msgstr "Barra lateral pequeña" - -msgid "Plain sidebar" -msgstr "Barra lateral simple" - -msgid "Tabs on top" -msgstr "Pestañas en la parte superior" - -msgid "Icons on top" -msgstr "Iconos en la parte superior" - -msgid "Available" -msgstr "Disponible" - -msgid "New songs" -msgstr "Canciones nuevas" - -msgid "Exceeded by" -msgstr "Superado por" - -msgid "Used" -msgstr "En uso:" - -msgid "Clear" -msgstr "Borrar" - -msgid "Reset" -msgstr "Restablecer" - -msgid "Small album cover" -msgstr "Cubierta de álbum pequeña" - -msgid "Large album cover" -msgstr "Cubierta de álbum grande" - -msgid "Fit cover to width" -msgstr "Ajustar cubierta a anchura" - -msgid "Show above status bar" -msgstr "Mostrar sobre la barra de estado" - -msgid "You are signed in." -msgstr "Ha accedido a su cuenta." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Ha accedido como %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Caduca el %1" - -#, qt-format -msgid "disc %1" -msgstr "disco %1" - -#, qt-format -msgid "track %1" -msgstr "pista %1" - -msgid "Paused" -msgstr "En pausa" - -msgid "Stopped" -msgstr "Detenido" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Detener reproducción tras la pista: %1" - -msgid "On" -msgstr "Activado" - -msgid "Off" -msgstr "Desactivado" - -msgid "Playlist finished" -msgstr "Lista de reproducción finalizada" - -#, qt-format -msgid "Volume %1%" -msgstr "Volumen %1%" - -msgid "Don't shuffle" -msgstr "No mezclar" - -msgid "Shuffle all" -msgstr "Mezclar todo" - -msgid "Shuffle tracks in this album" -msgstr "Mezclar pistas de este álbum" - -msgid "Shuffle albums" -msgstr "Mezclar álbumes" - -msgid "Don't repeat" -msgstr "No repetir" - -msgid "Repeat track" -msgstr "Repetir pista" - -msgid "Repeat album" -msgstr "Repetir álbum" - -msgid "Repeat playlist" -msgstr "Repetir lista de reproducción" - -msgid "Stop after every track" -msgstr "Detener reproducción al finalizar cada pista" - -msgid "Intro tracks" -msgstr "Pistas de introducción" - -#, qt-format -msgid "Configure %1..." -msgstr "Configurar %1…" - -msgid "Add to artists" -msgstr "Añadir a artistas" - -msgid "Add to albums" -msgstr "Añadir a álbumes" - -msgid "Add to songs" -msgstr "Añadir a temas" - -msgid "Enter search terms above to find music" -msgstr "Introduzca términos de búsqueda arriba para buscar en la colección" - -msgid "The streaming collection is empty!" -msgstr "¡La colección de streaming está vacía!" - -msgid "Click here to retrieve music" -msgstr "Pulse aquí para recuperar música" - -msgid "Remove from favorites" -msgstr "Eliminar de favoritos" - -msgid "Open homepage" -msgstr "Abrir página de inicio" - -msgid "Donate" -msgstr "Donar" - -msgid "Refresh channels" -msgstr "Actualizar canales" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Obteniendo %1 canales" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "Autenticación en el servicio de registro de reproducciones %1" - -msgid "Open URL in web browser?" -msgstr "¿Quiere abrir el URL en el navegador?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Pulse en «Guardar» para copiar el URL en el portapapeles y ábralo en el navegador manualmente." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "No se ha podido abrir URL. Por favor, ábrela en tu navegador" - -msgid "Invalid reply from web browser. Missing token." -msgstr "El servidor web devolvió una respuesta no válida. Falta la ficha." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "Se ha recibido una respuesta inválida del navegador web. Intenta con otro navegador." - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "¡No se ha iniciado sesión en servicio de registro de reproducción %1!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Registro de reproducción %1 error: %2" - -msgid "ListenBrainz Authentication" -msgstr "Autenticación en ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "No se puede hacer el scrobble %1 - %2 debido al error: %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "Falta el ID de grabación de MusicBrainz para %1 %2 %3" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "Error de ListenBrainz: %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Falta el usuario; acceda a Last.fm primero." - -msgid "Organizing files" -msgstr "Organizando archivos" - -msgid "Artist's initial" -msgstr "Iniciales del artista" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Tasa de bits" - -msgid "File extension" -msgstr "Extensión del archivo" - -msgid "Error copying songs" -msgstr "Error al copiar pistas" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Hubo problemas al copiar algunas pistas. No se pudieron copiar los siguientes archivos:" - -msgid "Error deleting songs" -msgstr "Error al eliminar pistas" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Hubo problemas al eliminar algunas pistas. No se pudieron eliminar los siguientes archivos:" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados todos los complementos necesarios de GStreamer." - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 se ha escrito correctamente" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Convirtiendo %1 archivos usando %2 procesos" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Error al procesar %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Iniciando %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "No se pudo encontrar un codificador para %1; compruebe que tiene instalados los complementos correctos de GStreamer" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "No se pudo encontrar un mezclador para %1; compruebe que tiene instalados los complementos correctos de GStreamer" - -msgid "Start transcoding" -msgstr "Iniciar la conversión" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n pendientes" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n completados" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n falló" - -msgid "Add files to transcode" -msgstr "Añadir archivos que convertir" - -msgid "Open a directory to import music from" -msgstr "Abrir una carpeta de la que importar música" - -msgid "Play/Pause" -msgstr "Reproducir/pausar" - -msgid "Stop" -msgstr "Detener" - -msgid "Stop playing after current track" -msgstr "Detener la reproducción tras la pista actual" - -msgid "Next track" -msgstr "Siguiente pista" - -msgid "Previous track" -msgstr "Pista anterior" - -msgid "Restart or previous track" -msgstr "Reiniciar o pista anterior" - -msgid "Increase volume" -msgstr "Aumentar el volumen" - -msgid "Decrease volume" -msgstr "Reducir el volumen" - -msgid "Mute" -msgstr "Silenciar" - -msgid "Seek forward" -msgstr "Avanzar" - -msgid "Seek backward" -msgstr "Retroceder" - -msgid "Show/Hide" -msgstr "Mostrar/ocultar" - -msgid "Show OSD" -msgstr "Mostrar OSD" - -msgid "Toggle Pretty OSD" -msgstr "Alternar panel de información en pantalla estético" - -msgid "Change shuffle mode" -msgstr "Cambiar el modo de reproducción aleatoria" - -msgid "Change repeat mode" -msgstr "Cambiar el modo de repetición" - -msgid "Enable/disable scrobbling" -msgstr "Activar/desactivar scrobbling" - -msgid "Love" -msgstr "Me gusta" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Oprima una combinación de teclas para usar con %1…" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "No se pudo iniciar la orden «%1»." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Atajo para %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Usar atajos de X11 en %1 no es recomendable y puede hacer que el teclado no responda eficientemente." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "Los atajos en %1 se usan normalmente a través de GMPRIS y KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr " Los atajos en %1 se utilizan habitualmente a través de Gnome Settings Daemon y deben configurarse en gnome-settings-daemon en su lugar." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr " Los atajos en %1 se utilizan habitualmente a través de Gnome Settings Daemon y deben configurarse en cinnamon-settings-daemon en su lugar." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr " Los atajos en %1 se utilizan habitualmente a través de Mate Settings Daemon y deben configurarse ahí en su lugar." - -msgid "D-Bus path" -msgstr "Ruta de D-Bus" - -msgid "Serial number" -msgstr "Número de serie" - -msgid "Mount points" -msgstr "Puntos de montaje" - -msgid "Partition label" -msgstr "Etiqueta de partición" - -msgid "UUID" -msgstr "UUID" - -msgid "Connect device" -msgstr "Conectar dispositivo" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Esta es la primera vez que conecta este dispositivo. Strawberry analizará el dispositivo ahora para encontrar archivos de música; esto podría tardar un poco." - -msgid "This device will not work properly" -msgstr "Este dispositivo no funcionará correctamente" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Este es un dispositivo MTP, pero se compiló Strawberry sin compatibilidad con libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Si continúa, este dispositivo funcionará con lentitud y las pistas que se copien en él podrían no funcionar." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Esto es un iPod, pero se compiló Strawberry sin compatibilidad con libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "No se admite este tipo de dispositivo: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Actualizando… (%1%)" - -msgid "Not connected" -msgstr "No conectado" - -msgid "Not mounted - double click to mount" -msgstr "Sin montar. Pulse dos veces para montar" - -msgid "Double click to open" -msgstr "Doble clic para abrir" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 canción%2" - -msgid "Safely remove device" -msgstr "Quitar dispositivo con seguridad" - -msgid "Forget device" -msgstr "Olvidar dispositivo" - -msgid "Device properties..." -msgstr "Propiedades del dispositivo…" - -msgid "Delete from device..." -msgstr "Eliminar del dispositivo…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Olvidar un dispositivo lo eliminará de la lista y Strawberry tendrá que volver a examinar todas las pistas la próxima vez que lo conecte." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Se eliminarán estos archivos del dispositivo. ¿Confirma que quiere continuar?" - -msgid "Model" -msgstr "Modelo" - -msgid "Manufacturer" -msgstr "Fabricante" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "No se pudo copiar %1 a %2: %3" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "Error al escribir la base de datos: %1" - -msgid "Writing database failed." -msgstr "Error al escribir la base de datos." - -msgid "Loading iPod database" -msgstr "Cargando la base de datos del iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Se produjo un error al cargar la base de datos de iTunes" - -msgid "Mount point" -msgstr "Punto de montaje" - -msgid "Device" -msgstr "Dispositivo" - -msgid "URI" -msgstr "URI" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "Dispositivo MTP no válido: %1" - -msgid "Could not open MTP device." -msgstr "No se pudo abrir el dispositivo MTP." - -#, qt-format -msgid "MTP error: %1" -msgstr "Error de MTP: %1" - -msgid "MTP device not found." -msgstr "Dispositivo MTP no encontrado." - -msgid "Loading MTP device" -msgstr "Cargando el dispositivo MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Error al conectar al dispositivo MTP %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "Error al conectar el dispositivo MTP %1: %2" - -msgid "Identifying song" -msgstr "Identificando la canción" - -msgid "Fingerprinting song" -msgstr "Creando huella digital de la canción" - -msgid "Downloading metadata" -msgstr "Descargando metadatos" - -msgid "Error while setting CDDA device to ready state." -msgstr "Error al reactivar el dispositivo CDDA." - -msgid "Error while setting CDDA device to pause state." -msgstr "Error al poner en pausa el dispositivo CDDA." - -msgid "Error while querying CDDA tracks." -msgstr "Error de acceso a las pistas CDDA." - -msgid "Server URL is invalid." -msgstr "La dirección URL del servidor es inválida." - -msgid "Missing username or password." -msgstr "Falta el usuario o la contraseña." - -msgid "Subsonic server URL is invalid." -msgstr "La dirección URL del servidor de Subsonic es errónea" - -msgid "Missing Subsonic username or password." -msgstr "Falta el usuario o la contraseña de Qobuz." - -msgid "Retrieving albums..." -msgstr "Buscando álbumes..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Buscando pistas de %1 álbum..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Buscando pistas de %1 álbumes..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Buscando cubierta del álbum %1..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Buscando cubiertas de %1 álbumes." - -msgid "Configuration incomplete" -msgstr "Configuración incompleta" - -msgid "Missing server url, username or password." -msgstr "Falta el URL del servidor, el usuario o la contraseña." - -msgid "Configuration incorrect" -msgstr "Configuración incorrecta" - -msgid "Test successful!" -msgstr "¡Prueba correcta!" - -msgid "Test failed!" -msgstr "¡Prueba fallida!" - -msgid "Reply from Tidal is missing query items." -msgstr "Faltan elementos en la respuesta de Tidal." - -msgid "Missing Tidal API token." -msgstr "Falta la ficha de API de Tidal." - -msgid "Missing Tidal username." -msgstr "Falta el usuario de Tidal." - -msgid "Missing Tidal password." -msgstr "Falta la contraseña de Tidal." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Se ha alcanzado el número máximo de intentos sin lograr acceder a Tidal." - -msgid "Not authenticated with Tidal." -msgstr "No se ha accedido a Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Falta la ficha de la API de Tidal, el usuario o la contraseña." - -msgid "Authenticating..." -msgstr "Autenticando…" - -msgid "Receiving artists..." -msgstr "Recibiendo artistas..." - -msgid "Receiving albums..." -msgstr "Recibiendo álbumes..." - -msgid "Receiving songs..." -msgstr "Recibiendo canciones..." - -msgid "Searching..." -msgstr "Buscando..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "Recibiendo álbumes de %1 artista..." - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "Recibiendo álbumes de %1 artistas..." - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "Recibiendo canciones para %1 album..." - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "Recibir canciones de %1 álbumes..." - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "Recibiendo portada de álbum de %1 álbum..." - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "Recibiendo portadas de álbumes para %1 álbumes..." - -msgid "No match." -msgstr "Sin coincidencias." - -msgid "Cancelled." -msgstr "Cancelado." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Se ha recibido una URL con %1 flujo encriptado de Tidal. Strawberry actualmente no soporta flujos encriptados." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Se ha recibido una URL con un flujo encriptado de Tidal. Strawberry actualmente no soporta flujos encriptados." - -msgid "Missing Tidal client ID." -msgstr "Falta el identificador de cliente de Tidal." - -msgid "Missing API token." -msgstr "Falta la ficha de la API." - -msgid "Missing username." -msgstr "Falta el usuario." - -msgid "Missing password." -msgstr "Falta la contraseña." - -msgid "Spotify Authentication" -msgstr "Autenticación en Spotify" - -msgid "Redirect missing token code or state!" -msgstr "¡Falta código de token o estado!" - -msgid "Not authenticated with Spotify." -msgstr "No autenticar con Spotify." - -msgid "Data missing error" -msgstr "Error de datos faltantes" - -msgid "Maximum number of login attempts reached." -msgstr "Se ha alcanzado el número máximo de intentos de acceso." - -msgid "Missing Qobuz app ID." -msgstr "Falta el identificador de aplicación de Qobuz." - -msgid "Missing Qobuz username." -msgstr "Falta el usuario de Qobuz." - -msgid "Missing Qobuz password." -msgstr "Falta la contraseña de Qobuz." - -msgid "Not authenticated with Qobuz." -msgstr "No se ha accedido a Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Falta el identificador de aplicación o el secreto de Qobuz." - -msgid "Missing app id." -msgstr "Falta el identificador de aplicación." - -msgid "Show moodbar" -msgstr "Mostrar barra de ánimo" - -msgid "Moodbar style" -msgstr "Estilo de la barra de ánimo" - -msgid "Normal" -msgstr "Normal" - -msgid "Angry" -msgstr "Enfadado" - -msgid "Frozen" -msgstr "Congelado" - -msgid "Happy" -msgstr "Feliz" - -msgid "System colors" -msgstr "Colores del sistema" - -msgid "Strawberry Music Player" -msgstr "Reproductor de música Strawberry" - -msgid "F5" -msgstr "F5" - -msgid "&Play" -msgstr "&Reproducir" - -msgid "F6" -msgstr "F6" - -msgid "&Stop" -msgstr "&Detener" - -msgid "F7" -msgstr "F7" - -msgid "&Next track" -msgstr "Pista &siguiente" - -msgid "F8" -msgstr "F8" - -msgid "&Quit" -msgstr "&Salir" - -msgid "Ctrl+Q" -msgstr "Ctrl+Q" - -msgid "Ctrl+Alt+V" -msgstr "Ctrl+Alt+V" - -msgid "&Clear playlist" -msgstr "&Borrar lista de reproducción" - -msgid "Ctrl+K" -msgstr "Ctrl+K" - -msgid "Ctrl+E" -msgstr "Ctrl+E" - -msgid "Renumber tracks in this order..." -msgstr "Reordenar pistas en este orden…" - -msgid "Set value for all selected tracks..." -msgstr "Establecer valor para todas las pistas seleccionadas…" - -msgid "Edit tag..." -msgstr "Editar etiqueta…" - -msgid "&Settings..." -msgstr "&Configuración…" - -msgid "Ctrl+P" -msgstr "Ctrl+P" - -msgid "&About Strawberry" -msgstr "&Acerca de Strawberry" - -msgid "F1" -msgstr "F1" - -msgid "S&huffle playlist" -msgstr "&Mezclar lista de reproducción" - -msgid "Ctrl+H" -msgstr "Ctrl+H" - -msgid "&Add file..." -msgstr "&Añadir archivo..." - -msgid "Ctrl+Shift+A" -msgstr "Ctrl+Shift+A" - -msgid "&Open file..." -msgstr "&Abrir archivo..." - -msgid "Open audio &CD..." -msgstr "Abrir &CD de audio..." - -msgid "&Cover Manager" -msgstr "&Gestor de cubiertas" - -msgid "C&onsole" -msgstr "C&onsola" - -msgid "&Shuffle mode" -msgstr "Modo &aleatorio" - -msgid "&Repeat mode" -msgstr "Modo de &repetición" - -msgid "Remove from playlist" -msgstr "Quitar de la lista de reproducción" - -msgid "&Equalizer" -msgstr "&Ecualizador" - -msgid "&Transcode Music" -msgstr "Conver&tir música" - -msgid "Add &folder..." -msgstr "Añadir &carpeta..." - -msgid "&Jump to the currently playing track" -msgstr "&Saltar a la pista en reproducción" - -msgid "Ctrl+J" -msgstr "Ctrl+J" - -msgid "&New playlist" -msgstr "Lista de reproducción &nueva" - -msgid "Ctrl+N" -msgstr "Ctrl+N" - -msgid "Save &playlist..." -msgstr "Guardar lista de re&producción" - -msgid "Ctrl+S" -msgstr "Ctrl+S" - -msgid "&Load playlist..." -msgstr "&Cargar lista de reproducción..." - -msgid "Ctrl+Shift+O" -msgstr "Ctrl+Shift+O" - -msgid "&Save all playlists..." -msgstr "Guardar toda&s las listas de reproducción..." - -msgid "Go to next playlist tab" -msgstr "Ir a la siguiente pestaña de lista de reproducción" - -msgid "Go to previous playlist tab" -msgstr "Ir a la anterior pestaña de lista de reproducción" - -msgid "&Update changed collection folders" -msgstr "&Actualizar carpetas de la fonoteca con cambios" - -msgid "About &Qt" -msgstr "Acerca de &Qt" - -msgid "&Mute" -msgstr "&Silenciar" - -msgid "Ctrl+M" -msgstr "Ctrl+M" - -msgid "&Do a full collection rescan" -msgstr "Anali&zar de nuevo toda la fonoteca" - -msgid "Stop collection scan" -msgstr "Detener escaneo de la colección" - -msgid "Complete tags automatically..." -msgstr "Completar etiquetas automáticamente…" - -msgid "Ctrl+T" -msgstr "Ctrl+T" - -msgid "Toggle scrobbling" -msgstr "Alternar seguimiento de reproducción" - -msgid "Remove &duplicates from playlist" -msgstr "Quitar &duplicados de la lista de reproducción" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Quitar pistas &no disponibles de la lista de reproducción" - -msgid "Add file(s) to transcoder" -msgstr "Añadir archivo(s) que convertir" - -msgid "Add file to transcoder" -msgstr "Añadir archivo que convertir" - -msgid "Add stream..." -msgstr "Añadir emisora…" - -msgid "Show sidebar" -msgstr "Mostrar barra lateral" - -msgid "Import data from last.fm..." -msgstr "Importar datos de Last.fm…" - -msgid "MenuPopupToolButton" -msgstr "MenuPopupToolButton" - -msgid "&Music" -msgstr "&Música" - -msgid "P&laylist" -msgstr "Lista de re&producción" - -msgid "Help" -msgstr "Ayuda" - -msgid "&Tools" -msgstr "&Herramientas" - -msgid "Collection advanced grouping" -msgstr "Agrupamiento avanzado de la colección" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Puede modificar cómo se organizan los temas en la fonoteca" - -msgid "Group Collection by..." -msgstr "Agrupar colección por…" - -msgid "Second level" -msgstr "Segundo nivel" - -msgid "Third level" -msgstr "Tercer nivel" - -msgid "Separate albums by grouping tag" -msgstr "Separar álbumes por etiquetas de agrupación" - -msgid "Collection Filter" -msgstr "Filtro de colección" - -msgid "Entire collection" -msgstr "Fonoteca completa" - -msgid "Added today" -msgstr "Añadidas hoy" - -msgid "Added this week" -msgstr "Añadidas esta semana" - -msgid "Added within three months" -msgstr "Añadidas en los últimos tres meses" - -msgid "Added this year" -msgstr "Añadidas este año" - -msgid "Added this month" -msgstr "Añadidas este mes" - -msgid "Save current grouping" -msgstr "Guardar agrupamiento actual" - -msgid "Manage saved groupings" -msgstr "Gestionar agrupamientos guardados" - -msgid "Enter search terms here" -msgstr "Introduzca aquí términos de búsqueda" - -msgid "Form" -msgstr "Formulario" - -msgid "Saved Grouping Manager" -msgstr "Gestor de agrupamientos guardados" - -msgid "Remove" -msgstr "Eliminar" - -msgid "Ctrl+Up" -msgstr "Ctrl+Arriba" - -msgid "File paths" -msgstr "Rutas de archivos" - -msgid "This can be changed later through the preferences" -msgstr "Esta opción puede modificarse luego en Preferencias" - -msgid "Remember my choice" -msgstr "Recordar mi elección" - -msgid "Stop after each track" -msgstr "Detener reproducción al finalizar cada pista" - -msgid "Repeat" -msgstr "Repetir" - -msgid "Shuffle" -msgstr "Aleatorio" - -msgid "Dynamic mode is on" -msgstr "Modo dinámico activado" - -msgid "New tracks will be added automatically." -msgstr "Las pistas nuevas se añadirán automáticamente." - -msgid "Expand" -msgstr "Expandir" - -msgid "Repopulate" -msgstr "Volver a poblar" - -msgid "Turn off" -msgstr "Apagar" - -msgid "QueueView" -msgstr "Vista de la cola" - -msgid "Move down" -msgstr "Bajar" - -msgid "Move up" -msgstr "Subir" - -msgid "Ctrl+Down" -msgstr "Ctrl+Abajo" - -msgid "Search mode" -msgstr "Mode de búsqueda" - -msgid "Match every search term (AND)" -msgstr "Hacer coincidir todos los términos (Y)" - -msgid "Match one or more search terms (OR)" -msgstr "Hacer coincidir algún término (O)" - -msgid "Include all songs" -msgstr "Incluir todas las canciones" - -msgid "Sorting" -msgstr "Ordenación" - -msgid "Put songs in a random order" -msgstr "Disponer canciones en orden aleatorio" - -msgid "Sort songs by" -msgstr "Ordenar temas por" - -msgid "Limits" -msgstr "Límites" - -msgid "Show all the songs" -msgstr "Mostrar todos los temas" - -msgid "Only show the first" -msgstr "Mostrar solo el primero" - -msgid " songs" -msgstr "temas" - -msgid "Preview" -msgstr "Previsualización" - -msgid "and" -msgstr "y" - -msgid "ago" -msgstr "hace" - -msgid "New smart playlist" -msgstr "Lista inteligente nueva" - -msgid "Edit smart playlist" -msgstr "Editar lista inteligente" - -msgid "Use dynamic mode" -msgstr "Usar modo dinámico" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "En el modo dinámico se escogerán y añadirán nuevas pistas cada vez que un tema finalice." - -msgid "Export covers" -msgstr "Exportar cubiertas" - -msgid "Output" -msgstr "Salida" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Introduzca un nombre de archivo para las cubiertas exportadas (sin extensión):" - -msgid "Export downloaded covers" -msgstr "Exportar cubiertas descargadas" - -msgid "Export embedded covers" -msgstr "Exportar cubiertas incrustadas" - -msgid "Existing covers" -msgstr "Cubiertas existentes" - -msgid "Do not overwrite" -msgstr "No sobrescribir" - -msgid "O&verwrite all" -msgstr "&Sobrescribir todo" - -msgid "Overwrite s&maller ones only" -msgstr "Sobrescribir únicamente los &más pequeños" - -msgid "Size" -msgstr "Tamaño" - -msgid "Scale size" -msgstr "Tamaño de escala" - -msgid "Size:" -msgstr "Tamaño:" - -msgid "Pixel" -msgstr "Píxel" - -msgid "Cover Manager" -msgstr "Gestor de cubiertas" - -msgid "Fetch automatically" -msgstr "Obtener automáticamente" - -msgid "Load" -msgstr "Cargar" - -msgid "Add to playlist" -msgstr "Añadir a la lista de reproducción" - -msgid "View" -msgstr "Ver" - -msgid "Total albums:" -msgstr "Álbumes totales:" - -msgid "Without cover:" -msgstr "Sin cubierta:" - -msgid "0" -msgstr "0" - -msgid "Fetch Missing Covers" -msgstr "Obtener las cubiertas que faltan" - -msgid "Export Covers" -msgstr "Exportar cubiertas" - -msgid "Fetch completed" -msgstr "Descarga finalizada" - -msgid "Load cover from URL" -msgstr "Cargar cubierta desde un URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Introduzca un URL para descargar una cubierta de la Internet:" - -msgid "Settings" -msgstr "Configuración" - -msgid "Behavior" -msgstr "Comportamiento" - -msgid "Show system tray icon" -msgstr "Mostrar icono en la bandeja del sistema" - -msgid "Keep running in the background when the window is closed" -msgstr "Seguir ejecutando el programa en segundo plano al cerrar la ventana" - -msgid "Show song progress on system tray icon" -msgstr "Mostrar avance en el icono de la bandeja del sistema" - -msgid "Show song progress on taskbar" -msgstr "Mostrar progreso de la canción en la barra de tareas" - -msgid "Resume playback on start" -msgstr "Reanudar la reproducción al iniciar" - -msgid "Show playing widget" -msgstr "Mostrar mini aplicación de reproducción" - -msgid "On startup" -msgstr "Al iniciar" - -msgid "Remember from &last time" -msgstr "Recordar de la ú<ima vez" - -msgid "Show the main window" -msgstr "Mostrar ventana principal" - -msgid "Hide the main window" -msgstr "Oculta la ventana principal" - -msgid "Show the main window maximized" -msgstr "Mostrar ventana principal maximizada" - -msgid "Show the main window minimized" -msgstr "Mostrar ventana principal minimizada" - -msgid "Language" -msgstr "Idioma" - -msgid "Use the system default" -msgstr "Utilizar valor predeterminado del sistema" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Necesitará reiniciar Strawberry si cambia el idioma." - -msgid "Using the menu to add a song will..." -msgstr "Al usar el menú para añadir una canción…" - -msgid "Never start playing" -msgstr "Nunca comenzar la reproducción" - -msgid "Play if there is nothing already playing" -msgstr "Reproducir si no hay nada en reproducción" - -msgid "Always start playing" -msgstr "Comenzar siempre la reproducción" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Al pulsar en el botón «Anterior» del reproductor…" - -msgid "Jump to previous song right away" -msgstr "Ir a la pista anterior inmediatamente" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Reiniciar la pista e ir a la anterior si se hace clic nuevamente" - -msgid "Double clicking a song will..." -msgstr "Al pulsar dos veces en una canción…" - -msgid "Append to the playlist" -msgstr "Añadir a la lista de reproducción" - -msgid "Replace the playlist" -msgstr "Reemplazar la lista de reproducción" - -msgid "Add to the queue" -msgstr "Añadir a la cola" - -msgid "Double clicking a song in the playlist will..." -msgstr "Al pulsar dos veces en una canción en la lista de reproducción…" - -msgid "Change the currently playing song" -msgstr "Cambiar la pista actualmente en reproducción" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Moverse en la pista mediante un atajo de teclado o la rueda del ratón" - -msgid "Time step" -msgstr "Salto en el tiempo" - -msgid " s" -msgstr " s" - -msgid "Volume Increment" -msgstr "Incremento de volumen" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Estas carpetas se analizarán en busca de música para crear su colección" - -msgid "Add new folder..." -msgstr "Añadir carpeta nueva…" - -msgid "Remove folder" -msgstr "Quitar carpeta" - -msgid "Automatic updating" -msgstr "Actualización automática" - -msgid "Update the collection when Strawberry starts" -msgstr "Actualizar la colección al iniciar Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Vigilar cambios en la colección" - -msgid "Song fingerprinting and tracking" -msgstr "Identificación y seguimiento de canciones" - -msgid "Mark disappeared songs unavailable" -msgstr "Marcar las pistas desaparecidas como no disponibles" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "Realizar análisis de canción EBU R 128 (requerido para la normalización de volumen EBU R 128)" - -msgid "Expire unavailable songs after" -msgstr "Hacer que las canciones no disponibles expiren tras" - -msgid "days" -msgstr "días" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Nombres de archivo preferidos para las portadas (separados por comas)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Al buscar la cubierta, Strawberry tratará de localizar primero imágenes que contengan una de estas palabras. Si no hay resultados, se usará la imagen más grande de la carpeta." - -msgid "Automatically open single categories in the collection tree" -msgstr "Expandir automáticamente categorías únicas en la colección" - -msgid "Show dividers" -msgstr "Mostrar divisores" - -msgid "Show album cover art in collection" -msgstr "Mostrar cubierta del álbum en la colección" - -msgid "Use various artists for compilation albums" -msgstr "Usar varios artistas para los álbumes de compilación" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "Omitir artículos principales (\"él\", \"ella\", \"un\", \"una\") al ordenar los nombres de los artistas" - -msgid "Album cover pixmap cache" -msgstr "Antememoria de mapa de bits de cubiertas" - -msgid "Enable Disk Cache" -msgstr "Activar antememoria de disco" - -msgid "Disk Cache Size" -msgstr "Tamaño de antememoria de disco" - -msgid "Current disk cache in use:" -msgstr "Antememoria de disco en uso:" - -msgid "Clear Disk Cache" -msgstr "Vaciar antememoria de disco" - -msgid "Song playcounts and ratings" -msgstr "Conteo de reproducciones y valoraciones de la canción" - -msgid "Save playcounts to song tags when possible" -msgstr "Guardar número de reproducciones en las etiquetas de las canciones cuando sea posible" - -msgid "Save ratings to song tags when possible" -msgstr "Guadar valoraciones en las etiquetas de la canción cuando sea posible" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Sobreescribir el conteo de reproducciones de la base de datos al volver a leer las canciones del disco" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Sobreescribir base de datos de las valoraciones al volver a leer las canciones desde el disco" - -msgid "Save playcounts and ratings to files now" -msgstr "Guardar conteo de reproducciones y valoraciones en los archivos ahora" - -msgid "Enable delete files in the right click context menu" -msgstr "Activar eliminación de archivos en el menú contextual del botón secundario del ratón" - -msgid "Backend" -msgstr "Sistema de audio" - -msgid "Audio output" -msgstr "Salida de audio" - -msgid "Engine" -msgstr "Motor" - -msgid "ALSA plugin:" -msgstr "Complemento de ALSA:" - -msgid "hw" -msgstr "hw" - -msgid "p&lughw" -msgstr "p&lughw" - -msgid "pcm" -msgstr "pcm" - -msgid "Exclusive mode (Experimental)" -msgstr "Modo exclusivo (experimental)" - -msgid "Options" -msgstr "Opciones" - -msgid "Enable volume control" -msgstr "Activar control de volumen" - -msgid "Upmix / downmix to" -msgstr "Mezcla ascendente/descendente" - -msgid "channels" -msgstr "canales" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "Mejora la escucha por auriculares de grabaciones de audio estéreo (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "Habilitar HTTP/2 para streaming" - -msgid "Use strict SSL mode" -msgstr "Usar modo SSL estricto" - -msgid "Buffer" -msgstr "Búfer" - -msgid " ms" -msgstr " ms" - -msgid "Buffer duration" -msgstr "Duración del búfer" - -msgid "High watermark" -msgstr "Marca de agua alta" - -msgid "Low watermark" -msgstr "Marca de agua baja" - -msgid "Defaults" -msgstr "Valores predeterminados" - -msgid "Audio normalization" -msgstr "Normalización de audio" - -msgid "No audio normalization" -msgstr "Sin normalización de audio" - -msgid "Replay Gain" -msgstr "Ajuste de volumen en reproducción" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Usar metadatos de ajuste de volumen en reproducción si están disponibles" - -msgid "Replay Gain mode" -msgstr "Modo de ajuste de volumen en reproducción" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (volumen igual para todas las pistas)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Álbum (volumen idóneo para todas las pistas)" - -msgid "Apply compression to prevent clipping" -msgstr "Aplicar compresión para evitar saturación" - -msgid "Fallback-gain" -msgstr "Ganancia de respaldo" - -msgid "EBU R 128 Loudness Normalization" -msgstr "Normalización de volumen EBU R 128" - -msgid "Perform track loudness normalization" -msgstr "Realizar normalización de sonoridad de la pista" - -msgid "Target Level" -msgstr "Nivel objetivo" - -msgid "Fading" -msgstr "Fundido" - -msgid "Fade out when stopping a track" -msgstr "Fundido al detener la reproducción" - -msgid "Cross-fade when changing tracks manually" -msgstr "Fundido encadenado al cambiar pistas manualmente" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Fundido encadenado al cambiar pistas automáticamente" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Excepto entre pistas del mismo álbum o en la misma hoja CUE" - -msgid "Fading duration" -msgstr "Duración del fundido" - -msgid "Fade out on pause / fade in on resume" -msgstr "Fundido al pausar / reanudar" - -msgid "Add song artist tag" -msgstr "Añadir etiqueta de artista a la canción" - -msgid "Add song album tag" -msgstr "Añadir etiqueta de álbum a la canción" - -msgid "Add song title tag" -msgstr "Añadir etiqueta de título a la canción" - -msgid "Add song albumartist tag" -msgstr "Añadir etiqueta de artista del álbum a la canción" - -msgid "Add song year tag" -msgstr "Añadir etiqueta de año a la canción" - -msgid "Add song composer tag" -msgstr "Añadir etiqueta de compositor a la canción" - -msgid "Add song performer tag" -msgstr "Añadir etiqueta de intérprete a la canción" - -msgid "Add song grouping tag" -msgstr "Añadir etiqueta de agrupamiento a la canción" - -msgid "Add song disc tag" -msgstr "Añadir etiqueta de disco a la canción" - -msgid "Add song track tag" -msgstr "Añadir etiqueta de pista a la canción" - -msgid "Add song genre tag" -msgstr "Añadir etiqueta de género a la canción" - -msgid "Add song length tag" -msgstr "Añadir etiqueta de duración a la canción" - -msgid "Add song play count" -msgstr "Añadir contador de reproducciones de la canción" - -msgid "Add song skip count" -msgstr "Añadir contador de omisiones de la canción" - -msgid "Add a new line if supported by the notification type" -msgstr "Añadir un salto de renglón si el tipo de notificación lo permite" - -msgid "%filename%" -msgstr "%filename%" - -msgid "Add song filename" -msgstr "Añadir nombre de archivo de la canción" - -msgid "%url%" -msgstr "%url%" - -msgid "Add song URL" -msgstr "Añadir URL del tema" - -msgid "%rating%" -msgstr "%rating%" - -msgid "Add song rating" -msgstr "Añadir valoración de la canción" - -msgid "%originalyear%" -msgstr "%originalyear%" - -msgid "Add song original year tag" -msgstr "Añadir etiqueta de año original" - -msgid "Custom text settings" -msgstr "Configuración de texto personalizada" - -msgid "Summary" -msgstr "Resumen" - -msgid "Enable Items" -msgstr "Activar elementos" - -msgid "Technical Data" -msgstr "Información técnica" - -msgid "Song Lyrics" -msgstr "Letra de la canción" - -msgid "Automatically search for album cover" -msgstr "Buscar automáticamente la cubierta del álbum" - -msgid "Font for headline" -msgstr "Tipo de letra de títulos" - -msgid "Font" -msgstr "Tipo de letra" - -msgid "Font size" -msgstr "Tamaño de letra" - -msgid " pt" -msgstr "pt" - -msgid "Font for data and lyrics" -msgstr "Tipo de letra de datos y letras" - -msgid "Use alternating row colors" -msgstr "Utilizar colores alternados en las filas" - -msgid "Show bars on the currently playing track" -msgstr "Mostrar barras en la pista actual en reproducción" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Mostrar una animación resplandeciente en la pista actual en reproducción" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Saltar al siguiente elemento en la lista de reproducción si una canción no está disponible" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Mostrar en gris las pistas no disponibles en listas de reproducción al reproducir" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Mostrar en gris las pistas no disponibles en listas de reproducción al iniciar" - -msgid "Automatically select current playing track" -msgstr "Seleccionar automáticamente la pista en reproducción" - -msgid "Enable playlist toolbar" -msgstr "Activar barra de herramientas de lista de reproducción" - -msgid "Enable playlist clear button" -msgstr "Activar botón de borrado de lista de reproducción" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Ordenar la lista automáticamente al insertar temas" - -msgid "When saving a playlist, file paths should be" -msgstr "Al guardar una lista de reproducción las rutas de archivo deben ser" - -msgid "A&utomatic" -msgstr "A&utomático" - -msgid "Absolu&te" -msgstr "Absolu&to" - -msgid "Re&lative" -msgstr "Re&lativo" - -msgid "As&k when saving" -msgstr "&Preguntar al guardar" - -msgid "Metadata" -msgstr "Metadatos" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Al activar esta opción podrá pulsar en la canción seleccionada de la lista de reproducción y editar la etiqueta directamente" - -msgid "Enable song metadata inline edition with click" -msgstr "Editar metadatos de pistas directamente" - -msgid "Write metadata when saving playlists" -msgstr "Escribir los metadatos al guardar las listas de reproducción" - -msgid "Scrobbler" -msgstr "Registro de reproducción" - -msgid "Enable" -msgstr "Activar" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "La reproducción de una canción es registrada solo si dispone de metadatos válidos, dura más de 30 segundos y se ha reproducido al menos durante la mitad de su duración o 4 minutos (lo que ocurra primero)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Trabajar sin conexión (solo registros de reproducción prealmacenados)" - -msgid "Show scrobble button" -msgstr "Mostrar botón de registro de reproducción" - -msgid "Show love button" -msgstr "Mostrar el botón \"Me gusta\"" - -msgid "Submit scrobbles every" -msgstr "Emitir al servidor de registro cada" - -msgid " seconds" -msgstr " segundos" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(Este es el retraso desde que se hace el scrobble de una canción y cuando los scrobbles se envían al servidor. Establecer este tiempo a 0 segundos enviará los scrobbles inmediatamente)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Preferir artista del álbum al registrar reproducción" - -msgid "Show dialog for errors" -msgstr "Mostrar errores" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "Eliminar \"remastered\" y similares del álbum y título" - -msgid "Enable scrobbling for the following sources:" -msgstr "Activar seguimiento de reproducción para:" - -msgid "Local file" -msgstr "Archivo local" - -msgid "CDDA" -msgstr "CDDA" - -msgid "SomaFM" -msgstr "SomaFM" - -msgid "Stream" -msgstr "Transmisión" - -msgid "Radio Paradise" -msgstr "Radio Paradise" - -msgid "Last.fm" -msgstr "Last.fm" - -msgid "Login" -msgstr "Acceder" - -msgid "Libre.fm" -msgstr "Libre.fm" - -msgid "Listenbrainz" -msgstr "Listenbrainz" - -msgid "User token:" -msgstr "Ficha de usuario:" - -msgid "Covers" -msgstr "Cubiertas" - -msgid "Cover providers" -msgstr "Proveedores de cubiertas" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Selecciona los proveedores de búsqueda de cubiertas." - -msgid "Authentication" -msgstr "Autenticación" - -msgid "Album cover types" -msgstr "Tipos de portada de álbum" - -msgid "Saving album covers" -msgstr "Guardando cubiertas de álbumes" - -msgid "Save album covers in album directory" -msgstr "Guardar las cubiertas en la carpeta de álbumes" - -msgid "Save album covers in cache directory" -msgstr "Guardar cubiertas en directorio de antememoria" - -msgid "Save album covers as embedded cover" -msgstr "Guardar cubiertas del álbum como elementos incrustados" - -msgid "Filename:" -msgstr "Archivo:" - -msgid "Pattern" -msgstr "Pauta" - -msgid "Random" -msgstr "Al azar" - -msgid "Overwrite existing file" -msgstr "Sobrescribir archivo existente" - -msgid "Lowercase filename" -msgstr "Nombre de archivo en minúsculas" - -msgid "Replace spaces with dashes" -msgstr "Sustituir espacios por guiones" - -msgid "Lyrics" -msgstr "Letras" - -msgid "Lyrics providers" -msgstr "Proveedores de letras" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Seleccione los proveedores de búsqueda de letras." - -msgid "Network Proxy" -msgstr "Proxy de la red" - -msgid "&Use the system proxy settings" -msgstr "&Utilizar configuración de «proxy» del sistema" - -msgid "Direct internet connection" -msgstr "Conexión directa a Internet" - -msgid "&Manual proxy configuration" -msgstr "&Configuración manual del proxy" - -msgid "HTTP proxy" -msgstr "Proxy HTTP" - -msgid "SOCKS proxy" -msgstr "Proxy SOCKS" - -msgid "Port" -msgstr "Puerto" - -msgid "Use authentication" -msgstr "Usar autenticación" - -msgid "Username" -msgstr "Usuario" - -msgid "Password" -msgstr "Contraseña" - -msgid "Use proxy settings for streaming" -msgstr "Usar ajustes de proxy para transmisión" - -msgid "Appearance" -msgstr "Apariencia" - -msgid "Style" -msgstr "Estilo" - -msgid "Use system theme icons" -msgstr "Usar iconos del tema del sistema" - -msgid "Settings require restart." -msgstr "Los ajustes requieren reiniciar." - -msgid "Tabbar colors" -msgstr "Colores barra pestañas" - -msgid "&Use the system default color" -msgstr "&Usar el color predeterminado del sistema" - -msgid "Use custom color" -msgstr "Usar color personalizado" - -msgid "Use gradient background" -msgstr "Usar fondo degradado" - -msgid "Select tabbar color:" -msgstr "Seleccionar color barra pestañas:" - -msgid "Background image" -msgstr "Imagen de fondo" - -msgid "Default bac&kground image" -msgstr "Imagen de &fondo predeterminada" - -msgid "&No background image" -msgstr "&Sin imagen de fondo" - -msgid "The album cover of the currently playing song" -msgstr "La cubierta del álbum de la canción en reproducción" - -msgid "Albu&m cover" -msgstr "C&ubierta del álbum" - -msgid "Custom image:" -msgstr "Imagen personalizada:" - -msgid "Browse..." -msgstr "Examinar…" - -msgid "Position" -msgstr "Posición" - -msgid "Upper Left" -msgstr "Superior izquierda" - -msgid "Upper Right" -msgstr "Superior derecha" - -msgid "Middle" -msgstr "Medio" - -msgid "Bottom Left" -msgstr "Inferior izquierda" - -msgid "Bottom Right" -msgstr "Inferior derecha" - -msgid "Max cover size" -msgstr "Tamaño máximo de cubierta" - -msgid "Stretch image to fill playlist" -msgstr "Ajustar la imagen a la lista de reproducción" - -msgid "Keep aspect ratio" -msgstr "Mantener proporción" - -msgid "Do not cut image" -msgstr "No recortar la imagen" - -msgid "Blur amount" -msgstr "Cantidad de desenfoque" - -msgid "0px" -msgstr "0px" - -msgid "Opacity" -msgstr "Opacidad" - -msgid "40%" -msgstr "40 %" - -msgid "Icon sizes" -msgstr "Tamaños de iconos" - -msgid "Playlist buttons" -msgstr "Botones de lista de reproducción" - -msgid "Tabbar large mode" -msgstr "Barra pequeña" - -msgid "Play control buttons" -msgstr "Botones de control de reproducción" - -msgid "Configure buttons" -msgstr "Configurar botones" - -msgid "Files, playlists and queue buttons" -msgstr "Botones de archivos, listas y cola" - -msgid "Tabbar small mode" -msgstr "Barra grande" - -msgid "Playlist playing song color" -msgstr "Color de canción en repr. en lista" - -msgid "System highlight color" -msgstr "Color de resalte del sistema" - -msgid "Custom color" -msgstr "Color personalizado" - -msgid "Select playlist playing song color:" -msgstr "Seleccione el color de canción en repr. en listas:" - -msgid "Notifications" -msgstr "Notificaciones" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry puede mostrar un mensaje cuando la pista cambie." - -msgid "Notification type" -msgstr "Tipo de notificación" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Desactivado" - -msgid "Show a &native desktop notification" -msgstr "Mostrar una notificación &nativa del sistema" - -msgid "Show a pretty OSD" -msgstr "Mostrar panel de información en pantalla chulo" - -msgid "Show a popup fro&m the system tray" -msgstr "Mostrar una notificación en la bandeja del siste&ma" - -msgid "General settings" -msgstr "Configuración general" - -msgid "Popup duration" -msgstr "Duración de la notificación emergente" - -msgid "Disable duration" -msgstr "Desactivar duración" - -msgid "Show a notification when I change the volume" -msgstr "Mostrar una notificación al cambiar el volumen" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Mostrar una notificación al cambiar entre los modos repetir/aleatorio" - -msgid "Show a notification when I pause playback" -msgstr "Mostrar una notificación al pausar la reproducción" - -msgid "Show a notification when I resume playback" -msgstr "Mostrar una notificación cuando reanude la reproducción" - -msgid "Include album art in the notification" -msgstr "Incluir cubierta en la notificación" - -msgid "Custom message settings" -msgstr "Configuración de mensaje personalizado" - -msgid "Use a custom message for notifications" -msgstr "Usar un mensaje personalizado para las notificaciones" - -msgid "Body" -msgstr "Cuerpo" - -msgid "Pretty OSD options" -msgstr "Panel de información en pantalla estético" - -msgid "Background color" -msgstr "Color de fondo" - -msgid "Text options" -msgstr "Opciones del texto" - -msgid "Choose font..." -msgstr "Elegir tipo de letra…" - -msgid "Choose color..." -msgstr "Elegir color…" - -msgid "Background opacity" -msgstr "Opacidad del fondo" - -msgid "Basic Blue" -msgstr "Azul básico" - -msgid "Strawberry Red" -msgstr "Rojo de Strawberry" - -msgid "Custom..." -msgstr "Personalizado…" - -msgid "Enable fading" -msgstr "Activar transición gradual" - -msgid "Transcoding" -msgstr "Convirtiendo" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Estos ajustes se usa en la ventana «Convertir música» y al convertir canciones antes de copiarlas en un dispositivo." - -msgid "FLAC" -msgstr "FLAC" - -msgid "WavPack" -msgstr "WavPack" - -msgid "Vorbis" -msgstr "Vorbis" - -msgid "Opus" -msgstr "Opus" - -msgid "Speex" -msgstr "Speex" - -msgid "AAC" -msgstr "AAC" - -msgid "ASF (WMA)" -msgstr "ASF (WMA)" - -msgid "MP3" -msgstr "MP3" - -msgid "Equalizer" -msgstr "Ecualizador" - -msgid "Preset:" -msgstr "Ajuste predefinido:" - -msgid "Enable equalizer" -msgstr "Activar ecualizador" - -msgid "Enable stereo balancer" -msgstr "Activar equilibrador estéreo" - -msgid "Left" -msgstr "Izquierda" - -msgid "Balance" -msgstr "Equilibrio" - -msgid "Right" -msgstr "Derecha" - -msgid "About" -msgstr "Acerca de" - -msgid "Strawberry Error" -msgstr "Error de Strawberry" - -msgid "Console" -msgstr "Consola" - -msgid "Run" -msgstr "Ejecutar" - -msgid "Edit track information" -msgstr "Editar información de la pista" - -msgid "Date created" -msgstr "Fecha de creación" - -msgid "Art Automatic" -msgstr "Cubierta automática" - -msgid "Date modified" -msgstr "Fecha de modificación" - -msgid "Art Embedded" -msgstr "Arte incrustrado" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Última reproducción" - -msgid "Play count" -msgstr "Número de reproducciones" - -msgid "EBU R 128 integrated loudness" -msgstr "Sonoridad integrada EBU R 128" - -msgid "Bit rate" -msgstr "Tasa de bits" - -msgid "Skip count" -msgstr "Número de omisiones" - -msgid "Path" -msgstr "Ruta" - -msgid "Filename" -msgstr "Nombre del archivo" - -msgid "Art Unset" -msgstr "Arte no establecido" - -msgid "File size" -msgstr "Tamaño del archivo" - -msgid "Art Manual" -msgstr "Cubierta manual" - -msgid "EBU R 128 loudness range" -msgstr "Rango de sonoridad EBU R 128" - -msgid "Reset play counts" -msgstr "Reiniciar contador de reproducciones" - -msgid "Change art" -msgstr "Cambiar cubierta" - -msgid "Embedded cover" -msgstr "Cubierta incrustada" - -msgid "Complete tags automatically" -msgstr "Completar etiquetas automáticamente" - -msgid "Compilation" -msgstr "Compilación" - -msgid "Tags" -msgstr "Etiquetas" - -msgid "Complete lyrics automatically" -msgstr "Completar la letra automáticamente" - -msgid "Tag fetcher" -msgstr "Obtener etiquetas" - -msgid "Sorry" -msgstr "Lo sentimos" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry no encontró resultados para este archivo" - -msgid "Select best possible match" -msgstr "Seleccionar la mejor coincidencia" - -msgid "Add Stream" -msgstr "Añadir emisora" - -msgid "Enter the URL of a stream:" -msgstr "Introduzca el URL de una emisora:" - -msgid "Enter username and password" -msgstr "Introduzca usuario y contraseña" - -msgid "Import data from last.fm" -msgstr "Importar datos de Last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Escoja qué información importar de Last.fm" - -msgid "Play counts" -msgstr "Contadores de reproducción" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Atención: se reemplazará el recuento de reproducciones y la última reproducción de los temas coincidentes con los datos procedentes de Last.fm. El recuento de reproducciones se sobreescribirá atendiendo a artista y nombre del tema. Haga una copia de respaldo de su base de datos antes de comenzar." - -msgid "Go!" -msgstr "Ir" - -msgid "Close" -msgstr "Cerrar" - -msgid "Cancel" -msgstr "Cancelar" - -msgid "Message Dialog" -msgstr "Diálogo de mensajes" - -msgid "Do not show this message again." -msgstr "No volver a mostrar este mensaje." - -msgid "Select directory for saving playlists" -msgstr "Selecciona una carpeta para guardar las listas de reproducción" - -msgid "Type" -msgstr "Tipo" - -msgid "0:00:00" -msgstr "0:00:00" - -msgid "Click to toggle between remaining time and total time" -msgstr "Pulse para alternar entre el tiempo restante y el total" - -msgid "You are not signed in." -msgstr "No ha accedido a su cuenta." - -msgid "Sign out" -msgstr "Cerrar sesión" - -msgid "Signing in..." -msgstr "Iniciando sesión…" - -msgid "Streaming Tabs View" -msgstr "Vista de pestañas en streaming" - -msgid "Artists" -msgstr "Artistas" - -msgid "Albums" -msgstr "Álbumes" - -msgid "Songs" -msgstr "Pistas" - -msgid "Refresh catalogue" -msgstr "Actualizar catálogo" - -msgid "Streaming Search View" -msgstr "Vista de búsqueda en streaming" - -msgid "artists" -msgstr "artistas" - -msgid "albums" -msgstr "álbumes" - -msgid "songs" -msgstr "temas" - -msgid "Organize Files" -msgstr "Organizar archivos" - -msgid "Destination" -msgstr "Destino" - -msgid "After copying..." -msgstr "Después de copiar…" - -msgid "Keep the original files" -msgstr "Mantener los archivos originales" - -msgid "Delete the original files" -msgstr "Eliminar los archivos originales" - -msgid "Naming options" -msgstr "Opciones de nomenclatura" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Las fichas comienzan por %, por ejemplo: %artist %album %title

\n\n" -"

Si encierra una sección de texto que contenga una ficha entre llaves, esa sección no se mostrará si la ficha está vacía.

" - -msgid "Insert..." -msgstr "Insertar…" - -msgid "Remove problematic characters from filenames" -msgstr "Elimina caracteres especiales de nombres de archivo" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Limitar a caracteres permitidos en sistemas de archivos FAT" - -msgid "Restrict characters to ASCII" -msgstr "Limitar caracteres a conjunto ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Admitir caracteres de ASCII ampliado" - -msgid "Replace spaces with underscores" -msgstr "Sustituir espacios pòr caracteres de subrayado" - -msgid "Overwrite existing files" -msgstr "Sobrescribir los archivos existentes" - -msgid "Copy album cover artwork" -msgstr "Copiar cubierta del álbum" - -msgid "Safely remove the device after copying" -msgstr "Quitar dispositivo con seguridad después de copiar" - -msgid "Transcode Music" -msgstr "Convertir música" - -msgid "Files to transcode" -msgstr "Archivos que convertir" - -msgid "Directory" -msgstr "Directorio" - -msgid "Add..." -msgstr "Añadir..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Añadir todas las pistas de una carpeta y sus subcarpetas" - -msgid "Import..." -msgstr "Importar…" - -msgid "Output options" -msgstr "Opciones de salida" - -msgid "Audio format" -msgstr "Formato de audio" - -msgid "Options..." -msgstr "Opciones…" - -msgid "Alongside the originals" -msgstr "Junto a los originales" - -msgid "Select..." -msgstr "Seleccionar..." - -msgid "Progress" -msgstr "Progreso" - -msgid "Details..." -msgstr "Detalles…" - -msgid "Transcoder Log" -msgstr "Registro del conversor" - -msgid " kbps" -msgstr " kb/s" - -msgid "Profile" -msgstr "Perfil" - -msgid "Main profile (MAIN)" -msgstr "Perfil principal (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Perfil de baja complejidad (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Perfil de tasa de muestreo escalable (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Perfil de predicción a largo plazo (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Usar conformación de ruido temporal" - -msgid "Allow mid/side encoding" -msgstr "Permitir codificación MS (suma / diferencia)" - -msgid "Block type" -msgstr "Tipo de bloque" - -msgid "Normal block type" -msgstr "Tipo de bloque normal" - -msgid "No short blocks" -msgstr "Sin bloques cortos" - -msgid "No long blocks" -msgstr "Sin bloques largos" - -msgid "Transcoding options" -msgstr "Opciones de conversión" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Calidad" - -msgid "Fast" -msgstr "Rápido" - -msgid "Best" -msgstr "Mejor" - -msgid "Use bitrate management engine" -msgstr "Usar el motor de gestión de flujo de bits" - -msgid "Target bitrate" -msgstr "Tasa de bits objetivo" - -msgid "Minimum bitrate" -msgstr "Tasa de bits mínima" - -msgid "disabled" -msgstr "desactivado" - -msgid "Maximum bitrate" -msgstr "Tasa de bits máxima" - -msgid "automatic" -msgstr "automático" - -msgid "Average bitrate" -msgstr "Tasa media de bits" - -msgid "Encoding mode" -msgstr "Modo de codificación" - -msgid "Auto" -msgstr "Autom." - -msgid "Ultra wide band (UWB)" -msgstr "Banda ultraancha (UWB)" - -msgid "Wide band (WB)" -msgstr "Banda ancha (WB)" - -msgid "Narrow band (NB)" -msgstr "Banda estrecha (NB)" - -msgid "Variable bit rate" -msgstr "Tasa de bits variable" - -msgid "Voice activity detection" -msgstr "Detección de actividad de voz" - -msgid "Discontinuous transmission" -msgstr "Transmisión discontinua" - -msgid "Encoding complexity" -msgstr "Complejidad de codificación" - -msgid "Frames per buffer" -msgstr "Fotogramas por búfer" - -msgid "Optimize for &quality" -msgstr "Optimizar para &calidad" - -msgid "Opti&mize for bitrate" -msgstr "Opti&mizar para tasa de bits" - -msgid "Constant bitrate" -msgstr "Tasa de bits constante" - -msgid "Encoding engine quality" -msgstr "Calidad del motor de codificación" - -msgid "Standard" -msgstr "Estándar" - -msgid "High" -msgstr "Alto" - -msgid "Force mono encoding" -msgstr "Forzar la codificación monoaural" - -msgid "Press a key" -msgstr "Presione una tecla" - -msgid "Global Shortcuts" -msgstr "Atajos generales" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Utilizar atajos de Gnome (GSD) cuando sea posible" - -msgid "Open..." -msgstr "Abrir…" - -msgid "Use MATE shortcuts when available" -msgstr "Utilizar atajos de MATE si están disponibles" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Utilizar atajos de KDE (GSD) cuando sea posible" - -msgid "Use X11 shortcuts when available" -msgstr "Usar atajos de X11 cuando sea posible" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Debe abrir las Preferencias del sistema y permitir que Strawberry «controle el equipo» para utilizar atajos globales en Strawberry." - -msgid "Shortcut" -msgstr "Atajo" - -msgctxt "Category label" -msgid "Action" -msgstr "Acción" - -msgid "&None" -msgstr "&Ninguno" - -msgid "&Default" -msgstr "&Predeterminado" - -msgid "&Custom" -msgstr "&Personalizado" - -msgid "Change shortcut..." -msgstr "Cambiar atajo…" - -msgid "Device Properties" -msgstr "Propiedades del dispositivo" - -msgid "Icon" -msgstr "Icono" - -msgid "Hardware information" -msgstr "Información del hardware" - -msgid "Hardware information is only available while the device is connected." -msgstr "La información del hardware solo está disponible cuando el dispositivo está conectado." - -msgid "Information" -msgstr "Información" - -msgid "Supported formats" -msgstr "Formatos admitidos" - -msgid "This device supports the following file formats:" -msgstr "Este dispositivo admite los formatos de archivo siguientes:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry puede convertir automáticamente la música que copie en este dispositivo en un formato que pueda reproducir." - -msgid "Do not convert any music" -msgstr "No convertir ninguna pista" - -msgid "Convert any music that the device can't play" -msgstr "Convertir las pistas que el dispositivo no pueda reproducir" - -msgid "Convert all music" -msgstr "Convertir toda la música" - -msgid "Preferred format" -msgstr "Formato preferido" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Este dispositivo debe conectarse y abrirse antes de que Strawberry pueda ver qué formatos de archivo admite." - -msgid "Open device" -msgstr "Abrir dispositivo" - -msgid "Querying device..." -msgstr "Consultando dispositivo…" - -msgid "File formats" -msgstr "Formatos de archivo" - -msgid "Server URL" -msgstr "URL del servidor" - -msgid "Authentication method:" -msgstr "Método de autenticación:" - -msgid "Hex" -msgstr "Hex" - -msgid "MD5 token (Recommended)" -msgstr "Token MD5 (recomendado)" - -msgid "Preferences" -msgstr "Preferencias" - -msgid "Use HTTP/2 when possible" -msgstr "Usar HTTP/2 cuando sea posible" - -msgid "Verify server certificate" -msgstr "Verificar el certificado del servidor" - -msgid "Download album covers" -msgstr "Descargar las cubiertas de los álbumes" - -msgid "Server-side scrobbling" -msgstr "Seguimiento de reproducción en el servidor" - -msgid "Test" -msgstr "Probar" - -msgid "Delete songs" -msgstr "Eliminar canciones" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "La compatibilidad con Tidal no es oficial y precisa de una ficha de API procedente de una aplicación registrada. No le podemos ayudar a conseguirla." - -msgid "Use OAuth" -msgstr "Utilizar OAuth" - -msgid "Client ID" -msgstr "Id. de cliente" - -msgid "API Token" -msgstr "Ficha de API" - -msgid "Audio quality" -msgstr "Calidad de audio" - -msgid "Search delay" -msgstr "Demora de búsqueda" - -msgid "ms" -msgstr "ms" - -msgid "Artists search limit" -msgstr "Límites de búsqueda de artistas" - -msgid "Albums search limit" -msgstr "Límites de búsqueda de álbumes" - -msgid "Songs search limit" -msgstr "Límite de búsqueda de pistas" - -msgid "Fetch entire albums when searching songs" -msgstr "Devolver el álbum completo al buscar pistas" - -msgid "Album cover size" -msgstr "Tamaño de la cubierta del álbum" - -msgid "Stream URL method" -msgstr "Método de streaming de URL" - -msgid "Append explicit to album title for explicit albums" -msgstr "Añadir «explícito» al nombre de los álbumes explícitos" - -msgid "Basic authentication" -msgstr "Autenticación básica" - -msgid "Authenticate" -msgstr "Autenticar" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "

El plugin GStreamer de Spotify no ha sido detectado. No podrás transmitir canciones de Spotify sin él. Consulta Wiki para ver las instrucciones de cómo instalar el plugin.

" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "La compatibilidad con Qobuz no es oficial y precisa de una ficha de API procedente de una aplicación registrada. No le podemos ayudar a conseguirla." - -msgid "App ID" -msgstr "Id. de aplic." - -msgid "App Secret" -msgstr "Secreto de aplicación" - -msgid "Base64 encoded secret" -msgstr "Secreto codificado en Base64" - -msgid "Moodbar" -msgstr "Barra de ánimo" - -msgid "Show a moodbar in the track progress bar" -msgstr "Mostrar una barra de ánimo en la barra de progreso" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Guardar archivos .mood directamente en las carpetas de las pistas" - -msgid "Enabled" -msgstr "Activado" - -msgid "Return to Strawberry" -msgstr "Volver a Strawberry" - -msgid "Success!" -msgstr "¡Hecho!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Cierre el navegador y vuelva a Strawberry." - diff --git a/src/translations/et_EE.po b/src/translations/et_EE.po deleted file mode 100644 index 2b348093..00000000 --- a/src/translations/et_EE.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: et\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Estonian\n" -"Language: et_EE\n" -"PO-Revision-Date: 2024-10-08 07:26\n" - -msgid "All Files (*)" -msgstr "Kõik failid (*)" - -msgid "Context" -msgstr "Kontekst" - -msgid "Collection" -msgstr "Helikogu" - -msgid "Queue" -msgstr "Järjekord" - -msgid "Playlists" -msgstr "Esitusloendid" - -msgid "Smart playlists" -msgstr "Nutikad esitusloendid" - -msgid "Files" -msgstr "Failid" - -msgid "Radios" -msgstr "Raadiod" - -msgid "Devices" -msgstr "Seadmed" - -msgid "Subsonic" -msgstr "Subsonic" - -msgid "Tidal" -msgstr "Tidal" - -msgid "Spotify" -msgstr "Spotify" - -msgid "Qobuz" -msgstr "Qobuz" - -msgid "Show all songs" -msgstr "Kuva kõik lood" - -msgid "Show only duplicates" -msgstr "Kuva ainult duplikaadid" - -msgid "Show only untagged" -msgstr "Kuva ainult sildistamata lood" - -msgid "Configure collection..." -msgstr "Helikogu seadistamine..." - -msgid "Play" -msgstr "Mängi" - -msgid "Stop after this track" -msgstr "Peata pärast seda lugu" - -msgid "Toggle queue status" -msgstr "Muuda järjekorra olekut" - -msgid "Queue selected tracks to play next" -msgstr "Lisa valitud lood järgmiseks esitamiseks järjekorda" - -msgid "Toggle skip status" -msgstr "Muuda vahelejätmise olekut" - -msgid "Rescan song(s)..." -msgstr "Skaneeri lugu uuesti..." - -msgid "Copy URL(s)..." -msgstr "Kopeeri URL(id)..." - -msgid "Show in collection..." -msgstr "Kuva helikogus..." - -msgid "Show in file browser..." -msgstr "Kuva failihalduris..." - -msgid "Organize files..." -msgstr "Korrasta faile..." - -msgid "Copy to collection..." -msgstr "Kopeeri helikogusse..." - -msgid "Move to collection..." -msgstr "Teisalda helikogusse..." - -msgid "Copy to device..." -msgstr "Kopeeri seadmesse..." - -msgid "Delete from disk..." -msgstr "Kustuta kettalt..." - -msgid "Check for updates..." -msgstr "Kontrolli uuendusi..." - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry töötab Rosetta all" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "Kasutad Strawberryt Rosetta all. Strawberry käitamist Rosetta all ei toetata ja sellel on teadaolevalt probleeme. Õige CPU arhitektuuri jaoks tuleks Strawberry alla laadida saidilt %1" - -msgid "Sponsoring Strawberry" -msgstr "Strawberry toetamine" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry on tasuta ja avatud lähtekoodiga tarkvara. Kui sulle meeldib Strawberry, kaalu projekti toetamist. Lisateavet sponsorluse kohta leiab meie veebisaidilt %1" - -msgid "Pause" -msgstr "Paus" - -msgid "Dequeue track" -msgstr "Eemalda lugu järjekorrast" - -msgid "Dequeue selected tracks" -msgstr "Eemalda valitud lood järjekorrast" - -msgid "Queue track" -msgstr "Lisa järjekorda" - -msgid "Queue selected tracks" -msgstr "Lisa valitud lood järjekorda" - -msgid "Queue to play next" -msgstr "Lisa järgmiseks esitamiseks järjekorda" - -msgid "Unskip track" -msgstr "Tühista loo vahelejätmine" - -msgid "Unskip selected tracks" -msgstr "Tühista valitud lugude vahelejätmine" - -msgid "Skip track" -msgstr "Jäta vahele" - -msgid "Skip selected tracks" -msgstr "Jäta valitud lood vahele" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Määra %1 väärtuseks „%2“..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Muuda silti \"%1\"..." - -msgid "Add to another playlist" -msgstr "Lisa teise esitusloendisse" - -msgid "New playlist" -msgstr "Uus esitusloend" - -msgid "Add file" -msgstr "Lisa fail" - -msgid "Music" -msgstr "Muusika" - -msgid "Add folder" -msgstr "Lisa kaust" - -msgid "Clear playlist" -msgstr "Tühjenda esitusloend" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Esitusloendis on %1 lugu, liiga suur, et seda tagasi võtta. Kas oled kindel, et soovid esitusloendi tühjendada?" - -msgid "Error" -msgstr "Viga" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Valitud lood ei olnud sobilikud seadmesse kopeerimiseks" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Strawberry versioon, millele äsja uuendasid, nõuab muusikakogu täielikku uuesti skaneerimist allpool loetletud uute funktsioonide tõttu:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Kas teha uus täielik skaneering kohe?" - -msgid "Collection rescan notice" -msgstr "Helikogu uuesti skaneerimise teatis" - -msgid "Usage" -msgstr "Kasutus" - -msgid "options" -msgstr "valikud" - -msgid "URL(s)" -msgstr "URL(id)" - -msgid "Player options" -msgstr "Meediamängija valikud" - -msgid "Start the playlist currently playing" -msgstr "Alusta hetkel esitatav esitusloend uuesti algusest" - -msgid "Play if stopped, pause if playing" -msgstr "Mängi, kui on peatatud, paus, kui mängitakse" - -msgid "Pause playback" -msgstr "Peata esitus" - -msgid "Stop playback" -msgstr "Peata taasesitus" - -msgid "Stop playback after current track" -msgstr "Peata taasesitus pärast praegust lugu" - -msgid "Skip backwards in playlist" -msgstr "Hüppa esitusloendis tagasi" - -msgid "Skip forwards in playlist" -msgstr "Hüppa esitusloendis edasi" - -msgid "Set the volume to percent" -msgstr "Määra helitugevuseks protsenti" - -msgid "Increase the volume by 4 percent" -msgstr "Heli valjemaks 4 protsenti" - -msgid "Decrease the volume by 4 percent" -msgstr "Heli vaiksemaks 4 protsenti" - -msgid "Increase the volume by percent" -msgstr "Heli valjemaks protsenti" - -msgid "Decrease the volume by percent" -msgstr "Heli vaiksemaks protsenti" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Jätka praeguse loo esitust uuest absoluutsest asukohast" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Jätka praeguse loo esitust uuest suhtelisest asukohast" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Käivita lugu uuesti või esita eelmine lugu, kui see on 8 sekundi jooksul pärast alustamist." - -msgid "Playlist options" -msgstr "Esitusloendi valikud" - -msgid "Create a new playlist with files" -msgstr "Loo uus esitusloend failidega" - -msgid "Append files/URLs to the playlist" -msgstr "Lisa failid/URL-id esitusloendisse" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Laadib failid/URL-id, asendades praeguse esitusloendi" - -msgid "Play the th track in the playlist" -msgstr "Esita esitusloendi lugu nr " - -msgid "Play given playlist" -msgstr "Esita antud esitusloendit" - -msgid "Other options" -msgstr "Muud valikud" - -msgid "Display the on-screen-display" -msgstr "Kuva ekraanigraafika" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Muuda ilusa ekraanimenüü nähtavust" - -msgid "Change the language" -msgstr "Muuda keelt" - -msgid "Resize the window" -msgstr "Muuda akna suurust" - -msgid "Equivalent to --log-levels *:1" -msgstr "Võrdne käivitusvõtmega --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Võrdne käivitusvõtmega --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Komadega eraldatud loend klass:tase, kus tase võib olla 0-3" - -msgid "Print out version information" -msgstr "Trüki teave käesoleva versiooni kohta" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "SQL päring nurjus: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Nurjunud SQL päring: %1" - -msgid "Integrity check" -msgstr "Terviklikkuse kontroll" - -msgid "Database corruption detected." -msgstr "Tuvastati rikutud andmebaas." - -msgid "Backing up database" -msgstr "Andmebaasi varundamine" - -msgid "Deleting files" -msgstr "Failide kustutamine" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "Kataloogi %1 loomine ei õnnestunud." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "Sihtfail %1 on olemas, kuid seda ei lubata üle kirjutada." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "Sihtfail %1 on olemas, kuid seda ei lubata üle kirjutada" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "Ei õnnestunud kopeerida faili %1 seadmesse %2." - -msgid "Unknown" -msgstr "Tundmatu" - -msgid "LUFS" -msgstr "LUFS" - -msgid "LU" -msgstr "LU" - -msgid "You need GStreamer for this URL." -msgstr "Selle URL-i jaoks vajad GStreamerit." - -msgid "Preload function was not set for blocking operation." -msgstr "Eellaadimise funktsionaalsus polnud määratud blokeerimiseks." - -#, qt-format -msgid "File %1 does not exist." -msgstr "Faili %1 pole olemas." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Faili %1 ei tuvastatud kehtiva helifailina." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "CD taasesitus on võimalik ainult GStreameri mootoriga." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Ei õnnestunud avada %1 faili lugemiseks: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Ei õnnestunud avada CUE faili %1 lugemiseks: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Esitusloendi faili %1 ei õnnestunud lugemiseks avada: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "GStreameri lähteelemendi loomine %1 jaoks nurjus" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "GStreameri typefind elemendi loomine %1 jaoks nurjus" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "GStreameri fakesink elemendi loomine %1 jaoks nurjus" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "GStreameri fakesink, typefind ja lähteelementide linkimine %1 jaoks nurjus" - -msgid "Playlist" -msgstr "Esitusloend" - -msgid "1 day" -msgstr "1 päev" - -#, qt-format -msgid "%1 days" -msgstr "%1 päeva" - -msgid "Today" -msgstr "Täna" - -msgid "Yesterday" -msgstr "Eile" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 päeva tagasi" - -msgid "Tomorrow" -msgstr "Homme" - -#, qt-format -msgid "In %1 days" -msgstr "%1 päeva jooksul" - -msgid "Next week" -msgstr "järgmisel nädalal" - -#, qt-format -msgid "In %1 weeks" -msgstr "%1 nädala jooksul" - -msgid "Show in file browser" -msgstr "Kuva failihalduris" - -msgid "Too many songs selected." -msgstr "Valitud on liiga palju lugusi." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "Valitud on %1 lugu %2 erinevas kataloogis. Kas oled kindel, et soovid need kõik avada?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "%1 jaoks ei õnnestunud andmetest tuvastada pildifaili" - -msgid "Success" -msgstr "Valmis" - -msgid "File is unsupported" -msgstr "Fail pole toetatud" - -msgid "Filename is missing" -msgstr "Faili nimi on puudu" - -msgid "File does not exist" -msgstr "Faili pole olemas" - -msgid "File could not be opened" -msgstr "Faili avamine ei õnnestunud" - -msgid "Could not parse file" -msgstr "Faili süntaksi analüüsimine ei õnnestunud" - -msgid "Could save file" -msgstr "Faili salvestamine ei õnnestunud" - -msgid "Unknown error" -msgstr "Tundmatu viga" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "Otsingusõnale välja nime lisamine võimaldab piirata otsingut selle väljaga, näiteks:" - -msgid "artist" -msgstr "esitaja" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "kõikide esitajate otsing, kus leidub %1. " - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "Otsingu täpsustamiseks võib numbriväljade otsisõnade eesliiteks lisada %1 või %2, nt: " - -msgid "rating" -msgstr "hinnang" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "Mitut otsinguterminit saab kombineerida ka sõnadega \"%1\" (vaikimisi) ja \"%2\" ning rühmitada need sulgudega. " - -msgid "Available fields" -msgstr "Saadaolevad väljad" - -msgid "Buffering" -msgstr "Puhvedamine" - -msgid "Framerate" -msgstr "Kaadrisagedus" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Madal (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Keskmine (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Kõrge (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Ülikõrge (%1 kaadrit sekundis)" - -msgid "No analyzer" -msgstr "Analüsaator puudub" - -msgid "Block analyzer" -msgstr "Blokk-analüsaator" - -msgid "Boom analyzer" -msgstr "Kõmisev analüsaator" - -msgid "Turbine" -msgstr "Turbine" - -msgid "Sonogram" -msgstr "Sonogram" - -msgid "WaveRubber" -msgstr "WaveRubber" - -msgid "Pre-amp" -msgstr "Eelmoonutus" - -msgid "Custom" -msgstr "Kohanda" - -msgid "Classical" -msgstr "Klassikaline" - -msgid "Club" -msgstr "Klubi" - -msgid "Dance" -msgstr "Tantsumuusika" - -msgid "Full Bass" -msgstr "Täisbass" - -msgid "Full Treble" -msgstr "Täiskõrged" - -msgid "Full Bass + Treble" -msgstr "Täisbass + kõrged" - -msgid "Laptop/Headphones" -msgstr "Sülearvuti/kõrvaklapid" - -msgid "Large Hall" -msgstr "Suur ruum" - -msgid "Live" -msgstr "Kontsert" - -msgid "Party" -msgstr "Pidu" - -msgid "Pop" -msgstr "Pop" - -msgid "Reggae" -msgstr "Regemuusika" - -msgid "Rock" -msgstr "Rokk" - -msgid "Soft" -msgstr "Mahe" - -msgid "Ska" -msgstr "Ska" - -msgid "Soft Rock" -msgstr "Pehme rokk" - -msgid "Techno" -msgstr "Tehno" - -msgid "Zero" -msgstr "Null" - -msgid "Save preset" -msgstr "Eelmääratluse salvestamine" - -msgid "Name" -msgstr "Nimi" - -msgid "Delete preset" -msgstr "Kustuta valmisseadistus" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Kas soovid kustutada eelseadistuse \"%1\"?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 dB" - -msgid "Filetype" -msgstr "Faili tüüp" - -msgid "Length" -msgstr "Kestus" - -msgid "Samplerate" -msgstr "Diskreetimissagedus" - -msgid "Bit depth" -msgstr "Bitisügavus" - -msgid "Bitrate" -msgstr "Bitikiirus" - -msgid "EBU R 128 Integrated Loudness" -msgstr "EBU R 128 integreeritud valjus" - -msgid "EBU R 128 Loudness Range" -msgstr "EBU R 128 valjuse vahemik" - -msgid "Show album cover" -msgstr "Kuva kaanepilte" - -msgid "Show song technical data" -msgstr "Kuva loo tehnilisi andmeid" - -msgid "Show song lyrics" -msgstr "Kuva laulusõnad" - -msgid "Automatically search for song lyrics" -msgstr "Otsi laulusõnu automaatselt" - -msgid "No song playing" -msgstr "Midagi ei mängita" - -#, qt-format -msgid "%1 song" -msgstr "%1 lugu" - -#, qt-format -msgid "%1 songs" -msgstr "%1 lugu" - -#, qt-format -msgid "%1 artist" -msgstr "%1 esitaja" - -#, qt-format -msgid "%1 artists" -msgstr "%1 esitajat" - -#, qt-format -msgid "%1 album" -msgstr "%1 album" - -#, qt-format -msgid "%1 albums" -msgstr "%1 albumit" - -msgid "kbps" -msgstr "kbps" - -msgid "Saving playcounts and ratings" -msgstr "Salvestame esituskordi ja hinnanguid" - -msgid "Various artists" -msgstr "Erinevad esitajad" - -msgid "Loading..." -msgstr "Laadimine..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "Helikogu SQL päring ei õnnestunud: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "%1 andmebaasi värskendamine." - -msgid "Updating collection" -msgstr "Helikogu värskendamine" - -#, qt-format -msgid "Updating %1" -msgstr "%1 uuendamine" - -msgid "Your collection is empty!" -msgstr "Su helikogu on tühi!" - -msgid "Click here to add some music" -msgstr "Klõpsa muusika lisamiseks siia" - -msgid "Append to current playlist" -msgstr "Lisa praegusesse esitusloendisse" - -msgid "Replace current playlist" -msgstr "Asenda praegune esitusloend" - -msgid "Open in new playlist" -msgstr "Ava uues esitusloendis" - -msgid "Search for this" -msgstr "Otsi seda" - -msgid "Edit track information..." -msgstr "Muuda loo infot..." - -msgid "Edit tracks information..." -msgstr "Muuda lugude infot..." - -msgid "Rescan song(s)" -msgstr "Skaneeri lugu uuesti" - -msgid "Show in various artists" -msgstr "Kuva nimistus 'Erinevad esitajad'" - -msgid "Don't show in various artists" -msgstr "Ära kuva nimistus 'Erinevad esitajad'" - -msgid "There are other songs in this album" -msgstr "Sellel albumil on ka teisi lugusid" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Kas soovid teisaldada ka teised selle albumi lood nimistusse 'Erinevad esitajad'?" - -msgid "Show" -msgstr "Näita" - -msgid "Group by" -msgstr "Rühmitamise alus" - -msgid "Display options" -msgstr "Kuvamise valikud" - -msgid "Group by Album artist/Album" -msgstr "Rühmita: album esitaja/album" - -msgid "Group by Album artist/Album - Disc" -msgstr "Rühmita: album esitaja/album - plaat" - -msgid "Group by Album artist/Year - Album" -msgstr "Rühmita: album esitaja/aasta - album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Rühmita: album esitaja/aasta - album - plaat" - -msgid "Group by Artist/Album" -msgstr "Rühmita: esitaja/album" - -msgid "Group by Artist/Album - Disc" -msgstr "Rühmita: esitaja/album - plaat" - -msgid "Group by Artist/Year - Album" -msgstr "Rühmita: esitaja/aasta - album" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Rühmita: esitaja/aasta - album - plaat" - -msgid "Group by Genre/Album artist/Album" -msgstr "Rühmita: žanr/album esitaja/album" - -msgid "Group by Genre/Artist/Album" -msgstr "Rühmita: žanr/esitaja/album" - -msgid "Group by Album Artist" -msgstr "Rühmita: album esitaja" - -msgid "Group by Artist" -msgstr "Rühmita: esitaja" - -msgid "Group by Album" -msgstr "Rühmita: album" - -msgid "Group by Genre/Album" -msgstr "Rühmita: žanr/album" - -msgid "Advanced grouping..." -msgstr "Täpsem rühmitamine..." - -msgid "Grouping Name" -msgstr "Rühmituse nimi" - -msgid "Grouping name:" -msgstr "Rühmituse nimi:" - -msgid "First level" -msgstr "Esimene tase" - -msgid "Second Level" -msgstr "Teine tase" - -msgid "Third Level" -msgstr "Kolmas tase" - -msgid "None" -msgstr "Puudub" - -msgid "Album artist" -msgstr "Albumi esitaja" - -msgid "Artist" -msgstr "Esitaja" - -msgid "Album" -msgstr "Album" - -msgid "Album - Disc" -msgstr "Album – plaat" - -msgid "Year - Album" -msgstr "Aasta - Album" - -msgid "Year - Album - Disc" -msgstr "Aasta - Album - Plaat" - -msgid "Original year - Album" -msgstr "Algne aasta – album" - -msgid "Original year - Album - Disc" -msgstr "Algne aasta – album - plaat" - -msgid "Disc" -msgstr "Ketas" - -msgid "Year" -msgstr "Aasta" - -msgid "Original year" -msgstr "Algne aasta" - -msgid "Genre" -msgstr "Žanr" - -msgid "Composer" -msgstr "Helilooja" - -msgid "Performer" -msgstr "Esineja" - -msgid "Grouping" -msgstr "Rühmitamine" - -msgid "File type" -msgstr "Faili tüüp" - -msgid "Format" -msgstr "Vorming" - -msgid "Sample rate" -msgstr "Diskreetimissagedus" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "Metaandmete salvestamine faili „%1“ ei õnnestunud" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "Metaandmete salvestamine faili „%1“ ei õnnestunud: %2" - -msgid "Title" -msgstr "Pealkiri" - -msgid "Track" -msgstr "Rada" - -msgid "Original Year" -msgstr "Algne aasta" - -msgid "Album Artist" -msgstr "Albumi esitaja" - -msgid "Play Count" -msgstr "Esituskordi" - -msgid "Skip Count" -msgstr "Vahelejätmisi" - -msgid "Last Played" -msgstr "Viimati esitatud" - -msgid "Sample Rate" -msgstr "Diskreetimissagedus" - -msgid "Bit Depth" -msgstr "Bitisügavus" - -msgid "File Name" -msgstr "Faili nimi" - -msgid "File Name (without path)" -msgstr "Faili nimi (asukohata)" - -msgid "File Size" -msgstr "Faili suurus" - -msgid "File Type" -msgstr "Faili tüüp" - -msgid "Date Modified" -msgstr "Muutmise aeg" - -msgid "Date Created" -msgstr "Loomise aeg" - -msgid "Comment" -msgstr "Märkus" - -msgid "Source" -msgstr "Allikas" - -msgid "Mood" -msgstr "Meeleolu" - -msgid "Rating" -msgstr "Hinnang" - -msgid "CUE" -msgstr "CUE" - -msgid "Integrated Loudness" -msgstr "Integreeritud valjus" - -msgid "Loudness Range" -msgstr "Valjuse vahemik" - -msgid "Undo" -msgstr "Võta tagasi" - -msgid "Redo" -msgstr "Tee uuesti" - -msgid "Load playlist" -msgstr "Laadi esitusloend" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Vasteid ei leitud. Puhasta otsingukast, et näha kogu esitusloendit." - -msgid "stop" -msgstr "peata" - -msgid "Never" -msgstr "Mitte kunagi" - -msgid "&Hide..." -msgstr "&Peida..." - -msgid "&Stretch columns to fit window" -msgstr "&Sobita veerud akna laiusega" - -msgid "&Reset columns to default" -msgstr "&Lähtesta veerud vaikeväärtustele" - -msgid "&Lock rating" -msgstr "&Lukusta hinne" - -msgid "&Align text" -msgstr "&Joonda tekst" - -msgid "&Left" -msgstr "&Vasak" - -msgid "&Center" -msgstr "&Keskele" - -msgid "&Right" -msgstr "&Parem" - -#, qt-format -msgid "&Hide %1" -msgstr "&Peida %1" - -msgid "New folder" -msgstr "Uus kaust" - -msgid "Delete" -msgstr "Kustuta" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Salvesta esitusloend" - -msgid "Enter the name of the folder" -msgstr "Sisesta kausta nimi" - -msgid "Copy to device" -msgstr "Kopeeri seadmesse" - -msgid "Playlist must be open first." -msgstr "Esitusloend peab esmalt olema avatud." - -msgid "Remove playlists" -msgstr "Eemalda esitusloendid" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Oled eemaldamas oma lemmikutest %1 esitusloendit. Kas oled kindel?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Esitusloendi saab määrata lemmikuks vajutades selle nime juures olevale täheikoonile" - -msgid "Favorited playlists will be saved here" -msgstr "Lemmikuks määratud esitusloendid salvestatakse siia" - -msgid "Couldn't create playlist" -msgstr "Esitusloendit ei saanud luua" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Salvesta esitusloend" - -msgid "Unknown playlist extension" -msgstr "Tundmatu esitusloendi laiend" - -msgid "Unknown file extension for playlist." -msgstr "Esitusloendi jaoks tundmatu faililaiend." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 on valitud" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "%n lugu" - -msgid "Automatic" -msgstr "Automaatne" - -msgid "Relative" -msgstr "Suhteline" - -msgid "Absolute" -msgstr "Absoluutne" - -msgid "Star playlist" -msgstr "Standardne" - -msgid "Close playlist" -msgstr "Sulge esitusloend" - -msgid "Rename playlist..." -msgstr "Nimeta esitusloend ümber..." - -msgid "Save playlist..." -msgstr "Salvesta esitusloend..." - -msgid "Rename playlist" -msgstr "Nimeta esitusloend ümber" - -msgid "Enter a new name for this playlist" -msgstr "Sisesta sellele esitusloendile uus nimi" - -msgid "Remove playlist" -msgstr "Eemalda esitusloend" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Oled eemaldamas esitusloendit, mis ei kuulu lemmikesitusloendite hulka: esitusloend kustutatakse (seda toimingut ei saa tagasi võtta). \n" -"Kas soovid jätkata?" - -msgid "Warn me when closing a playlist tab" -msgstr "Hoiata esitusloendi vahekaardi sulgemisel" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Seda valikut saab muuta eelistustes \"Käitumine\"" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Selle esitusloendi lemmikuks lisamiseks topeltklõpsa siin. See salvestatakse ja jääb juurdepääsetavaks vasakpoolsel küljeribal oleva paneeli \"Esitusloendid\" kaudu" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "lisa %n lugu" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "eemalda %n lugu" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "liiguta %n lugu" - -msgid "sort songs" -msgstr "sordi lugusi" - -msgid "shuffle songs" -msgstr "lugude juhuesitus" - -msgid "Hz" -msgstr "Hz" - -msgid "Bit" -msgstr "bitt" - -msgid "Error while loading audio CD." -msgstr "Viga audio CD laadimisel." - -msgid "Loading tracks" -msgstr "Radade laadimine" - -msgid "Loading tracks info" -msgstr "Lugude teabe laadimine" - -msgid "Saving CUE files is not supported." -msgstr "CUE-failide salvestamine pole toetatud." - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "Ei tea, kuidas peaks kasutama: %1" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Kõik esitusloendid (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 esitusloendit (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "Tundmatu failitüüp: %1" - -#, qt-format -msgid "Could not open file %1" -msgstr "Faili avamine ei õnnestu: %1" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "„%1“ kausta pole olemas." - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "%1 avamine salvestamiseks ei õnnestunud." - -msgid "Loading smart playlist" -msgstr "Nutika esitusloendi laadimine" - -msgid "Collection search" -msgstr "Helikogu otsing" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Otsi oma helikogust laule, mis vastavad määratud kriteeriumidele." - -msgid "Search terms" -msgstr "Otsisõnad" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Lugu lisatakse esitusloendisse, kui see vastab nendele tingimustele." - -msgid "Search options" -msgstr "Otsingu valikud" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Vali, kuidas esitusloend sorditakse ja kui palju lugusid see sisaldab." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 lugu leitud (näidatakse %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 lugu leitud" - -msgid "after" -msgstr "pärast" - -msgid "before" -msgstr "enne" - -msgid "on" -msgstr "kuupäeval" - -msgid "not on" -msgstr "ei ole kuupäeval" - -msgid "in the last" -msgstr "on vähem kui viimased" - -msgid "not in the last" -msgstr "on enam kui viimased" - -msgid "between" -msgstr "vahemikus" - -msgid "contains" -msgstr "sisaldab" - -msgid "does not contain" -msgstr "ei sisalda" - -msgid "starts with" -msgstr "alguses on" - -msgid "ends with" -msgstr "lõpus on" - -msgid "greater than" -msgstr "suurem kui" - -msgid "less than" -msgstr "on väiksem kui" - -msgid "equals" -msgstr "võrdub" - -msgid "not equals" -msgstr "ei võrdu" - -msgid "empty" -msgstr "tühi" - -msgid "not empty" -msgstr "pole tühi" - -msgid "A-Z" -msgstr "A-Ü" - -msgid "Z-A" -msgstr "Z-A" - -msgid "oldest first" -msgstr "vanimad esimesena" - -msgid "newest first" -msgstr "uusim esimesena" - -msgid "shortest first" -msgstr "lühimad esimesena" - -msgid "longest first" -msgstr "pikim esimesena" - -msgid "smallest first" -msgstr "väikseim esimesena" - -msgid "biggest first" -msgstr "suurimad esimesena" - -msgid "Hours" -msgstr "tundi" - -msgid "Days" -msgstr "päeva" - -msgid "Weeks" -msgstr "nädalat" - -msgid "Months" -msgstr "kuud" - -msgid "Years" -msgstr "aastat" - -msgid "The second value must be greater than the first one!" -msgstr "Teine väärtus peab olema suurem kui esimene!" - -msgid "Add search term" -msgstr "Lisa otsingusõna" - -msgid "Newest tracks" -msgstr "Uusimad lood" - -msgid "50 random tracks" -msgstr "50 juhuslikku lugu" - -msgid "Ever played" -msgstr "Läbi aegade esitatud" - -msgid "Never played" -msgstr "Pole esitatud" - -msgid "Last played" -msgstr "Viimati esitatud" - -msgid "Most played" -msgstr "Enim esitatud" - -msgid "Favourite tracks" -msgstr "Lemmiklood" - -msgid "Least favourite tracks" -msgstr "Vähim kuulatud lood" - -msgid "All tracks" -msgstr "Kõik lood" - -msgid "Dynamic random mix" -msgstr "Dünaamiline juhuslik valik" - -msgid "New smart playlist..." -msgstr "Uus nutikas esitusloend..." - -msgid "Play next" -msgstr "Esita järgmisena" - -msgid "Edit smart playlist..." -msgstr "Muuda nutikat esitusloendit..." - -msgid "Delete smart playlist" -msgstr "Kustuta nutikas esitusloend" - -msgid "Smart playlist" -msgstr "Nutikas esitusloend" - -msgid "Playlist type" -msgstr "Esitusloendi tüüp" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Nutikas esitusloend on dünaamiline loend lugudest sinu helikogust. On olemas erinevat tüüpi nutikaid esitusloendeid, mis pakuvad erinevaid viise lugude valimiseks." - -msgid "Finish" -msgstr "Lõpeta" - -msgid "Choose a name for your smart playlist" -msgstr "Vali oma nutikale esitusloendile nimi" - -msgid "Abort" -msgstr "Katkesta" - -msgid "All albums" -msgstr "Kõik albumid" - -msgid "Albums with covers" -msgstr "Kaanepildiga albumid" - -msgid "Albums without covers" -msgstr "Kaanepildita albumid" - -msgid "Really cancel?" -msgstr "Kas tühistada?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Selle akna sulgemine lõpetab kaanepiltide otsimise." - -msgid "Don't stop!" -msgstr "Ära peata!" - -msgid "All artists" -msgstr "Kõik esitajad" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "%2-st kaanepildist saadi %1 (%3 nurjus)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 üle kantud" - -msgid "Export finished" -msgstr "Eksport on lõpetatud" - -msgid "No covers to export." -msgstr "Kaanepilte ekspordiks pole." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "%2-st kaanepildist eksporditi %1 (%3 jäeti vahele)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "Ei õnnestunud salvestada kaanepilti faili %1." - -#, qt-format -msgid "Covers from %1" -msgstr "Kaanepildid teenuselt %1" - -msgid "Search" -msgstr "Otsing" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Pildid (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Pildid (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Kõik failid (*)" - -msgid "Load cover from disk..." -msgstr "Laadi kaanepilt kettalt..." - -msgid "Save cover to disk..." -msgstr "Salvesta kaanepilt kettale..." - -msgid "Load cover from URL..." -msgstr "Laadi kaaanepilt aadressilt..." - -msgid "Search for album covers..." -msgstr "Otsi kaanepilte..." - -msgid "Unset cover" -msgstr "Tühista kaanepilt" - -msgid "Delete cover" -msgstr "Kustuta kaanepilt" - -msgid "Clear cover" -msgstr "Eemalda kaanepilt" - -msgid "Show fullsize..." -msgstr "Kuva täissuuruses..." - -msgid "Search automatically" -msgstr "Otsi automaatselt" - -msgid "Load cover from disk" -msgstr "Laadi kaanepilt kettalt" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Kaanepildi faili %1 avamine lugemiseks nurjus: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "Kaanepildi fail %1 on tühi." - -msgid "unknown" -msgstr "tundmatu" - -msgid "Save album cover" -msgstr "Salvesta kaanepilt" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Kaanepildi faili %1 avamine salvestamiseks nurjus: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Kaanepildi salvestamine faili %1 nurjus: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Kaanepildi salvestamine faili %1 nurjus." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Kaanepildi faili %1 kustutamine ei õnnestunud: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Kaanepildi salvestamine faili %1 nurjus: %2" - -msgid "Total network requests made" -msgstr "Tehtud võrgupäringuid kokku" - -msgid "Average image size" -msgstr "Pildi keskmine suurus" - -msgid "Total bytes transferred" -msgstr "Edastatud baite kokku" - -msgid "Fetching cover error" -msgstr "Viga kaanepildi hankimisel" - -msgid "The site you requested does not exist!" -msgstr "Sinu soovitud veebisaiti pole olemas!" - -msgid "The site you requested is not an image!" -msgstr "Sinu soovitud veebisait pole pilt!" - -msgid "Genius Authentication" -msgstr "Genius autentimine" - -msgid "Please open this URL in your browser" -msgstr "Ava see URL oma veebilehitsejas" - -msgid "Redirect missing token code!" -msgstr "Suuna puuduv tunnuskood ümber!" - -msgid "Received invalid reply from web browser." -msgstr "Veebilehitsejast saadi vigane vastus." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Geniuse ümbersuunamisel puudub päringuüksuste kood või olek." - -msgid "General" -msgstr "Üldine" - -msgid "User interface" -msgstr "Kasutajaliides" - -msgid "Streaming" -msgstr "Voogesitus" - -msgid "Add directory..." -msgstr "Lisa kataloog..." - -msgid "Write all playcounts and ratings to files" -msgstr "Kirjuta failidesse kõik esituskorrad ja reitingud" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Kas soovid salvestada esituskorrad ja hinnangud kõigi oma helikogus olevate lugude jaoks?" - -msgid "Enter your user token from" -msgstr "Sisesta oma tunnuskood saidilt" - -msgid "Use Tidal settings to authenticate." -msgstr "Kasuta autentimiseks Tidali seadeid." - -msgid "Use Spotify settings to authenticate." -msgstr "Kasuta autentimiseks Spotify seadeid." - -msgid "Use Qobuz settings to authenticate." -msgstr "Kasuta autentimiseks Qobuzi seadeid." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 vajab autentimist." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 ei vaja autentimist." - -msgid "No provider selected." -msgstr "Teenuseid pole valitud." - -msgid "Authentication failed" -msgstr "Autentimine ebaõnnestus" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "Käsitsi määramata (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "Määra kaanepildi otsinguga (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "Automaatselt võetud albumi kataloogist (%1)" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "Põimitud albumi kaanepilt (%1)" - -msgid "Select background image" -msgstr "Vali taustpilt" - -msgid "OSD Preview" -msgstr "Ekraanimenüü eelvaade" - -msgid "Drag to reposition" -msgstr "Lohista asukoha muutmiseks" - -msgid "About Strawberry" -msgstr "Strawberry teave" - -#, qt-format -msgid "Version %1" -msgstr "Versioon %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry on muusikamängija ja helikogude haldur." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "See on 2018. aastal välja antud Clementine haru, mis on suunatud muusikakollektsionääridele ja audiofiilidele." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry on tasuta tarkvara, mis on välja antud GPL litsentsi all. Lähtekood on saadaval aadressil %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Sai ilmselt koos selle programmiga ka GNU üldise avaliku litsentsi koopia. Kui ei, vaata %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Kui sulle meeldib Strawberry ja leiad selle olevat kasulik, kaalu sponsoreerimist või annetamist." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Võid toetatada autorit saidil %1. Samuti on võimalik ühekordne makse %2 kaudu." - -msgid "Author and maintainer" -msgstr "Autor ja hooldaja" - -msgid "Contributors" -msgstr "Toetajad" - -msgid "Clementine authors" -msgstr "Clementine autorid" - -msgid "Clementine contributors" -msgstr "Clementine toetajad" - -msgid "Thanks to" -msgstr "Tänud" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Täname kõiki teisi Amaroki ja Clementine' kaastöölisi." - -msgid "(different across multiple songs)" -msgstr "(erinevad mitme loo vahel)" - -msgid "Different art across multiple songs." -msgstr "Erinevatel lugudel erinevad pildid." - -msgid "Previous" -msgstr "Eelmine" - -msgid "Next" -msgstr "Järgmine" - -msgid "Saving tracks" -msgstr "Lugude salvestamine" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 lugu valitud." - -msgid "Yes" -msgstr "Jah" - -msgid "No" -msgstr "Ei" - -msgid "Cover is unset." -msgstr "Kaanepilt on kinnitamata." - -msgid "Cover from embedded image." -msgstr "Kaanepilt põimitud pildilt." - -#, qt-format -msgid "Cover from %1" -msgstr "Kaanepilt teenuselt %1" - -msgid "Cover art not set" -msgstr "Kaanepilt määramata" - -msgid "Album cover editing is only available for collection songs." -msgstr "Kaanepildi muutmine on võimalik ainult helikogu lugudel." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Kaanepilt muudetud: salvestamisel eemaldatakse." - -msgid "Cover changed: Will be unset when saved." -msgstr "Kaanepilt muudetud: salvestamisel tühistatakse." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Kaanepilt muudetud: salvestamisel kustutatakse." - -msgid "Cover changed: Will set new when saved." -msgstr "Kaanepilt muudetud: salvestamisel määratakse uus." - -msgid "Reset song play statistics" -msgstr "Lähtest loo esitamise statistika" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "Kas soovid selle loo esitusstatistika lähtestada?" - -msgid "loading..." -msgstr "laadimine..." - -msgid "Not found." -msgstr "Ei leitud." - -msgid "Original tags" -msgstr "Algsed sildid" - -msgid "Suggested tags" -msgstr "Soovitatud sildid" - -msgid "Delete files" -msgstr "Kustuta failid" - -msgid "The following files will be deleted from disk:" -msgstr "Järgnevad failid kustutatakse kettalt:" - -msgid "Are you sure you want to continue?" -msgstr "Kas soovid jätkata?" - -msgid "Receiving initial data from last.fm..." -msgstr "Algandmete vastuvõtmine saidilt last.fm..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Esituskordade vastuvõtmine %1 loo jaoks ja viimati esitamine %2 loo jaoks." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "%1 loo viimati esitamise vastuvõtmine." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "%1 loo esituskorra vastuvõtmine." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "%1 loo esituskorrad ja %2 loo viimati esitamised on vastu võetud." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Viimati esitamine %1 loole vastu võetud." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "%1 loo esituskorrad on vastu võetud." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry töötab Snapina" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Tuvastati, et Strawberry töötab Snapina" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry on aeglasem ja omab Snapina käitamisel piiranguid. Juurfailisüsteemile (/) ligipääs puudub. Samuti võivad kehtida muud piirangud, näiteks juurdepääs teatud seadmetele või võrgujagudele." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Ubuntu jaoks on ametlik PPA hoidla, mis on saadaval aadressil %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Ametlikud versioonid on saadaval Debiani ja Ubuntu jaoks, mis töötavad ka enamiku nende derivaatidega. Lisateabe saamiseks vaata %1." - -msgid "For a better experience please consider the other options above." -msgstr "Parema kasutuskogemuse saamiseks kaalu teisi ülaltoodud valikuid." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Varunda strawberry.conf ja strawberry.db kataloogist ~/snap, et vältida seadistuse kaotamist enne snapi eemaldamist:" - -msgid "Uninstall the snap with:" -msgstr "Eemalda snap koos:" - -msgid "Install strawberry through PPA:" -msgstr "Paigalda Strawberry PPA kaudu:" - -msgid "Select directory for the playlists" -msgstr "Vali esitusloendite jaoks kataloog" - -msgid "Directory does not exist." -msgstr "Kataloogi pole olemas." - -msgid "Large sidebar" -msgstr "Suur külgriba" - -msgid "Icons sidebar" -msgstr "Ikoonide külgriba" - -msgid "Small sidebar" -msgstr "Väike külgriba" - -msgid "Plain sidebar" -msgstr "Lihtne külgriba" - -msgid "Tabs on top" -msgstr "Kaardid üleval" - -msgid "Icons on top" -msgstr "Ikoonid üleval" - -msgid "Available" -msgstr "Saadaolevad" - -msgid "New songs" -msgstr "Uued lood" - -msgid "Exceeded by" -msgstr "Ületatud" - -msgid "Used" -msgstr "Kasutuses" - -msgid "Clear" -msgstr "Puhasta" - -msgid "Reset" -msgstr "Lähtesta" - -msgid "Small album cover" -msgstr "Väike kaanepilt" - -msgid "Large album cover" -msgstr "Suur kaanepilt" - -msgid "Fit cover to width" -msgstr "Sobita kaanepilt laiusega" - -msgid "Show above status bar" -msgstr "Kuva olekuriba kohal" - -msgid "You are signed in." -msgstr "Oled sisse logitud." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Oled sisse logitud kui %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Aegub %1" - -#, qt-format -msgid "disc %1" -msgstr "plaat %1" - -#, qt-format -msgid "track %1" -msgstr "lugu %1" - -msgid "Paused" -msgstr "Peatatud" - -msgid "Stopped" -msgstr "Peatatud" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Peata taasesitus pärast lugu: %1" - -msgid "On" -msgstr "Sees" - -msgid "Off" -msgstr "Väljas" - -msgid "Playlist finished" -msgstr "Esitusnimekiri läbi" - -#, qt-format -msgid "Volume %1%" -msgstr "Helitugevus %1%" - -msgid "Don't shuffle" -msgstr "Juhuesitus väljas" - -msgid "Shuffle all" -msgstr "Kõige juhuesitus" - -msgid "Shuffle tracks in this album" -msgstr "Selle albumi lugude juhuesitus" - -msgid "Shuffle albums" -msgstr "Albumite juhuesitus" - -msgid "Don't repeat" -msgstr "Ära korda" - -msgid "Repeat track" -msgstr "Korda lugu" - -msgid "Repeat album" -msgstr "Korda album" - -msgid "Repeat playlist" -msgstr "Korda esitusloend" - -msgid "Stop after every track" -msgstr "Peata pärast iga lugu" - -msgid "Intro tracks" -msgstr "Introd" - -#, qt-format -msgid "Configure %1..." -msgstr "Seadista %1..." - -msgid "Add to artists" -msgstr "Lisa esitajate hulka" - -msgid "Add to albums" -msgstr "Lisa albumitesse" - -msgid "Add to songs" -msgstr "Lisa lugude hulka" - -msgid "Enter search terms above to find music" -msgstr "Muusika leidmiseks sisesta üles otsingusõnad" - -msgid "The streaming collection is empty!" -msgstr "Voogesituste kogu on tühi!" - -msgid "Click here to retrieve music" -msgstr "Muusika hankimiseks klõpsa siia" - -msgid "Remove from favorites" -msgstr "Eemalda lemmikutest" - -msgid "Open homepage" -msgstr "Ava koduleht" - -msgid "Donate" -msgstr "Anneta" - -msgid "Refresh channels" -msgstr "Värskenda kanaleid" - -#, qt-format -msgid "Getting %1 channels" -msgstr "%1 kanali hankimine" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 kraasija autentimine" - -msgid "Open URL in web browser?" -msgstr "Kas avada URL veebibrauseris?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "URL-i lõikepuhvrisse kopeerimiseks ja veebilehitsejas käsitsi avamiseks vajuta nuppu \"Salvesta\"." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "URL-i ei saanud avada. Ava see URL oma veebilehitseja" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Kehtetu vastus veebibrauserist. Tunnuskood puudub." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "Veebilehitsejast saadi vigane vastus. Proovi teist lehitsejat." - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Kraasija %1 ei ole autentitud!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Kraasija %1 viga: %2" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz autentimine" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "%1 kraasimine nurjus - %2 põhjuseks: %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "MusicBrainzi salvestuse ID puudub %1 %2 %3 jaoks" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "ListenBrainz viga: %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Kasutajanimi puudub, logi esmalt last.fm-i sisse!" - -msgid "Organizing files" -msgstr "Failide korrastamine" - -msgid "Artist's initial" -msgstr "Esitaja initsiaalid" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Bitikiirus" - -msgid "File extension" -msgstr "Faililaiend" - -msgid "Error copying songs" -msgstr "Viga lugude kopeerimisel" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Mõne loo kopeerimisel ilmnes probleeme. Järgnevaid faile ei kopeeritud:" - -msgid "Error deleting songs" -msgstr "Viga lugude kustutamisel" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Mõne loo kustutamisel ilmnes probleeme. Järgnevaid faile ei kustutatud:" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Ei suutnud luua GStreamer'i elementi \"%1\" - palun kontrolli, et arvutis oleks paigaldatud kõik vajalikud GStreamer'i pistikprogrammid" - -#, qt-format -msgid "Successfully written %1" -msgstr "Kodeerimine õnnestus: %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Teisendatakse %1 faili kasutades %2 lõime" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Viga %1 töötlemisel: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Käivitatakse %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Ei leidnud kodeerijat %1 jaoks, palun kontrolli et arvutis oleks paigaldatud õiged GStreamer'i pistikprogrammid" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Ei leidnud mukserit %1 jaoks, palun kontrolli et arvutis oleks paigaldatud õiged GStreamer'i pistikprogrammid" - -msgid "Start transcoding" -msgstr "Alusta teisendamist" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "jäänud %n" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n lõpetatud" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n ebaõnnestus" - -msgid "Add files to transcode" -msgstr "Lisa failid teisendamiseks" - -msgid "Open a directory to import music from" -msgstr "Ava kataloog, kust muusika importida" - -msgid "Play/Pause" -msgstr "Esita/paus" - -msgid "Stop" -msgstr "Peata" - -msgid "Stop playing after current track" -msgstr "Peata taasesitus pärast praegust lugu" - -msgid "Next track" -msgstr "Järgmine lugu" - -msgid "Previous track" -msgstr "Eelmine lugu" - -msgid "Restart or previous track" -msgstr "Käivita uuesti või esita eelmine lugu" - -msgid "Increase volume" -msgstr "Heli valjemaks" - -msgid "Decrease volume" -msgstr "Heli vaiksemaks" - -msgid "Mute" -msgstr "Vaigista" - -msgid "Seek forward" -msgstr "Samm edasi" - -msgid "Seek backward" -msgstr "Samm tagasi" - -msgid "Show/Hide" -msgstr "Kuva/peida" - -msgid "Show OSD" -msgstr "Kuva ekraanimenüü" - -msgid "Toggle Pretty OSD" -msgstr "Ilusa ekraanimenüü lüliti" - -msgid "Change shuffle mode" -msgstr "Muuda juhuesituse režiimi" - -msgid "Change repeat mode" -msgstr "Muuda kordusrežiimi" - -msgid "Enable/disable scrobbling" -msgstr "Luba/keela kraasimine" - -msgid "Love" -msgstr "Meeldib" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Vajuta klahvikombinatsiooni %1 kasutamiseks..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Käsku \"%1\" ei saanud käivitada." - -#, qt-format -msgid "Shortcut for %1" -msgstr "%1 kiirklahv" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "X11 otseteede kasutamine asukohas %1 ei ole soovitatav ja see võib põhjustada klaviatuuri hangumise!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr " %1 otseteid kasutatakse tavaliselt MPRIS ja KGlobalAccel kaudu." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr " %1 otseteid kasutatakse tavaliselt Gnome sätete deemoni kaudu ja need tuleks seadistada hoopis gnome-settings-daemon'i abil." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr " %1 otseteid kasutatakse tavaliselt Gnome sätete deemoni kaudu ja need tuleks seadistada hoopis cinnamon-settings-daemon'i abil." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr " %1 otseteid kasutatakse tavaliselt MATE sätete deemoni kaudu ja need tuleks seadistada hoopis seal." - -msgid "Identifying song" -msgstr "Tuvastame laulu" - -msgid "Fingerprinting song" -msgstr "Sõrmejäljestame lugu" - -msgid "Downloading metadata" -msgstr "Laadime alla metaandmeid" - -msgid "Show moodbar" -msgstr "Kuva tujuriba" - -msgid "Moodbar style" -msgstr "Meeleoluriba stiil" - -msgid "Normal" -msgstr "Tavaline" - -msgid "Angry" -msgstr "Vihane" - -msgid "Frozen" -msgstr "Külmunud" - -msgid "Happy" -msgstr "Õnnelik" - -msgid "System colors" -msgstr "Süsteemi värvid" - -msgid "Connect device" -msgstr "Ühenda seade" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Ühendasid selle seadme esimest korda. Strawberry skaneerib nüüd seadet muusikafailide leidmiseks – selleks võib kuluda veidi aega." - -msgid "This device will not work properly" -msgstr "See seade ei tööta korralikult" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "See on MTP seade, kuid kompileerisid Strawberry libmtp toeta." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Kui jätkad, töötab see seade aeglaselt ja sinna kopeeritud lood ei pruugi töötada." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "See on iPod, kuid kompileerisid Strawberry libgpod toeta." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Seda tüüpi seadet ei toetata: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "%1% värskendamine..." - -msgid "Not connected" -msgstr "Pole ühendatud" - -msgid "Not mounted - double click to mount" -msgstr "Haakimata - topeltklõps haakimiseks" - -msgid "Double click to open" -msgstr "Avamiseks tee topeltklikk" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 lugu%2" - -msgid "Safely remove device" -msgstr "Eemalda seade ohutult" - -msgid "Forget device" -msgstr "Unusta seade" - -msgid "Device properties..." -msgstr "Seadme omadused..." - -msgid "Delete from device..." -msgstr "Kustuta seadmest..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Seadme unustamine eemaldab selle siit loendist, mistõttu peab Strawberry järgmisel ühendamisel kõik lood uuesti skaneerima." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Need failid kustutatakse seadmest. Kas soovid jätkata?" - -msgid "Model" -msgstr "Mudel" - -msgid "Manufacturer" -msgstr "Tootja" - -msgid "Mount point" -msgstr "Haakepunkt" - -msgid "Device" -msgstr "Seade" - -msgid "URI" -msgstr "URI" - -msgid "D-Bus path" -msgstr "D-Bus asukoht" - -msgid "Serial number" -msgstr "Seerianumber" - -msgid "Mount points" -msgstr "Haakepunktid" - -msgid "Partition label" -msgstr "Partitsiooni silt" - -msgid "UUID" -msgstr "UUID" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "Kehtetu MTP-seade: %1" - -msgid "Could not open MTP device." -msgstr "MTP seadme avamine ei õnnestunud." - -#, qt-format -msgid "MTP error: %1" -msgstr "MTP viga: %1" - -msgid "MTP device not found." -msgstr "MTP-seadet ei leitud." - -msgid "Loading MTP device" -msgstr "MTP-seadme laadimine" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Viga MTP seadme %1 ühendamiselug" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "Viga MTP-seadme %1 ühendamisel: %2" - -msgid "Error while setting CDDA device to ready state." -msgstr "Viga CDDA seadme valmisolekusse seadmisel." - -msgid "Error while setting CDDA device to pause state." -msgstr "Viga CDDA seadme peatatud olekusse määramisel." - -msgid "Error while querying CDDA tracks." -msgstr "Viga lugude CDDA päringul." - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "%1 -> %2 kopeeruimine ei õnnestunud: %3" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "Andmebaasi salvestamine ei õnnestunud: %1" - -msgid "Writing database failed." -msgstr "Andmebaasi salvestamine ei õnnestunud." - -msgid "Loading iPod database" -msgstr "Laadime iPodi andmekogu" - -msgid "An error occurred loading the iTunes database" -msgstr "iTunesi andmebaasi laadimisel tekkis viga" - -msgid "Server URL is invalid." -msgstr "Serveri URL on vigane." - -msgid "Missing username or password." -msgstr "Kasutajanimi või parool puudub." - -msgid "Subsonic server URL is invalid." -msgstr "Subsonici serveri URL on kehtetu." - -msgid "Missing Subsonic username or password." -msgstr "Subsonic kasutajanimi või parool puudub." - -msgid "Retrieving albums..." -msgstr "Albumite toomine..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "%1 albumi lugude toomine..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "%1 albumi lugude toomine..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Kaanepildi toomine albumile %1..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Kaanepiltide toomine albumitele %1..." - -msgid "Configuration incomplete" -msgstr "Seadistamine on pooleli" - -msgid "Missing server url, username or password." -msgstr "Serveri URL, kasutajanimi või parool puudub." - -msgid "Configuration incorrect" -msgstr "Seadistus on vale" - -msgid "Test successful!" -msgstr "Test õnnestus!" - -msgid "Test failed!" -msgstr "Test ebaõnnestus!" - -msgid "Reply from Tidal is missing query items." -msgstr "Tidali vastuses puuduvad päringuüksused." - -msgid "Missing Tidal API token." -msgstr "Tidali API tunnuskood puudub." - -msgid "Missing Tidal username." -msgstr "Tidali kasutajanimi puudub." - -msgid "Missing Tidal password." -msgstr "Tidali parool puudub." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Tidalis autentimata ja maksimaalne sisselogimiskatsete arv on täis." - -msgid "Not authenticated with Tidal." -msgstr "Pole Tidaliga autentitud." - -msgid "Missing Tidal API token, username or password." -msgstr "Puuduv Tidal API tunnuskood, kasutajanimi või parool." - -msgid "Authenticating..." -msgstr "Autentimine..." - -msgid "Receiving artists..." -msgstr "Esitajate vastuvõtmine..." - -msgid "Receiving albums..." -msgstr "Albumite vastuvõtmine..." - -msgid "Receiving songs..." -msgstr "Lugude vastuvõtmine..." - -msgid "Searching..." -msgstr "Otsimine..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "%1 esitaja albumite vastuvõtmine..." - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "%1 esitaja albumite vastuvõtmine..." - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "%1 albumi lugude vastuvõtmine..." - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "%1 albumi lugude vastuvõtmine..." - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "%1 albumi kaanepildi vastuvõtmine..." - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "%1 albumi kaanepildi vastuvõtmine..." - -msgid "No match." -msgstr "Vasteid ei leitud." - -msgid "Cancelled." -msgstr "Tühistatud." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Tidalilt saabus URL %1 krüptitud vooga . Strawberry ei toeta praegu krüptitud vooge." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Tidalilt saabus URL krüptitud vooga . Strawberry ei toeta praegu krüptitud vooge." - -msgid "Missing Tidal client ID." -msgstr "Tidali kliendi ID puudub." - -msgid "Missing API token." -msgstr "API tunnuskood puudub." - -msgid "Missing username." -msgstr "Kasutajanimi puudub." - -msgid "Missing password." -msgstr "Parool puudub." - -msgid "Spotify Authentication" -msgstr "Spotify autentimine" - -msgid "Redirect missing token code or state!" -msgstr "Suuna puuduv tunnuskood või olek ümber!" - -msgid "Not authenticated with Spotify." -msgstr "Pole Spotifyga autenditud." - -msgid "Data missing error" -msgstr "Viga: andmed puuduvad" - -msgid "Maximum number of login attempts reached." -msgstr "Maksimaalne sisselogimiskatsete arv on täis." - -msgid "Missing Qobuz app ID." -msgstr "Qobuzi rakenduse ID puudub." - -msgid "Missing Qobuz username." -msgstr "Qobuzi kasutajanimi puudub." - -msgid "Missing Qobuz password." -msgstr "Qobuzi parool puudub." - -msgid "Not authenticated with Qobuz." -msgstr "Pole Qobuziga autentitud." - -msgid "Missing Qobuz app ID or secret." -msgstr "Qobuzi rakenduse ID või võti puudub." - -msgid "Missing app id." -msgstr "Rakenduse ID puudub." - -msgid "Strawberry Music Player" -msgstr "Strawberry muusikamängija" - -msgid "F5" -msgstr "F5" - -msgid "&Play" -msgstr "&Esita" - -msgid "F6" -msgstr "F6" - -msgid "&Stop" -msgstr "&Peata" - -msgid "F7" -msgstr "F7" - -msgid "&Next track" -msgstr "&Järgmine lugu" - -msgid "F8" -msgstr "F8" - -msgid "&Quit" -msgstr "&Välju" - -msgid "Ctrl+Q" -msgstr "Ctrl+Q" - -msgid "Ctrl+Alt+V" -msgstr "Ctrl+Alt+V" - -msgid "&Clear playlist" -msgstr "&Tühjenda esitusloend" - -msgid "Ctrl+K" -msgstr "Ctrl+K" - -msgid "Ctrl+E" -msgstr "Ctrl+E" - -msgid "Renumber tracks in this order..." -msgstr "Nummerda lood ümber selles järjekorras..." - -msgid "Set value for all selected tracks..." -msgstr "Määra väärtus kõikidel valitud lugudel..." - -msgid "Edit tag..." -msgstr "Muuda silti..." - -msgid "&Settings..." -msgstr "&Seaded..." - -msgid "Ctrl+P" -msgstr "Ctrl+P" - -msgid "&About Strawberry" -msgstr "Strawberry teave" - -msgid "F1" -msgstr "F1" - -msgid "S&huffle playlist" -msgstr "Sega esitusloend" - -msgid "Ctrl+H" -msgstr "Ctrl+H" - -msgid "&Add file..." -msgstr "Lisa fail..." - -msgid "Ctrl+Shift+A" -msgstr "Ctrl+Shift+A" - -msgid "&Open file..." -msgstr "&Ava fail..." - -msgid "Open audio &CD..." -msgstr "Ava CD plaat..." - -msgid "&Cover Manager" -msgstr "&Kaanepildi haldur" - -msgid "C&onsole" -msgstr "Konsool" - -msgid "&Shuffle mode" -msgstr "Juhuesituse režiim" - -msgid "&Repeat mode" -msgstr "&Kordusrežiim" - -msgid "Remove from playlist" -msgstr "Eemalda esitusloendist" - -msgid "&Equalizer" -msgstr "&Ekvalaiser" - -msgid "&Transcode Music" -msgstr "&Teisenda muusikat" - -msgid "Add &folder..." -msgstr "Lisa &kaust..." - -msgid "&Jump to the currently playing track" -msgstr "&Hüppa esitatavale loole" - -msgid "Ctrl+J" -msgstr "Ctrl+J" - -msgid "&New playlist" -msgstr "&Uus esitusloend" - -msgid "Ctrl+N" -msgstr "Ctrl+N" - -msgid "Save &playlist..." -msgstr "Salvesta esitusloend..." - -msgid "Ctrl+S" -msgstr "Ctrl+S" - -msgid "&Load playlist..." -msgstr "&Laadi esitusloend..." - -msgid "Ctrl+Shift+O" -msgstr "Ctrl+Shift+O" - -msgid "&Save all playlists..." -msgstr "&Salvesta kõik esitusloendid..." - -msgid "Go to next playlist tab" -msgstr "Liigu järgmisele esitusloendi vahekaardile" - -msgid "Go to previous playlist tab" -msgstr "Liigu eelmisele esitusloendi vahekaardile" - -msgid "&Update changed collection folders" -msgstr "&Värskenda muudetud kaustu helikogus" - -msgid "About &Qt" -msgstr "&Qt teave" - -msgid "&Mute" -msgstr "&Vaigista" - -msgid "Ctrl+M" -msgstr "Ctrl+M" - -msgid "&Do a full collection rescan" -msgstr "&Skaneeri kogu helikogu" - -msgid "Stop collection scan" -msgstr "Peata helikogu skaneerimine" - -msgid "Complete tags automatically..." -msgstr "Täida sildid automaatselt..." - -msgid "Ctrl+T" -msgstr "Ctrl+T" - -msgid "Toggle scrobbling" -msgstr "Kraasimise lüliti" - -msgid "Remove &duplicates from playlist" -msgstr "Eemalda esitusloendist duplikaadid" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Eemalda esitusloendist kättesaamatud lood" - -msgid "Add file(s) to transcoder" -msgstr "Lisa failid teisendamiseks" - -msgid "Add file to transcoder" -msgstr "Lisa fail teisendamiseks" - -msgid "Add stream..." -msgstr "Lisa voog..." - -msgid "Show sidebar" -msgstr "Kuva külgriba" - -msgid "Import data from last.fm..." -msgstr "Impordi last.fm andmed..." - -msgid "MenuPopupToolButton" -msgstr "MenuPopupToolButton" - -msgid "&Music" -msgstr "Muusika" - -msgid "P&laylist" -msgstr "Esitusloend" - -msgid "Help" -msgstr "Abi" - -msgid "&Tools" -msgstr "Töövahendid" - -msgid "Collection advanced grouping" -msgstr "Helikogu täpsem rühmitamine" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Saad muuta viisi, kuidas helikogus olevad lood on korraldatud." - -msgid "Group Collection by..." -msgstr "Järjesta helikogu..." - -msgid "Second level" -msgstr "Teine tase" - -msgid "Third level" -msgstr "Kolmas tase" - -msgid "Separate albums by grouping tag" -msgstr "Eralda albumid rühmitamise sildi järgi" - -msgid "Collection Filter" -msgstr "Helikogu filter" - -msgid "Entire collection" -msgstr "Terve helikogu" - -msgid "Added today" -msgstr "Lisatud täna" - -msgid "Added this week" -msgstr "Lisatud sel nädalal" - -msgid "Added within three months" -msgstr "Lisatud kolme kuu jooksul" - -msgid "Added this year" -msgstr "Lisatud sel aastal" - -msgid "Added this month" -msgstr "Lisatud sel kuul" - -msgid "Save current grouping" -msgstr "Salvesta praegune rühmitus" - -msgid "Manage saved groupings" -msgstr "Halda salvestatud rühmitusi" - -msgid "Enter search terms here" -msgstr "Sisesta siia otsingusõnad" - -msgid "Form" -msgstr "Vorm" - -msgid "Saved Grouping Manager" -msgstr "Salvestatud rühmituste haldur" - -msgid "Remove" -msgstr "Eemalda" - -msgid "Ctrl+Up" -msgstr "Ctrl+Up" - -msgid "File paths" -msgstr "Failide asukohad" - -msgid "This can be changed later through the preferences" -msgstr "Seda saab hiljem eelistuste kaudu muuta" - -msgid "Remember my choice" -msgstr "Jäta minu valik meelde" - -msgid "Stop after each track" -msgstr "Peata pärast iga lugu" - -msgid "Repeat" -msgstr "Korda" - -msgid "Shuffle" -msgstr "Juhuesitus" - -msgid "Dynamic mode is on" -msgstr "Kasutusel on dünaamiline režiim" - -msgid "New tracks will be added automatically." -msgstr "Uued lood lisatakse automaatselt." - -msgid "Expand" -msgstr "Laienda" - -msgid "Repopulate" -msgstr "Täida uuesti andmetega" - -msgid "Turn off" -msgstr "Lülita välja" - -msgid "QueueView" -msgstr "Järjekorravaade" - -msgid "Move down" -msgstr "Liiguta alla" - -msgid "Move up" -msgstr "Liiguta üles" - -msgid "Ctrl+Down" -msgstr "Ctrl+Down" - -msgid "Search mode" -msgstr "Otsingurežiim" - -msgid "Match every search term (AND)" -msgstr "Klapita iga otsingusõnaga (JA)" - -msgid "Match one or more search terms (OR)" -msgstr "Klapita ühe või enama otsingusõnaga (VÕI)" - -msgid "Include all songs" -msgstr "Kaasa kõik lood" - -msgid "Sorting" -msgstr "Sortimine" - -msgid "Put songs in a random order" -msgstr "Pane lood juhuslikku järjekorda" - -msgid "Sort songs by" -msgstr "Lugude sortimise alus" - -msgid "Limits" -msgstr "Piirid" - -msgid "Show all the songs" -msgstr "Kuva kõik lood" - -msgid "Only show the first" -msgstr "Kuva ainult esimene" - -msgid " songs" -msgstr " lugu" - -msgid "Preview" -msgstr "Eelvaade" - -msgid "and" -msgstr "ja" - -msgid "ago" -msgstr "tagasi" - -msgid "New smart playlist" -msgstr "Uus nutikas esitusloend" - -msgid "Edit smart playlist" -msgstr "Muuda nutikat esitusloendit" - -msgid "Use dynamic mode" -msgstr "Kasuta dünaamilist režiimi" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "Dünaamilises režiimis valitakse uued lood ja lisatakse need esitusloendisse iga kord, kui lugu lõpeb." - -msgid "Export covers" -msgstr "Ekspordi kaanepildid" - -msgid "Output" -msgstr "Väljund" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Sisesta failinimi eksporditud kaanepiltidele (laiendita):" - -msgid "Export downloaded covers" -msgstr "Ekspordi allalaetud kaanepildid" - -msgid "Export embedded covers" -msgstr "Ekspordi põimitud kaanepildid" - -msgid "Existing covers" -msgstr "Olemasolevad kaanepildid" - -msgid "Do not overwrite" -msgstr "Ära kirjuta üle" - -msgid "O&verwrite all" -msgstr "Kirjuta kõik üle" - -msgid "Overwrite s&maller ones only" -msgstr "Kirjuta üle ainult väiksemad" - -msgid "Size" -msgstr "Suurus" - -msgid "Scale size" -msgstr "Skaala suurus" - -msgid "Size:" -msgstr "Suurus:" - -msgid "Pixel" -msgstr "Piksel" - -msgid "Cover Manager" -msgstr "Kaanepildi haldur" - -msgid "Fetch automatically" -msgstr "Tõmba automaatselt" - -msgid "Load" -msgstr "Laadi" - -msgid "Add to playlist" -msgstr "Lisa esitusloendisse" - -msgid "View" -msgstr "Vaade" - -msgid "Total albums:" -msgstr "Albumeid kokku:" - -msgid "Without cover:" -msgstr "Kaanepildita:" - -msgid "0" -msgstr "0" - -msgid "Fetch Missing Covers" -msgstr "Hangi puuduvad kaanepildid" - -msgid "Export Covers" -msgstr "Ekspordi kaanepildid" - -msgid "Fetch completed" -msgstr "Hankimine on tehtud" - -msgid "Load cover from URL" -msgstr "Laadi kaaanepilt aadressilt" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Kaanepiltide laadimiseks internetist sisesta aadress:" - -msgid "Settings" -msgstr "Seaded" - -msgid "Behavior" -msgstr "Käitumine" - -msgid "Show system tray icon" -msgstr "Kuva süsteemisalve ikoon" - -msgid "Keep running in the background when the window is closed" -msgstr "Jäta taustal tööle ka siis, kui programmiaken on suletud" - -msgid "Show song progress on system tray icon" -msgstr "Kuva süsteemisalve ikoonil edenemist" - -msgid "Show song progress on taskbar" -msgstr "Näita loo edenemist tegumiribal" - -msgid "Resume playback on start" -msgstr "Käivitamisel jätka taasesitust" - -msgid "Show playing widget" -msgstr "Kuva esitusvidin" - -msgid "On startup" -msgstr "Käivitamisel" - -msgid "Remember from &last time" -msgstr "Jätka pooleli jäänud kohast" - -msgid "Show the main window" -msgstr "Kuva peaaken" - -msgid "Hide the main window" -msgstr "Peida peaaken" - -msgid "Show the main window maximized" -msgstr "Kuva peaaken maksimeerituna" - -msgid "Show the main window minimized" -msgstr "Kuva peaaken minimeerituna" - -msgid "Language" -msgstr "Keel" - -msgid "Use the system default" -msgstr "Kasuta süsteemi vaikeväärtust" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Keele muutmisel tuleb Strawberry taaskäivitada." - -msgid "Using the menu to add a song will..." -msgstr "Menüü kaudu loo lisamisel..." - -msgid "Never start playing" -msgstr "Ära kunagi alusta esitust" - -msgid "Play if there is nothing already playing" -msgstr "Esita, kui hetkel juba pole midagi esitamisel" - -msgid "Always start playing" -msgstr "Alusta alati esitust" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Vajutades nuppu \"Eelmine\"..." - -msgid "Jump to previous song right away" -msgstr "Hüppa kohe eelmisele loole" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Esita uuesti algusest, seejärel uuesti vajutamisel hüppa eelmisele" - -msgid "Double clicking a song will..." -msgstr "Topeltklõpsuga lool..." - -msgid "Append to the playlist" -msgstr "Lisa esitusloendisse" - -msgid "Replace the playlist" -msgstr "Asenda esitusloend" - -msgid "Add to the queue" -msgstr "Lisa esitusjärjekorda" - -msgid "Double clicking a song in the playlist will..." -msgstr "Topeltklõpsuga lool esitusloendis..." - -msgid "Change the currently playing song" -msgstr "Käivita valitud lugu" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Kiirklahvi või hiireratta abil kerimine" - -msgid "Time step" -msgstr "Aja samm" - -msgid " s" -msgstr " s" - -msgid "Volume Increment" -msgstr "Helivaljuse samm" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Helikogu moodustamiseks skaneeritakse muusikat nendest kaustadest" - -msgid "Add new folder..." -msgstr "Lisa uus kaust..." - -msgid "Remove folder" -msgstr "Eemalda kaust" - -msgid "Automatic updating" -msgstr "Automaatne uuendamine" - -msgid "Update the collection when Strawberry starts" -msgstr "Värskenda helikogu Strawberry käivitumisel" - -msgid "Monitor the collection for changes" -msgstr "Jälgi muudatusi helikogus" - -msgid "Song fingerprinting and tracking" -msgstr "Sõrmejäljesta ja jälgi lugusi" - -msgid "Mark disappeared songs unavailable" -msgstr "Märgi kadunud lood kättesaamatuks" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "Teosta loo EBU R 128 analüüs (vajalik EBU R 128 valjuse normaliseerimiseks)" - -msgid "Expire unavailable songs after" -msgstr "Kättesaamatud lood aeguvad pärast" - -msgid "days" -msgstr "päeva" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Eelistatud kaanepildi failinimed (komadega eraldatud)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Kaanepilte otsides vaatab Strawberry esmalt pildifaile, mis sisaldavad ühte neist sõnadest.\n" -" Kui vasteid pole, kasutab see kataloogi suurimat pilti." - -msgid "Automatically open single categories in the collection tree" -msgstr "Ava üksikud kategooriad kogumikupuus automaatselt" - -msgid "Show dividers" -msgstr "Kuva eraldajad" - -msgid "Show album cover art in collection" -msgstr "Kuva helikogus kaanepilte" - -msgid "Use various artists for compilation albums" -msgstr "Kogumike puhul kasuta albumi esitajanimena märget „Erinevad esitajad“" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "Esitajate nimede sortimisel eira eesliiteid (\"the\", \"a\", \"an\")" - -msgid "Album cover pixmap cache" -msgstr "Kaanepiltide vahemälu" - -msgid "Enable Disk Cache" -msgstr "Luba ketta vahemälu" - -msgid "Disk Cache Size" -msgstr "Ketta vahemälu suurus" - -msgid "Current disk cache in use:" -msgstr "Praegu kasutatav ketta vahemälu:" - -msgid "Clear Disk Cache" -msgstr "Tühjenda ketta vahemälu" - -msgid "Song playcounts and ratings" -msgstr "Loo esituskorrad ja hinnangud" - -msgid "Save playcounts to song tags when possible" -msgstr "Salvesta esituskorrad ja hinnangud failidesse esimesel võimalusel" - -msgid "Save ratings to song tags when possible" -msgstr "Salvesta hinnangud lugude siltidesse esimesel võimalusel" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Kirjuta lugude uuesti sisselugemisel andmebaasi esituskorrad üle" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Kirjuta lugude uuesti sisselugemisel andmebaasi hinnangud üle" - -msgid "Save playcounts and ratings to files now" -msgstr "Salvesta esituskorrad ja hinnangud failidesse kohe" - -msgid "Enable delete files in the right click context menu" -msgstr "Luba failide kustutamine paremklõpsuga kontekstimenüüs" - -msgid "Backend" -msgstr "Taustaprogramm" - -msgid "Audio output" -msgstr "Heli väljund" - -msgid "Engine" -msgstr "Mootor" - -msgid "ALSA plugin:" -msgstr "ALSA pistikprogramm:" - -msgid "hw" -msgstr "hw" - -msgid "p&lughw" -msgstr "p&lughw" - -msgid "pcm" -msgstr "pcm" - -msgid "Exclusive mode (Experimental)" -msgstr "Eksklusiivne režiim (eksperimentaalne)" - -msgid "Options" -msgstr "Valikud" - -msgid "Enable volume control" -msgstr "Luba helitugevuse juhtimine" - -msgid "Upmix / downmix to" -msgstr "Teisenda heli" - -msgid "channels" -msgstr "kanaliseks" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "Paranda stereo helisalvestuste kuulamist kõrvaklappidega (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "Luba voogesituseks HTTP/2" - -msgid "Use strict SSL mode" -msgstr "Kasuta ranget SSL režiimi" - -msgid "Buffer" -msgstr "Puhver" - -msgid " ms" -msgstr " ms" - -msgid "Buffer duration" -msgstr "Puhvri kestus" - -msgid "High watermark" -msgstr "Kõrgeim väärtus" - -msgid "Low watermark" -msgstr "Madalaim väärtus" - -msgid "Defaults" -msgstr "Vaikeväärtused" - -msgid "Audio normalization" -msgstr "Heli normaliseerimine" - -msgid "No audio normalization" -msgstr "Heli ei normaliseerita" - -msgid "Replay Gain" -msgstr "Esitusvaljuse tundlikkus" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Kui esitusvaljuse tundlikkuse metainfo on failis olemas, siis kasuta seda" - -msgid "Replay Gain mode" -msgstr "Esitusvaljuse tundlikkuse režiim" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Raadio (kõigil paladel võrdne valjus)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (kõigil radadel ideaalne valjus)" - -msgid "Apply compression to prevent clipping" -msgstr "Ülevõimenduse vältimiseks kasuta kompressorit" - -msgid "Fallback-gain" -msgstr "Esitusvaljuse samm" - -msgid "EBU R 128 Loudness Normalization" -msgstr "EBU R 128 valjuse normaliseerimine" - -msgid "Perform track loudness normalization" -msgstr "Normaliseeri loo valjus" - -msgid "Target Level" -msgstr "Sihttase" - -msgid "Fading" -msgstr "Hajumine" - -msgid "Fade out when stopping a track" -msgstr "Hajuta heli loo peatamisel" - -msgid "Cross-fade when changing tracks manually" -msgstr "Risthajuta heli lugude käsitsi vahetamisel" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Risthajuta heli lugude automaatsel vahetamisel" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Välja arvatud samal albumil või samas asukohatabelis asuvate lugude vahel" - -msgid "Fading duration" -msgstr "Hajumise kestus" - -msgid "Fade out on pause / fade in on resume" -msgstr "Kasuta pausimisel ja jätkamisel hajumist" - -msgid "Add song artist tag" -msgstr "Lisa loole esitaja silt" - -msgid "Add song album tag" -msgstr "Lisa loole albumi silt" - -msgid "Add song title tag" -msgstr "Lisa loole pealkirja silt" - -msgid "Add song albumartist tag" -msgstr "Lisa loole albumi esitaja silt" - -msgid "Add song year tag" -msgstr "Lisa loole aasta silt" - -msgid "Add song composer tag" -msgstr "Lisa loole helilooja silt" - -msgid "Add song performer tag" -msgstr "Lisa loole esineja silt" - -msgid "Add song grouping tag" -msgstr "Lisa loole rühmitamise silt" - -msgid "Add song disc tag" -msgstr "Lisa loole plaadi numbri silt" - -msgid "Add song track tag" -msgstr "Lisa loole plaadijärjekorra silt" - -msgid "Add song genre tag" -msgstr "Lisage loole žanri silt" - -msgid "Add song length tag" -msgstr "Lisa loole pikkuse silt" - -msgid "Add song play count" -msgstr "Lisa loole esituskorrad" - -msgid "Add song skip count" -msgstr "Lisa loole vahelejätmiskorrad" - -msgid "Add a new line if supported by the notification type" -msgstr "Lisa uus rida, kui teavituse tüüp seda toetab" - -msgid "%filename%" -msgstr "%filename%" - -msgid "Add song filename" -msgstr "Lisa loole failinimi" - -msgid "%url%" -msgstr "%url%" - -msgid "Add song URL" -msgstr "Lisa loo URL" - -msgid "%rating%" -msgstr "%rating%" - -msgid "Add song rating" -msgstr "Lisa loole hinnang" - -msgid "%originalyear%" -msgstr "%originalyear%" - -msgid "Add song original year tag" -msgstr "Lisa loole algse aasta silt" - -msgid "Custom text settings" -msgstr "Kohandatud teksti seaded" - -msgid "Summary" -msgstr "Kokkuvõte" - -msgid "Enable Items" -msgstr "Luba üksused" - -msgid "Technical Data" -msgstr "Tehnilised andmed" - -msgid "Song Lyrics" -msgstr "Laulusõnad" - -msgid "Automatically search for album cover" -msgstr "Otsi kaanepilti automaatselt" - -msgid "Font for headline" -msgstr "Pealkirja kirjatüüp" - -msgid "Font" -msgstr "Kirjatüüp" - -msgid "Font size" -msgstr "Kirjatüübi suurus" - -msgid " pt" -msgstr " punkti" - -msgid "Font for data and lyrics" -msgstr "Andmete ja laulusõnade kirjatüüp" - -msgid "Use alternating row colors" -msgstr "Kasuta vahelduvaid reavärve" - -msgid "Show bars on the currently playing track" -msgstr "Kuva hetkel esitataval lool riba" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Kuva esitataval lool helendav kuma" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Kui lugu pole saadaval, jätka esitusloendi järgmise üksusega" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Kuva kättesaamatud lood esitusloendites hallina" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Kuva käivitamisel kättesaamatud lood esitusloendites hallina" - -msgid "Automatically select current playing track" -msgstr "Vali hetkel esitatav lugu automaatselt" - -msgid "Enable playlist toolbar" -msgstr "Luba esitusloendi tööriistariba" - -msgid "Enable playlist clear button" -msgstr "Luba esitusloendi tühjendamise nupp" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Sordi esitusloend lugude sisestamisel automaatselt" - -msgid "When saving a playlist, file paths should be" -msgstr "Esitusloendi salvestamisel on failitee" - -msgid "A&utomatic" -msgstr "A&utomaatne" - -msgid "Absolu&te" -msgstr "Absoluut&ne" - -msgid "Re&lative" -msgstr "Suhteline" - -msgid "As&k when saving" -msgstr "Küsi salvestamisel" - -msgid "Metadata" -msgstr "Metaandmed" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Kui lubatud, saab esitusloendivaates valitud lool klõpsates sildi väärtust otse muuta" - -msgid "Enable song metadata inline edition with click" -msgstr "Luba klõpsates loo metaandmete muutmine" - -msgid "Write metadata when saving playlists" -msgstr "Salvesta metaandmed esitusloendite salvestamisel" - -msgid "Scrobbler" -msgstr "Kraasimine" - -msgid "Enable" -msgstr "Luba" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Lood kraasitakse, kui neil on kehtivad metaandmed ja need on pikemad kui 30 sekundit, neid on mängitud vähemalt pool kestusest või 4 minutit (olenevalt sellest, kumb saabub varem)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Tööta võrguühenduseta režiimis (kraasi vahemällu)" - -msgid "Show scrobble button" -msgstr "Kuva kraasimise nupp" - -msgid "Show love button" -msgstr "Kuva meeldimise nupp" - -msgid "Submit scrobbles every" -msgstr "Saada kraasmed iga" - -msgid " seconds" -msgstr " sekundit" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(See on viivitus loo kraasimise ja selle serverisse esitamise vahel. Kui määrata ajaks 0 sekundit, esitatakse kraasimised kohe)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Kraasmete saatmisel eelista albumi esitajat" - -msgid "Show dialog for errors" -msgstr "Kuva veaaken" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "Eemalda albumi nimest ja loo pealkirjast „remastered“ ja muud sarnased sõnad" - -msgid "Enable scrobbling for the following sources:" -msgstr "Luba kraasimine järgmiste allikate jaoks:" - -msgid "Local file" -msgstr "Kohalik fail" - -msgid "CDDA" -msgstr "CDDA" - -msgid "SomaFM" -msgstr "SomaFM" - -msgid "Stream" -msgstr "Voog" - -msgid "Radio Paradise" -msgstr "Radio Paradise" - -msgid "Last.fm" -msgstr "Last.fm" - -msgid "Login" -msgstr "Logi sisse" - -msgid "Libre.fm" -msgstr "Libre.fm" - -msgid "Listenbrainz" -msgstr "Listenbrainz" - -msgid "User token:" -msgstr "Kasutaja tunnuskood:" - -msgid "Covers" -msgstr "Kaanepildid" - -msgid "Cover providers" -msgstr "Kaanepildi pakkujad" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Vali teenused, mida soovid kaanepildi otsimisel kasutada." - -msgid "Authentication" -msgstr "Autentimine" - -msgid "Album cover types" -msgstr "Kaanepildi tüübid" - -msgid "Saving album covers" -msgstr "Kaanepiltide salvestamine" - -msgid "Save album covers in album directory" -msgstr "Salvesta kaanepildid albumi kataloogi" - -msgid "Save album covers in cache directory" -msgstr "Salvesta kaanepildid vahemälu kataloogi" - -msgid "Save album covers as embedded cover" -msgstr "Salvesta kaanepildid põimitud kaanepildina" - -msgid "Filename:" -msgstr "Faili nimi:" - -msgid "Pattern" -msgstr "Muster" - -msgid "Random" -msgstr "Juhuslik" - -msgid "Overwrite existing file" -msgstr "Kirjuta olemasolev fail üle" - -msgid "Lowercase filename" -msgstr "Väiketähtedega failinimi" - -msgid "Replace spaces with dashes" -msgstr "Asenda tühikud kriipsudega" - -msgid "Lyrics" -msgstr "Laulusõnad" - -msgid "Lyrics providers" -msgstr "Laulusõnade pakkujad" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Vali teenused, mida soovid laulusõnade otsimisel kasutada." - -msgid "Network Proxy" -msgstr "Võrgu puhverserver" - -msgid "&Use the system proxy settings" -msgstr "&Kasuta süsteemi puhverserveri seadeid" - -msgid "Direct internet connection" -msgstr "Interneti otseühendus" - -msgid "&Manual proxy configuration" -msgstr "&Puhverserveri käsitsi seadistamine" - -msgid "HTTP proxy" -msgstr "HTTP-puhverserver" - -msgid "SOCKS proxy" -msgstr "SOCKS puhverserver" - -msgid "Port" -msgstr "Port" - -msgid "Use authentication" -msgstr "Kasuta autentimist" - -msgid "Username" -msgstr "Kasutajanimi" - -msgid "Password" -msgstr "Parool" - -msgid "Use proxy settings for streaming" -msgstr "Kasuta voogesituseks puhverserveri seadeid" - -msgid "Appearance" -msgstr "Välimus" - -msgid "Style" -msgstr "Stiil" - -msgid "Use system theme icons" -msgstr "Kasuta süsteemi teema ikoone" - -msgid "Settings require restart." -msgstr "Seaded nõuavad taaskäivitamist." - -msgid "Tabbar colors" -msgstr "Kaardiriba värvid" - -msgid "&Use the system default color" -msgstr "&Kasuta süsteemi vaikevärvi" - -msgid "Use custom color" -msgstr "Kasuta kohandatud värvi" - -msgid "Use gradient background" -msgstr "Kasuta taustaks värvi üleminekut" - -msgid "Select tabbar color:" -msgstr "Vali kaardiriba värv:" - -msgid "Background image" -msgstr "Taustapilt" - -msgid "Default bac&kground image" -msgstr "Vaikimisi &taustapilt" - -msgid "&No background image" -msgstr "&Taustapilti pole" - -msgid "The album cover of the currently playing song" -msgstr "Hetkel mängitava loo kaanepilt" - -msgid "Albu&m cover" -msgstr "Albu&mi kaanepilt" - -msgid "Custom image:" -msgstr "Kohandatud pilt:" - -msgid "Browse..." -msgstr "Sirvi..." - -msgid "Position" -msgstr "Asukoht" - -msgid "Upper Left" -msgstr "Üleval vasakul" - -msgid "Upper Right" -msgstr "Üleval paremal" - -msgid "Middle" -msgstr "Keskel" - -msgid "Bottom Left" -msgstr "All vasakul" - -msgid "Bottom Right" -msgstr "All paremal" - -msgid "Max cover size" -msgstr "Kaanepildi maksimaalne suurus" - -msgid "Stretch image to fill playlist" -msgstr "Venita kujutist esitusloendi täitmiseks" - -msgid "Keep aspect ratio" -msgstr "Hoia kuvasuhet" - -msgid "Do not cut image" -msgstr "Ära lõika pilti" - -msgid "Blur amount" -msgstr "Hägustuse hulk" - -msgid "0px" -msgstr "0px" - -msgid "Opacity" -msgstr "Läbipaistmatus" - -msgid "40%" -msgstr "40%" - -msgid "Icon sizes" -msgstr "Ikoonide suurus" - -msgid "Playlist buttons" -msgstr "Esitusloendi nupud" - -msgid "Tabbar large mode" -msgstr "Suur kaardiriba" - -msgid "Play control buttons" -msgstr "Esituse juhtnupud" - -msgid "Configure buttons" -msgstr "Seadistuse nupud" - -msgid "Files, playlists and queue buttons" -msgstr "Failid, esitusloendid ja järjekorranupud" - -msgid "Tabbar small mode" -msgstr "Väike kaardiriba" - -msgid "Playlist playing song color" -msgstr "Esitatava loo värv esitusloendis" - -msgid "System highlight color" -msgstr "Süsteemi esiletõstu värv" - -msgid "Custom color" -msgstr "Kohandatud värv" - -msgid "Select playlist playing song color:" -msgstr "Vali esitusloendis esitatatava loo värv:" - -msgid "Notifications" -msgstr "Teavitused" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry võib loo vahetumisel kuvada märguande." - -msgid "Notification type" -msgstr "Teavituse tüüp" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Välja lülitatud" - -msgid "Show a &native desktop notification" -msgstr "Kuva &töölaua märguandena" - -msgid "Show a pretty OSD" -msgstr "Kuva ilus ekraanimenüü" - -msgid "Show a popup fro&m the system tray" -msgstr "Kuva süsteemisalves hüpikaken" - -msgid "General settings" -msgstr "Üldised seadistused" - -msgid "Popup duration" -msgstr "Hüpikakna kestus" - -msgid "Disable duration" -msgstr "Näita kestust" - -msgid "Show a notification when I change the volume" -msgstr "Kuva helitugevuse muutmisel märguanne" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Kuva märguanne kordus-/juhuesitusrežiimi muutmisel" - -msgid "Show a notification when I pause playback" -msgstr "Kuva taasesituse pausimisel märguanne" - -msgid "Show a notification when I resume playback" -msgstr "Kuva taasesituse jätkamisel märguanne" - -msgid "Include album art in the notification" -msgstr "Kuva teavituses albumi kaanepilt" - -msgid "Custom message settings" -msgstr "Kohandatud sõnumi seaded" - -msgid "Use a custom message for notifications" -msgstr "Kasuta teavitustes kohandatud sõnumit" - -msgid "Body" -msgstr "Sisu" - -msgid "Pretty OSD options" -msgstr "Ilusa ekraanimenüü seadistused" - -msgid "Background color" -msgstr "Taustavärv" - -msgid "Text options" -msgstr "Tekstivalikud" - -msgid "Choose font..." -msgstr "Vali kirjatüüp..." - -msgid "Choose color..." -msgstr "Vali värv..." - -msgid "Background opacity" -msgstr "Tausta läbipaistvus" - -msgid "Basic Blue" -msgstr "Tavaline sinine" - -msgid "Strawberry Red" -msgstr "Maasikapunane" - -msgid "Custom..." -msgstr "Kohandatud..." - -msgid "Enable fading" -msgstr "Luba hajumine" - -msgid "Transcoding" -msgstr "Teisendamine" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Neid sätteid kasutatakse aknas \"Teisenda muusikat\" ja muusika teisendamisel enne selle seadmesse kopeerimist." - -msgid "FLAC" -msgstr "FLAC" - -msgid "WavPack" -msgstr "WavPack" - -msgid "Vorbis" -msgstr "Vorbis" - -msgid "Opus" -msgstr "Opus" - -msgid "Speex" -msgstr "Speex" - -msgid "AAC" -msgstr "AAC" - -msgid "ASF (WMA)" -msgstr "ASF (WMA)" - -msgid "MP3" -msgstr "MP3" - -msgid "Equalizer" -msgstr "Ekvalaiser" - -msgid "Preset:" -msgstr "Valmisvalik:" - -msgid "Enable equalizer" -msgstr "Luba ekvalaiser" - -msgid "Enable stereo balancer" -msgstr "Stereo tasakaalustamine" - -msgid "Left" -msgstr "Vasak" - -msgid "Balance" -msgstr "Tasakaal" - -msgid "Right" -msgstr "Parem" - -msgid "About" -msgstr "Programmist" - -msgid "Strawberry Error" -msgstr "Strawberry viga" - -msgid "Console" -msgstr "Konsool" - -msgid "Run" -msgstr "Käivita" - -msgid "Edit track information" -msgstr "Muuda loo infot" - -msgid "Date created" -msgstr "Loomise kuupäev" - -msgid "Art Automatic" -msgstr "Automaatne kaanepilt" - -msgid "Date modified" -msgstr "Muutmise kuupäev" - -msgid "Art Embedded" -msgstr "Põimitud kaanepilt" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Viimati esitatud" - -msgid "Play count" -msgstr "Esituskordi" - -msgid "EBU R 128 integrated loudness" -msgstr "EBU R 128 integreeritud valjus" - -msgid "Bit rate" -msgstr "Bitikiirus" - -msgid "Skip count" -msgstr "Vahelejätmisi" - -msgid "Path" -msgstr "Asukoht" - -msgid "Filename" -msgstr "Faili nimi" - -msgid "Art Unset" -msgstr "Kaanepilt määramata" - -msgid "File size" -msgstr "Faili suurus" - -msgid "Art Manual" -msgstr "Käsitsi kaanepilt" - -msgid "EBU R 128 loudness range" -msgstr "EBU R 128 valjuse vahemik" - -msgid "Reset play counts" -msgstr "Lähtesta esituskorrad" - -msgid "Change art" -msgstr "Muuda kaanepilti" - -msgid "Embedded cover" -msgstr "Põimitud kaanepilt" - -msgid "Complete tags automatically" -msgstr "Täida sildid automaatselt" - -msgid "Compilation" -msgstr "Kogumik" - -msgid "Tags" -msgstr "Sildid" - -msgid "Complete lyrics automatically" -msgstr "Täida laulusõnad automaatselt" - -msgid "Tag fetcher" -msgstr "Siltide laadija" - -msgid "Sorry" -msgstr "Vabandust" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry ei leidnud selle faili jaoks tulemusi" - -msgid "Select best possible match" -msgstr "Vali parim võimalik vaste" - -msgid "Add Stream" -msgstr "Lisa voog" - -msgid "Enter the URL of a stream:" -msgstr "Sisesta voo URL:" - -msgid "Enter username and password" -msgstr "Sisesta kasutajanimi ja parool" - -msgid "Import data from last.fm" -msgstr "Impordi last.fm andmed" - -msgid "Choose data to import from last.fm" -msgstr "Vali andmed saidilt last.fm importimiseks" - -msgid "Play counts" -msgstr "Esituskordi" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Hoiatus: Esituskordade ja viimati mängitud lugude statistikasaidilt last.fm asendab täielikult samad andmed vastega lugude jaoks. Andmed asendatakse sama albumi esitaja ja loo pealkirja järgi! Enne alustamist varunda oma andmebaas." - -msgid "Go!" -msgstr "Mine!" - -msgid "Close" -msgstr "Sulge" - -msgid "Cancel" -msgstr "Tühista" - -msgid "Message Dialog" -msgstr "Sõnumiaken" - -msgid "Do not show this message again." -msgstr "Ära seda teadet enam näita." - -msgid "Select directory for saving playlists" -msgstr "Vali esitusloendite salvestamise kataloog" - -msgid "Type" -msgstr "Tüüp" - -msgid "0:00:00" -msgstr "0:00:00" - -msgid "Click to toggle between remaining time and total time" -msgstr "Klõpsa järelejäänud aja ja kestuse vahel vahetamiseks" - -msgid "You are not signed in." -msgstr "Sa ei ole sisse logitud." - -msgid "Sign out" -msgstr "Logi välja" - -msgid "Signing in..." -msgstr "Sisselogimine..." - -msgid "Streaming Tabs View" -msgstr "Voogedastuse kaardivaade" - -msgid "Artists" -msgstr "Esitajad" - -msgid "Albums" -msgstr "Albumid" - -msgid "Songs" -msgstr "lugu" - -msgid "Refresh catalogue" -msgstr "Värskenda kataloog" - -msgid "Streaming Search View" -msgstr "Voogedastuse otsinguvaade" - -msgid "artists" -msgstr "esitajad" - -msgid "albums" -msgstr "albumit" - -msgid "songs" -msgstr "lugu" - -msgid "Organize Files" -msgstr "Korrasta faile" - -msgid "Destination" -msgstr "Sihtkoht" - -msgid "After copying..." -msgstr "Pärast kopeerimist..." - -msgid "Keep the original files" -msgstr "Säiilita algsed failid" - -msgid "Delete the original files" -msgstr "Kustuta algsed failid" - -msgid "Naming options" -msgstr "Nimetamise valikud" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Asendusmärkid algavad %'ga, näiteks %artist, %album %title

\n\n" -"

Kui Kui ümbritsed asendusmärkidega tekstilõigu looksulgudega, siis see tekstilõik jäetakse kuvamata, kui asendusmärgi väärtus on tühi.

" - -msgid "Insert..." -msgstr "Lisa..." - -msgid "Remove problematic characters from filenames" -msgstr "Eemalda failinimedest probleemsed tähemärgid" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Piira FAT failisüsteemides lubatud tähemärkidega" - -msgid "Restrict characters to ASCII" -msgstr "Piira ASCII tähemärkidega" - -msgid "Allow extended ASCII characters" -msgstr "Luba laiendatud ASCII tähemärgid" - -msgid "Replace spaces with underscores" -msgstr "Asenda tühikud allkriipsudega" - -msgid "Overwrite existing files" -msgstr "Kirjuta olemasolevad failid üle" - -msgid "Copy album cover artwork" -msgstr "Kopeeri albumi kaanepildid" - -msgid "Safely remove the device after copying" -msgstr "Pärast kopeerimist eemalda seade ohutult" - -msgid "Transcode Music" -msgstr "Teisenda muusikat" - -msgid "Files to transcode" -msgstr "Teisendatavad failid" - -msgid "Directory" -msgstr "Kataloog" - -msgid "Add..." -msgstr "Lisa..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Lisa kõik lood kataloogist ja kõigist selle alamkataloogidest" - -msgid "Import..." -msgstr "Impordi..." - -msgid "Output options" -msgstr "Väljundi valikud" - -msgid "Audio format" -msgstr "Heli vorming" - -msgid "Options..." -msgstr "Valikud..." - -msgid "Alongside the originals" -msgstr "Lähtefailide kõrval" - -msgid "Select..." -msgstr "Vali..." - -msgid "Progress" -msgstr "Edenemine" - -msgid "Details..." -msgstr "Üksikasjad..." - -msgid "Transcoder Log" -msgstr "Teisendamise logi" - -msgid " kbps" -msgstr " kbps" - -msgid "Profile" -msgstr "Profiil" - -msgid "Main profile (MAIN)" -msgstr "Põhiprofiil (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Vähese keerukusega profiil (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Skaleeritava diskreetimissageduse profiil (Scalable sampling rate profile - SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Pikaajalisel ennustusel põhinev profiil (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Kasuta ajutist müravormimist (temporal noise shaping)" - -msgid "Allow mid/side encoding" -msgstr "Luba keskmist/külgmist kodeerimist (mid/side encoding)" - -msgid "Block type" -msgstr "Blokitüüp" - -msgid "Normal block type" -msgstr "Tavaline blokitüüp" - -msgid "No short blocks" -msgstr "Ära kasuta lühikesi blokke" - -msgid "No long blocks" -msgstr "Ära kasuta pikki blokke" - -msgid "Transcoding options" -msgstr "Teisendamise valikud" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Kvaliteet" - -msgid "Fast" -msgstr "Kiire" - -msgid "Best" -msgstr "Parim" - -msgid "Use bitrate management engine" -msgstr "Kasuta bitikiiruse haldust" - -msgid "Target bitrate" -msgstr "Sihtbitikiirus" - -msgid "Minimum bitrate" -msgstr "Vähim bitikiirus" - -msgid "disabled" -msgstr "keelatud" - -msgid "Maximum bitrate" -msgstr "Suurim bitikiirus" - -msgid "automatic" -msgstr "automaatne" - -msgid "Average bitrate" -msgstr "Keskmine bitikiirus" - -msgid "Encoding mode" -msgstr "Kodeerimisrežiim" - -msgid "Auto" -msgstr "Automaatne" - -msgid "Ultra wide band (UWB)" -msgstr "Ülilairiba (UWB)" - -msgid "Wide band (WB)" -msgstr "Lairiba (WB)" - -msgid "Narrow band (NB)" -msgstr "Kitsasribaühendus (NB)" - -msgid "Variable bit rate" -msgstr "Varieeruv bitikiirus" - -msgid "Voice activity detection" -msgstr "Häältegevuse tuvastamine" - -msgid "Discontinuous transmission" -msgstr "Katkestustega edastamine" - -msgid "Encoding complexity" -msgstr "Kodeerimise keerukus" - -msgid "Frames per buffer" -msgstr "Kaadreid puhvri kohta" - -msgid "Optimize for &quality" -msgstr "Optimeerige kvaliteedile" - -msgid "Opti&mize for bitrate" -msgstr "Optimeeri bitikiirusele" - -msgid "Constant bitrate" -msgstr "Ühtlane bitikiirus" - -msgid "Encoding engine quality" -msgstr "Kodeerimismootori kvaliteet" - -msgid "Standard" -msgstr "Tavaline" - -msgid "High" -msgstr "Kõrge" - -msgid "Force mono encoding" -msgstr "Sunni monoheli" - -msgid "Press a key" -msgstr "Vajuta klahvi" - -msgid "Global Shortcuts" -msgstr "Globaalsed kiirklahvid" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Kasuta võimalusel Gnome kiirklahve" - -msgid "Open..." -msgstr "Ava..." - -msgid "Use MATE shortcuts when available" -msgstr "Kasuta võimalusel MATE kiirklahve" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Kasuta võimalusel KDE kiirklahve" - -msgid "Use X11 shortcuts when available" -msgstr "Kasuta võimalusel X11 kiirklahve" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Et Strawberry saaks üldiseid kiirklahve kasutada, ava süsteemi seadistused ja märgi eelistus „juhi oma arvutit“." - -msgid "Shortcut" -msgstr "Kiirklahv" - -msgctxt "Category label" -msgid "Action" -msgstr "Tegevus" - -msgid "&None" -msgstr "&Puudub" - -msgid "&Default" -msgstr "&Vaikimisi" - -msgid "&Custom" -msgstr "&Kohandatud" - -msgid "Change shortcut..." -msgstr "Muuda kiirklahvi..." - -msgid "Moodbar" -msgstr "Meeleoluriba" - -msgid "Show a moodbar in the track progress bar" -msgstr "Kuva loo edenemisribal meeleoluriba" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Salvesta .mood failid lugude kaustadesse" - -msgid "Enabled" -msgstr "Lubatud" - -msgid "Device Properties" -msgstr "Seadme omadused" - -msgid "Icon" -msgstr "Ikoon" - -msgid "Hardware information" -msgstr "Riistvara info" - -msgid "Hardware information is only available while the device is connected." -msgstr "Riistvara info on ainult siis saadaval, kui seade on ühendatud." - -msgid "Information" -msgstr "Informatsioon" - -msgid "Supported formats" -msgstr "Toetatud vormingud" - -msgid "This device supports the following file formats:" -msgstr "See seade toetab järgmisi failivorminguid:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry saab sellesse seadmesse kopeeritud muusika automaatselt teisendada vormingusse, mida ta suudab esitada." - -msgid "Do not convert any music" -msgstr "Ära teisenda mitte midagi" - -msgid "Convert any music that the device can't play" -msgstr "Teisenda kogu muusika, mida seade ei suuda esitada" - -msgid "Convert all music" -msgstr "Konverteeri kõik failid" - -msgid "Preferred format" -msgstr "Eelistatud vorming" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "See seade peab olema ühendatud ja avatud, enne kui Strawberry näeb, milliseid failivorminguid see toetab." - -msgid "Open device" -msgstr "Ava seade" - -msgid "Querying device..." -msgstr "Vaatame, mida seadmes leidub..." - -msgid "File formats" -msgstr "Failivormingud" - -msgid "Server URL" -msgstr "Serveri URL" - -msgid "Authentication method:" -msgstr "Autentimise viis:" - -msgid "Hex" -msgstr "Hex" - -msgid "MD5 token (Recommended)" -msgstr "MD5 tunnuskood (soovitatav)" - -msgid "Preferences" -msgstr "Seadistused" - -msgid "Use HTTP/2 when possible" -msgstr "Kasuta võimalusel HTTP/2" - -msgid "Verify server certificate" -msgstr "Kontrolli serveri sertifikaati" - -msgid "Download album covers" -msgstr "Laadi alla albumi kaanepilte" - -msgid "Server-side scrobbling" -msgstr "Serveripoolne kraasimine" - -msgid "Test" -msgstr "Testi" - -msgid "Delete songs" -msgstr "Kustuta lood" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Tidali tugi ei ole ametlik ja selle toimimiseks on vaja registreeritud rakenduse API tunnuskood. Meie ei saa aidata neid hankida." - -msgid "Use OAuth" -msgstr "Kasuta OAuth" - -msgid "Client ID" -msgstr "Kliendi ID" - -msgid "API Token" -msgstr "API tunnuskood" - -msgid "Audio quality" -msgstr "Heli kvaliteet" - -msgid "Search delay" -msgstr "Otsingu viivitus" - -msgid "ms" -msgstr "ms" - -msgid "Artists search limit" -msgstr "Esitajate otsingu piirang" - -msgid "Albums search limit" -msgstr "Albumite otsingu piirang" - -msgid "Songs search limit" -msgstr "Lugude otsingu limiit" - -msgid "Fetch entire albums when searching songs" -msgstr "Lugude otsimisel hangi terved albumid" - -msgid "Album cover size" -msgstr "Kaanepildi suurus" - -msgid "Stream URL method" -msgstr "Voo URL-i meetod" - -msgid "Append explicit to album title for explicit albums" -msgstr "Lisa vajadusel albumi nimele silt 'explicit'" - -msgid "Basic authentication" -msgstr "Lihtne autentimine" - -msgid "Authenticate" -msgstr "Autendi" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "

GStreameri Spotify pistikprogrammi ei õnnestu tuvastada, aga Spotify voogedastus ilma selleta ei toimi. Lisateavet leiad: selle pistikprogrammi paigaldamise lehelt meie vikis.

" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Qobuzi tugi ei ole ametlik ja selle toimimiseks on vajalik rakenduse API ID ja registreeritud rakenduse võtit. Me ei saa aidata neid hankida." - -msgid "App ID" -msgstr "Rakenduse ID" - -msgid "App Secret" -msgstr "Rakenduse võti" - -msgid "Base64 encoded secret" -msgstr "Base64 kodeeringus võti" - -msgid "Return to Strawberry" -msgstr "Naase Strawberrysse" - -msgid "Success!" -msgstr "Edu!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Sule veebilehitseja ja naase Strawberrysse." - diff --git a/src/translations/fi_FI.po b/src/translations/fi_FI.po deleted file mode 100644 index f15580e8..00000000 --- a/src/translations/fi_FI.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: fi\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Finnish\n" -"Language: fi_FI\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Kaikki tiedostot (*)" - -msgid "Context" -msgstr "Konteksti" - -msgid "Collection" -msgstr "Kirjasto" - -msgid "Queue" -msgstr "Jono" - -msgid "Playlists" -msgstr "Soittolistat" - -msgid "Smart playlists" -msgstr "Älykkäät soittolistat" - -msgid "Files" -msgstr "Tiedostot" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "Laitteet" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Näytä kaikki kappaleet" - -msgid "Show only duplicates" -msgstr "Näytä vain kaksoiskappaleet" - -msgid "Show only untagged" -msgstr "Näytä vain vailla tunnistetta olevat" - -msgid "Configure collection..." -msgstr "Kirjaston asetukset..." - -msgid "Play" -msgstr "Toista" - -msgid "Stop after this track" -msgstr "Pysäytä toistettavan kappaleen jälkeen" - -msgid "Toggle queue status" -msgstr "Vaihda jonon tila" - -msgid "Queue selected tracks to play next" -msgstr "Lisää valitut kappaleet jonoon" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "" - -msgid "Copy URL(s)..." -msgstr "Kopioi URL(:t)" - -msgid "Show in collection..." -msgstr "Näytä kirjastossa..." - -msgid "Show in file browser..." -msgstr "Näytä tiedostoselaimessa..." - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "Kopioi kirjastoon" - -msgid "Move to collection..." -msgstr "Siirrä kirjastoon..." - -msgid "Copy to device..." -msgstr "Kopioi laitteelle..." - -msgid "Delete from disk..." -msgstr "Poista levyltä..." - -msgid "Check for updates..." -msgstr "Tarkista päivitykset..." - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Keskeytä" - -msgid "Dequeue track" -msgstr "Poista kappale jonosta" - -msgid "Dequeue selected tracks" -msgstr "Poista valitut kappaleet jonosta" - -msgid "Queue track" -msgstr "Aseta kappale jonoon" - -msgid "Queue selected tracks" -msgstr "Aseta valitut kappaleet jonoon" - -msgid "Queue to play next" -msgstr "Toistojonoon" - -msgid "Unskip track" -msgstr "" - -msgid "Unskip selected tracks" -msgstr "" - -msgid "Skip track" -msgstr "Ohita kappale" - -msgid "Skip selected tracks" -msgstr "Ohita valitut kappaleet" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Aseta %1 %2:een" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Muokkaa tunnistetta \"%1\"..." - -msgid "Add to another playlist" -msgstr "Lisää toiseen soittolistaan" - -msgid "New playlist" -msgstr "Uusi soittolista" - -msgid "Add file" -msgstr "Lisää tiedosto" - -msgid "Music" -msgstr "Musiikki" - -msgid "Add folder" -msgstr "Lisää kansio" - -msgid "Clear playlist" -msgstr "Tyhjennä soittolista" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "" - -msgid "Error" -msgstr "Virhe" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Yksikään valitsemistasi kappaleista ei sovellu kopioitavaksi laitteelle" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Versio, johon juuri päivitit Strawberryn, vaatii kirjaston täydellisen läpikäynnin alla listattujen uusien ominaisuuksien vuoksi:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Haluatko suorittaa kirjaston läpikäynnin nyt?" - -msgid "Collection rescan notice" -msgstr "Ilmoitus kirjaston läpikäynnistä" - -msgid "Usage" -msgstr "Käyttötaso" - -msgid "options" -msgstr "valinnat" - -msgid "URL(s)" -msgstr "Osoite/osoitteet" - -msgid "Player options" -msgstr "Soittimen asetukset" - -msgid "Start the playlist currently playing" -msgstr "" - -msgid "Play if stopped, pause if playing" -msgstr "Aloittaa tai pysäyttää soittamisen" - -msgid "Pause playback" -msgstr "Keskeytä toisto" - -msgid "Stop playback" -msgstr "Pysäytä toisto" - -msgid "Stop playback after current track" -msgstr "" - -msgid "Skip backwards in playlist" -msgstr "Siirry soittolistan edelliseen kappaleeseen" - -msgid "Skip forwards in playlist" -msgstr "Siirry soittolistan seuraavaan kappaleeseen" - -msgid "Set the volume to percent" -msgstr "Säädä äänenvoimakkuus prosenttia" - -msgid "Increase the volume by 4 percent" -msgstr "Lisää äänenvoimakkuutta 4 prosentilla" - -msgid "Decrease the volume by 4 percent" -msgstr "Vähennä äänenvoimakkuutta 4 prosentilla" - -msgid "Increase the volume by percent" -msgstr "Lisää äänenvoimakkuutta prosentilla" - -msgid "Decrease the volume by percent" -msgstr "Vähennä äänenvoimakkuutta prosentilla" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Siirry nykyisessä kappaleessa tiettyyn kohtaan" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Siirry nykyisessä kappaleessa suhteellinen määrä" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Toista kappale uudelleen, tai toista edellinen kappale, jos alle 8 sekunnin päästä alusta." - -msgid "Playlist options" -msgstr "Soittolistan valinnat" - -msgid "Create a new playlist with files" -msgstr "" - -msgid "Append files/URLs to the playlist" -msgstr "Lisää tiedostoja/verkko-osoitteita soittolistalle" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Lataa tiedostoja tai verkko-osoitteita, korvaa samalla nykyinen soittolista" - -msgid "Play the th track in the playlist" -msgstr "Soita soittolistan . kappale" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "Muut valinnat" - -msgid "Display the on-screen-display" -msgstr "Näytä kuvaruutunäyttö" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Kuvaruutunäyttö päälle / pois" - -msgid "Change the language" -msgstr "Vaihda kieltä" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "Vastaa --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Vastaa --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Pilkuin erotettu lista luokka:taso -määritteitä, jossa taso on väliltä 0-3" - -msgid "Print out version information" -msgstr "Tulosta versiotiedot" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Eheystarkistus" - -msgid "Database corruption detected." -msgstr "Tietokanta on vioittunut." - -msgid "Backing up database" -msgstr "Varmuuskopioidaan tietokantaa" - -msgid "Deleting files" -msgstr "Poistetaan tiedostoja" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Tuntematon" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Tarvitset GStreamerin tätä URL-osoitetta varten." - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Tiedostoa %1 ei tunnistettu äänitiedostoksi." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "CD-toisto on saatavilla vain GStreamer-moottorilla" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Soittolista" - -msgid "1 day" -msgstr "1 päivä" - -#, qt-format -msgid "%1 days" -msgstr "%1 päivää" - -msgid "Today" -msgstr "Tänään" - -msgid "Yesterday" -msgstr "Eilen" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 päivää sitten" - -msgid "Tomorrow" -msgstr "Huomenna" - -#, qt-format -msgid "In %1 days" -msgstr "%1 päivässä" - -msgid "Next week" -msgstr "Ensi viikolla" - -#, qt-format -msgid "In %1 weeks" -msgstr "%1 viikossa" - -msgid "Show in file browser" -msgstr "Näytä tiedostonhallinnassa" - -msgid "Too many songs selected." -msgstr "Liian monta kappaletta valittu." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Tuntematon virhe" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "esittäjä" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Käytettävissä olevat kentät" - -msgid "Framerate" -msgstr "Kuvanopeus" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Hidas (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Keskitaso (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Nopea (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Erittäin nopea (%1 fps)" - -msgid "No analyzer" -msgstr "Ei visualisointia" - -msgid "Block analyzer" -msgstr "" - -msgid "Boom analyzer" -msgstr "" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Esivahvistus" - -msgid "Custom" -msgstr "Oma" - -msgid "Classical" -msgstr "" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Täysi basso" - -msgid "Full Treble" -msgstr "Täysi diskantti" - -msgid "Full Bass + Treble" -msgstr "Täysi basso ja diskantti" - -msgid "Laptop/Headphones" -msgstr "Kannettava/kuulokkeet" - -msgid "Large Hall" -msgstr "Suuri halli" - -msgid "Live" -msgstr "" - -msgid "Party" -msgstr "" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "Tallenna asetus" - -msgid "Name" -msgstr "Nimi" - -msgid "Delete preset" -msgstr "Poista asetus" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Haluatko varmasti poistaa asetuksen \"%1\"?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Tiedoston tyyppi" - -msgid "Length" -msgstr "Kesto" - -msgid "Samplerate" -msgstr "Näytteenottotaajuus" - -msgid "Bit depth" -msgstr "Bittisyys" - -msgid "Bitrate" -msgstr "Bittinopeus" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Näytä kansikuva" - -msgid "Show song technical data" -msgstr "Näytä kappaleen tekniset tiedot" - -msgid "Show song lyrics" -msgstr "Näytä laulunsanat" - -msgid "Automatically search for song lyrics" -msgstr "Etsi laulunsanoja automaattisesti" - -msgid "No song playing" -msgstr "" - -#, qt-format -msgid "%1 song" -msgstr "%1 kappale" - -#, qt-format -msgid "%1 songs" -msgstr "%1 kappaletta" - -#, qt-format -msgid "%1 artist" -msgstr "%1 esittäjä" - -#, qt-format -msgid "%1 artists" -msgstr "%1 esitäjää" - -#, qt-format -msgid "%1 album" -msgstr "%1 albumi" - -#, qt-format -msgid "%1 albums" -msgstr "%1 albumia" - -msgid "kbps" -msgstr "kb/s" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "Useita esittäjiä" - -msgid "Loading..." -msgstr "Ladataan..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "Päivitetään kirjastoa" - -#, qt-format -msgid "Updating %1" -msgstr "Päivitetään %1" - -msgid "Your collection is empty!" -msgstr "Kirjasto on tyhjä!" - -msgid "Click here to add some music" -msgstr "Napsauta tästä lisätäksesi musiikkia" - -msgid "Append to current playlist" -msgstr "Lisää nykyiselle soittolistalle" - -msgid "Replace current playlist" -msgstr "Korvaa nykyinen soittolista" - -msgid "Open in new playlist" -msgstr "Avaa uudessa soittolistassa" - -msgid "Search for this" -msgstr "Hae tätä" - -msgid "Edit track information..." -msgstr "Muokkaa kappaleen tietoja..." - -msgid "Edit tracks information..." -msgstr "Muokkaa kappaleen tietoja..." - -msgid "Rescan song(s)" -msgstr "" - -msgid "Show in various artists" -msgstr "Näytä kohdassa \"Useita esittäjiä\"" - -msgid "Don't show in various artists" -msgstr "Älä näytä kohdassa \"Useita esittäjiä\"" - -msgid "There are other songs in this album" -msgstr "Albumilla on muita kappaleita" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "Näytä" - -msgid "Group by" -msgstr "Järjestä" - -msgid "Display options" -msgstr "Näkymäasetukset" - -msgid "Group by Album artist/Album" -msgstr "Ryhmitä albumin esittäjän/albumin mukaan" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "Järjestä esittäjän/albumin mukaan" - -msgid "Group by Artist/Album - Disc" -msgstr "" - -msgid "Group by Artist/Year - Album" -msgstr "Järjestä esittäjän/vuoden - albumin mukaan" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Genre/Album artist/Album" -msgstr "" - -msgid "Group by Genre/Artist/Album" -msgstr "Järjestä tyylin/esittäjän/albumin mukaan" - -msgid "Group by Album Artist" -msgstr "Ryhmitä albumin esittäjän perusteella" - -msgid "Group by Artist" -msgstr "Järjestä esittäjän mukaan" - -msgid "Group by Album" -msgstr "Järjestä albumin mukaan" - -msgid "Group by Genre/Album" -msgstr "Järjestä tyylin/albumin mukaan" - -msgid "Advanced grouping..." -msgstr "Kirjaston tarkempi järjestely..." - -msgid "Grouping Name" -msgstr "Ryhmittelyn nimi" - -msgid "Grouping name:" -msgstr "Ryhmittelyn nimi:" - -msgid "First level" -msgstr "Ensimmäinen taso" - -msgid "Second Level" -msgstr "Toinen taso" - -msgid "Third Level" -msgstr "Kolmas taso" - -msgid "None" -msgstr "Ei mitään" - -msgid "Album artist" -msgstr "Albumin esittäjä" - -msgid "Artist" -msgstr "Esittäjä" - -msgid "Album" -msgstr "Albumi" - -msgid "Album - Disc" -msgstr "Albumi - Levy" - -msgid "Year - Album" -msgstr "Vuosi - Albumi" - -msgid "Year - Album - Disc" -msgstr "Vuosi - Albumi - Levy" - -msgid "Original year - Album" -msgstr "Alkuperäinen vuosi - albumi" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "Levy" - -msgid "Year" -msgstr "Vuosi" - -msgid "Original year" -msgstr "Alkuperäinen vuosi" - -msgid "Genre" -msgstr "Tyylilaji" - -msgid "Composer" -msgstr "Säveltäjä" - -msgid "Performer" -msgstr "Esittäjä" - -msgid "Grouping" -msgstr "Ryhmittely" - -msgid "File type" -msgstr "Tiedostotyyppi" - -msgid "Format" -msgstr "Muoto" - -msgid "Sample rate" -msgstr "Näytteenottotaajuus" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Nimi" - -msgid "Track" -msgstr "Kappale" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Kommentti" - -msgid "Source" -msgstr "Lähde" - -msgid "Mood" -msgstr "Mieliala" - -msgid "Rating" -msgstr "Arvio" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Lataa soittolista" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Ei osumia haulle. Tyhjennä hakukenttä näyttääksesi koko soittolistan uudelleen." - -msgid "stop" -msgstr "pysäytä" - -msgid "Never" -msgstr "Ei koskaan" - -msgid "&Hide..." -msgstr "Piilota..." - -msgid "&Stretch columns to fit window" -msgstr "&Sovita sarakkeet ikkunan leveyteen" - -msgid "&Reset columns to default" -msgstr "" - -msgid "&Lock rating" -msgstr "&Lukitse arvio" - -msgid "&Align text" -msgstr "&Tasaa teksti" - -msgid "&Left" -msgstr "&Vasemmalle" - -msgid "&Center" -msgstr "&Keskelle" - -msgid "&Right" -msgstr "&Oikealle" - -#, qt-format -msgid "&Hide %1" -msgstr "Piilota %1" - -msgid "New folder" -msgstr "Uusi kansio" - -msgid "Delete" -msgstr "Poista" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Tallenna soittolista" - -msgid "Enter the name of the folder" -msgstr "Anna kansion nimi" - -msgid "Copy to device" -msgstr "Kopioi laitteeseen" - -msgid "Playlist must be open first." -msgstr "Soittolista täytyy avata ensin." - -msgid "Remove playlists" -msgstr "Poista soittolistat" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Haluatko varmasti poistaa %1 soittolistaa suosikeistasi?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Voit lisätä soittolistan suosikkeihin napsauttamalla tähteä soittolistan nimen vierestä" - -msgid "Favorited playlists will be saved here" -msgstr "Suosikkeihin lisätyt soittolistat tallennetaan tänne" - -msgid "Couldn't create playlist" -msgstr "Soittolistan luominen epäonnistui" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Tallenna soittolista" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "valittuna %1 /" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automaattinen" - -msgid "Relative" -msgstr "Suhteellisia" - -msgid "Absolute" -msgstr "Absoluuttisia" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Sulje soittolista" - -msgid "Rename playlist..." -msgstr "Nimeä soittolista uudelleen..." - -msgid "Save playlist..." -msgstr "Tallenna soittolista..." - -msgid "Rename playlist" -msgstr "Nimeä soittolista uudelleen" - -msgid "Enter a new name for this playlist" -msgstr "Anna uusi nimi tälle soittolistalle" - -msgid "Remove playlist" -msgstr "Poista soittolista" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Olet aikeissa poistaa soittolistan, joka ei ole osa suosikkisoittolistojasi: soittolista poistetaan (toimintoa ei voi perua.) \n" -"Haluatko varmasti jatkaa?" - -msgid "Warn me when closing a playlist tab" -msgstr "Varoita suljettaessa soittolistan sisältävää välilehteä" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Tämän valinnan voi vaihtaa asetuksien kohdasta \"Toiminta\"." - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "lisää %n kappaletta" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "poista %n kappaletta" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "siirrä %n kappaletta" - -msgid "sort songs" -msgstr "järjestä kappaleet" - -msgid "shuffle songs" -msgstr "sekoita kappaleet" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "" - -msgid "Loading tracks" -msgstr "Ladataan kappaleita" - -msgid "Loading tracks info" -msgstr "Lataa kappaleen tietoja" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Kaikki soittolistat (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1-soittolistat (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Ladataan älykästä soittolistaa" - -msgid "Collection search" -msgstr "" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "Hakusanat" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "" - -msgid "Search options" -msgstr "Hakuasetukset" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Valitse montako kappaletta soittolista sisältää ja missä järjestyksessä." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 kappaletta löytyi (näytetään %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 kappaletta löytyi" - -msgid "after" -msgstr "jälkeen" - -msgid "before" -msgstr "ennen" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "välillä" - -msgid "contains" -msgstr "sisältää" - -msgid "does not contain" -msgstr "ei sisällä" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "suurempi kuin" - -msgid "less than" -msgstr "pienempi kuin" - -msgid "equals" -msgstr "yhtäsuuri" - -msgid "not equals" -msgstr "ei yhtä suuri kuin" - -msgid "empty" -msgstr "tyhjä" - -msgid "not empty" -msgstr "ei tyhjä" - -msgid "A-Z" -msgstr "A-Ö" - -msgid "Z-A" -msgstr "Ö-A" - -msgid "oldest first" -msgstr "vanhin ensin" - -msgid "newest first" -msgstr "uusin ensin" - -msgid "shortest first" -msgstr "lyhin ensin" - -msgid "longest first" -msgstr "pisin ensin" - -msgid "smallest first" -msgstr "pienin ensin" - -msgid "biggest first" -msgstr "suurin ensin" - -msgid "Hours" -msgstr "tuntia" - -msgid "Days" -msgstr "päivää" - -msgid "Weeks" -msgstr "viikkoa" - -msgid "Months" -msgstr "kuukautta" - -msgid "Years" -msgstr "vuotta" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "Lisää hakusana" - -msgid "Newest tracks" -msgstr "Uusimmat kappaleet" - -msgid "50 random tracks" -msgstr "50 satunnaista kappaletta" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "" - -msgid "Last played" -msgstr "Viimeksi soitettu" - -msgid "Most played" -msgstr "Eniten toistetut" - -msgid "Favourite tracks" -msgstr "Suosikkikappaleet" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "Kaikki kappaleet" - -msgid "Dynamic random mix" -msgstr "" - -msgid "New smart playlist..." -msgstr "Uusi älykäs soittolista..." - -msgid "Play next" -msgstr "Toista seuraava" - -msgid "Edit smart playlist..." -msgstr "Muokkaa älykästä soittolistaa..." - -msgid "Delete smart playlist" -msgstr "Poista älykäs soittolista" - -msgid "Smart playlist" -msgstr "Älykäs soittolista" - -msgid "Playlist type" -msgstr "Soittolistan tyyppi" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "" - -msgid "Finish" -msgstr "" - -msgid "Choose a name for your smart playlist" -msgstr "Valitse älykkäälle soittolistallesi nimi" - -msgid "Abort" -msgstr "Keskeytä" - -msgid "All albums" -msgstr "Kaikki albumit" - -msgid "Albums with covers" -msgstr "Albumit kansikuvineen" - -msgid "Albums without covers" -msgstr "Albumit vailla kansikuvia" - -msgid "Really cancel?" -msgstr "Haluatko todella perua?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Tämän ikkunan sulkeminen lopettaa albumikansien etsimisen." - -msgid "Don't stop!" -msgstr "Älä lopeta!" - -msgid "All artists" -msgstr "Kaikki esittäjät" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Löydetty %1 / %2 kansikuvaa (%3 epäonnistui)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 siirretty" - -msgid "Export finished" -msgstr "Vienti valmistui" - -msgid "No covers to export." -msgstr "Ei kansikuvia vietäväksi." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Vietiin %1/%2 kansikuvaa (%3 ohitettu)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Kansikuvat kohteesta %1" - -msgid "Search" -msgstr "Etsi" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Kuvat (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Kuvat (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Kaikki tiedostot (*)" - -msgid "Load cover from disk..." -msgstr "Lataa kansikuva levyltä..." - -msgid "Save cover to disk..." -msgstr "Tallenna levyn kansikuva kiintolevylle..." - -msgid "Load cover from URL..." -msgstr "Lataa kansikuva osoitteesta..." - -msgid "Search for album covers..." -msgstr "Etsi kansikuvia..." - -msgid "Unset cover" -msgstr "Poista kansikuva" - -msgid "Delete cover" -msgstr "" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "Näytä oikeassa koossa..." - -msgid "Search automatically" -msgstr "Etsi automaattisesti" - -msgid "Load cover from disk" -msgstr "Lataa kansikuva levyltä" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "tuntematon" - -msgid "Save album cover" -msgstr "Tallenna albumin kansikuva" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "Yhteensä verkko pyyntöjä tehty" - -msgid "Average image size" -msgstr "Kuvatiedoston koko keskimäärin" - -msgid "Total bytes transferred" -msgstr "Yhteensä tavuja siirretty" - -msgid "Fetching cover error" -msgstr "Virhe kansikuvan noudossa" - -msgid "The site you requested does not exist!" -msgstr "Hakemaasi sivua ei ole olemassa!" - -msgid "The site you requested is not an image!" -msgstr "Hakemasi sivu ei ole kuva!" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "Avaa tämä sivu selaimessasi" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "Yleiset" - -msgid "User interface" -msgstr "Käyttöliittymä" - -msgid "Streaming" -msgstr "Striimaus" - -msgid "Add directory..." -msgstr "Lisää kansio..." - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "Käytä Tidal-asetuksia tunnistautumiseen." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 vaatii tunnistautumisen." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 ei vaadi tunnistautumista." - -msgid "No provider selected." -msgstr "" - -msgid "Authentication failed" -msgstr "Tunnistautuminen epäonnistui" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Valitse taustakuva" - -msgid "OSD Preview" -msgstr "Kuvaruutunäytön esikatselu" - -msgid "Drag to reposition" -msgstr "Vaihda sijaintia vetämällä" - -msgid "About Strawberry" -msgstr "Tietoa Strawberrystä" - -#, qt-format -msgid "Version %1" -msgstr "Versio %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "" - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Sinun pitäisi olla saanut kopio GNU:n GPL -lisenssistä tämän ohjelman mukana. Jos et, katso %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Jos pidät Strawberrystä ja sinulla on sille käyttöä, harkitse sponsorointia tai lahjoitusta." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Voit sponsoroida tekijää %1:ssa. Voit myös tehdä kertalahjoituksen osoiteessa %2." - -msgid "Author and maintainer" -msgstr "Tekijä ja ylläpitäjä" - -msgid "Contributors" -msgstr "Tekijät" - -msgid "Clementine authors" -msgstr "Clementinen tekijät" - -msgid "Clementine contributors" -msgstr "Clementinen tekijät" - -msgid "Thanks to" -msgstr "Kiitos" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Kiitos kaikille muille Amarokin ja Clementinen kehittäjille." - -msgid "(different across multiple songs)" -msgstr "(erilainen kaikille kappaleille)" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "Edellinen" - -msgid "Next" -msgstr "Seuraava" - -msgid "Saving tracks" -msgstr "Tallennetaan kappaleita" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Kansikuvaa ei ole asetettu" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Alkuperäiset tunnisteet" - -msgid "Suggested tags" -msgstr "Ehdotetut tunnisteet" - -msgid "Delete files" -msgstr "Poista tiedostot" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "Haluatko varmasti jatkaa?" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Suuri sivupalkki" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Pieni sivupalkki" - -msgid "Plain sidebar" -msgstr "Pelkistetty sivupalkki" - -msgid "Tabs on top" -msgstr "Välilehdet ylhäällä" - -msgid "Icons on top" -msgstr "Kuvakkeet ylhäällä" - -msgid "Available" -msgstr "Käytettävissä" - -msgid "New songs" -msgstr "Uudet kappaleet" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Käytetty" - -msgid "Clear" -msgstr "Tyhjennä" - -msgid "Reset" -msgstr "Oletukset" - -msgid "Small album cover" -msgstr "Pieni kansikuva" - -msgid "Large album cover" -msgstr "Suuri kansikuva" - -msgid "Fit cover to width" -msgstr "Sovita kansi leveyteen" - -msgid "Show above status bar" -msgstr "Näytä tilapalkin yläpuolella" - -msgid "You are signed in." -msgstr "Olet kirjautunut sisään." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Olet kirjautunut tunnuksella %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Vanhenee %1" - -#, qt-format -msgid "disc %1" -msgstr "levy %1" - -#, qt-format -msgid "track %1" -msgstr "kappale %1" - -msgid "Paused" -msgstr "Keskeytetty" - -msgid "Stopped" -msgstr "Pysäytetty" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Lopeta toisto kappaleen jälkeen: %1" - -msgid "On" -msgstr "Päällä" - -msgid "Off" -msgstr "Pois" - -msgid "Playlist finished" -msgstr "Soittolista soitettiin loppuun" - -#, qt-format -msgid "Volume %1%" -msgstr "Äänenvoimakkuus %1 %" - -msgid "Don't shuffle" -msgstr "Älä sekoita" - -msgid "Shuffle all" -msgstr "Sekoita kaikki" - -msgid "Shuffle tracks in this album" -msgstr "Sekoita tämän albumin kappaleet" - -msgid "Shuffle albums" -msgstr "Sekoita albumit" - -msgid "Don't repeat" -msgstr "Älä kertaa" - -msgid "Repeat track" -msgstr "Kertaa kappale" - -msgid "Repeat album" -msgstr "Kertaa albumi" - -msgid "Repeat playlist" -msgstr "Kertaa soittolista" - -msgid "Stop after every track" -msgstr "" - -msgid "Intro tracks" -msgstr "Intro-kappaleet" - -#, qt-format -msgid "Configure %1..." -msgstr "%1 - asetukset..." - -msgid "Add to artists" -msgstr "Lisää esittäjiin" - -msgid "Add to albums" -msgstr "Lisää albumeihin" - -msgid "Add to songs" -msgstr "Lisää kappaleisiin" - -msgid "Enter search terms above to find music" -msgstr "" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "" - -msgid "Remove from favorites" -msgstr "" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 Scrobbler-tunnistautuminen" - -msgid "Open URL in web browser?" -msgstr "Avataanko osoite verkkoselaimessa?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "URL-osoitetta ei voitu avata. Ole hyvä ja kokeile avata URL selaimessasi" - -msgid "Invalid reply from web browser. Missing token." -msgstr "" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Scrobbler %1 virhe: %2" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz-tunnistautuminen" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "Käyttäjätunnus puuttuu, kirjaudu ensin last.fm:ään." - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "Esittäjän nimen ensimmäinen kirjain" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Bittinopeus" - -msgid "File extension" -msgstr "Tiedostopääte" - -msgid "Error copying songs" -msgstr "Virhe kappaleita kopioidessa" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Kappaleita kopioitaessa ilmeni virheitä. Seuraavien kappaleiden kopiointi epäonnistui:" - -msgid "Error deleting songs" -msgstr "Virhe kappaleita poistaessa" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Kappaleita poistaessa ilmeni virheitä. Seuraavien kappaleiden poisto epäonnistui:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "Edellinen kappale" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "Vaimenna" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "Tykkää" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Paina näppäinyhdistelmää käyttääksesi %1 ..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "\"%1\"-komentoa ei voitu suorittaa." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Pikanäppäin toiminnolle %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "X11-pikanäppäinten käyttöä ei %1 suositella ja se voi aiheuttaa näppäimistön muuttumisen reagoimattomaksi." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "Puskuroidaan" - -msgid "D-Bus path" -msgstr "D-Bus-polku" - -msgid "Serial number" -msgstr "Sarjanumero" - -msgid "Mount points" -msgstr "Liitoskohdat" - -msgid "Partition label" -msgstr "Osion nimike" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Yhdistä laite" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Kytkit tämän laitteen tähän tietokoneeseen ensimmäistä kertaa. Strawberry etsii musiikkitiedostoja laitteesta - tämä saattaa kestää hetken." - -msgid "This device will not work properly" -msgstr "Laite ei tule toimimaan kunnolla" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Kyseessä on MTP-laite, mutta Strawberry on käännetty ilman libmtp-tukea." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Jos jatkat, laite toimii hitaasti ja sille kopioidut kappaleet eivät välttämättä toimi." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Kyseessä on iPod, mutta Strawberry on käännetty ilman libgpod-tukea." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Tämän tyyppinen laite ei ole tuettu: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Päivitetään %1 %..." - -msgid "Not connected" -msgstr "Ei yhdistetty" - -msgid "Not mounted - double click to mount" -msgstr "Ei liitetty - kaksoisnapsauta liittääksesi" - -msgid "Double click to open" -msgstr "Kaksoisnapsauta avataksesi" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 kappale%2" - -msgid "Safely remove device" -msgstr "Poista laite turvallisesti" - -msgid "Forget device" -msgstr "Unohda laite" - -msgid "Device properties..." -msgstr "Laitteen ominaisuudet..." - -msgid "Delete from device..." -msgstr "Poista laitteelta..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Laitteen unohtaminen poistaa sen listalta. Strawberry joutuu käydä laitteen kaikki kappaleet uudelleen läpi, kun laite seuraavan kerran yhdistetään." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Nämä tiedostot poistetaan laitteelta, haluatko varmasti jatkaa?" - -msgid "Model" -msgstr "Malli" - -msgid "Manufacturer" -msgstr "Valmistaja" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Ladataan iPod-tietokantaa" - -msgid "An error occurred loading the iTunes database" -msgstr "iTunes-tietokantaa ladatessa tapahtui virhe" - -msgid "Mount point" -msgstr "Liitoskohta" - -msgid "Device" -msgstr "Laite" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Ladataan MTP-laitetta" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "MTP-laitteen %1 yhdistämisessä tapahtui virhe" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "GStreamer-elementin \"%1\" luonti epäonnistui - varmista, että kaikki vaaditut GStreamer-liitännäiset on asennettu" - -#, qt-format -msgid "Successfully written %1" -msgstr "Onnistuneesti kirjoitettu %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Muunnetaan %1 tiedostoa käyttäen %2 säiettä" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Virhe käsitellessä %1:%2" - -#, qt-format -msgid "Starting %1" -msgstr "Aloittaa %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Ei löydetty %1 -enkooderia, tarkista että sinulla on oikeat GStreamer-liitännäiset asennettuna" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Ei löydetty %1 -multiplekseriä, tarkista että sinulla on oikeat GStreamer-liitännäiset asennettuna" - -msgid "Start transcoding" -msgstr "Aloita muunnos" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n jäljellä" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n valmistui" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n epäonnistui" - -msgid "Add files to transcode" -msgstr "Lisää tiedostoja muunnettavaksi" - -msgid "Open a directory to import music from" -msgstr "Avaa kansio, josta musiikki tuodaan" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "CDDA-raitojen kysely epäonnistui." - -msgid "Server URL is invalid." -msgstr "Palvelimen osoite ei kelpaa" - -msgid "Missing username or password." -msgstr "Puuttuva käyttäjänimi tai salasana." - -msgid "Subsonic server URL is invalid." -msgstr "Subsonic-palvelimen osoite ei kelpaa" - -msgid "Missing Subsonic username or password." -msgstr "Subsonic-käyttäjätunnus tai -salasana puuttuu." - -msgid "Retrieving albums..." -msgstr "Haetaan albumeita..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "" - -msgid "Configuration incomplete" -msgstr "Asetukset keskeneräiset" - -msgid "Missing server url, username or password." -msgstr "Puuttuva palvelimen osoite, käyttäjätunnus tai salasana" - -msgid "Configuration incorrect" -msgstr "" - -msgid "Test successful!" -msgstr "Testi onnistui!" - -msgid "Test failed!" -msgstr "Testi epäonnistui" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "Tidalin API-avain puuttuu." - -msgid "Missing Tidal username." -msgstr "Puuttuva Tidal-käyttäjätunnus" - -msgid "Missing Tidal password." -msgstr "Puuttuva Tidal-salasana" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "" - -msgid "Not authenticated with Tidal." -msgstr "" - -msgid "Missing Tidal API token, username or password." -msgstr "Tidalin API-avain, käyttäjätunnus tai salasana puuttuu." - -msgid "Authenticating..." -msgstr "Tunnistaudutaan..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "Hakee..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "" - -msgid "Cancelled." -msgstr "Peruutettu." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "Puuttuva Tidal-asiakas-ID" - -msgid "Missing API token." -msgstr "API-avain puuttuu." - -msgid "Missing username." -msgstr "Käyttäjätunnus puuttuu." - -msgid "Missing password." -msgstr "Salasana puuttuu." - -msgid "Spotify Authentication" -msgstr "Spotify-tunnistautuminen" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "" - -msgid "Missing Qobuz app ID." -msgstr "Qobuz-sovellustustunniste puuttuu." - -msgid "Missing Qobuz username." -msgstr "Gobuz-käyttäjätunnus puuttuu." - -msgid "Missing Qobuz password." -msgstr "Qobuz-salasana puuttuu." - -msgid "Not authenticated with Qobuz." -msgstr "" - -msgid "Missing Qobuz app ID or secret." -msgstr "Qobuz-sovellustunniste tai -salaisuus puuttuu." - -msgid "Missing app id." -msgstr "" - -msgid "Show moodbar" -msgstr "Näytä mielialapalkki" - -msgid "Moodbar style" -msgstr "Mielialapalkin tyyli" - -msgid "Normal" -msgstr "Tavallinen" - -msgid "Angry" -msgstr "Vihainen" - -msgid "Frozen" -msgstr "" - -msgid "Happy" -msgstr "Iloinen" - -msgid "System colors" -msgstr "Järjestelmän värit" - -msgid "Strawberry Music Player" -msgstr "Strawberry-musiikkisoitin" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Toista" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "Pysäytä" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "Seuraava kappale" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Lopeta" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "Tyhjennä soittolista" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Numeroi kappaleet tässä järjestyksessä ..." - -msgid "Set value for all selected tracks..." -msgstr "Aseta arvo kaikille valituille kappaleille..." - -msgid "Edit tag..." -msgstr "Muokkaa tunnistetta..." - -msgid "&Settings..." -msgstr "A&setukset" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "Tietoa Strawberrystä" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "Lisää tiedosto..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "Avaa tiedosto..." - -msgid "Open audio &CD..." -msgstr "Avaa audio-&CD" - -msgid "&Cover Manager" -msgstr "Kansikuvaselain" - -msgid "C&onsole" -msgstr "K&onsoli" - -msgid "&Shuffle mode" -msgstr "&Sekoita" - -msgid "&Repeat mode" -msgstr "Kertaa" - -msgid "Remove from playlist" -msgstr "Poista soittolistalta" - -msgid "&Equalizer" -msgstr "Taajuuskorjain" - -msgid "&Transcode Music" -msgstr "" - -msgid "Add &folder..." -msgstr "Lisää kansio..." - -msgid "&Jump to the currently playing track" -msgstr "" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "Uusi soittolista" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Lataa soittolista..." - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Siirry seuraavaan soittolistaan" - -msgid "Go to previous playlist tab" -msgstr "Siirry edelliseen soittolistaan" - -msgid "&Update changed collection folders" -msgstr "" - -msgid "About &Qt" -msgstr "Tietoa &Qt:stä" - -msgid "&Mute" -msgstr "&Mykistä" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "Suorita koko kirjaston läpikäynti" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Täydennä tunnisteet automaattisesti..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Valitse scrobbling" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "Lisää tiedosto(ja) muuntajaan" - -msgid "Add file to transcoder" -msgstr "Lisää tiedosto muuntajaan" - -msgid "Add stream..." -msgstr "Lisää virta..." - -msgid "Show sidebar" -msgstr "Näytä sivupalkki" - -msgid "Import data from last.fm..." -msgstr "Tuo tiedot last.fm-palvelusta..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Musiikki" - -msgid "P&laylist" -msgstr "Soitto&lista" - -msgid "Help" -msgstr "Ohje" - -msgid "&Tools" -msgstr "&Työkalut" - -msgid "Collection advanced grouping" -msgstr "Kirjaston tarkennettu ryhmittely" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "Järjestä kirjasto..." - -msgid "Second level" -msgstr "Toinen taso" - -msgid "Third level" -msgstr "Kolmas taso" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "Kokoelmasuodatin" - -msgid "Entire collection" -msgstr "Koko kokoelma" - -msgid "Added today" -msgstr "Lisätty tänään" - -msgid "Added this week" -msgstr "Lisätty tällä viikolla" - -msgid "Added within three months" -msgstr "Lisätty kolmen kuukauden sisään" - -msgid "Added this year" -msgstr "Lisätty tänä vuonna" - -msgid "Added this month" -msgstr "Lisätty tässä kuussa" - -msgid "Save current grouping" -msgstr "Tallenna nykyinen ryhmittely" - -msgid "Manage saved groupings" -msgstr "Hallitse tallennettuja ryhmittelyjä" - -msgid "Enter search terms here" -msgstr "Etsi tästä" - -msgid "Form" -msgstr "Lomake" - -msgid "Saved Grouping Manager" -msgstr "" - -msgid "Remove" -msgstr "Poista" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "Tiedostopolut" - -msgid "This can be changed later through the preferences" -msgstr "Tämän voi muuttaa myöhemmin asetuksista" - -msgid "Remember my choice" -msgstr "Muista valintani" - -msgid "Stop after each track" -msgstr "" - -msgid "Repeat" -msgstr "Kertaa" - -msgid "Shuffle" -msgstr "Sekoita" - -msgid "Dynamic mode is on" -msgstr "" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "Laajenna" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "Siirrä alas" - -msgid "Move up" -msgstr "Siirrä ylös" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "Lajittelu" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "Lajitteluperuste" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "Näytä kaikki kappaleet" - -msgid "Only show the first" -msgstr "Näytä pelkästään ensimmäinen" - -msgid " songs" -msgstr "kappaleet" - -msgid "Preview" -msgstr "Esikatselu" - -msgid "and" -msgstr "ja" - -msgid "ago" -msgstr "sitten" - -msgid "New smart playlist" -msgstr "Uusi älykäs soittolista" - -msgid "Edit smart playlist" -msgstr "Muokkaa älykästä soittolistaa" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "Vie kansikuvat" - -msgid "Output" -msgstr "Ulostulo" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Syötä tiedostonimi kansille (ei tiedostopäätettä):" - -msgid "Export downloaded covers" -msgstr "Vie ladatut kansikuvat" - -msgid "Export embedded covers" -msgstr "Vie upotetut kansikuvat" - -msgid "Existing covers" -msgstr "Olemassa olevat kansikuvat" - -msgid "Do not overwrite" -msgstr "Älä korvaa" - -msgid "O&verwrite all" -msgstr "" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "Koko" - -msgid "Scale size" -msgstr "Skaalaa koko" - -msgid "Size:" -msgstr "Koko:" - -msgid "Pixel" -msgstr "Pikseli" - -msgid "Cover Manager" -msgstr "Kansikuvaselain" - -msgid "Fetch automatically" -msgstr "Nouda automaattisesti" - -msgid "Load" -msgstr "Lataa" - -msgid "Add to playlist" -msgstr "Lisää soittolistaan" - -msgid "View" -msgstr "Näkymä" - -msgid "Total albums:" -msgstr "Albumeja yhteensä:" - -msgid "Without cover:" -msgstr "Ilman kansikuvaa:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Nouda puuttuvat kansikuvat" - -msgid "Export Covers" -msgstr "Vie kansikuvat" - -msgid "Fetch completed" -msgstr "Nouto suoritettu" - -msgid "Load cover from URL" -msgstr "Lataa kansikuva osoitteesta" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Kirjoita URL-osoite kansikuvien lataamiseen Internetistä:" - -msgid "Settings" -msgstr "Asetukset" - -msgid "Behavior" -msgstr "Toiminta" - -msgid "Show system tray icon" -msgstr "" - -msgid "Keep running in the background when the window is closed" -msgstr "Pidä käynnissä taustalla, kun ikkuna suljetaan" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Jatka toistoa sovelluksen käynnistyttyä" - -msgid "Show playing widget" -msgstr "" - -msgid "On startup" -msgstr "Käynnistyksessä" - -msgid "Remember from &last time" -msgstr "Muista &viime kerrasta" - -msgid "Show the main window" -msgstr "Näytä pääikkuna" - -msgid "Hide the main window" -msgstr "Piilota pääikkuna" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "Kieli" - -msgid "Use the system default" -msgstr "Käytä järjestelmän oletusta" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Strawberry tulee käynnistää uudelleen, jos vaihdat kieltä." - -msgid "Using the menu to add a song will..." -msgstr "Valikon avulla kappaleen lisäys..." - -msgid "Never start playing" -msgstr "Älä koskaan aloita toistoa" - -msgid "Play if there is nothing already playing" -msgstr "Aloita toisto, jos mikään ei soi parhaillaan" - -msgid "Always start playing" -msgstr "Aloita aina toisto" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Soittimen \"Edellinen\"-painiketta painettaessa..." - -msgid "Jump to previous song right away" -msgstr "Siirry edelliseen kappaleeseen välittömästi" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Käynnistä kappale uudelleen, siirry edelliseen jos painetaan uudellaan" - -msgid "Double clicking a song will..." -msgstr "Kappaleen kaksoisnapsautus..." - -msgid "Append to the playlist" -msgstr "Lisää soittolistalle" - -msgid "Replace the playlist" -msgstr "Korvaa soittolista" - -msgid "Add to the queue" -msgstr "Lisää jonoon" - -msgid "Double clicking a song in the playlist will..." -msgstr "Soittolistalla olevaa kappaletta kaksoisnapsauttaessa..." - -msgid "Change the currently playing song" -msgstr "Vaihda parhaillaan toistettavaa kappaletta" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Siirtyminen näppäimistön pikanäppäimiä tai hiiren rullaa käyttäen" - -msgid "Time step" -msgstr "Aikasiirtymä" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Seuraavista kansioista lisätään musiikkia kirjastoa varten" - -msgid "Add new folder..." -msgstr "Lisää uusi kansio..." - -msgid "Remove folder" -msgstr "Poista kansio" - -msgid "Automatic updating" -msgstr "Automaattinen päivitys" - -msgid "Update the collection when Strawberry starts" -msgstr "Päivitä kirjasto Strawberry käynnistyessä" - -msgid "Monitor the collection for changes" -msgstr "Tarkkaile kirjastoa muutosten varalta" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Ensisijainen tiedostonimi albumikuvitukselle (pilkuin eroteltu)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Albumikuvitusta etsiessä Strawberry etsii kuvatiedostoja, jotka sisältävät yhden näistä sanoista.\n" -"Jos vastaavia tiedostoja ei löydy, Strawberry käyttää suurinta kansiossa olevaa kuvaa." - -msgid "Automatically open single categories in the collection tree" -msgstr "Laajenna automaattisesti yhden alitason sisältävät kohteet kirjaston puunäkymässä" - -msgid "Show dividers" -msgstr "Näytä erottimet" - -msgid "Show album cover art in collection" -msgstr "" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Albumien kansikuvien välimuisti" - -msgid "Enable Disk Cache" -msgstr "Ota levyvälimuisti käyttöön" - -msgid "Disk Cache Size" -msgstr "Levyvälimuistin koko" - -msgid "Current disk cache in use:" -msgstr "Levyvälimuistia käytössä:" - -msgid "Clear Disk Cache" -msgstr "Tyhjennä levyvälimuisti" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Äänen ulostulo" - -msgid "Engine" -msgstr "Moottori" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "Puskuri" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Puskurin kesto" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "Alaraja" - -msgid "Defaults" -msgstr "Oletusasetukset" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Käytä Replay Gainin metatietoja, jos saatavilla" - -msgid "Replay Gain mode" -msgstr "Replay Gain -tila" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (sama äänenvoimakkuus kaikille kappaleille)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Albumi (ihanteellinen voimakkuus kaikille kappaleille)" - -msgid "Apply compression to prevent clipping" -msgstr "Lisää vaimennusta äänisignaalin leikkautumisen estämiseksi" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Häivytys" - -msgid "Fade out when stopping a track" -msgstr "Häivytä, kun kappale pysäytetään" - -msgid "Cross-fade when changing tracks manually" -msgstr "Ristiinhäivytä kappaleet, kun käyttäjä vaihtaa kappaletta" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Ristiinhäivytä kappaleet, kun kappale vaihtuu automaattisesti" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Älä käytä ristihäivytystä samalla albumilla tai samassa CUE-tiedostossa oleville kappaleille" - -msgid "Fading duration" -msgstr "Häivytyksen kesto" - -msgid "Fade out on pause / fade in on resume" -msgstr "Häivytä keskeyttäessä ja palauttaessa kappaleen toisto" - -msgid "Add song artist tag" -msgstr "Lisää tunniste kappaleen esittäjä" - -msgid "Add song album tag" -msgstr "Lisää tunniste levyn nimi" - -msgid "Add song title tag" -msgstr "Lisää tunniste kappaleen nimi" - -msgid "Add song albumartist tag" -msgstr "Lisää tunniste levyn esittäjä" - -msgid "Add song year tag" -msgstr "Lisää kappaleen levytysvuoden tunniste" - -msgid "Add song composer tag" -msgstr "Lisää tunniste kappaleen säveltäjä" - -msgid "Add song performer tag" -msgstr "Lisää tunniste kappaleen esittäjä" - -msgid "Add song grouping tag" -msgstr "Lisää tunniste kappaleen ryhmitys" - -msgid "Add song disc tag" -msgstr "Lisää levyn numeron tunniste" - -msgid "Add song track tag" -msgstr "Lisää tunniste " - -msgid "Add song genre tag" -msgstr "Lisää tunniste kappaleen kategoria" - -msgid "Add song length tag" -msgstr "Lisää tunniste kappaleen kesto" - -msgid "Add song play count" -msgstr "Lisää kappaleen toistolaskuri" - -msgid "Add song skip count" -msgstr "Lisää kappaleen keskeyttämislaskuri" - -msgid "Add a new line if supported by the notification type" -msgstr "Lisää uusi rivi, jos ilmoitustyyppi sen sallii" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Lisää kappaleen tiedostonimi" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Lisää kappaleen osoite" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Lisää kappaleelle arvosana" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "Yhteenveto" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "Tekniset tiedot" - -msgid "Song Lyrics" -msgstr "Laulunsanat" - -msgid "Automatically search for album cover" -msgstr "Etsin kansikuvia automaattisesti" - -msgid "Font for headline" -msgstr "Otsikon fontti" - -msgid "Font" -msgstr "Kirjasin" - -msgid "Font size" -msgstr "Fontin koko" - -msgid " pt" -msgstr "pt" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "" - -msgid "Automatically select current playing track" -msgstr "" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "Soittolistoja tallennettaessa tiedostopolkujen tulee olla" - -msgid "A&utomatic" -msgstr "A&utomaattinen" - -msgid "Absolu&te" -msgstr "Absoluu&ttinen" - -msgid "Re&lative" -msgstr "Suhtee&llinen" - -msgid "As&k when saving" -msgstr "&Kysy tallennettaessa" - -msgid "Metadata" -msgstr "Metatiedot" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Jos käytössä, kappaleen napsauttaminen soittolistanäkymässä sallii tunnistearvon muokkauksen suoraan." - -msgid "Enable song metadata inline edition with click" -msgstr "Käytä kappaleen metadatan muokkausta napsautuksella" - -msgid "Write metadata when saving playlists" -msgstr "Kirjoita metatiedot tallentaessa soittolista" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Ota käyttöön" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "Näytä scrobble-painike" - -msgid "Show love button" -msgstr "Näytä tykkää-nappi" - -msgid "Submit scrobbles every" -msgstr "Lähetä scrobblet kerran" - -msgid " seconds" -msgstr " sekuntia" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "Paikallinen tiedosto" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Suoratoisto" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Kirjaudu sisään" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "" - -msgid "Covers" -msgstr "Kansikuvat" - -msgid "Cover providers" -msgstr "Kansikuvien tarjoajat" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Valitse kansikuvien hakemiseen käytettävät palvelut." - -msgid "Authentication" -msgstr "Tunnistautuminen" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Tallennetaan kansikuvia" - -msgid "Save album covers in album directory" -msgstr "" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "Tiedostonimi:" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "" - -msgid "Lowercase filename" -msgstr "Tiedoston nimi pienillä kirjaimilla" - -msgid "Replace spaces with dashes" -msgstr "Korvaa välilyönnit viivoilla" - -msgid "Lyrics" -msgstr "Laulunsanat" - -msgid "Lyrics providers" -msgstr "Laulunsanojen tarjoajat" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Valitse laulunsanojen hakemiseen käytettävät palvelut." - -msgid "Network Proxy" -msgstr "Verkon välityspalvelin" - -msgid "&Use the system proxy settings" -msgstr "Käytä järjestelmän välityspalvelinasetuksia" - -msgid "Direct internet connection" -msgstr "Suora internetyhteys" - -msgid "&Manual proxy configuration" -msgstr "&Manuaaliset välityspalvelimen asetukset" - -msgid "HTTP proxy" -msgstr "HTTP-välityspalvelin" - -msgid "SOCKS proxy" -msgstr "SOCKS-välityspalvelin" - -msgid "Port" -msgstr "Portti" - -msgid "Use authentication" -msgstr "Käytä tunnistatumista" - -msgid "Username" -msgstr "Käyttäjätunnus" - -msgid "Password" -msgstr "Salasana" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "Ulkoasu" - -msgid "Style" -msgstr "Tyyli" - -msgid "Use system theme icons" -msgstr "Käytä järjestelmäteeman kuvakkeita" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "Välilehtipalkin värit" - -msgid "&Use the system default color" -msgstr "Käytä järjestelmän oletusväriä" - -msgid "Use custom color" -msgstr "Käytä omaa väriä" - -msgid "Use gradient background" -msgstr "Käytä liukuväriä taustana" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "Taustakuva" - -msgid "Default bac&kground image" -msgstr "" - -msgid "&No background image" -msgstr "Ei taustakuvaa" - -msgid "The album cover of the currently playing song" -msgstr "Parhaillaan soivan kappaleen albumin kansikuva" - -msgid "Albu&m cover" -msgstr "Albu&min kansikuva" - -msgid "Custom image:" -msgstr "Omavalintainen kuva:" - -msgid "Browse..." -msgstr "Selaa..." - -msgid "Position" -msgstr "Sijainti" - -msgid "Upper Left" -msgstr "Vasen yläkulma" - -msgid "Upper Right" -msgstr "Oikea yläkulma" - -msgid "Middle" -msgstr "Keskellä" - -msgid "Bottom Left" -msgstr "Vasen alakulma" - -msgid "Bottom Right" -msgstr "Oikea alakulma" - -msgid "Max cover size" -msgstr "Kansikuvan maksimikoko" - -msgid "Stretch image to fill playlist" -msgstr "Venytä kuva soittolistan kokoiseksi" - -msgid "Keep aspect ratio" -msgstr "Säilytä kuvasuhde" - -msgid "Do not cut image" -msgstr "Älä leikkaa kuvaa" - -msgid "Blur amount" -msgstr "Sumennuksen määrä" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Läpinäkyvyys" - -msgid "40%" -msgstr "40 %" - -msgid "Icon sizes" -msgstr "Kuvakkeen koot" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "Ilmoitukset" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry voi ilmoittaa, kun kappale vaihtuu." - -msgid "Notification type" -msgstr "Ilmoituksen tyyppi" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Ei käytössä" - -msgid "Show a &native desktop notification" -msgstr "Näytä &natiivi työpöytäilmoitus" - -msgid "Show a pretty OSD" -msgstr "Näytä kuvaruutunäyttö" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "Yleiset asetukset" - -msgid "Popup duration" -msgstr "Ponnahdusikkunan kesto" - -msgid "Disable duration" -msgstr "Kytke kesto pois päältä" - -msgid "Show a notification when I change the volume" -msgstr "Näytä ilmoitus, kun vaihdan äänenvoimakkuutta" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Näytä ilmoitus, kun vaihdan toiston tai sekoituksen tilaa" - -msgid "Show a notification when I pause playback" -msgstr "Näytä ilmoitus, kun keskeytän toiston" - -msgid "Show a notification when I resume playback" -msgstr "" - -msgid "Include album art in the notification" -msgstr "Näytä kansikuva ilmoituksen yhteydessä" - -msgid "Custom message settings" -msgstr "Omavalintaisen viestin asetukset" - -msgid "Use a custom message for notifications" -msgstr "Käytä omaa viestiä ilmoituksissa" - -msgid "Body" -msgstr "Sisältö" - -msgid "Pretty OSD options" -msgstr "Kuvaruutunäytön valinnat" - -msgid "Background color" -msgstr "Taustaväri" - -msgid "Text options" -msgstr "Tekstivalinnat" - -msgid "Choose font..." -msgstr "Valitse kirjasin..." - -msgid "Choose color..." -msgstr "Valitse väri..." - -msgid "Background opacity" -msgstr "Taustan läpinäkyvyys" - -msgid "Basic Blue" -msgstr "Perussininen" - -msgid "Strawberry Red" -msgstr "Mansikanpunainen" - -msgid "Custom..." -msgstr "Mukautettu..." - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "Taajuuskorjain" - -msgid "Preset:" -msgstr "Asetus:" - -msgid "Enable equalizer" -msgstr "Käytä taajuuskorjainta" - -msgid "Enable stereo balancer" -msgstr "" - -msgid "Left" -msgstr "Vasen" - -msgid "Balance" -msgstr "Tasapaino" - -msgid "Right" -msgstr "Oikea" - -msgid "About" -msgstr "Tietoa" - -msgid "Strawberry Error" -msgstr "Strawberry-virhe" - -msgid "Console" -msgstr "Konsoli" - -msgid "Run" -msgstr "Aja" - -msgid "Edit track information" -msgstr "Muokkaa kappaleen tietoja" - -msgid "Date created" -msgstr "Luotu" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "Muokattu" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Viimeksi toistettu" - -msgid "Play count" -msgstr "Soittokertoja" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Bittivirta" - -msgid "Skip count" -msgstr "Ohituskerrat" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "Tiedostonimi" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Tiedostokoko" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Nollaa soittokerrat" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "Täydennä tunnisteet automaattisesti" - -msgid "Compilation" -msgstr "Kokoelma" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Tunnistenoutaja" - -msgid "Sorry" -msgstr "Pahoittelut" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry ei löytänyt tuloksia tälle tiedostolle" - -msgid "Select best possible match" -msgstr "Valitse paras mahdollinen vaihtoehto" - -msgid "Add Stream" -msgstr "Lisää virta" - -msgid "Enter the URL of a stream:" -msgstr "Syötä virran URL:" - -msgid "Enter username and password" -msgstr "Syötä käyttäjätunnus ja salasana" - -msgid "Import data from last.fm" -msgstr "Tuo tiedot last.fm-palvelusta" - -msgid "Choose data to import from last.fm" -msgstr "Valitse last.fm:stä tuotavat tiedot" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "Sulje" - -msgid "Cancel" -msgstr "Peruuta" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "Älä näytä tätä enää uudestaan." - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Napsauta vaihtaaksesi näkymää: aikaa jäljellä / kokonaisaika" - -msgid "You are not signed in." -msgstr "Et ole kirjautunut sisään" - -msgid "Sign out" -msgstr "Kirjaudu ulos" - -msgid "Signing in..." -msgstr "Kirjautuu sisään..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Esittäjät" - -msgid "Albums" -msgstr "Albumit" - -msgid "Songs" -msgstr "Kappaleet" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "esittäjät" - -msgid "albums" -msgstr "albumit" - -msgid "songs" -msgstr "kappaleet" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "Kohde" - -msgid "After copying..." -msgstr "Kopioinnin jälkeen..." - -msgid "Keep the original files" -msgstr "Säilytä alkuperäiset tiedostot" - -msgid "Delete the original files" -msgstr "Poista alkuperäiset tiedostot" - -msgid "Naming options" -msgstr "Nimeämisvalinnat" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Tietueet alkavat %-merkillä, esimerkiksi: %artist %album %title

\n\n" -"

Jos ympäröit tietueen sisältävän tekstin aaltosulkeilla, se piilotetaan, jos tietue on tyhjä.

" - -msgid "Insert..." -msgstr "Lisää..." - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "" - -msgid "Restrict characters to ASCII" -msgstr "" - -msgid "Allow extended ASCII characters" -msgstr "" - -msgid "Replace spaces with underscores" -msgstr "Korvaa välilyönnit alaviivoilla" - -msgid "Overwrite existing files" -msgstr "Korvaa olemassa olevat tiedostot" - -msgid "Copy album cover artwork" -msgstr "Kopioi albumien kansikuvat" - -msgid "Safely remove the device after copying" -msgstr "Poista laite turvallisesti kopioinnin jälkeen" - -msgid "Press a key" -msgstr "Paina näppäintä" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "Avaa..." - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Avaa Järjestelmän asetukset ja salli Strawberryn \"hallita tietokonettasi\" käyttääksesi Strawberryn yleisiä pikanäppäimiä." - -msgid "Shortcut" -msgstr "Pikanäppäin" - -msgctxt "Category label" -msgid "Action" -msgstr "Toiminto" - -msgid "&None" -msgstr "&Ei mitään" - -msgid "&Default" -msgstr "Oletus" - -msgid "&Custom" -msgstr "&Oma" - -msgid "Change shortcut..." -msgstr "Vaihda pikanäppäin..." - -msgid "Device Properties" -msgstr "Laitteen ominaisuudet" - -msgid "Icon" -msgstr "Kuvake" - -msgid "Hardware information" -msgstr "Laitetiedot" - -msgid "Hardware information is only available while the device is connected." -msgstr "Laitetiedot on saatavilla vain laitteen ollessa yhdistettynä." - -msgid "Information" -msgstr "Tiedot" - -msgid "Supported formats" -msgstr "Tuetut muodot" - -msgid "This device supports the following file formats:" -msgstr "Laite tukee seuraavia tiedostomuotoja:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry voi automaattisesti muuntaa tähän laitteeseen kopioitavan musiikin sen ymmärtämään muotoon." - -msgid "Do not convert any music" -msgstr "Älä muunna mitään musiikkia" - -msgid "Convert any music that the device can't play" -msgstr "Muuta musiikki, jota laite ei voi muuten toistaa" - -msgid "Convert all music" -msgstr "Muunna kaikki musiikki" - -msgid "Preferred format" -msgstr "Ensisijainen muoto" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Laitteen tulee olla yhdistettynä ja avattuna, jotta Strawberry voi tarkistaa, mitä tiedostomuotoja laite tukee." - -msgid "Open device" -msgstr "Avaa laite" - -msgid "Querying device..." -msgstr "Kysytään tietoja laitteelta..." - -msgid "File formats" -msgstr "Tiedostomuodot" - -msgid "Transcode Music" -msgstr "Muunna eri muotoon" - -msgid "Files to transcode" -msgstr "Muunnettavat tiedostot" - -msgid "Directory" -msgstr "Kansio" - -msgid "Add..." -msgstr "Lisää..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Lisää kaikki kappaleet kansiosta ja sen alakansioista" - -msgid "Import..." -msgstr "Tuo..." - -msgid "Output options" -msgstr "Muunnoksen asetukset" - -msgid "Audio format" -msgstr "Äänimuoto" - -msgid "Options..." -msgstr "Valinnat..." - -msgid "Alongside the originals" -msgstr "Yhteen alkuperäisten kanssa" - -msgid "Select..." -msgstr "Valitse..." - -msgid "Progress" -msgstr "Edistyminen" - -msgid "Details..." -msgstr "Tiedot..." - -msgid "Transcoder Log" -msgstr "Muunnosloki" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "Profiili" - -msgid "Main profile (MAIN)" -msgstr "Oletusprofiili (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Low complexity -profiili (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Scalable sampling rate -profiili (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Long term prediction -profiili (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Käytä väliaikaista melun muokkausta" - -msgid "Allow mid/side encoding" -msgstr "" - -msgid "Block type" -msgstr "Lohkotyyppi" - -msgid "Normal block type" -msgstr "Normaalilohkotyyppi" - -msgid "No short blocks" -msgstr "Ei lyhyitä lohkoja" - -msgid "No long blocks" -msgstr "Ei pitkiä lohkoja" - -msgid "Transcoding options" -msgstr "Muunnosvalinnat" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Laatu" - -msgid "Fast" -msgstr "Nopea" - -msgid "Best" -msgstr "Paras" - -msgid "Use bitrate management engine" -msgstr "Käytä bittinopeuden hallintakonetta" - -msgid "Target bitrate" -msgstr "Tavoiteltava bittinopeus" - -msgid "Minimum bitrate" -msgstr "Pienin bittinopeus" - -msgid "disabled" -msgstr "pois käytöstä" - -msgid "Maximum bitrate" -msgstr "Suurin bittinopeus" - -msgid "automatic" -msgstr "automaattinen" - -msgid "Average bitrate" -msgstr "Keskimääräinen bittinopeus" - -msgid "Encoding mode" -msgstr "Koodaustila" - -msgid "Auto" -msgstr "" - -msgid "Ultra wide band (UWB)" -msgstr "Todella laaja kaista (UWB)" - -msgid "Wide band (WB)" -msgstr "Laajakaistainen (WB)" - -msgid "Narrow band (NB)" -msgstr "Kapeakaistainen (NB)" - -msgid "Variable bit rate" -msgstr "Muuttuva bittinopeus" - -msgid "Voice activity detection" -msgstr "Äänen havaitseminen" - -msgid "Discontinuous transmission" -msgstr "Keskeytyvä siirto" - -msgid "Encoding complexity" -msgstr "Enkoodauksen kompleksisuus" - -msgid "Frames per buffer" -msgstr "Kehyksiä per puskuri" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "Opti&moi bittinopeus" - -msgid "Constant bitrate" -msgstr "Pysyvä bittinopeus" - -msgid "Encoding engine quality" -msgstr "Koodausmoottorin laatu" - -msgid "Standard" -msgstr "Normaali" - -msgid "High" -msgstr "Korkea" - -msgid "Force mono encoding" -msgstr "Pakota monokoodaus" - -msgid "Transcoding" -msgstr "Muunnos" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Nämä asetukset ovat käytössä \"Muunna eri muotoon\"-ikkunassa, ja muunnettaessa musiikkia ennen laitteelle kopiointia." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "Palvelimen URL" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Asetukset" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "Tarkista palvelimen varmenne" - -msgid "Download album covers" -msgstr "Lataa albumien kansikuvat" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "Testi" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "Käytä OAuthia" - -msgid "Client ID" -msgstr "Asiakas-ID" - -msgid "API Token" -msgstr "API-avain" - -msgid "Audio quality" -msgstr "Äänenlaatu" - -msgid "Search delay" -msgstr "" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "" - -msgid "Albums search limit" -msgstr "" - -msgid "Songs search limit" -msgstr "" - -msgid "Fetch entire albums when searching songs" -msgstr "Nouda koko albumi hakiessa kappaleita" - -msgid "Album cover size" -msgstr "Albumin kansikuvan koko" - -msgid "Stream URL method" -msgstr "Suoratoistomenetelmä (URL)" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "Sovellus-ID" - -msgid "App Secret" -msgstr "Sovelluksen salaisuus" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "Mielialapalkki" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Tallenna .mood-tiedostot suoraan kappaleen kansiossa" - -msgid "Enabled" -msgstr "" - -msgid "Return to Strawberry" -msgstr "Palaa Strawberryen" - -msgid "Success!" -msgstr "Onnistui!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Sulje selain ja palaa Strawberryen." - diff --git a/src/translations/fr_FR.po b/src/translations/fr_FR.po deleted file mode 100644 index b93cc918..00000000 --- a/src/translations/fr_FR.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: fr\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: French\n" -"Language: fr_FR\n" -"PO-Revision-Date: 2024-10-09 12:16\n" - -msgid "All Files (*)" -msgstr "Tous les fichiers (*)" - -msgid "Context" -msgstr "Contexte" - -msgid "Collection" -msgstr "Bibliothèque" - -msgid "Queue" -msgstr "Liste d'attente" - -msgid "Playlists" -msgstr "Listes de lecture" - -msgid "Smart playlists" -msgstr "Listes de lecture intelligentes" - -msgid "Files" -msgstr "Fichiers" - -msgid "Radios" -msgstr "Radios" - -msgid "Devices" -msgstr "Périphériques" - -msgid "Subsonic" -msgstr "Subsonic" - -msgid "Tidal" -msgstr "Tidal" - -msgid "Spotify" -msgstr "Spotify" - -msgid "Qobuz" -msgstr "Qobuz" - -msgid "Show all songs" -msgstr "Afficher tous les morceaux" - -msgid "Show only duplicates" -msgstr "Afficher uniquement les doublons" - -msgid "Show only untagged" -msgstr "Afficher uniquement les morceaux sans tag" - -msgid "Configure collection..." -msgstr "Configurer votre bibliothèque..." - -msgid "Play" -msgstr "Lecture" - -msgid "Stop after this track" -msgstr "Arrêter la lecture après cette piste" - -msgid "Toggle queue status" -msgstr "Basculer l'état de la file d'attente" - -msgid "Queue selected tracks to play next" -msgstr "Mettre les pistes sélectionnées en liste d'attente pour une lecture ultérieure" - -msgid "Toggle skip status" -msgstr "Basculer le saut du statut" - -msgid "Rescan song(s)..." -msgstr "Réanalyse des morceaux..." - -msgid "Copy URL(s)..." -msgstr "Copie des URL(s)..." - -msgid "Show in collection..." -msgstr "Afficher dans la bibliothèque..." - -msgid "Show in file browser..." -msgstr "Afficher dans le navigateur de fichiers..." - -msgid "Organize files..." -msgstr "Organisation des fichiers..." - -msgid "Copy to collection..." -msgstr "Copier vers la bibliothèque..." - -msgid "Move to collection..." -msgstr "Déplacer vers la bibliothèque..." - -msgid "Copy to device..." -msgstr "Copier sur le périphérique..." - -msgid "Delete from disk..." -msgstr "Supprimer du disque..." - -msgid "Check for updates..." -msgstr "Vérifier les mises à jour..." - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry fonctionnant sous Rosetta" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "Vous exécutez Strawberry sous Rosetta. L'exécution de Strawberry sous Rosetta n'est pas prise en charge et est connue pour avoir des problèmes. Vous devez télécharger Strawberry pour la bonne architecture du processeur à partir de %1" - -msgid "Sponsoring Strawberry" -msgstr "Sponsor de Strawberry" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry est un logiciel libre et open source. Si vous aimez ce logiciel, envisagez de sponsoriser le projet. Pour plus d'informations sur le parrainage/sponsoring, consultez notre site Web %1" - -msgid "Pause" -msgstr "Pause" - -msgid "Dequeue track" -msgstr "Enlever cette piste de la file d'attente" - -msgid "Dequeue selected tracks" -msgstr "Enlever les pistes sélectionnées de la file d'attente" - -msgid "Queue track" -msgstr "Mettre cette piste en liste d'attente" - -msgid "Queue selected tracks" -msgstr "Mettre les pistes sélectionnées en liste d'attente" - -msgid "Queue to play next" -msgstr "Mettre en liste d'attente pour une lecture ultérieure" - -msgid "Unskip track" -msgstr "Ne pas passer la piste" - -msgid "Unskip selected tracks" -msgstr "Ne pas passer les pistes sélectionnées" - -msgid "Skip track" -msgstr "Passer la piste" - -msgid "Skip selected tracks" -msgstr "Passer les pistes sélectionnées" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Définir %1 à la valeur « %2 »..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Modifier le tag « %1 »..." - -msgid "Add to another playlist" -msgstr "Ajouter à une autre liste de lecture" - -msgid "New playlist" -msgstr "Nouvelle liste de lecture" - -msgid "Add file" -msgstr "Ajouter un fichier" - -msgid "Music" -msgstr "Musique" - -msgid "Add folder" -msgstr "Ajouter un dossier" - -msgid "Clear playlist" -msgstr "Vider la liste de lecture" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "La liste de lecture contient %1 morceaux, trop volumineux pour être annulés. Voulez-vous vraiment effacer la liste de lecture ?" - -msgid "Error" -msgstr "Erreur" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Aucun des morceaux sélectionnés n'était valide pour la copie vers un périphérique" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "La nouvelle version de Strawberry nécessite une mise à jour de votre bibliothèque pour supporter les nouvelles fonctionnalités suivantes :" - -msgid "Would you like to run a full rescan right now?" -msgstr "Souhaitez-vous effectuer une nouvelle analyse complète de la bibliothèque maintenant ?" - -msgid "Collection rescan notice" -msgstr "Avertissement de réanalyse de la bibliothèque" - -msgid "Usage" -msgstr "Utilisation" - -msgid "options" -msgstr "options" - -msgid "URL(s)" -msgstr "URL(s)" - -msgid "Player options" -msgstr "Options du lecteur" - -msgid "Start the playlist currently playing" -msgstr "Commencer la liste de lecture en cours" - -msgid "Play if stopped, pause if playing" -msgstr "Lire ou mettre en pause, selon l'état courant" - -msgid "Pause playback" -msgstr "Mettre la lecture en pause" - -msgid "Stop playback" -msgstr "Arrêter la lecture" - -msgid "Stop playback after current track" -msgstr "Arrêter la lecture après ce morceau" - -msgid "Skip backwards in playlist" -msgstr "Lire la piste précédente" - -msgid "Skip forwards in playlist" -msgstr "Lire la piste suivante" - -msgid "Set the volume to percent" -msgstr "Définir le volume à pour-cent" - -msgid "Increase the volume by 4 percent" -msgstr "Augmenter le volume de 4 pour-cent" - -msgid "Decrease the volume by 4 percent" -msgstr "Diminuer le volume de 4 pour-cent" - -msgid "Increase the volume by percent" -msgstr "Augmenter le volume de pour-cent" - -msgid "Decrease the volume by percent" -msgstr "Diminuer le volume de pour-cent" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Déplacer la lecture de la piste courante à une position absolue" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Déplacer la lecture de la piste courante par une quantité relative" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Redémarre le morceau ou lit le morceau précédent si utilisé durant les 8 premières secondes." - -msgid "Playlist options" -msgstr "Options de la liste de lecture" - -msgid "Create a new playlist with files" -msgstr "Créer une nouvelle liste de lecture à partir des fichiers" - -msgid "Append files/URLs to the playlist" -msgstr "Ajouter des fichiers/URLs à la liste de lecture" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Charger des fichiers/URLs, et remplacer la liste de lecture actuelle" - -msgid "Play the th track in the playlist" -msgstr "Lire la ème piste de la liste de lecture" - -msgid "Play given playlist" -msgstr "Lire la liste de lecture donnée" - -msgid "Other options" -msgstr "Autres options" - -msgid "Display the on-screen-display" -msgstr "Afficher le menu à l'écran" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Basculer la visibilité de l'OSD" - -msgid "Change the language" -msgstr "Changer la langue" - -msgid "Resize the window" -msgstr "Redimensionner la fenêtre" - -msgid "Equivalent to --log-levels *:1" -msgstr "Equivalent à --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Equivalent à --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Liste séparée par une virgule des classes:niveau, le niveau étant entre 1 et 3" - -msgid "Print out version information" -msgstr "Afficher la version" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "Impossible d'exécuter la requête SQL : %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Échec de la requête SQL : %1" - -msgid "Integrity check" -msgstr "Vérification de l'intégrité" - -msgid "Database corruption detected." -msgstr "Corruption de la base de données détectée." - -msgid "Backing up database" -msgstr "Sauvegarde de la base de données" - -msgid "Deleting files" -msgstr "Suppression des fichiers" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "Échec de la création du répertoire %1." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "Le fichier de destination %1 existe, mais il n'est pas autorisé à l'écraser." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "Le fichier de destination %1 existe, mais il n'est pas autorisé à l'écraser." - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "Impossible de copier le fichier %1 vers %2." - -msgid "Unknown" -msgstr "Inconnu" - -msgid "LUFS" -msgstr "LUFS" - -msgid "LU" -msgstr "LU" - -msgid "You need GStreamer for this URL." -msgstr "GStreamer est nécessaire pour ce lien." - -msgid "Preload function was not set for blocking operation." -msgstr "La fonction de préchargement n'a pas été définie pour l'opération bloquante." - -#, qt-format -msgid "File %1 does not exist." -msgstr "Le fichier %1 n'existe pas." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Le fichier %1 n'est pas un fichier audio valide." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "Lecture de CD disponible uniquement avec le moteur GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Impossible d'ouvrir le fichier %1 pour la lecture : %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Impossible d'ouvrir le fichier CUE %1 pour la lecture : %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Impossible d'ouvrir le fichier %1 de la liste de lecture en lecture : %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Impossible de créer l'élément source GStreamer pour %1" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "Impossible de créer l'élément typefind GStreamer pour %1" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "Impossible de créer l'élément fakesink GStreamer pour %1" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "Impossible de lier les éléments source, typefind et fakesink de GStreamer pour %1" - -msgid "Playlist" -msgstr "Liste de lecture" - -msgid "1 day" -msgstr "1 jour" - -#, qt-format -msgid "%1 days" -msgstr "%1 jours" - -msgid "Today" -msgstr "Aujourd'hui" - -msgid "Yesterday" -msgstr "Hier" - -#, qt-format -msgid "%1 days ago" -msgstr "Il y a %1 jours" - -msgid "Tomorrow" -msgstr "Demain" - -#, qt-format -msgid "In %1 days" -msgstr "Dans %1 jours" - -msgid "Next week" -msgstr "La semaine prochaine" - -#, qt-format -msgid "In %1 weeks" -msgstr "Dans %1 semaines" - -msgid "Show in file browser" -msgstr "Afficher dans l'explorateur de fichiers" - -msgid "Too many songs selected." -msgstr "Trop de morceaux sélectionnés." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "%1 morceaux dans %2 répertoires différents sélectionnés, êtes-vous sûr(e) de vouloir tous les ouvrir ?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "Impossible de charger l'image depuis les données pour %1" - -msgid "Success" -msgstr "Effectué" - -msgid "File is unsupported" -msgstr "Le fichier n'est pas pris en charge" - -msgid "Filename is missing" -msgstr "Le nom du fichier est manquant" - -msgid "File does not exist" -msgstr "Le fichier n’existe pas" - -msgid "File could not be opened" -msgstr "Le fichier n'a pas pu être ouvert" - -msgid "Could not parse file" -msgstr "Le fichier n'a pas pu être analysé" - -msgid "Could save file" -msgstr "Sauvegarde du fichier possible" - -msgid "Unknown error" -msgstr "Erreur inconnue" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "Préfixez un terme de recherche avec un nom de champ pour limiter la recherche de ce champ, par exemple :" - -msgid "artist" -msgstr "artiste" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "recherche tous les artistes contenant le mot %1. " - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "Les termes de recherche pour les champs numériques peuvent être préfixés par %1 ou %2 pour affiner la recherche, par exemple :" - -msgid "rating" -msgstr "notation" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "Plusieurs termes de recherche peuvent également être combinés avec \"%1\" (par défaut) et \"%2\", ainsi que regroupés entre parenthèses." - -msgid "Available fields" -msgstr "Champs disponibles" - -msgid "Buffering" -msgstr "Mise en mémoire tampon" - -msgid "Framerate" -msgstr "Images par seconde" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Faible (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Moyen (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Élevé (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Très élevé (%1 fps)" - -msgid "No analyzer" -msgstr "Désactiver le spectrogramme" - -msgid "Block analyzer" -msgstr "Spectrogramme avec blocs" - -msgid "Boom analyzer" -msgstr "Spectrogramme « Boom »" - -msgid "Turbine" -msgstr "Turbine" - -msgid "Sonogram" -msgstr "Sonogramme" - -msgid "WaveRubber" -msgstr "WaveRubber" - -msgid "Pre-amp" -msgstr "Pré-ampli" - -msgid "Custom" -msgstr "Personnalisé" - -msgid "Classical" -msgstr "Classique" - -msgid "Club" -msgstr "Club" - -msgid "Dance" -msgstr "Danse" - -msgid "Full Bass" -msgstr "Graves Max" - -msgid "Full Treble" -msgstr "Aigus Max" - -msgid "Full Bass + Treble" -msgstr "Graves + Aigus Max" - -msgid "Laptop/Headphones" -msgstr "Portable/Écouteurs" - -msgid "Large Hall" -msgstr "Large Salle" - -msgid "Live" -msgstr "En direct" - -msgid "Party" -msgstr "Soirée" - -msgid "Pop" -msgstr "Pop" - -msgid "Reggae" -msgstr "Reggae" - -msgid "Rock" -msgstr "Rock" - -msgid "Soft" -msgstr "Doux" - -msgid "Ska" -msgstr "Ska" - -msgid "Soft Rock" -msgstr "Soft Rock" - -msgid "Techno" -msgstr "Techno" - -msgid "Zero" -msgstr "Zéro" - -msgid "Save preset" -msgstr "Enregistrer le pré-réglage" - -msgid "Name" -msgstr "Nom" - -msgid "Delete preset" -msgstr "Effacer le pré-réglage" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Êtes-vous sûr(e) de vouloir supprimer la valeur prédéfinie « %1 » ?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 dB" - -msgid "Filetype" -msgstr "Type de fichier" - -msgid "Length" -msgstr "Durée" - -msgid "Samplerate" -msgstr "Échantillonnage" - -msgid "Bit depth" -msgstr "Codage en bit" - -msgid "Bitrate" -msgstr "Débit" - -msgid "EBU R 128 Integrated Loudness" -msgstr "Bruyance Intégrée (EBU R 128)" - -msgid "EBU R 128 Loudness Range" -msgstr "Plage de Bruyance (EBU R 128)" - -msgid "Show album cover" -msgstr "Afficher la pochette de l'album" - -msgid "Show song technical data" -msgstr "Afficher les données techniques du morceau" - -msgid "Show song lyrics" -msgstr "Afficher les paroles" - -msgid "Automatically search for song lyrics" -msgstr "Rechercher automatiquement les paroles des morceaux" - -msgid "No song playing" -msgstr "Aucun morceau en cours de lecture" - -#, qt-format -msgid "%1 song" -msgstr "%1 morceau" - -#, qt-format -msgid "%1 songs" -msgstr "%1 morceaux" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artiste" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artistes" - -#, qt-format -msgid "%1 album" -msgstr "%1 album" - -#, qt-format -msgid "%1 albums" -msgstr "%1 albums" - -msgid "kbps" -msgstr "kbps" - -msgid "Saving playcounts and ratings" -msgstr "Enregistrement des compteur d'écoutes et des notations" - -msgid "Various artists" -msgstr "Compilations d'artistes" - -msgid "Loading..." -msgstr "Chargement..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "Impossible d'exécuter la requête SQL de la collection : %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "Mise à jour de la base de données %1." - -msgid "Updating collection" -msgstr "Mise à jour de la bibliothèque" - -#, qt-format -msgid "Updating %1" -msgstr "Mise à jour %1" - -msgid "Your collection is empty!" -msgstr "Votre bibliothèque est vide !" - -msgid "Click here to add some music" -msgstr "Cliquez ici pour créer votre bibliothèque musicale" - -msgid "Append to current playlist" -msgstr "Ajouter à la liste de lecture actuelle" - -msgid "Replace current playlist" -msgstr "Remplacer la liste de lecture actuelle" - -msgid "Open in new playlist" -msgstr "Ouvrir dans une nouvelle liste de lecture" - -msgid "Search for this" -msgstr "Rechercher cela" - -msgid "Edit track information..." -msgstr "Modifier la description de la piste..." - -msgid "Edit tracks information..." -msgstr "Modifier la description des pistes..." - -msgid "Rescan song(s)" -msgstr "Réanalyser le morceau" - -msgid "Show in various artists" -msgstr "Classer dans la catégorie « Compilations d'artistes »" - -msgid "Don't show in various artists" -msgstr "Ne pas classer dans la catégorie « Compilations d'artistes »" - -msgid "There are other songs in this album" -msgstr "Il y a d'autres morceaux dans cet album" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Souhaitez-vous également déplacer les autres morceaux de cet album vers Compilations d'artistes ?" - -msgid "Show" -msgstr "Afficher" - -msgid "Group by" -msgstr "Grouper par" - -msgid "Display options" -msgstr "Options d'affichage" - -msgid "Group by Album artist/Album" -msgstr "Grouper par Artiste d'album/Album" - -msgid "Group by Album artist/Album - Disc" -msgstr "Grouper par Artiste d'album/Album - CD" - -msgid "Group by Album artist/Year - Album" -msgstr "Grouper par Artiste d'album/Année - Album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Grouper par Artiste d'album/Année - Album - CD" - -msgid "Group by Artist/Album" -msgstr "Grouper par Artiste/Album" - -msgid "Group by Artist/Album - Disc" -msgstr "Grouper par Artiste/Album - CD" - -msgid "Group by Artist/Year - Album" -msgstr "Grouper par Artiste/Année - Album" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Grouper par Artiste/Année - Album - CD" - -msgid "Group by Genre/Album artist/Album" -msgstr "Grouper par Genre/Artiste d'album/Album" - -msgid "Group by Genre/Artist/Album" -msgstr "Grouper par Genre/Artiste/Album" - -msgid "Group by Album Artist" -msgstr "Grouper par Artiste d'album" - -msgid "Group by Artist" -msgstr "Grouper par Artiste" - -msgid "Group by Album" -msgstr "Grouper par Album" - -msgid "Group by Genre/Album" -msgstr "Grouper par Genre/Album" - -msgid "Advanced grouping..." -msgstr "Groupement avancé..." - -msgid "Grouping Name" -msgstr "Nom du regroupement" - -msgid "Grouping name:" -msgstr "Nom du regroupement :" - -msgid "First level" -msgstr "Premier niveau" - -msgid "Second Level" -msgstr "Deuxième niveau" - -msgid "Third Level" -msgstr "Troisième niveau" - -msgid "None" -msgstr "Aucun" - -msgid "Album artist" -msgstr "Artiste de l'album" - -msgid "Artist" -msgstr "Artiste" - -msgid "Album" -msgstr "Album" - -msgid "Album - Disc" -msgstr "Album - CD" - -msgid "Year - Album" -msgstr "Année - Album" - -msgid "Year - Album - Disc" -msgstr "Année - Album - CD" - -msgid "Original year - Album" -msgstr "Année d'origine - Album" - -msgid "Original year - Album - Disc" -msgstr "Année d'origine - Album - CD" - -msgid "Disc" -msgstr "CD" - -msgid "Year" -msgstr "Année" - -msgid "Original year" -msgstr "Année d'origine" - -msgid "Genre" -msgstr "Genre" - -msgid "Composer" -msgstr "Compositeur" - -msgid "Performer" -msgstr "Interprète" - -msgid "Grouping" -msgstr "Groupement" - -msgid "File type" -msgstr "Type de fichier" - -msgid "Format" -msgstr "Format" - -msgid "Sample rate" -msgstr "Échantillonnage" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "Impossible d'écrire les métadonnées vers %1" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "Impossible d'écrire les métadonnées vers %1: %2" - -msgid "Title" -msgstr "Titre" - -msgid "Track" -msgstr "Piste" - -msgid "Original Year" -msgstr "Année d'origine" - -msgid "Album Artist" -msgstr "Artiste de l'album" - -msgid "Play Count" -msgstr "Compteur d'écoutes" - -msgid "Skip Count" -msgstr "Compteur de morceaux sautés" - -msgid "Last Played" -msgstr "Dernière écoute" - -msgid "Sample Rate" -msgstr "Échantillonnage" - -msgid "Bit Depth" -msgstr "Codage en bit" - -msgid "File Name" -msgstr "Nom du fichier" - -msgid "File Name (without path)" -msgstr "Nom du fichier (sans l'emplacement)" - -msgid "File Size" -msgstr "Taille du fichier" - -msgid "File Type" -msgstr "Type de fichier" - -msgid "Date Modified" -msgstr "Date de modification" - -msgid "Date Created" -msgstr "Date de création" - -msgid "Comment" -msgstr "Commentaire" - -msgid "Source" -msgstr "Source" - -msgid "Mood" -msgstr "Humeur" - -msgid "Rating" -msgstr "Notation" - -msgid "CUE" -msgstr "CUE" - -msgid "Integrated Loudness" -msgstr "Intensité sonore intégrée" - -msgid "Loudness Range" -msgstr "Plage d'intensité sonore" - -msgid "Undo" -msgstr "Annuler" - -msgid "Redo" -msgstr "Refaire" - -msgid "Load playlist" -msgstr "Charger une liste de lecture" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Aucune correspondance trouvée. Videz le champ de recherche pour afficher à nouveau la totalité de la liste de lecture." - -msgid "stop" -msgstr "arrêt" - -msgid "Never" -msgstr "Jamais" - -msgid "&Hide..." -msgstr "&Masquer..." - -msgid "&Stretch columns to fit window" -msgstr "Étirer les &colonnes pour s'adapter à la fenêtre" - -msgid "&Reset columns to default" -msgstr "&Réinitialiser les colonnes aux valeurs par défaut" - -msgid "&Lock rating" -msgstr "&Verrouiller la notation" - -msgid "&Align text" -msgstr "&Aligner le texte" - -msgid "&Left" -msgstr "&Gauche" - -msgid "&Center" -msgstr "&Centrer" - -msgid "&Right" -msgstr "&Droite" - -#, qt-format -msgid "&Hide %1" -msgstr "&Masquer %1" - -msgid "New folder" -msgstr "Nouveau dossier" - -msgid "Delete" -msgstr "Supprimer" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Enregistrer la liste de lecture" - -msgid "Enter the name of the folder" -msgstr "Saisissez le nom du dossier" - -msgid "Copy to device" -msgstr "Copie vers le périphérique" - -msgid "Playlist must be open first." -msgstr "La liste de lecture doit d'abord être ouverte." - -msgid "Remove playlists" -msgstr "Supprimer les listes de lecture" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Vous allez supprimer %1 listes de lecture de vos favoris. Êtes-vous sûr(e) ?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Vous pouvez ajouter les listes de lecture aux favoris en cliquant sur l'icône étoile à côté de leur nom" - -msgid "Favorited playlists will be saved here" -msgstr "Les listes de lecture favorites seront sauvegardées ici" - -msgid "Couldn't create playlist" -msgstr "La liste de lecture n'a pas pu être créée" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Sauvegarde de liste de lecture" - -msgid "Unknown playlist extension" -msgstr "Extension de liste de lecture inconnue" - -msgid "Unknown file extension for playlist." -msgstr "Extension de fichier inconnue pour la liste de lecture." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 sélectionnés de" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "%n morceau(x)" - -msgid "Automatic" -msgstr "Automatique" - -msgid "Relative" -msgstr "Relatif" - -msgid "Absolute" -msgstr "Absolu" - -msgid "Star playlist" -msgstr "Liste de lecture favorite" - -msgid "Close playlist" -msgstr "Fermer la liste de lecture" - -msgid "Rename playlist..." -msgstr "Renommer la liste de lecture..." - -msgid "Save playlist..." -msgstr "Enregistrer la liste de lecture..." - -msgid "Rename playlist" -msgstr "Renommer la liste de lecture" - -msgid "Enter a new name for this playlist" -msgstr "Saisissez un nouveau nom pour cette liste de lecture" - -msgid "Remove playlist" -msgstr "Supprimer la liste de lecture" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Vous êtes sur le point de fermer une liste de lecture qui ne fait pas partie de vos favoris : cette liste de lecture va être supprimée (cette action ne peut pas être annulée).\n" -"Êtes-vous sûr(e) de vouloir continuer ?" - -msgid "Warn me when closing a playlist tab" -msgstr "M'avertir lors de la fermeture d'un onglet de liste de lecture" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Cette option peut être modifiée dans les préférences de « Comportement »" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Double-cliquez ici pour ajouter cette liste de lecture à vos favoris afin qu'elle soit enregistrée et reste accessible via le panneau \"Liste de lecture\" dans la barre de gauche" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "ajouter %n morceaux" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "enlever %n morceaux" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "déplacer %n morceaux" - -msgid "sort songs" -msgstr "trier les morceaux" - -msgid "shuffle songs" -msgstr "mélanger les morceaux" - -msgid "Hz" -msgstr "Hz" - -msgid "Bit" -msgstr "Bit" - -msgid "Error while loading audio CD." -msgstr "Erreur lors du chargement du CD audio." - -msgid "Loading tracks" -msgstr "Chargement des pistes" - -msgid "Loading tracks info" -msgstr "Chargement des info des pistes" - -msgid "Saving CUE files is not supported." -msgstr "L'enregistrement des fichiers CUE n'est pas pris en charge." - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "Ne sais pas comment gérer %1" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Toutes les listes de lecture (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 listes de lecture (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "Type de fichier inconnu : %1" - -#, qt-format -msgid "Could not open file %1" -msgstr "Impossible d'ouvrir le fichier %1" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "Le dossier %1 n'existe pas." - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "Impossible d'ouvrir %1 en écriture." - -msgid "Loading smart playlist" -msgstr "Chargement de la liste de lecture intelligente" - -msgid "Collection search" -msgstr "Recherche de bibliothèque" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Trouvez des morceaux dans votre bibliothèque qui correspondent aux critères que vous spécifiez." - -msgid "Search terms" -msgstr "Thermes de recherche" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Un morceau sera inclus dans la liste de lecture si elle remplit ces conditions." - -msgid "Search options" -msgstr "Options de recherche" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Choisissez comment la liste de lecture est triée et combien de morceaux elle contiendra." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 morceaux trouvés (affichage %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 morceaux trouvés" - -msgid "after" -msgstr "après" - -msgid "before" -msgstr "avant" - -msgid "on" -msgstr "allumé" - -msgid "not on" -msgstr "non allumé" - -msgid "in the last" -msgstr "à la fin" - -msgid "not in the last" -msgstr "pas en dernier" - -msgid "between" -msgstr "entre" - -msgid "contains" -msgstr "contient" - -msgid "does not contain" -msgstr "ne contient pas" - -msgid "starts with" -msgstr "commence par" - -msgid "ends with" -msgstr "fini par" - -msgid "greater than" -msgstr "plus grand que" - -msgid "less than" -msgstr "moins que" - -msgid "equals" -msgstr "est égal à" - -msgid "not equals" -msgstr "différent" - -msgid "empty" -msgstr "vide" - -msgid "not empty" -msgstr "non vide" - -msgid "A-Z" -msgstr "A-Z" - -msgid "Z-A" -msgstr "Z-A" - -msgid "oldest first" -msgstr "le plus ancien en premier" - -msgid "newest first" -msgstr "le plus récent" - -msgid "shortest first" -msgstr "le plus court en premier" - -msgid "longest first" -msgstr "le plus long d'abord" - -msgid "smallest first" -msgstr "le plus petit en premier" - -msgid "biggest first" -msgstr "le plus grand d'abord" - -msgid "Hours" -msgstr "Heures" - -msgid "Days" -msgstr "Jours" - -msgid "Weeks" -msgstr "Semaines" - -msgid "Months" -msgstr "Mois" - -msgid "Years" -msgstr "Années" - -msgid "The second value must be greater than the first one!" -msgstr "La deuxième valeur doit être supérieure à la première !" - -msgid "Add search term" -msgstr "Ajouter un terme de recherche" - -msgid "Newest tracks" -msgstr "Dernières pistes" - -msgid "50 random tracks" -msgstr "50 pistes aléatoires" - -msgid "Ever played" -msgstr "Jamais écouté" - -msgid "Never played" -msgstr "Jamais écouté" - -msgid "Last played" -msgstr "Dernière écoute" - -msgid "Most played" -msgstr "Le plus écouté" - -msgid "Favourite tracks" -msgstr "Pistes préférées" - -msgid "Least favourite tracks" -msgstr "Pistes les moins préférées" - -msgid "All tracks" -msgstr "Toutes les pistes" - -msgid "Dynamic random mix" -msgstr "Mix aléatoire dynamique" - -msgid "New smart playlist..." -msgstr "Nouvelle liste de lecture intelligente..." - -msgid "Play next" -msgstr "Lecture suivante" - -msgid "Edit smart playlist..." -msgstr "Modifier la liste de lecture intelligente..." - -msgid "Delete smart playlist" -msgstr "Supprimer la liste de lecture intelligente" - -msgid "Smart playlist" -msgstr "Liste de lecture intelligente" - -msgid "Playlist type" -msgstr "Type de liste de lecture" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Une liste de lecture intelligente est une liste dynamique de morceaux provenant de votre bibliothèque. Il existe différents types de listes de lecture intelligentes qui offrent différentes façons de sélectionner des morceaux." - -msgid "Finish" -msgstr "Terminer" - -msgid "Choose a name for your smart playlist" -msgstr "Choisissez un nom pour votre liste de lecture intelligente" - -msgid "Abort" -msgstr "Abandonner" - -msgid "All albums" -msgstr "Tous les albums" - -msgid "Albums with covers" -msgstr "Albums ayant une pochette" - -msgid "Albums without covers" -msgstr "Albums n'ayant pas de pochette" - -msgid "Really cancel?" -msgstr "Êtes-vous sûr(e) de vouloir annuler ?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Fermer cette fenêtre arrêtera la recherche de pochette d'albums." - -msgid "Don't stop!" -msgstr "Ne pas arrêter !" - -msgid "All artists" -msgstr "Tous les artistes" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "%1 pochettes récupérées sur %2 (%3 échouées)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 transférés" - -msgid "Export finished" -msgstr "Export terminé" - -msgid "No covers to export." -msgstr "Aucune pochette à exporter." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "%1 pochettes exportées sur %2 (%3 ignorées)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "Impossible de sauvegarder la pochette dans le fichier %1." - -#, qt-format -msgid "Covers from %1" -msgstr "Pochettes depuis %1" - -msgid "Search" -msgstr "Recherche" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Tous les fichiers (*)" - -msgid "Load cover from disk..." -msgstr "Charger la pochette depuis le disque..." - -msgid "Save cover to disk..." -msgstr "Enregistrer la pochette sur le disque..." - -msgid "Load cover from URL..." -msgstr "Charger une pochette à partir d'une URL..." - -msgid "Search for album covers..." -msgstr "Rechercher des pochettes pour cet album..." - -msgid "Unset cover" -msgstr "Pochette non définie" - -msgid "Delete cover" -msgstr "Supprimer la pochette" - -msgid "Clear cover" -msgstr "Effacer la pochette" - -msgid "Show fullsize..." -msgstr "Afficher en taille réelle..." - -msgid "Search automatically" -msgstr "Rechercher automatiquement" - -msgid "Load cover from disk" -msgstr "Charger la pochette depuis le disque" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Impossible d'ouvrir la pochette %1 pour la lire : %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "La pochette %1 est vide." - -msgid "unknown" -msgstr "inconnu" - -msgid "Save album cover" -msgstr "Enregistrer les pochettes d'albums" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Impossible d'ouvrir la pochette %1 pour l'écrire : %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Impossible d'écrire la pochette dans le fichier %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Impossible d'écrire la pochette dans le fichier %1." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Impossible de supprimer la pochette %1 : %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Impossible d'écrire la pochette dans le fichier %1: %2" - -msgid "Total network requests made" -msgstr "Nombre total de requêtes réseau effectuées" - -msgid "Average image size" -msgstr "Taille moyenne de l'image" - -msgid "Total bytes transferred" -msgstr "Nombre total d'octets transférés" - -msgid "Fetching cover error" -msgstr "Erreur lors de la récupération de la pochette" - -msgid "The site you requested does not exist!" -msgstr "Le site demandé n'existe pas !" - -msgid "The site you requested is not an image!" -msgstr "Le site demandé n'est pas une image !" - -msgid "Genius Authentication" -msgstr "Authentification Genius" - -msgid "Please open this URL in your browser" -msgstr "Veuillez ouvrir ce lien dans votre navigateur" - -msgid "Redirect missing token code!" -msgstr "Redirigé le code du jeton manquant !" - -msgid "Received invalid reply from web browser." -msgstr "Réponse invalide du navigateur internet." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Rediriger depuis Genius ne contient pas de code ou d'état des éléments de requête." - -msgid "General" -msgstr "Général" - -msgid "User interface" -msgstr "Interface utilisateur" - -msgid "Streaming" -msgstr "Streaming" - -msgid "Add directory..." -msgstr "Ajouter un dossier..." - -msgid "Write all playcounts and ratings to files" -msgstr "Écrire tous les compteur d'écoutes et notations dans les fichiers" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Êtes-vous sûr de vouloir écrire le compteur d'écoutes des morceaux et les notations dans un fichier pour tous les morceaux de votre bibliothèque ?" - -msgid "Enter your user token from" -msgstr "Entrez votre jeton d'utilisateur depuis" - -msgid "Use Tidal settings to authenticate." -msgstr "Utiliser les paramètres de Tidal pour vous authentifier." - -msgid "Use Spotify settings to authenticate." -msgstr "Utilisez les paramètres de Spotify pour vous authentifier." - -msgid "Use Qobuz settings to authenticate." -msgstr "Utiliser les paramètres de Qobuz pour vous authentifier." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 nécessite une authentification." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 ne nécessite pas une authentification." - -msgid "No provider selected." -msgstr "Aucun fournisseur sélectionné." - -msgid "Authentication failed" -msgstr "Échec de l'authentification" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "Manuellement non définie (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "Définir la recherche via la pochette d'album (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "Relève automatiquement dans le répertoire d'album (%1)" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "Pochette d'album intégrée (%1)" - -msgid "Select background image" -msgstr "Sélectionner une image d'arrière-plan" - -msgid "OSD Preview" -msgstr "Prévisualisation de l'affichage à l'écran (OSD)" - -msgid "Drag to reposition" -msgstr "Déplacer pour repositionner" - -msgid "About Strawberry" -msgstr "À propos de Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Version %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry est un lecteur audio et un organisateur de bibliothèques musicales." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "C'est un fork de Clementine publié en 2018 destiné aux collectionneurs de musique et aux audiophiles." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry est un logiciel libre sous les termes de la licence GPL. Le code source est disponible sur %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Vous devriez avoir reçu une copie de la licence publique générale (GPL) GNU avec ce programme. Dans le cas contraire, voir %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Si vous aimez ce logiciel Strawberry et que vous pouvez en faire usage, envisagez de sponsoriser ou de faire un don." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Vous pouvez sponsoriser l'auteur sur %1. Vous pouvez également effectuer un paiement unique via %2." - -msgid "Author and maintainer" -msgstr "Auteur et mainteneur" - -msgid "Contributors" -msgstr "Contributeurs" - -msgid "Clementine authors" -msgstr "Auteurs de Clementine" - -msgid "Clementine contributors" -msgstr "Contributeurs de Clementine" - -msgid "Thanks to" -msgstr "Remerciements à" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Remerciements à tous les autres contributeurs d'Amarok et Clementine." - -msgid "(different across multiple songs)" -msgstr "(différent pour plusieurs morceaux)" - -msgid "Different art across multiple songs." -msgstr "Visuel différent d'un morceau à l'autre." - -msgid "Previous" -msgstr "Précédent" - -msgid "Next" -msgstr "Suivant" - -msgid "Saving tracks" -msgstr "Sauvegarde des pistes" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 morceaux sélectionnés." - -msgid "Yes" -msgstr "Oui" - -msgid "No" -msgstr "Non" - -msgid "Cover is unset." -msgstr "La pochette n'est pas définie." - -msgid "Cover from embedded image." -msgstr "Pochette de l'image intégrée." - -#, qt-format -msgid "Cover from %1" -msgstr "Pochette de %1" - -msgid "Cover art not set" -msgstr "Pochette non définie" - -msgid "Album cover editing is only available for collection songs." -msgstr "L'édition de la pochette d'album n'est disponible que pour les morceaux de la bibliothèque." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Pochette modifiée : sera effacée une fois enregistrée." - -msgid "Cover changed: Will be unset when saved." -msgstr "Pochette modifiée : ne sera pas définie une fois enregistrée." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Pochette modifiée : sera supprimée une fois enregistrée." - -msgid "Cover changed: Will set new when saved." -msgstr "Pochette modifiée : sera définie comme nouvelle une fois enregistrée." - -msgid "Reset song play statistics" -msgstr "Réinitialiser les statistiques de lecture du morceau" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "Voulez-vous vraiment réinitialiser les statistiques de lecture de ce morceau ?" - -msgid "loading..." -msgstr "chargement..." - -msgid "Not found." -msgstr "Non trouvé" - -msgid "Original tags" -msgstr "Tags originaux" - -msgid "Suggested tags" -msgstr "Tags suggérés" - -msgid "Delete files" -msgstr "Supprimer les fichiers" - -msgid "The following files will be deleted from disk:" -msgstr "Les fichiers suivants seront supprimés du disque :" - -msgid "Are you sure you want to continue?" -msgstr "Êtes-vous sûr(e) de vouloir continuer ?" - -msgid "Receiving initial data from last.fm..." -msgstr "Réception des données initiales de last.fm..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Réception du compteur d'écoute pour %1 morceaux et de la dernière lecture pour %2 morceaux." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Réception de la dernière lecture de %1 morceaux." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Réception du compteur d'écoutes pour %1 morceaux." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Compteur d'écoutes pour %1 morceaux et dernière lecture pour %2 morceaux reçus." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Dernière lecture pour %1 morceaux reçus." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Compteur d'écoutes pour %1 morceaux reçus." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry est en cours d'exécution en tant que programme Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Nous avons détecté que Strawberry est en cours d'exécution en tant que programme Snap" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry est plus lent, et comporte des restrictions, lorsqu'il est exécuté en tant que programme Snap. Il sera impossible d'accéder à la partition root (/). D'autres restrictions peuvent survenir, comme l'incapacité à accéder à certains périphériques ou à des partages réseaux." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Pour Ubuntu, il existe un dépôt PPA officiel disponible sur %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Des paquetages officiels sont disponibles pour Debian et Ubuntu, et fonctionnent aussi sur la plupart de leurs dérivés. Voir %1 pour plus d'informations." - -msgid "For a better experience please consider the other options above." -msgstr "Pour améliorer l'expérience de l'utilisateur, veuillez envisager l'une des options ci-dessus." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Copiez vos fichiers strawberry.conf et strawberry.db depuis votre répertoire ~/snap pour éviter de perdre la configuration avant de désinstaller le composant logiciel enfichable :" - -msgid "Uninstall the snap with:" -msgstr "Désinstallez le snap avec :" - -msgid "Install strawberry through PPA:" -msgstr "Installer strawberry via PPA :" - -msgid "Select directory for the playlists" -msgstr "Sélectionnez le répertoire pour la liste de lecture" - -msgid "Directory does not exist." -msgstr "Le répertoire n'existe pas." - -msgid "Large sidebar" -msgstr "Barre latérale large" - -msgid "Icons sidebar" -msgstr "Barre latérale des icônes" - -msgid "Small sidebar" -msgstr "Petite barre latérale" - -msgid "Plain sidebar" -msgstr "Barre latérale simple" - -msgid "Tabs on top" -msgstr "Onglets au dessus" - -msgid "Icons on top" -msgstr "Icônes au dessus" - -msgid "Available" -msgstr "Disponible" - -msgid "New songs" -msgstr "Nouveaux morceaux" - -msgid "Exceeded by" -msgstr "Surpassé par" - -msgid "Used" -msgstr "Utilisé" - -msgid "Clear" -msgstr "Effacer" - -msgid "Reset" -msgstr "Réinitialiser" - -msgid "Small album cover" -msgstr "Petite pochette d'album" - -msgid "Large album cover" -msgstr "Grande pochette d'album" - -msgid "Fit cover to width" -msgstr "Ajuster la pochette sur la largeur" - -msgid "Show above status bar" -msgstr "Afficher au dessus de la barre d'état" - -msgid "You are signed in." -msgstr "Vous êtes connecté." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Vous êtes connecté en tant que %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Expire au %1" - -#, qt-format -msgid "disc %1" -msgstr "CD %1" - -#, qt-format -msgid "track %1" -msgstr "piste %1" - -msgid "Paused" -msgstr "En pause" - -msgid "Stopped" -msgstr "Interrompu" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Arrêter la lecture après la piste : %1" - -msgid "On" -msgstr "Activé" - -msgid "Off" -msgstr "Désactivé" - -msgid "Playlist finished" -msgstr "Liste de lecture terminée" - -#, qt-format -msgid "Volume %1%" -msgstr "Volume %1%" - -msgid "Don't shuffle" -msgstr "Aléatoire : désactivé" - -msgid "Shuffle all" -msgstr "Aléatoire : tout" - -msgid "Shuffle tracks in this album" -msgstr "Aléatoire : pistes de cet album" - -msgid "Shuffle albums" -msgstr "Aléatoire : albums" - -msgid "Don't repeat" -msgstr "Ne pas répéter" - -msgid "Repeat track" -msgstr "Répéter la piste" - -msgid "Repeat album" -msgstr "Répéter l'album" - -msgid "Repeat playlist" -msgstr "Répéter la liste de lecture" - -msgid "Stop after every track" -msgstr "Arrêter la lecture après chaque piste" - -msgid "Intro tracks" -msgstr "Introduction des pistes" - -#, qt-format -msgid "Configure %1..." -msgstr "Configurer %1..." - -msgid "Add to artists" -msgstr "Ajouter aux artistes" - -msgid "Add to albums" -msgstr "Ajouter aux albums" - -msgid "Add to songs" -msgstr "Ajouter aux morceaux" - -msgid "Enter search terms above to find music" -msgstr "Saisissez ci-dessus les termes de votre recherche pour trouver de la musique" - -msgid "The streaming collection is empty!" -msgstr "La bibliothèque de streaming est vide !" - -msgid "Click here to retrieve music" -msgstr "Cliquez ici pour récupérer la musique" - -msgid "Remove from favorites" -msgstr "Supprimer des favoris" - -msgid "Open homepage" -msgstr "Ouvrir la page d'accueil" - -msgid "Donate" -msgstr "Donation" - -msgid "Refresh channels" -msgstr "Actualiser les canaux" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Obtiention %1 canaux" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 authentification Scrobbler" - -msgid "Open URL in web browser?" -msgstr "Ouvrir le lien dans le navigateur internet ?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Appuyez sur « Enregistrer » pour copier le lien dans le presse-papier et l'ouvrir manuellement dans un navigateur internet." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Impossible d'ouvrir le lien. Veuillez ouvrir ce lien dans votre navigateur" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Réponse invalide du navigateur. Jeton manquant." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "Réponse invalide reçue du navigateur Web. Essayez un autre navigateur." - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Scrobbler %1 n'est pas authentifié !" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Erreur Scrobbler %1 : %2" - -msgid "ListenBrainz Authentication" -msgstr "Authentification à ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "Impossible de scrobbler %1 - %2 à cause d'une erreur : %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "ID d'enregistrement MusicBrainz manquant pour %1 %2 %3" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "Erreur ListenBrainz %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Nom d'utilisateur manquant, veuillez d'abord vous connecter à last.fm !" - -msgid "Organizing files" -msgstr "Organisation des fichiers" - -msgid "Artist's initial" -msgstr "Initiale de l'artiste" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Débit" - -msgid "File extension" -msgstr "Extension de fichier" - -msgid "Error copying songs" -msgstr "Erreur lors de la copie des morceaux" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Il y a eu un problème pour copier certains morceaux. Les fichiers suivant n'ont pas pu être copiés :" - -msgid "Error deleting songs" -msgstr "Erreur lors de la suppression des morceaux" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Il y a eu un problème pour supprimer certains morceaux. Les fichiers suivant n'ont pas pu être supprimés :" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Impossible de créer l'élément GStreamer « %1 » - vérifier que les modules externes GStreamer nécessaires sont installés" - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 écrit avec succès" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Transcodage de %1 fichiers en utilisant %2 threads" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Erreur lors du traitement de %1 : %2" - -#, qt-format -msgid "Starting %1" -msgstr "Lancement de %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Impossible de trouver un encodeur pour %1, vérifiez que les bons modules externes GStreamer sont installés" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Impossible de trouver un multiplexeur pour %1, vérifiez que les bons modules externes GStreamer sont installés" - -msgid "Start transcoding" -msgstr "Commencer le transcodage" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n restant" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n terminé" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n échoué" - -msgid "Add files to transcode" -msgstr "Ajouter des fichiers à transcoder" - -msgid "Open a directory to import music from" -msgstr "Ouvrir un répertoire pour en importer la musique" - -msgid "Play/Pause" -msgstr "Lecture/Pause" - -msgid "Stop" -msgstr "Arrêt" - -msgid "Stop playing after current track" -msgstr "Arrêter la lecture après la piste en cours" - -msgid "Next track" -msgstr "Piste suivante" - -msgid "Previous track" -msgstr "Piste précédente" - -msgid "Restart or previous track" -msgstr "Redémarrer ou revenir à la piste précédente" - -msgid "Increase volume" -msgstr "Augmenter le volume" - -msgid "Decrease volume" -msgstr "Diminuer le volume" - -msgid "Mute" -msgstr "Sourdine" - -msgid "Seek forward" -msgstr "Chercher en avant" - -msgid "Seek backward" -msgstr "Chercher en arrière" - -msgid "Show/Hide" -msgstr "Afficher/Masquer" - -msgid "Show OSD" -msgstr "Afficher OSD" - -msgid "Toggle Pretty OSD" -msgstr "Basculer le panneau d'information stylisé" - -msgid "Change shuffle mode" -msgstr "Modifier le mode aléatoire" - -msgid "Change repeat mode" -msgstr "Modifier le mode répétition" - -msgid "Enable/disable scrobbling" -msgstr "Activer/Désactiver le scrobbling" - -msgid "Love" -msgstr "J'aime" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Appuyez sur une combinaison de touches à utiliser pour %1..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "La commande « %1 » n'a pas pu être démarrée." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Raccourci pour %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Utiliser les raccourcis X11 sur %1 n'est pas recommandé et peut rendre le clavier inopérant !" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr " Les raccourcis sur %1 sont généralement ceux de MPRIS et de KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr " Les raccourcis sur %1 sont généralement utilisés via Gnome Settings Daemon et doivent être configurés dans gnome-settings-daemon à la place." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr " Les raccourcis sur %1 sont généralement utilisés via Cinnamon Settings Daemon et doivent être configurés dans cinnamon-settings-daemon à la place." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr " Les raccourcis sur %1 sont généralement utilisés via MATE Settings Daemon et doivent être configurés ici à la place." - -msgid "Identifying song" -msgstr "Identification du morceau" - -msgid "Fingerprinting song" -msgstr "Morceau d'empreinte digitale" - -msgid "Downloading metadata" -msgstr "Téléchargement des métadonnées" - -msgid "Show moodbar" -msgstr "Afficher la barre d'humeur" - -msgid "Moodbar style" -msgstr "Style de la barre d'humeur" - -msgid "Normal" -msgstr "Normal" - -msgid "Angry" -msgstr "En colère" - -msgid "Frozen" -msgstr "Gelé" - -msgid "Happy" -msgstr "Heureux" - -msgid "System colors" -msgstr "Couleurs du système" - -msgid "Connect device" -msgstr "Connexion du périphérique" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "C'est la première fois que vous connectez ce périphérique. Strawberry va analyser le périphérique pour trouver des fichiers musicaux - Ceci peu prendre un certain temps." - -msgid "This device will not work properly" -msgstr "Ce périphérique ne fonctionne pas correctement" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Ceci est un périphérique MTP, mais vous avez compilé Strawberry sans le support libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Si vous continuez, ce périphérique fonctionnera lentement et les morceaux que vous y copiez pourraient ne pas fonctionner." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Ceci est un iPod, mais vous avez compilé Strawberry sans le support libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Ce type de périphérique n'est pas supporté : %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Mise à jour %1%..." - -msgid "Not connected" -msgstr "Déconnecté" - -msgid "Not mounted - double click to mount" -msgstr "Non monté – double-cliquez pour monter" - -msgid "Double click to open" -msgstr "Double-cliquer pour ouvrir" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 morceau %2" - -msgid "Safely remove device" -msgstr "Enlever le périphérique en toute sécurité" - -msgid "Forget device" -msgstr "Oublier ce périphérique" - -msgid "Device properties..." -msgstr "Propriétés du périphérique..." - -msgid "Delete from device..." -msgstr "Supprimer du périphérique..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "« Oublier un périphérique » va supprimer le périphérique de cette liste et obligera Strawberry à rechercher à nouveau tous les morceaux qu'il contient la prochaine fois que vous le connecterez." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Ces fichiers vont être supprimés du périphérique, êtes-vous sûr(e) de vouloir continuer ?" - -msgid "Model" -msgstr "Modèle" - -msgid "Manufacturer" -msgstr "Fabricant" - -msgid "Mount point" -msgstr "Point de montage" - -msgid "Device" -msgstr "Périphérique" - -msgid "URI" -msgstr "URI" - -msgid "D-Bus path" -msgstr "Chemin D-Bus" - -msgid "Serial number" -msgstr "Numéro de série" - -msgid "Mount points" -msgstr "Points de montage" - -msgid "Partition label" -msgstr "Intitulé de la partition" - -msgid "UUID" -msgstr "UUID" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "Dispositif MTP non valide : %1" - -msgid "Could not open MTP device." -msgstr "Impossible d'ouvrir le périphérique MTP." - -#, qt-format -msgid "MTP error: %1" -msgstr "Erreur MTP : %1" - -msgid "MTP device not found." -msgstr "Périphérique MTP introuvable." - -msgid "Loading MTP device" -msgstr "Chargement du périphérique MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Erreur lors de la connexion au périphérique MTP %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "Erreur de connexion du dispositif MTP %1 : %2" - -msgid "Error while setting CDDA device to ready state." -msgstr "Erreur lors de la configuration du périphérique CDDA à l'état prêt." - -msgid "Error while setting CDDA device to pause state." -msgstr "Erreur lors de la configuration du périphérique CDDA à l'état pause." - -msgid "Error while querying CDDA tracks." -msgstr "Erreur lors de l'interrogation des pistes CDDA." - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "Impossible de copier %1 dans %2 : %3" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "L'écriture de la base de données a échoué : %1" - -msgid "Writing database failed." -msgstr "L'écriture de la base de données a échoué" - -msgid "Loading iPod database" -msgstr "Chargement de la base de données iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Une erreur est survenue lors du chargement de la base de données iTunes" - -msgid "Server URL is invalid." -msgstr "L'URL du serveur est invalide." - -msgid "Missing username or password." -msgstr "Le nom d'utilisateur ou le mot de passe est manquant." - -msgid "Subsonic server URL is invalid." -msgstr "L'URL du serveur Subsonic est invalide." - -msgid "Missing Subsonic username or password." -msgstr "Le nom d'utilisateur ou le mot de passe de Subsonic est manquant." - -msgid "Retrieving albums..." -msgstr "Récupération des albums..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Récupération des morceaux pour l'album %1 ..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Récupération des morceaux pour les albums %1 ..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Récupération de la pochette pour l'album %1 ..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Récupération des pochettes pour les albums %1 ..." - -msgid "Configuration incomplete" -msgstr "Configuration incomplète" - -msgid "Missing server url, username or password." -msgstr "L'URL du serveur, le nom d'utilisateur ou le mot de passe est manquant." - -msgid "Configuration incorrect" -msgstr "Configuration incorrecte" - -msgid "Test successful!" -msgstr "Test réussi !" - -msgid "Test failed!" -msgstr "Test échoué !" - -msgid "Reply from Tidal is missing query items." -msgstr "La réponse de Tidal est : élément de requête manquante." - -msgid "Missing Tidal API token." -msgstr "Le jeton de l'API Tidal est manquant." - -msgid "Missing Tidal username." -msgstr "Le nom d'utilisateur de Tidal est manquant." - -msgid "Missing Tidal password." -msgstr "Le mot de passe de Tidal est manquant." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Aucune authentification sur Tidal et nombre maximum de tentatives de connexion atteint." - -msgid "Not authenticated with Tidal." -msgstr "Aucune authentification sur Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Le jeton de l'API Tidal, le nom d'utilisateur ou le mot de passe est manquant." - -msgid "Authenticating..." -msgstr "En cours d'authentification..." - -msgid "Receiving artists..." -msgstr "Réception des artistes..." - -msgid "Receiving albums..." -msgstr "Réception des albums..." - -msgid "Receiving songs..." -msgstr "Réception des morceaux..." - -msgid "Searching..." -msgstr "Recherche en cours..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "Réception des albums pour l'artiste %1 ..." - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "Réception des albums pour les artistes %1 ..." - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "Réception des morceaux pour l'album %1 ..." - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "Réception des morceaux pour les albums %1 ..." - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "Réception de la pochette pour l'album %1 ..." - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "Réception des pochettes pour les albums %1 ..." - -msgid "No match." -msgstr "Aucune correspondance." - -msgid "Cancelled." -msgstr "Annulé." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Réception d'une URL avec un flux crypté %1 depuis Tidal. Strawberry ne prend actuellement pas en charge les flux cryptés." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Réception d'une URL avec un flux crypté depuis Tidal. Strawberry ne prend actuellement pas en charge les flux cryptés." - -msgid "Missing Tidal client ID." -msgstr "L'ID du client Tidal est manquant." - -msgid "Missing API token." -msgstr "Jeton de l'API manquant." - -msgid "Missing username." -msgstr "Nom d'utilisateur manquant." - -msgid "Missing password." -msgstr "Mot de passe manquant." - -msgid "Spotify Authentication" -msgstr "Authentification Spotify" - -msgid "Redirect missing token code or state!" -msgstr "Redirigé le code ou l'état du jeton manquant !" - -msgid "Not authenticated with Spotify." -msgstr "Aucune authentification sur Spotify." - -msgid "Data missing error" -msgstr "Erreur de donnée manquante" - -msgid "Maximum number of login attempts reached." -msgstr "Nombre maximum de tentatives de connexion atteint." - -msgid "Missing Qobuz app ID." -msgstr "L'ID de l'app de Qobuz est manquant." - -msgid "Missing Qobuz username." -msgstr "Le nom d'utilisateur de Qobuz est manquant." - -msgid "Missing Qobuz password." -msgstr "Le mot de passe de Qobuz est manquant." - -msgid "Not authenticated with Qobuz." -msgstr "Aucune authentification sur Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "L'ID app ou le secret de Qobuz est manquant." - -msgid "Missing app id." -msgstr "ID d'application manquant." - -msgid "Strawberry Music Player" -msgstr "Lecteur audio Strawberry" - -msgid "F5" -msgstr "F5" - -msgid "&Play" -msgstr "&Lecture" - -msgid "F6" -msgstr "F6" - -msgid "&Stop" -msgstr "&Stop" - -msgid "F7" -msgstr "F7" - -msgid "&Next track" -msgstr "&Piste suivante" - -msgid "F8" -msgstr "F8" - -msgid "&Quit" -msgstr "&Quitter" - -msgid "Ctrl+Q" -msgstr "Ctrl+Q" - -msgid "Ctrl+Alt+V" -msgstr "Ctrl+Alt+V" - -msgid "&Clear playlist" -msgstr "&Vider la liste de lecture" - -msgid "Ctrl+K" -msgstr "Ctrl+K" - -msgid "Ctrl+E" -msgstr "Ctrl+E" - -msgid "Renumber tracks in this order..." -msgstr "Renuméroter les pistes dans cet ordre..." - -msgid "Set value for all selected tracks..." -msgstr "Définir une valeur pour toutes les pistes sélectionnées..." - -msgid "Edit tag..." -msgstr "Modifier le tag..." - -msgid "&Settings..." -msgstr "&Paramètres..." - -msgid "Ctrl+P" -msgstr "Ctrl+P" - -msgid "&About Strawberry" -msgstr "À propos de Strawberry" - -msgid "F1" -msgstr "F1" - -msgid "S&huffle playlist" -msgstr "Mélan&ger la liste de lecture" - -msgid "Ctrl+H" -msgstr "Ctrl+H" - -msgid "&Add file..." -msgstr "&Ajouter un fichier..." - -msgid "Ctrl+Shift+A" -msgstr "Ctrl+Maj+A" - -msgid "&Open file..." -msgstr "&Ouvrir un fichier..." - -msgid "Open audio &CD..." -msgstr "Ouvrir un &CD audio..." - -msgid "&Cover Manager" -msgstr "Gestionnaire de po&chettes" - -msgid "C&onsole" -msgstr "C&onsole" - -msgid "&Shuffle mode" -msgstr "&Mode aléatoire" - -msgid "&Repeat mode" -msgstr "Mode &répétition" - -msgid "Remove from playlist" -msgstr "Supprimer de la liste de lecture" - -msgid "&Equalizer" -msgstr "&Égaliseur" - -msgid "&Transcode Music" -msgstr "&Transcoder la musique" - -msgid "Add &folder..." -msgstr "Ajouter un &dossier..." - -msgid "&Jump to the currently playing track" -msgstr "&Aller à la piste en cours de lecture" - -msgid "Ctrl+J" -msgstr "Ctrl+J" - -msgid "&New playlist" -msgstr "&Nouvelle liste de lecture" - -msgid "Ctrl+N" -msgstr "Ctrl+N" - -msgid "Save &playlist..." -msgstr "Enregistrer la &liste de lecture..." - -msgid "Ctrl+S" -msgstr "Ctrl+S" - -msgid "&Load playlist..." -msgstr "&Charger une liste de lecture..." - -msgid "Ctrl+Shift+O" -msgstr "Ctrl+Maj+O" - -msgid "&Save all playlists..." -msgstr "&Enregistrer toutes les listes de lecture..." - -msgid "Go to next playlist tab" -msgstr "Aller à la liste de lecture suivante" - -msgid "Go to previous playlist tab" -msgstr "Aller à la liste de lecture précédente" - -msgid "&Update changed collection folders" -msgstr "&Mettre à jour les dossiers de la bibliothèque" - -msgid "About &Qt" -msgstr "À propos de &Qt" - -msgid "&Mute" -msgstr "&Sourdine" - -msgid "Ctrl+M" -msgstr "Ctrl+M" - -msgid "&Do a full collection rescan" -msgstr "&Refaire une analyse complète de la bibliothèque" - -msgid "Stop collection scan" -msgstr "Arrêter l'analyse de la bibliothèque" - -msgid "Complete tags automatically..." -msgstr "Compléter les tags automatiquement..." - -msgid "Ctrl+T" -msgstr "Ctrl+T" - -msgid "Toggle scrobbling" -msgstr "Basculer le scrobbling" - -msgid "Remove &duplicates from playlist" -msgstr "Supprimer les &doublons de la liste de lecture" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Supprimer les pistes &indisponibles de la liste de lecture" - -msgid "Add file(s) to transcoder" -msgstr "Ajouter des fichiers à transcoder" - -msgid "Add file to transcoder" -msgstr "Ajouter un fichier à transcoder" - -msgid "Add stream..." -msgstr "Ajouter un flux..." - -msgid "Show sidebar" -msgstr "Afficher la barre latérale" - -msgid "Import data from last.fm..." -msgstr "Importer les données de last.fm..." - -msgid "MenuPopupToolButton" -msgstr "MenuPopupToolButton" - -msgid "&Music" -msgstr "&Musique" - -msgid "P&laylist" -msgstr "Liste de &lecture" - -msgid "Help" -msgstr "Aide" - -msgid "&Tools" -msgstr "&Outils" - -msgid "Collection advanced grouping" -msgstr "Groupement avancé de la bibliothèque" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Vous pouvez changer la façon dont les morceaux de la collection sont organisés." - -msgid "Group Collection by..." -msgstr "Grouper la Bibliothèque par..." - -msgid "Second level" -msgstr "Deuxième niveau" - -msgid "Third level" -msgstr "Troisième niveau" - -msgid "Separate albums by grouping tag" -msgstr "Séparer les albums en regroupant par tag" - -msgid "Collection Filter" -msgstr "Filtre de bibliothèque" - -msgid "Entire collection" -msgstr "Bibliothèque complète" - -msgid "Added today" -msgstr "Ajouté aujourd'hui" - -msgid "Added this week" -msgstr "Ajouté cette semaine" - -msgid "Added within three months" -msgstr "Ajouté au cours des 3 derniers mois" - -msgid "Added this year" -msgstr "Ajouté cette année" - -msgid "Added this month" -msgstr "Ajouté ce mois" - -msgid "Save current grouping" -msgstr "Enregistrer le regroupement" - -msgid "Manage saved groupings" -msgstr "Gérer les regroupement enregistrés" - -msgid "Enter search terms here" -msgstr "Saisissez les termes à rechercher ici" - -msgid "Form" -msgstr "Forme" - -msgid "Saved Grouping Manager" -msgstr "Gestionnaire des regroupements enregistrés" - -msgid "Remove" -msgstr "Supprimer" - -msgid "Ctrl+Up" -msgstr "Ctrl+Haut" - -msgid "File paths" -msgstr "Emplacements des fichiers" - -msgid "This can be changed later through the preferences" -msgstr "Ceci peut être modifié plus tard dans les préférences" - -msgid "Remember my choice" -msgstr "Se souvenir de mon choix" - -msgid "Stop after each track" -msgstr "Arrêter la lecture après chaque piste" - -msgid "Repeat" -msgstr "Répéter" - -msgid "Shuffle" -msgstr "Aléatoire" - -msgid "Dynamic mode is on" -msgstr "Le mode dynamique est activé" - -msgid "New tracks will be added automatically." -msgstr "De nouvelles pistes seront ajoutées automatiquement." - -msgid "Expand" -msgstr "Étendre" - -msgid "Repopulate" -msgstr "Rafraîchir" - -msgid "Turn off" -msgstr "Éteindre" - -msgid "QueueView" -msgstr "Vue de la liste d'attente" - -msgid "Move down" -msgstr "Déplacer vers le bas" - -msgid "Move up" -msgstr "Déplacer vers le haut" - -msgid "Ctrl+Down" -msgstr "Ctrl+Bas" - -msgid "Search mode" -msgstr "Mode de recherche" - -msgid "Match every search term (AND)" -msgstr "Faire correspondre tous les termes de recherche (ET)" - -msgid "Match one or more search terms (OR)" -msgstr "Faire correspondre un ou plusieurs termes de recherche (OU)" - -msgid "Include all songs" -msgstr "Inclure tous les morceaux" - -msgid "Sorting" -msgstr "Tri" - -msgid "Put songs in a random order" -msgstr "Placer les morceaux dans un ordre aléatoire" - -msgid "Sort songs by" -msgstr "Trier les morceaux par" - -msgid "Limits" -msgstr "Limites" - -msgid "Show all the songs" -msgstr "Afficher tous les morceaux" - -msgid "Only show the first" -msgstr "N'afficher que le premier" - -msgid " songs" -msgstr " morceaux" - -msgid "Preview" -msgstr "Aperçu" - -msgid "and" -msgstr "et" - -msgid "ago" -msgstr "depuis" - -msgid "New smart playlist" -msgstr "Nouvelle liste de lecture intelligente" - -msgid "Edit smart playlist" -msgstr "Modifier la liste de lecture intelligente" - -msgid "Use dynamic mode" -msgstr "Utiliser le mode dynamique" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "En mode dynamique, de nouvelles pistes seront choisies et ajoutées à la liste de lecture à chaque fois qu'un morceau se termine." - -msgid "Export covers" -msgstr "Exporter les pochettes" - -msgid "Output" -msgstr "Sortie" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Saisissez un nom de fichier pour les pochettes exportées (sans extension) :" - -msgid "Export downloaded covers" -msgstr "Exporter les pochettes téléchargées" - -msgid "Export embedded covers" -msgstr "Exporter les pochettes embarquées" - -msgid "Existing covers" -msgstr "Pochettes existantes" - -msgid "Do not overwrite" -msgstr "Ne pas écraser" - -msgid "O&verwrite all" -msgstr "To&ut écraser" - -msgid "Overwrite s&maller ones only" -msgstr "Écraser uniquement les plus &petits" - -msgid "Size" -msgstr "Taille" - -msgid "Scale size" -msgstr "Taille redimensionnée" - -msgid "Size:" -msgstr "Taille :" - -msgid "Pixel" -msgstr "Pixel" - -msgid "Cover Manager" -msgstr "Gestionnaire de pochettes" - -msgid "Fetch automatically" -msgstr "Récupérer automatiquement" - -msgid "Load" -msgstr "Charger" - -msgid "Add to playlist" -msgstr "Ajouter à la liste de lecture" - -msgid "View" -msgstr "Vue" - -msgid "Total albums:" -msgstr "Total albums :" - -msgid "Without cover:" -msgstr "Sans pochette :" - -msgid "0" -msgstr "0" - -msgid "Fetch Missing Covers" -msgstr "Récupérer les pochettes manquantes" - -msgid "Export Covers" -msgstr "Exporter les pochettes" - -msgid "Fetch completed" -msgstr "Récupération terminé" - -msgid "Load cover from URL" -msgstr "Charger une pochette à partir d'une URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Saisissez une URL pour télécharger une pochette depuis Internet :" - -msgid "Settings" -msgstr "Paramètres" - -msgid "Behavior" -msgstr "Comportement" - -msgid "Show system tray icon" -msgstr "Afficher l'icône dans la barre de tâche" - -msgid "Keep running in the background when the window is closed" -msgstr "Laisser tourner en arrière plan lorsque la fenêtre est fermée" - -msgid "Show song progress on system tray icon" -msgstr "Afficher l'avancée de la chanson dans la barre des tâches" - -msgid "Show song progress on taskbar" -msgstr "Afficher la progression de la piste dans la barre des tâches" - -msgid "Resume playback on start" -msgstr "Redémarrer la lecture au démarrage" - -msgid "Show playing widget" -msgstr "Afficher l'applet lecture" - -msgid "On startup" -msgstr "Au démarrage" - -msgid "Remember from &last time" -msgstr "Se souvenir de la fois &précédente" - -msgid "Show the main window" -msgstr "Afficher la fenêtre principale" - -msgid "Hide the main window" -msgstr "Masquer la fenêtre principale" - -msgid "Show the main window maximized" -msgstr "Afficher la fenêtre principale en plein écran" - -msgid "Show the main window minimized" -msgstr "Afficher la fenêtre principale en réduit" - -msgid "Language" -msgstr "Langue" - -msgid "Use the system default" -msgstr "Utiliser la langue par défaut du système" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Vous devez redémarrer Strawberry si vous changez de langue." - -msgid "Using the menu to add a song will..." -msgstr "Utiliser le menu pour ajouter un morceau aura comme effet de..." - -msgid "Never start playing" -msgstr "Ne jamais commencer la lecture" - -msgid "Play if there is nothing already playing" -msgstr "Lire s'il n'y a rien d'autre en cours de lecture" - -msgid "Always start playing" -msgstr "Toujours commencer la lecture" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Appuyer sur « Précédent » du lecteur aura comme effet de..." - -msgid "Jump to previous song right away" -msgstr "Aller tout de suite à la piste précédente" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Redémarrer le morceau, puis aller au précédent si appuyé à nouveau" - -msgid "Double clicking a song will..." -msgstr "Double-cliquer sur un morceau aura comme effet de..." - -msgid "Append to the playlist" -msgstr "Ajouter à la liste de lecture" - -msgid "Replace the playlist" -msgstr "Remplacer la liste de lecture" - -msgid "Add to the queue" -msgstr "Ajouter à la liste d'attente" - -msgid "Double clicking a song in the playlist will..." -msgstr "Double-cliquer sur un morceau dans la liste de lecture aura comme effet de..." - -msgid "Change the currently playing song" -msgstr "Changer le morceau en cours de lecture" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Rechercher avec un raccourci clavier ou avec la roulette de la souris" - -msgid "Time step" -msgstr "Pas temporel" - -msgid " s" -msgstr " s" - -msgid "Volume Increment" -msgstr "Échelonnage du volume" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Ces dossiers seront analysés pour trouver les fichiers qui constitueront votre bibliothèque musicale" - -msgid "Add new folder..." -msgstr "Ajouter un nouveau dossier..." - -msgid "Remove folder" -msgstr "Supprimer un dossier" - -msgid "Automatic updating" -msgstr "Mise à jour automatique" - -msgid "Update the collection when Strawberry starts" -msgstr "Mettre à jour la bibliothèque au lancement de Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Surveiller les modifications de la bibliothèque" - -msgid "Song fingerprinting and tracking" -msgstr "Empreinte et suivi des morceaux" - -msgid "Mark disappeared songs unavailable" -msgstr "Marquer les morceaux disparus comme indisponible" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "Faire l'analyse EBU R 128 de la piste (requis pour normaliser la bruyance selon la norme EBU R 128)" - -msgid "Expire unavailable songs after" -msgstr "Expirer les morceaux indisponibles après" - -msgid "days" -msgstr "jours" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Noms de pochette préférés (liste séparée par des virgules)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Pendant la recherche de pochettes Strawberry utilisera d'abord les fichiers qui contiennent un de ces mots.\n" -"S'il n'en existe pas alors Strawberry utilisera la plus grande image du dossier." - -msgid "Automatically open single categories in the collection tree" -msgstr "Ouvrir automatiquement les catégories seules dans l'arbre de la bibliothèque" - -msgid "Show dividers" -msgstr "Afficher les séparateurs" - -msgid "Show album cover art in collection" -msgstr "Afficher la pochette de l'album dans la bibliothèque" - -msgid "Use various artists for compilation albums" -msgstr "Utiliser divers artistes pour les albums de compilation" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "Ignorer les déterminants (\"Les\", \"Le/La\", \"un/une\"…) lors du tri des noms d'artistes" - -msgid "Album cover pixmap cache" -msgstr "Cache pixmap de pochette d'album" - -msgid "Enable Disk Cache" -msgstr "Activer le cache disque" - -msgid "Disk Cache Size" -msgstr "Taille du cache disque" - -msgid "Current disk cache in use:" -msgstr "Cache disque en cours d'utilisation :" - -msgid "Clear Disk Cache" -msgstr "Vider le cache disque" - -msgid "Song playcounts and ratings" -msgstr "Compteur d'écoutes et notations des morceaux" - -msgid "Save playcounts to song tags when possible" -msgstr "Enregistrer les compteur d'écoutes dans les tags de morceaux lorsque cela est possible" - -msgid "Save ratings to song tags when possible" -msgstr "Enregistrer les notations dans les tags de morceaux lorsque cela est possible" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Remplacer le nombre de lectures de la base de données lorsque les morceaux sont relus à partir du disque" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Remplacer la notation de la base de données lorsque les morceaux sont relus à partir du disque" - -msgid "Save playcounts and ratings to files now" -msgstr "Enregistrer les compteur d'écoutes et les notations dans des fichiers maintenant" - -msgid "Enable delete files in the right click context menu" -msgstr "Activer la suppression des fichiers dans le menu contextuel du clic droit" - -msgid "Backend" -msgstr "Arrière plan" - -msgid "Audio output" -msgstr "Sortie audio" - -msgid "Engine" -msgstr "Moteur" - -msgid "ALSA plugin:" -msgstr "Plugin ALSA :" - -msgid "hw" -msgstr "hw" - -msgid "p&lughw" -msgstr "p&lughw" - -msgid "pcm" -msgstr "pcm" - -msgid "Exclusive mode (Experimental)" -msgstr "Mode exclusif (Expérimental)" - -msgid "Options" -msgstr "Options" - -msgid "Enable volume control" -msgstr "Activer le contrôle du volume" - -msgid "Upmix / downmix to" -msgstr "Remix à" - -msgid "channels" -msgstr "canaux" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "Amélioration de l'écoute sur casque des enregistrements stéréo (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "Activer HTTP/2 pour le streaming" - -msgid "Use strict SSL mode" -msgstr "Utiliser le mode SSL strict" - -msgid "Buffer" -msgstr "Tampon" - -msgid " ms" -msgstr " ms" - -msgid "Buffer duration" -msgstr "Durée du tampon" - -msgid "High watermark" -msgstr "Filigrane fort" - -msgid "Low watermark" -msgstr "Filigrane fin" - -msgid "Defaults" -msgstr "Défauts" - -msgid "Audio normalization" -msgstr "Normalisation audio" - -msgid "No audio normalization" -msgstr "Aucune normalisation audio" - -msgid "Replay Gain" -msgstr "Ajusteur de gain" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Utiliser la métadonnée Replay Gain si disponible" - -msgid "Replay Gain mode" -msgstr "Mode du Replay Gain" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (volume égalisé pour toutes les pistes)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (volume idéal pour toutes les pistes)" - -msgid "Apply compression to prevent clipping" -msgstr "Appliquer une compression pour prévenir les coupures" - -msgid "Fallback-gain" -msgstr "Gain de repli" - -msgid "EBU R 128 Loudness Normalization" -msgstr "Normalisation de la Bruyance (EBU R 128)" - -msgid "Perform track loudness normalization" -msgstr "Normaliser la bruyance des pistes" - -msgid "Target Level" -msgstr "Niveau ciblé" - -msgid "Fading" -msgstr "Fondu" - -msgid "Fade out when stopping a track" -msgstr "Terminer par un fondu quand une piste s'arrête" - -msgid "Cross-fade when changing tracks manually" -msgstr "Appliquer un fondu lors des changements de piste manuels" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Appliquer un fondu lors des changements de piste automatiques" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Excepté entre les pistes d'un même album ou d'une même CUE sheet" - -msgid "Fading duration" -msgstr "Durée du fondu" - -msgid "Fade out on pause / fade in on resume" -msgstr "Fondu lors de la mise en pause et de la reprise" - -msgid "Add song artist tag" -msgstr "Ajouter le tag artiste du morceau" - -msgid "Add song album tag" -msgstr "Ajouter le tag album du morceau" - -msgid "Add song title tag" -msgstr "Ajouter le tag titre du morceau" - -msgid "Add song albumartist tag" -msgstr "Ajouter le tag artiste de l'album du morceau" - -msgid "Add song year tag" -msgstr "Ajouter le tag année du morceau" - -msgid "Add song composer tag" -msgstr "Ajouter le tag compositeur du morceau" - -msgid "Add song performer tag" -msgstr "Ajouter un tag interprète" - -msgid "Add song grouping tag" -msgstr "Ajouter un tag de groupement de morceaux" - -msgid "Add song disc tag" -msgstr "Ajouter le tag numéro de disque du morceau" - -msgid "Add song track tag" -msgstr "Ajouter le tag piste du morceau" - -msgid "Add song genre tag" -msgstr "Ajouter le tag genre du morceau" - -msgid "Add song length tag" -msgstr "Ajouter la durée du morceau" - -msgid "Add song play count" -msgstr "Ajouter le compteur d'écoutes du morceau" - -msgid "Add song skip count" -msgstr "Ajouter le compteur de sauts du morceau" - -msgid "Add a new line if supported by the notification type" -msgstr "Ajouter un saut de ligne, si cela est supporté par le type de notification" - -msgid "%filename%" -msgstr "%filename%" - -msgid "Add song filename" -msgstr "Ajouter le nom de fichier du morceau" - -msgid "%url%" -msgstr "%url%" - -msgid "Add song URL" -msgstr "Ajouter l'url du morceau" - -msgid "%rating%" -msgstr "%rating%" - -msgid "Add song rating" -msgstr "Ajouter la note du morceau" - -msgid "%originalyear%" -msgstr "%originalyear%" - -msgid "Add song original year tag" -msgstr "Ajouter le tag année originale du morceau" - -msgid "Custom text settings" -msgstr "Réglages de texte personnalisés" - -msgid "Summary" -msgstr "Résumé" - -msgid "Enable Items" -msgstr "Activer les éléments" - -msgid "Technical Data" -msgstr "Données techniques" - -msgid "Song Lyrics" -msgstr "Paroles des morceaux" - -msgid "Automatically search for album cover" -msgstr "Rechercher automatiquement la pochette de l'album" - -msgid "Font for headline" -msgstr "Police pour le titre" - -msgid "Font" -msgstr "Police" - -msgid "Font size" -msgstr "Taille de police" - -msgid " pt" -msgstr " pt" - -msgid "Font for data and lyrics" -msgstr "Police pour les données et les paroles" - -msgid "Use alternating row colors" -msgstr "Utiliser des couleurs de ligne alternées" - -msgid "Show bars on the currently playing track" -msgstr "Afficher les barres sur la piste en cours de lecture" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Afficher une animation lumineuse sur la piste en cours de lecture" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Passer à la piste suivante de la liste de lecture si un morceau est indisponible" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Griser les morceaux indisponibles de la liste lors de la lecture" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Griser les morceaux indisponibles de la liste de lecture au démarrage" - -msgid "Automatically select current playing track" -msgstr "Sélectionner automatiquement la piste en cours de lecture" - -msgid "Enable playlist toolbar" -msgstr "Activer la barre d'outils de la liste de lecture" - -msgid "Enable playlist clear button" -msgstr "Activer le bouton d'effacement de la liste de lecture" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Trier la liste automatique quand des morceaux sont insérés" - -msgid "When saving a playlist, file paths should be" -msgstr "Emplacement des fichiers lors de la sauvegarde d'une liste de lecture" - -msgid "A&utomatic" -msgstr "A&utomatique" - -msgid "Absolu&te" -msgstr "Absol&u" - -msgid "Re&lative" -msgstr "Re&latif" - -msgid "As&k when saving" -msgstr "Demander lors de la &sauvegarde" - -msgid "Metadata" -msgstr "Métadonnées" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Si cette option est activée, cliquer sur un morceau sélectionné dans la liste de lecture vous permettra d'éditer directement la valeur du tag" - -msgid "Enable song metadata inline edition with click" -msgstr "Permettre d'éditer les tags en cliquant sur un morceau, dans la liste de lecture" - -msgid "Write metadata when saving playlists" -msgstr "Écrire des métadonnées lors de la sauvegarde des listes de lecture" - -msgid "Scrobbler" -msgstr "Scrobbler" - -msgid "Enable" -msgstr "Activer" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Les musiques sont scrobblées si leurs métadonnées sont valides et n'ont pas plus de 30 secondes, ont été jouées pour un minimum de leur moitiés de leur longueur ou plus de 4 minutes (la première des conditions qui est vérifiée)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Travailler en mode hors connexion (uniquement scrobbles en cache)" - -msgid "Show scrobble button" -msgstr "Afficher le bouton scrobble" - -msgid "Show love button" -msgstr "Afficher le bouton J'aime" - -msgid "Submit scrobbles every" -msgstr "Soumettre des scrobbles tous les" - -msgid " seconds" -msgstr " secondes" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(Il s'agit du délai entre le moment où une chanson est scrobbulée et celui où les scrobbles sont soumis au serveur. Si vous fixez ce délai à 0 seconde, les scrobbles seront soumis immédiatement." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Préférer l'artiste de l'album lors de l'envoi de scrobbles" - -msgid "Show dialog for errors" -msgstr "Afficher la boîte de dialogue pour les erreurs" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "Retirer \"Remasterisé\" et autres mots similaires des titres d'album et de pistes" - -msgid "Enable scrobbling for the following sources:" -msgstr "Activer le scrobbling pour les sources suivantes :" - -msgid "Local file" -msgstr "Fichier local" - -msgid "CDDA" -msgstr "CDDA" - -msgid "SomaFM" -msgstr "SomaFM" - -msgid "Stream" -msgstr "Flux" - -msgid "Radio Paradise" -msgstr "Radio Paradise" - -msgid "Last.fm" -msgstr "Last.fm" - -msgid "Login" -msgstr "Se connecter" - -msgid "Libre.fm" -msgstr "Libre.fm" - -msgid "Listenbrainz" -msgstr "Listenbrainz" - -msgid "User token:" -msgstr "Jeton utilisateur :" - -msgid "Covers" -msgstr "Pochettes" - -msgid "Cover providers" -msgstr "Fournisseurs de pochette" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Choisissez les fournisseurs que vous souhaitez utiliser lors de la recherche des pochettes." - -msgid "Authentication" -msgstr "Authentification" - -msgid "Album cover types" -msgstr "Types de pochette d'album" - -msgid "Saving album covers" -msgstr "Sauvegarde des pochettes d'album" - -msgid "Save album covers in album directory" -msgstr "Enregistrer les pochettes dans le dossier album" - -msgid "Save album covers in cache directory" -msgstr "Enregistrer les pochettes d'album dans le répertoire cache" - -msgid "Save album covers as embedded cover" -msgstr "Enregistrer les pochettes d'album en tant que pochette embarquée" - -msgid "Filename:" -msgstr "Nom de fichier :" - -msgid "Pattern" -msgstr "Motif" - -msgid "Random" -msgstr "Aléatoire" - -msgid "Overwrite existing file" -msgstr "Écraser le fichier existant" - -msgid "Lowercase filename" -msgstr "Nom de fichier en minuscule" - -msgid "Replace spaces with dashes" -msgstr "Remplacer les espaces par des tirets" - -msgid "Lyrics" -msgstr "Paroles" - -msgid "Lyrics providers" -msgstr "Fournisseurs des paroles" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Choisissez les fournisseurs que vous souhaitez utiliser lors de la recherche des paroles." - -msgid "Network Proxy" -msgstr "Serveur mandataire (proxy)" - -msgid "&Use the system proxy settings" -msgstr "&Utiliser les paramètres proxy du système" - -msgid "Direct internet connection" -msgstr "Connexion directe à Internet" - -msgid "&Manual proxy configuration" -msgstr "Configuration &manuelle du proxy" - -msgid "HTTP proxy" -msgstr "Serveur mandataire HTTP" - -msgid "SOCKS proxy" -msgstr "Serveur mandataire SOCKS" - -msgid "Port" -msgstr "Port" - -msgid "Use authentication" -msgstr "Utiliser l'authentification" - -msgid "Username" -msgstr "Nom d'utilisateur" - -msgid "Password" -msgstr "Mot de passe" - -msgid "Use proxy settings for streaming" -msgstr "Utilisez les paramètres proxy pour diffuser en direct" - -msgid "Appearance" -msgstr "Apparence" - -msgid "Style" -msgstr "Style" - -msgid "Use system theme icons" -msgstr "Utiliser le thème d'icônes du système" - -msgid "Settings require restart." -msgstr "Les paramètres nécessitent un redémarrage." - -msgid "Tabbar colors" -msgstr "Couleurs de la barre d'onglets" - -msgid "&Use the system default color" -msgstr "&Utiliser la couleur par défaut du système" - -msgid "Use custom color" -msgstr "Utiliser une couleur personnalisée" - -msgid "Use gradient background" -msgstr "Utiliser un fond en dégradé" - -msgid "Select tabbar color:" -msgstr "Sélectionner la couleur de la barre d'onglets :" - -msgid "Background image" -msgstr "Image d'arrière-plan" - -msgid "Default bac&kground image" -msgstr "Image d'arrière-&plan par défaut" - -msgid "&No background image" -msgstr "&Aucune image d'arrière plan" - -msgid "The album cover of the currently playing song" -msgstr "La pochette d'album du morceau en cours de lecture" - -msgid "Albu&m cover" -msgstr "&Pochette de l'album" - -msgid "Custom image:" -msgstr "Image personnalisée :" - -msgid "Browse..." -msgstr "Parcourir..." - -msgid "Position" -msgstr "Position" - -msgid "Upper Left" -msgstr "Haut gauche" - -msgid "Upper Right" -msgstr "Haut droit" - -msgid "Middle" -msgstr "Milieu" - -msgid "Bottom Left" -msgstr "Inférieur gauche" - -msgid "Bottom Right" -msgstr "Inférieur droit" - -msgid "Max cover size" -msgstr "Taille maximum de la pochette" - -msgid "Stretch image to fill playlist" -msgstr "Étirer l'image pour remplir la liste de lecture" - -msgid "Keep aspect ratio" -msgstr "Conserver les proportions" - -msgid "Do not cut image" -msgstr "Ne pas couper l'image" - -msgid "Blur amount" -msgstr "Niveau de flou" - -msgid "0px" -msgstr "0px" - -msgid "Opacity" -msgstr "Opacité" - -msgid "40%" -msgstr "40%" - -msgid "Icon sizes" -msgstr "Tailles des icônes" - -msgid "Playlist buttons" -msgstr "Boutons de liste de lecture" - -msgid "Tabbar large mode" -msgstr "Grande barre d'onglets" - -msgid "Play control buttons" -msgstr "Boutons de contrôle de lecture" - -msgid "Configure buttons" -msgstr "Configurer les boutons" - -msgid "Files, playlists and queue buttons" -msgstr "Boutons de fichiers, listes de lecture et file d'attente" - -msgid "Tabbar small mode" -msgstr "Petite barre d'onglets" - -msgid "Playlist playing song color" -msgstr "Couleur du morceau en lecture dans la playlist" - -msgid "System highlight color" -msgstr "Couleur de surbrillance du système" - -msgid "Custom color" -msgstr "Couleur personnalisée" - -msgid "Select playlist playing song color:" -msgstr "Sélectionner la couleur du morceau en lecture dans la playlist :" - -msgid "Notifications" -msgstr "Notifications" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry peut afficher un message lors des changements de pistes." - -msgid "Notification type" -msgstr "Type de notification" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Désactivé" - -msgid "Show a &native desktop notification" -msgstr "Afficher une notification native au bureau" - -msgid "Show a pretty OSD" -msgstr "Utiliser l'affichage à l'écran (OSD)" - -msgid "Show a popup fro&m the system tray" -msgstr "Afficher une pop-up depuis la &barre de tâche" - -msgid "General settings" -msgstr "Configuration générale" - -msgid "Popup duration" -msgstr "Durée d'affichage de la fenêtre" - -msgid "Disable duration" -msgstr "Désactiver la durée" - -msgid "Show a notification when I change the volume" -msgstr "Afficher une notification lorsque je change le volume" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Afficher une notification lorsque je change le mode répétition/aléatoire" - -msgid "Show a notification when I pause playback" -msgstr "Afficher une notification lorsque je mets la lecture en pause" - -msgid "Show a notification when I resume playback" -msgstr "Afficher une notification lorsque je reprends la lecture" - -msgid "Include album art in the notification" -msgstr "Inclure la pochette de l'album à la notification" - -msgid "Custom message settings" -msgstr "Paramètres de message personnalisé" - -msgid "Use a custom message for notifications" -msgstr "Utiliser un message personnalisé pour les notifications" - -msgid "Body" -msgstr "Corps" - -msgid "Pretty OSD options" -msgstr "Options de l'affichage à l'écran (OSD)" - -msgid "Background color" -msgstr "Couleur de l'arrière-plan" - -msgid "Text options" -msgstr "Options du texte" - -msgid "Choose font..." -msgstr "Choisir une police de caractères..." - -msgid "Choose color..." -msgstr "Choisir une couleur..." - -msgid "Background opacity" -msgstr "Opacité de l'arrière-plan" - -msgid "Basic Blue" -msgstr "Bleu standard" - -msgid "Strawberry Red" -msgstr "Rouge fraise" - -msgid "Custom..." -msgstr "Personnalisée..." - -msgid "Enable fading" -msgstr "Activer la décoloration" - -msgid "Transcoding" -msgstr "Transcodage" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Ces paramètres sont utilisés dans la boîte de dialogue « Transcoder de la musique » ou lors de la conversion de musique, avant de la copier sur un périphérique." - -msgid "FLAC" -msgstr "FLAC" - -msgid "WavPack" -msgstr "WavPack" - -msgid "Vorbis" -msgstr "Vorbis" - -msgid "Opus" -msgstr "Opus" - -msgid "Speex" -msgstr "Speex" - -msgid "AAC" -msgstr "AAC" - -msgid "ASF (WMA)" -msgstr "ASF (WMA)" - -msgid "MP3" -msgstr "MP3" - -msgid "Equalizer" -msgstr "Égaliseur" - -msgid "Preset:" -msgstr "Préréglage :" - -msgid "Enable equalizer" -msgstr "Activer l'égaliseur" - -msgid "Enable stereo balancer" -msgstr "Activer la balance stéréo" - -msgid "Left" -msgstr "Gauche" - -msgid "Balance" -msgstr "Balance" - -msgid "Right" -msgstr "Droite" - -msgid "About" -msgstr "À propos de" - -msgid "Strawberry Error" -msgstr "Erreur de Strawberry" - -msgid "Console" -msgstr "Console" - -msgid "Run" -msgstr "Lancer" - -msgid "Edit track information" -msgstr "Modifier la description de la piste" - -msgid "Date created" -msgstr "Date de création" - -msgid "Art Automatic" -msgstr "Visuel automatique" - -msgid "Date modified" -msgstr "Date de modification" - -msgid "Art Embedded" -msgstr "Visuel embarqué" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Dernière écoute" - -msgid "Play count" -msgstr "Compteur d'écoutes" - -msgid "EBU R 128 integrated loudness" -msgstr "bruyance intégrée (EBU R 128)" - -msgid "Bit rate" -msgstr "Débit" - -msgid "Skip count" -msgstr "Compteur de morceaux sautés" - -msgid "Path" -msgstr "Emplacement" - -msgid "Filename" -msgstr "Nom du fichier" - -msgid "Art Unset" -msgstr "Visuel non définie" - -msgid "File size" -msgstr "Taille du fichier" - -msgid "Art Manual" -msgstr "Visuel manuel" - -msgid "EBU R 128 loudness range" -msgstr "plage de bruyance (EBU R 128)" - -msgid "Reset play counts" -msgstr "Réinitialiser le compteur de lecture" - -msgid "Change art" -msgstr "Changer le visuel" - -msgid "Embedded cover" -msgstr "Pochette embarquée" - -msgid "Complete tags automatically" -msgstr "Compléter les tags automatiquement" - -msgid "Compilation" -msgstr "Compilation" - -msgid "Tags" -msgstr "Tags" - -msgid "Complete lyrics automatically" -msgstr "Compléter les paroles automatiquement" - -msgid "Tag fetcher" -msgstr "Compléteur de balises" - -msgid "Sorry" -msgstr "Désolé" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry n'a pu trouver aucun résultat pour ce fichier" - -msgid "Select best possible match" -msgstr "Sélectionner le meilleur résultat possible" - -msgid "Add Stream" -msgstr "Ajouter un flux" - -msgid "Enter the URL of a stream:" -msgstr "Saisissez l'URL d'un flux :" - -msgid "Enter username and password" -msgstr "Entrer le nom d'utilisateur et le mot de passe" - -msgid "Import data from last.fm" -msgstr "Importer les données de last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Choisissez les données à importer de last.fm" - -msgid "Play counts" -msgstr "Compteur d'écoutes" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Attention : Le compteur d'écoutes et la dernière lecture de last.fm remplaceront complètement les mêmes données pour les morceaux correspondants. Le compteur d'écoutes remplacera les données basées sur l'artiste et le titre du morceau pour les mêmes albums ! Veuillez sauvegarder votre base de données avant de commencer." - -msgid "Go!" -msgstr "Aller !" - -msgid "Close" -msgstr "Fermer" - -msgid "Cancel" -msgstr "Annuler" - -msgid "Message Dialog" -msgstr "Boîte de dialogue des messages" - -msgid "Do not show this message again." -msgstr "Ne plus afficher ce message." - -msgid "Select directory for saving playlists" -msgstr "Sélectionnez le répertoire pour enregistrer la liste de lecture" - -msgid "Type" -msgstr "Type" - -msgid "0:00:00" -msgstr "0:00:00" - -msgid "Click to toggle between remaining time and total time" -msgstr "Cliquez pour basculer entre le temps restant et le temps total" - -msgid "You are not signed in." -msgstr "Vous n'êtes pas connecté." - -msgid "Sign out" -msgstr "Se déconnecter" - -msgid "Signing in..." -msgstr "Connexion..." - -msgid "Streaming Tabs View" -msgstr "Vue des onglets de streaming" - -msgid "Artists" -msgstr "Artistes" - -msgid "Albums" -msgstr "Albums" - -msgid "Songs" -msgstr "Morceaux" - -msgid "Refresh catalogue" -msgstr "Actualiser le catalogue" - -msgid "Streaming Search View" -msgstr "Vue de recherche de streaming" - -msgid "artists" -msgstr "artistes" - -msgid "albums" -msgstr "albums" - -msgid "songs" -msgstr "morceaux" - -msgid "Organize Files" -msgstr "Organiser les fichiers" - -msgid "Destination" -msgstr "Destination" - -msgid "After copying..." -msgstr "Après avoir copié..." - -msgid "Keep the original files" -msgstr "Conserver les fichiers originaux" - -msgid "Delete the original files" -msgstr "Supprimer les fichiers originaux" - -msgid "Naming options" -msgstr "Options de nommage" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Les champs ont pour préfixe %. Exemples : %artist %album %title

\n\n" -"

Si vous placez des accolades autour d'une portion de texte contenant un champ, celle-ci ne sera pas affichée si le contenu du champ n'est pas renseigné.

" - -msgid "Insert..." -msgstr "Insérer..." - -msgid "Remove problematic characters from filenames" -msgstr "Supprimer les caractères problématiques des noms de fichiers" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Limiter aux caractères autorisés sur les systèmes FAT" - -msgid "Restrict characters to ASCII" -msgstr "Limiter aux caractères ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Autoriser le jeu étendu des caractères ASCII" - -msgid "Replace spaces with underscores" -msgstr "Remplacer les espaces par des traits de soulignement" - -msgid "Overwrite existing files" -msgstr "Écraser les fichiers existants" - -msgid "Copy album cover artwork" -msgstr "Copier la pochette de l'album" - -msgid "Safely remove the device after copying" -msgstr "Enlever le périphérique en toute sécurité à la fin de la copie" - -msgid "Transcode Music" -msgstr "Transcoder de la musique" - -msgid "Files to transcode" -msgstr "Fichiers à convertir" - -msgid "Directory" -msgstr "Dossier" - -msgid "Add..." -msgstr "Ajouter..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Ajouter toutes les pistes d'un répertoire et de tous ses sous-répertoires" - -msgid "Import..." -msgstr "Importer..." - -msgid "Output options" -msgstr "Options de sortie" - -msgid "Audio format" -msgstr "Format audio" - -msgid "Options..." -msgstr "Options..." - -msgid "Alongside the originals" -msgstr "A côté des originaux" - -msgid "Select..." -msgstr "Sélectionner..." - -msgid "Progress" -msgstr "Progression" - -msgid "Details..." -msgstr "Détails..." - -msgid "Transcoder Log" -msgstr "Journal du transcodeur" - -msgid " kbps" -msgstr " kbps" - -msgid "Profile" -msgstr "Profil" - -msgid "Main profile (MAIN)" -msgstr "Profil principal (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Profile à faible complexité (FC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Profil du taux d'échantillonnage" - -msgid "Long term prediction profile (LTP)" -msgstr "Profil de prédiction à long terme (PLT)" - -msgid "Use temporal noise shaping" -msgstr "Utiliser le mode de changement temporaire du bruit" - -msgid "Allow mid/side encoding" -msgstr "Autoriser l'encodage mid/side" - -msgid "Block type" -msgstr "Type de bloc" - -msgid "Normal block type" -msgstr "Type de bloc normal" - -msgid "No short blocks" -msgstr "Aucun bloc court" - -msgid "No long blocks" -msgstr "Aucun bloc long" - -msgid "Transcoding options" -msgstr "Option de transcodage" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Qualité" - -msgid "Fast" -msgstr "Rapide" - -msgid "Best" -msgstr "Meilleur" - -msgid "Use bitrate management engine" -msgstr "Utiliser le moteur de gestion du débit" - -msgid "Target bitrate" -msgstr "Débit cible" - -msgid "Minimum bitrate" -msgstr "Débit minimum" - -msgid "disabled" -msgstr "désactivé" - -msgid "Maximum bitrate" -msgstr "Débit maximum" - -msgid "automatic" -msgstr "automatique" - -msgid "Average bitrate" -msgstr "Débit moyen" - -msgid "Encoding mode" -msgstr "Mode d’encodage" - -msgid "Auto" -msgstr "Auto" - -msgid "Ultra wide band (UWB)" -msgstr "Très large bande (UWB)" - -msgid "Wide band (WB)" -msgstr "Large bande (WB)" - -msgid "Narrow band (NB)" -msgstr "Bande étroite (NB)" - -msgid "Variable bit rate" -msgstr "Débit variable" - -msgid "Voice activity detection" -msgstr "Détecteur d’activité vocale" - -msgid "Discontinuous transmission" -msgstr "Transmission discontinue" - -msgid "Encoding complexity" -msgstr "Complexité de l’encodage" - -msgid "Frames per buffer" -msgstr "Images par tampon" - -msgid "Optimize for &quality" -msgstr "Optimiser pour la &qualité" - -msgid "Opti&mize for bitrate" -msgstr "Opti&miser pour le débit" - -msgid "Constant bitrate" -msgstr "Débit constant" - -msgid "Encoding engine quality" -msgstr "Qualité du moteur d’encodage" - -msgid "Standard" -msgstr "Standard" - -msgid "High" -msgstr "Élevé" - -msgid "Force mono encoding" -msgstr "Forcer l’encodage en mono" - -msgid "Press a key" -msgstr "Appuyez sur une touche" - -msgid "Global Shortcuts" -msgstr "Raccourcis globaux" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Utilisez les raccourcis de Gnome (GSD) lorsque c'est possible" - -msgid "Open..." -msgstr "Ouvrir..." - -msgid "Use MATE shortcuts when available" -msgstr "Utiliser les raccourcis MATE lorsqu'ils sont disponibles" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Utilisez les raccourcis de KDE (KGlobalAccel) lorsque c'est possible" - -msgid "Use X11 shortcuts when available" -msgstr "Utilisez les raccourcis de X11 lorsque c'est possible" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Vous devez lancer les Préférences Système et permettre à Strawberry de « contrôler votre ordinateur » pour utiliser les raccourcis globaux de Strawberry." - -msgid "Shortcut" -msgstr "Raccourci" - -msgctxt "Category label" -msgid "Action" -msgstr "Action" - -msgid "&None" -msgstr "Aucu&n" - -msgid "&Default" -msgstr "&Par défaut" - -msgid "&Custom" -msgstr "&Personnaliser" - -msgid "Change shortcut..." -msgstr "Changer le raccourci..." - -msgid "Moodbar" -msgstr "Barre d'humeur" - -msgid "Show a moodbar in the track progress bar" -msgstr "Afficher une barre d'humeur sur la barre de progression de la piste" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Sauvegarder les fichiers .mood dans les dossiers des morceaux" - -msgid "Enabled" -msgstr "Activé" - -msgid "Device Properties" -msgstr "Propriétés du périphérique" - -msgid "Icon" -msgstr "Icône" - -msgid "Hardware information" -msgstr "Informations sur le matériel" - -msgid "Hardware information is only available while the device is connected." -msgstr "Les informations sur le matériel sont disponibles uniquement lorsque le périphérique est connecté." - -msgid "Information" -msgstr "Information" - -msgid "Supported formats" -msgstr "Formats supportés" - -msgid "This device supports the following file formats:" -msgstr "Ce périphérique supporte les formats suivant :" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry peut automatiquement convertir la musique que vous copiez sur ce périphérique dans un format qu'il peut lire." - -msgid "Do not convert any music" -msgstr "Ne pas convertir la musique" - -msgid "Convert any music that the device can't play" -msgstr "Convertir la musique que le périphérique ne peut pas lire" - -msgid "Convert all music" -msgstr "Convertir toutes les musiques" - -msgid "Preferred format" -msgstr "Format préféré" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Ce périphérique doit être connecté et ouvert pour que Strawberry puisse voir les formats de fichier qu'il gère." - -msgid "Open device" -msgstr "Ouvrir le périphérique" - -msgid "Querying device..." -msgstr "Requête du périphérique..." - -msgid "File formats" -msgstr "Formats de fichier" - -msgid "Server URL" -msgstr "L'URL du serveur" - -msgid "Authentication method:" -msgstr "Méthode d'authentification :" - -msgid "Hex" -msgstr "Hex" - -msgid "MD5 token (Recommended)" -msgstr "Jeton MD5 (Recommandé)" - -msgid "Preferences" -msgstr "Préférences" - -msgid "Use HTTP/2 when possible" -msgstr "Utilisez HTTP/2 si possible" - -msgid "Verify server certificate" -msgstr "Vérifier le certificat du serveur" - -msgid "Download album covers" -msgstr "Télécharger des pochettes d'albums" - -msgid "Server-side scrobbling" -msgstr "Scrobbling côté serveur" - -msgid "Test" -msgstr "Test" - -msgid "Delete songs" -msgstr "Supprimer des morceaux" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Le support Tidal n'est pas officiel et nécessite un jeton d'API à partir d'une application enregistrée pour fonctionner. Nous ne pouvons pas vous aider à les obtenir." - -msgid "Use OAuth" -msgstr "Utiliser OAuth" - -msgid "Client ID" -msgstr "Identifiant client" - -msgid "API Token" -msgstr "Jeton API" - -msgid "Audio quality" -msgstr "Qualité audio" - -msgid "Search delay" -msgstr "Délais de recherche" - -msgid "ms" -msgstr "ms" - -msgid "Artists search limit" -msgstr "Limite de recherche d'artistes" - -msgid "Albums search limit" -msgstr "Limite de recherche d'albums" - -msgid "Songs search limit" -msgstr "Limite de recherche des morceaux" - -msgid "Fetch entire albums when searching songs" -msgstr "Récupérer les albums entiers lors d'une recherche de morceau" - -msgid "Album cover size" -msgstr "Taille de la pochette des albums" - -msgid "Stream URL method" -msgstr "Méthode des flux" - -msgid "Append explicit to album title for explicit albums" -msgstr "Ajouter explicite au titre de l'album pour les albums explicites" - -msgid "Basic authentication" -msgstr "Authentification de base" - -msgid "Authenticate" -msgstr "Authentification" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "

Le plugin GStreamer Spotify n'est pas détecté, sans lui vous ne pourrez pas diffuser des morceaux via Spotify. Consultez : Wiki pour des instructions sur comment installer le plugin.

" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Le support Qobuz n'est pas officiel et nécessite un ID d'application d'API à partir d'une application enregistrée pour fonctionner. Nous ne pouvons pas vous aider à les obtenir." - -msgid "App ID" -msgstr "ID App" - -msgid "App Secret" -msgstr "Secret d'application (\"App secret\")" - -msgid "Base64 encoded secret" -msgstr "Secret encodé en Base64" - -msgid "Return to Strawberry" -msgstr "Retourner dans Strawberry" - -msgid "Success!" -msgstr "Succès !" - -msgid "Please close your browser and return to Strawberry." -msgstr "Merci de fermer votre navigateur et de retourner dans Strawberry." - diff --git a/src/translations/header b/src/translations/header deleted file mode 100644 index 6a423af2..00000000 --- a/src/translations/header +++ /dev/null @@ -1,8 +0,0 @@ -# Strawberry Music Player -# -#, fuzzy -msgid "" -msgstr "" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" - diff --git a/src/translations/hu_HU.po b/src/translations/hu_HU.po deleted file mode 100644 index 6be959fa..00000000 --- a/src/translations/hu_HU.po +++ /dev/null @@ -1,4357 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: hu\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Hungarian\n" -"Language: hu_HU\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Minden fájl (*)" - -msgid "Context" -msgstr "Környezet" - -msgid "Collection" -msgstr "Gyűjtemény" - -msgid "Queue" -msgstr "Lejátszási sor" - -msgid "Playlists" -msgstr "Lejátszólisták" - -msgid "Smart playlists" -msgstr "Okos lejátszólisták" - -msgid "Files" -msgstr "Fájlok" - -msgid "Radios" -msgstr "Rádiók" - -msgid "Devices" -msgstr "Eszközök" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Összes szám megjelenítése" - -msgid "Show only duplicates" -msgstr "Csak a másolatok megjelenítése" - -msgid "Show only untagged" -msgstr "Csak a címke nélküliek megjelenítése" - -msgid "Configure collection..." -msgstr "Gyűjtemény beállítása..." - -msgid "Play" -msgstr "Lejátszás" - -msgid "Stop after this track" -msgstr "Leállítás a jelenlegi szám után" - -msgid "Toggle queue status" -msgstr "Lejátszási sor állapotának átváltása" - -msgid "Queue selected tracks to play next" -msgstr "Kijelölt számok lejátszása következőként" - -msgid "Toggle skip status" -msgstr "Kihagyási állapot be/ki" - -msgid "Rescan song(s)..." -msgstr "Számok újraellenőrzése…" - -msgid "Copy URL(s)..." -msgstr "URL(-ek) másolása…" - -msgid "Show in collection..." -msgstr "Megjelenítés a gyűjteményben…" - -msgid "Show in file browser..." -msgstr "Megnyitás a fájlböngészőben…" - -msgid "Organize files..." -msgstr "Fájlok rendszerezése…" - -msgid "Copy to collection..." -msgstr "Másolás a gyűjteménybe…" - -msgid "Move to collection..." -msgstr "Áthelyezés a gyűjteménybe…" - -msgid "Copy to device..." -msgstr "Másolás eszközre…" - -msgid "Delete from disk..." -msgstr "Törlés a lemezről…" - -msgid "Check for updates..." -msgstr "Frissítés keresése…" - -msgid "Strawberry running under Rosetta" -msgstr "A Strawberry Rosetta alatt fut" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Szünet" - -msgid "Dequeue track" -msgstr "Szám eltávolítása a lejátszási sorból" - -msgid "Dequeue selected tracks" -msgstr "Kijelölt számok eltávolítása a lejátszási sorból" - -msgid "Queue track" -msgstr "Szám hozzáadása a lejátszási sorhoz" - -msgid "Queue selected tracks" -msgstr "Kijelölt számok hozzáadása a lejátszási sorhoz" - -msgid "Queue to play next" -msgstr "Lejátszás következőként" - -msgid "Unskip track" -msgstr "Szám kihagyásának visszavonása" - -msgid "Unskip selected tracks" -msgstr "A kiválasztott számok kihagyásának visszavonása" - -msgid "Skip track" -msgstr "Szám kihagyása" - -msgid "Skip selected tracks" -msgstr "Kiválasztott számok kihagyása" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "A(z) %1 beállítása erre: „%2”…" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "A(z) „%1” címke szerkesztése…" - -msgid "Add to another playlist" -msgstr "Hozzáadás másik lejátszólistához" - -msgid "New playlist" -msgstr "Új lejátszólista" - -msgid "Add file" -msgstr "Fájl hozzáadása" - -msgid "Music" -msgstr "Zene" - -msgid "Add folder" -msgstr "Mappa hozzáadása" - -msgid "Clear playlist" -msgstr "Lejátszólista törlése" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "%1 dal van a lejátszólistán, túl nagy ahhoz, hogy visszavonja, biztosan törli a lejátszólistát?" - -msgid "Error" -msgstr "Hiba" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Egy kiválasztott szám sem alkalmas az eszközre való másoláshoz" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "A Strawberry most frissült verziójának szüksége van a teljes gyűjtemény újraolvasására az alább sorolt új funkciók használatához:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Futtat most egy teljes újraolvasást?" - -msgid "Collection rescan notice" -msgstr "Gyűjtemény újraolvasási figyelmeztetés" - -msgid "Usage" -msgstr "Használat" - -msgid "options" -msgstr "beállítások" - -msgid "URL(s)" -msgstr "Webcím(ek)" - -msgid "Player options" -msgstr "Lejátszó beállításai" - -msgid "Start the playlist currently playing" -msgstr "A jelenleg játszott lejátszólista indítása" - -msgid "Play if stopped, pause if playing" -msgstr "Lejátszás, ha le van állítva, különben szünet" - -msgid "Pause playback" -msgstr "Lejátszás szüneteltetése" - -msgid "Stop playback" -msgstr "Lejátszás leállítása" - -msgid "Stop playback after current track" -msgstr "Leállítás a jelenlegi szám után" - -msgid "Skip backwards in playlist" -msgstr "Visszaléptetés a lejátszólistában" - -msgid "Skip forwards in playlist" -msgstr "Előreléptetés a lejátszólistában" - -msgid "Set the volume to percent" -msgstr "A hangerő százalékra állítása" - -msgid "Increase the volume by 4 percent" -msgstr "Hangerő növelése 4 százalékkal" - -msgid "Decrease the volume by 4 percent" -msgstr "Hangerő csökkentése 4 százalékkal" - -msgid "Increase the volume by percent" -msgstr "Hangerő növelése százalékkal" - -msgid "Decrease the volume by percent" -msgstr "Hangerő csökkentése százalékkal" - -msgid "Seek the currently playing track to an absolute position" -msgstr "A lejátszott szám adott pozícióra tekerése" - -msgid "Seek the currently playing track by a relative amount" -msgstr "A jelenleg játszott szám relatív mértékű tekerése" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Szám újraindítása, vagy az előző szám lejátszása, ha a kezdetétől számított 8 másodpercen belül volt." - -msgid "Playlist options" -msgstr "Lejátszólista beállításai" - -msgid "Create a new playlist with files" -msgstr "Új lejátszólista létrehozása fájlokkal" - -msgid "Append files/URLs to the playlist" -msgstr "Fájlok/URL-ek hozzáfűzése a lejátszólistához" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Fájlok/webcímek betöltése, lejátszólista cseréje" - -msgid "Play the th track in the playlist" -msgstr "A(z) . szám lejátszása a lejátszólistában" - -msgid "Play given playlist" -msgstr "Adott lejátszólista lejátszása" - -msgid "Other options" -msgstr "Egyéb beállítások" - -msgid "Display the on-screen-display" -msgstr "OSD megjelenítése" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Saját OSD láthatósága be/ki" - -msgid "Change the language" -msgstr "Nyelv módosítása" - -msgid "Resize the window" -msgstr "Ablak átméretezése" - -msgid "Equivalent to --log-levels *:1" -msgstr "Megegyezik a --log-levels *:1 kapcsolóval" - -msgid "Equivalent to --log-levels *:3" -msgstr "Megegyezik a --log-levels *:3 kapcsolóval" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Vesszővel elválasztott lista az osztály:szint pároknak, a szintek 0-3 értékeket vehetnek fel" - -msgid "Print out version information" -msgstr "Verzióinformáció megjelenítése" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "Nem lehet végrehajtani az SQL lekérdezést: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Sikertelen SQL lekérdezés: %1" - -msgid "Integrity check" -msgstr "Sértetlenség-ellenőrzés" - -msgid "Database corruption detected." -msgstr "Adatbázis-sérülés észlelve." - -msgid "Backing up database" -msgstr "Adatbázis biztonsági mentése" - -msgid "Deleting files" -msgstr "Fájlok törlése" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Ismeretlen" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Ehhez az URL-hez szüksége van a GStreamerre." - -msgid "Preload function was not set for blocking operation." -msgstr "Nem volt előtöltési függvény beállítva a blokkoló művelethez." - -#, qt-format -msgid "File %1 does not exist." -msgstr "A(z) %1 fájl nem létezik." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "A(z) %1 fájl nem ismerhető fel érvényes hangfájlként." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "A CD-lejátszás csak a GStreamer motorral érhető el." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Nem sikerült olvasásra megnyitni a(z) %1 fájlt: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Nem sikerült olvasásra megnyitni a(z) %1 CUE-fájlt: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Nem sikerült olvasásra megnyitni a(z) %1 lejátszólistafájlt: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Nem sikerült létrehozni a GStreamer source elemet a(z) %1 számára" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "Nem sikerült létrehozni a GStreamer typefind elemet a(z) %1 számára" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "Nem sikerült létrehozni a GStreamer fakesink elemet a(z) %1 számára" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "Nem sikerült a GStreamer source, typefind és fakesink elemek hivatkozása a(z) %1 számára" - -msgid "Playlist" -msgstr "Lejátszólista" - -msgid "1 day" -msgstr "1 nap" - -#, qt-format -msgid "%1 days" -msgstr "%1 nap" - -msgid "Today" -msgstr "Ma" - -msgid "Yesterday" -msgstr "Tegnap" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 nappal ezelőtt" - -msgid "Tomorrow" -msgstr "Holnap" - -#, qt-format -msgid "In %1 days" -msgstr "%1 napon belül" - -msgid "Next week" -msgstr "Következő héten" - -#, qt-format -msgid "In %1 weeks" -msgstr "%1 héten belül" - -msgid "Show in file browser" -msgstr "Megnyitás a fájlböngészőben" - -msgid "Too many songs selected." -msgstr "Túl sok szám van kiválasztva." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "%1 szám van %2 különböző könyvtárból kiválasztva, biztos, hogy meg szeretné nyitni az összeset?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Ismeretlen hiba" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "előadó" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Elérhető mezők" - -msgid "Framerate" -msgstr "Frissítési gyakoriság" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Alacsony (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Közepes (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Magas (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Nagyon magas (%1 fps)" - -msgid "No analyzer" -msgstr "Nincs elemző" - -msgid "Block analyzer" -msgstr "Blokkelemző" - -msgid "Boom analyzer" -msgstr "" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "Szonogram" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Előerősítő" - -msgid "Custom" -msgstr "Egyéni" - -msgid "Classical" -msgstr "Klasszikus" - -msgid "Club" -msgstr "Klub" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Teljes basszus" - -msgid "Full Treble" -msgstr "Teljes magas" - -msgid "Full Bass + Treble" -msgstr "Teljes basszus + Magas" - -msgid "Laptop/Headphones" -msgstr "Laptop/fejhallgató" - -msgid "Large Hall" -msgstr "Nagy terem" - -msgid "Live" -msgstr "Élő" - -msgid "Party" -msgstr "Parti" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "Lágy" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "Soft rock" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "Nulla" - -msgid "Save preset" -msgstr "Beállítás mentése" - -msgid "Name" -msgstr "Név" - -msgid "Delete preset" -msgstr "Előbeállítás törlése" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Biztos, hogy törli a(z) „%1” előbeállítást?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Fájltípus" - -msgid "Length" -msgstr "Időtartam" - -msgid "Samplerate" -msgstr "Mintavétel" - -msgid "Bit depth" -msgstr "Bitmélység" - -msgid "Bitrate" -msgstr "Bitráta" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Albumborító megjelenítése" - -msgid "Show song technical data" -msgstr "Műszaki adatok megjelenítése" - -msgid "Show song lyrics" -msgstr "Dalszöveg megjelenítése" - -msgid "Automatically search for song lyrics" -msgstr "Dalszövegek automatikus keresése" - -msgid "No song playing" -msgstr "Nincs lejátszott szám" - -#, qt-format -msgid "%1 song" -msgstr "%1 szám" - -#, qt-format -msgid "%1 songs" -msgstr "%1 szám" - -#, qt-format -msgid "%1 artist" -msgstr "%1 előadó" - -#, qt-format -msgid "%1 artists" -msgstr "%1 előadó" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "%1 album" - -msgid "kbps" -msgstr "kb/s" - -msgid "Saving playcounts and ratings" -msgstr "Lejátszásszámok és értékelések mentése" - -msgid "Various artists" -msgstr "Különböző előadók" - -msgid "Loading..." -msgstr "Betöltés…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "Nem lehet végrehajtani a gyűjtemény SQL lekérdezését: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "%1 adatbázis frissítése." - -msgid "Updating collection" -msgstr "Gyűjtemény frissítése" - -#, qt-format -msgid "Updating %1" -msgstr "%1 frissítése" - -msgid "Your collection is empty!" -msgstr "Az Ön gyűjteménye üres." - -msgid "Click here to add some music" -msgstr "Zene hozzáadásához kattintson ide" - -msgid "Append to current playlist" -msgstr "Hozzáfűzés a jelenlegi lejátszólistához" - -msgid "Replace current playlist" -msgstr "Jelenlegi lejátszólista cseréje" - -msgid "Open in new playlist" -msgstr "Megnyitás új lejátszólistában" - -msgid "Search for this" -msgstr "Keresés erre" - -msgid "Edit track information..." -msgstr "Száminformációk szerkesztése…" - -msgid "Edit tracks information..." -msgstr "Száminformációk szerkesztése…" - -msgid "Rescan song(s)" -msgstr "Számok újraellenőrzése" - -msgid "Show in various artists" -msgstr "Megjelenítés a különböző előadók között" - -msgid "Don't show in various artists" -msgstr "Ne jelenítse meg a különböző előadók között" - -msgid "There are other songs in this album" -msgstr "Más számok is vannak ebben az albumban" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Áthelyezi az album többi számát is a különböző előadókhoz?" - -msgid "Show" -msgstr "Megjelenítés" - -msgid "Group by" -msgstr "Csoportosítás" - -msgid "Display options" -msgstr "Megjelenítési beállítások" - -msgid "Group by Album artist/Album" -msgstr "Csoportosítás albumelőadó/album szerint" - -msgid "Group by Album artist/Album - Disc" -msgstr "Csoportosítás albumelőadó/album - lemez szerint" - -msgid "Group by Album artist/Year - Album" -msgstr "Csoportosítás albumelőadó/év - album szerint" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Csoportosítás albumelőadó/év - album - lemez szerint" - -msgid "Group by Artist/Album" -msgstr "Csoportosítás előadó/album szerint" - -msgid "Group by Artist/Album - Disc" -msgstr "Csoportosítás előadó/album - lemez szerint" - -msgid "Group by Artist/Year - Album" -msgstr "Csoportosítás előadó/év - album szerint" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Csoportosítás előadó/év - album - lemez szerint" - -msgid "Group by Genre/Album artist/Album" -msgstr "Csoportosítás műfaj/albumelőadó/album szerint" - -msgid "Group by Genre/Artist/Album" -msgstr "Csoportosítás műfaj/előadó/album szerint" - -msgid "Group by Album Artist" -msgstr "Csoportosítás albumelőadó szerint" - -msgid "Group by Artist" -msgstr "Csoportosítás előadó szerint" - -msgid "Group by Album" -msgstr "Csoportosítás album szerint" - -msgid "Group by Genre/Album" -msgstr "Csoportosítás műfaj/album szerint" - -msgid "Advanced grouping..." -msgstr "Speciális csoportosítás…" - -msgid "Grouping Name" -msgstr "Csoportosítás neve" - -msgid "Grouping name:" -msgstr "Csoportosítás neve:" - -msgid "First level" -msgstr "Első szinten" - -msgid "Second Level" -msgstr "Második szint" - -msgid "Third Level" -msgstr "Harmadik szint" - -msgid "None" -msgstr "Egyik sem" - -msgid "Album artist" -msgstr "Albumelőadó" - -msgid "Artist" -msgstr "Előadó" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "Album - Lemez" - -msgid "Year - Album" -msgstr "Év - Album" - -msgid "Year - Album - Disc" -msgstr "Év - Album - Lemez" - -msgid "Original year - Album" -msgstr "Eredeti megjelenés éve - Album" - -msgid "Original year - Album - Disc" -msgstr "Eredeti megjelenés éve - Album - Lemez" - -msgid "Disc" -msgstr "Lemez" - -msgid "Year" -msgstr "Év" - -msgid "Original year" -msgstr "Eredeti megjelenés éve" - -msgid "Genre" -msgstr "Műfaj" - -msgid "Composer" -msgstr "Zeneszerző" - -msgid "Performer" -msgstr "Előadó" - -msgid "Grouping" -msgstr "Csoportosítás" - -msgid "File type" -msgstr "Fájltípus" - -msgid "Format" -msgstr "Formátum" - -msgid "Sample rate" -msgstr "Mintavételi gyakoriság" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Cím" - -msgid "Track" -msgstr "Szám" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Megjegyzés" - -msgid "Source" -msgstr "Forrás" - -msgid "Mood" -msgstr "Hangulat" - -msgid "Rating" -msgstr "Értékelés" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "Visszavonás" - -msgid "Redo" -msgstr "Újra" - -msgid "Load playlist" -msgstr "Lejátszólista betöltése" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Nincs egyezés. Törölje a keresési feltételeket, hogy újra lássa a teljes lejátszólistát." - -msgid "stop" -msgstr "leállítás" - -msgid "Never" -msgstr "Soha" - -msgid "&Hide..." -msgstr "&Elrejtés…" - -msgid "&Stretch columns to fit window" -msgstr "&Oszlopok nyújtása, hogy kitöltsék az ablakot" - -msgid "&Reset columns to default" -msgstr "&Oszlopok visszaállítása" - -msgid "&Lock rating" -msgstr "É&rtékelés zárolása" - -msgid "&Align text" -msgstr "&Szöveg igazítása" - -msgid "&Left" -msgstr "&Balra" - -msgid "&Center" -msgstr "&Középre" - -msgid "&Right" -msgstr "&Jobbra" - -#, qt-format -msgid "&Hide %1" -msgstr "%1 &elrejtése" - -msgid "New folder" -msgstr "Új mappa" - -msgid "Delete" -msgstr "Törlés" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Lejátszólista mentése" - -msgid "Enter the name of the folder" -msgstr "Adja meg a mappa nevét" - -msgid "Copy to device" -msgstr "Másolás eszközre" - -msgid "Playlist must be open first." -msgstr "Előbb meg kell nyitni a lejátszólistát." - -msgid "Remove playlists" -msgstr "Lejátszólisták eltávolítása" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Biztos, hogy törölni szeretné a(z) %1 lejátszólistát a kedvencek közül?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "A lejátszólista kedvenccé tételéhez kattintson a lista neve melletti csillag ikonra" - -msgid "Favorited playlists will be saved here" -msgstr "A kedvenc lejátszólisták ide lesznek elmentve" - -msgid "Couldn't create playlist" -msgstr "Nem lehet létrehozni a lejátszólistát" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Lejátszólista mentése" - -msgid "Unknown playlist extension" -msgstr "Ismeretlen lejátszólista-kiterjesztés" - -msgid "Unknown file extension for playlist." -msgstr "Ismeretlen fájlkiterjesztés a lejátszólistánál." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 kiválasztva ennyiből:" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automatikus" - -msgid "Relative" -msgstr "Relatív" - -msgid "Absolute" -msgstr "Abszolút" - -msgid "Star playlist" -msgstr "Lejátszólista csillagozása" - -msgid "Close playlist" -msgstr "Lejátszólista bezárása" - -msgid "Rename playlist..." -msgstr "Lejátszólista átnevezése…" - -msgid "Save playlist..." -msgstr "Lejátszólista mentése…" - -msgid "Rename playlist" -msgstr "Lejátszólista átnevezése" - -msgid "Enter a new name for this playlist" -msgstr "Adjon új nevet ennek a lejátszólistának" - -msgid "Remove playlist" -msgstr "Lejátszólista eltávolítása" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "A lejátszólista nem tartozik a kedvencek közé, a törlés után a listát nem lehet visszaállítani.\n" -"Biztos, hogy folytatja?" - -msgid "Warn me when closing a playlist tab" -msgstr "Figyelmeztetés a lejátszólista bezárásakor" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Ez a beállítás változtatható a „Viselkedés” menüben" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Dupla kattintással kedvenccé teheti a lejátszólistát, így elmenti és elérhető lesz a bal oldali sávban „Lejátszólisták” panelen keresztül" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "%n szám hozzáadása" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "%n szám eltávolítása" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "%n szám áthelyezése" - -msgid "sort songs" -msgstr "számok rendezése" - -msgid "shuffle songs" -msgstr "számok keverése" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Hiba a zenei CD betöltésekor." - -msgid "Loading tracks" -msgstr "Számok betöltése" - -msgid "Loading tracks info" -msgstr "Száminformációk betöltése" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Minden lejátszólista (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 lejátszólista (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Okos lejátszólista betöltése" - -msgid "Collection search" -msgstr "Keresés a gyűjteményben" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Számok keresése a gyűjteményében, melyek megfelelnek a megadott kritériumoknak." - -msgid "Search terms" -msgstr "Keresési kifejezések" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "A lejátszólista tartalmazni fogja a számot, ha az megfelel a feltételeknek." - -msgid "Search options" -msgstr "Keresési beállítások" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Válassza ki, hogy a lejátszólista hogyan legyen rendezve, és hány számot tartalmazzon." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 szám található (%2 megjelenítése)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 szám található" - -msgid "after" -msgstr "utána" - -msgid "before" -msgstr "előtte" - -msgid "on" -msgstr "rajta van" - -msgid "not on" -msgstr "nincs rajta" - -msgid "in the last" -msgstr "a végén" - -msgid "not in the last" -msgstr "nincs a végén" - -msgid "between" -msgstr "között" - -msgid "contains" -msgstr "tartalmazza" - -msgid "does not contain" -msgstr "nem tartalmazza" - -msgid "starts with" -msgstr "ezzel kezdődik" - -msgid "ends with" -msgstr "ezzel végződik" - -msgid "greater than" -msgstr "nagyobb mint" - -msgid "less than" -msgstr "kisebb mint" - -msgid "equals" -msgstr "egyenlő" - -msgid "not equals" -msgstr "nem egyenlő" - -msgid "empty" -msgstr "üres" - -msgid "not empty" -msgstr "nem üres" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "legrégebbi először" - -msgid "newest first" -msgstr "legújabb először" - -msgid "shortest first" -msgstr "legrövidebb először" - -msgid "longest first" -msgstr "leghosszabb elöl" - -msgid "smallest first" -msgstr "legkisebb először" - -msgid "biggest first" -msgstr "legnagyobb először" - -msgid "Hours" -msgstr "Óra" - -msgid "Days" -msgstr "Napok" - -msgid "Weeks" -msgstr "Hetek" - -msgid "Months" -msgstr "Hónapok" - -msgid "Years" -msgstr "Évek" - -msgid "The second value must be greater than the first one!" -msgstr "A második értéknek nagyobbnak kell lennie, mint az elsőnek!" - -msgid "Add search term" -msgstr "Keresési kifejezés hozzáadása" - -msgid "Newest tracks" -msgstr "Legújabb számok" - -msgid "50 random tracks" -msgstr "50 véletlenszerű szám" - -msgid "Ever played" -msgstr "Valaha játszott" - -msgid "Never played" -msgstr "Sosem játszott" - -msgid "Last played" -msgstr "Legutóbb játszott" - -msgid "Most played" -msgstr "Legtöbbet játszott" - -msgid "Favourite tracks" -msgstr "Kedvenc számok" - -msgid "Least favourite tracks" -msgstr "Legkevésbé kedvelt számok" - -msgid "All tracks" -msgstr "Minden szám" - -msgid "Dynamic random mix" -msgstr "Dinamikus véletlen keverés" - -msgid "New smart playlist..." -msgstr "Új okos lejátszólista…" - -msgid "Play next" -msgstr "Lejátszás következőként" - -msgid "Edit smart playlist..." -msgstr "Okos lejátszólista szerkesztése…" - -msgid "Delete smart playlist" -msgstr "Okos lejátszólista törlése" - -msgid "Smart playlist" -msgstr "Okos lejátszólista" - -msgid "Playlist type" -msgstr "Lejátszólista típusa" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Az okos lejátszólista a gyűjteményéből származó számok dinamikus listája. Különböző típusú okos lejátszólisták léteznek, amelyek a számok kiválasztásának különböző módjait kínálják." - -msgid "Finish" -msgstr "Befejezés" - -msgid "Choose a name for your smart playlist" -msgstr "Válasszon nevet az okos lejátszólistának" - -msgid "Abort" -msgstr "Megszakítás" - -msgid "All albums" -msgstr "Minden album" - -msgid "Albums with covers" -msgstr "Albumok borítóval" - -msgid "Albums without covers" -msgstr "Albumok borító nélkül" - -msgid "Really cancel?" -msgstr "Biztos, hogy megszakítja?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Ezen ablak bezárása megszakítja az albumborítók keresését." - -msgid "Don't stop!" -msgstr "Ne álljon meg." - -msgid "All artists" -msgstr "Minden előadó" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "%1 / %2 borító letöltve (%3 sikertelen)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 átküldve" - -msgid "Export finished" -msgstr "Exportálás befejezve" - -msgid "No covers to export." -msgstr "Nincs exportálandó borító." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "%1 borító exportálva ennyiből %2 (%3 sikertelen)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Borítók innen: %1" - -msgid "Search" -msgstr "Keresés" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Képek (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Képek (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Minden fájl (*)" - -msgid "Load cover from disk..." -msgstr "Borító betöltése lemezről…" - -msgid "Save cover to disk..." -msgstr "Borító mentése lemezre…" - -msgid "Load cover from URL..." -msgstr "Borító letöltése webcímről…" - -msgid "Search for album covers..." -msgstr "Albumborítók keresése…" - -msgid "Unset cover" -msgstr "Borító törlése" - -msgid "Delete cover" -msgstr "Borító törlése" - -msgid "Clear cover" -msgstr "Borító törlése" - -msgid "Show fullsize..." -msgstr "Megjelenítés teljes méretben…" - -msgid "Search automatically" -msgstr "Automatikus keresés" - -msgid "Load cover from disk" -msgstr "Borító betöltése lemezről" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Nem sikerült olvasásra megnyitni a(z) %1 borítófájlt: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "A(z) %1 borítófájl üres." - -msgid "unknown" -msgstr "ismeretlen" - -msgid "Save album cover" -msgstr "Albumborító mentése" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Nem sikerült írásra megnyitni a(z) %1 borítófájlt: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Nem sikerült a(z) %1 fájlba írni a borítót: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Nem sikerült a(z) %1 fájlba írni a borítót." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "A(z) %1 borítófájl törlése sikertelen: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Nem sikerült írni a(z) %1 borítófájlt: %2" - -msgid "Total network requests made" -msgstr "Összes hálózati kérés" - -msgid "Average image size" -msgstr "Átlagos képméret" - -msgid "Total bytes transferred" -msgstr "Összes átküldött bájt" - -msgid "Fetching cover error" -msgstr "Hiba a borító lekérése során" - -msgid "The site you requested does not exist!" -msgstr "A kért oldal nem létezik!" - -msgid "The site you requested is not an image!" -msgstr "A kért oldal nem egy kép!" - -msgid "Genius Authentication" -msgstr "Genius hitelesítés" - -msgid "Please open this URL in your browser" -msgstr "Nyissa meg ezt a webcímet a böngészőben" - -msgid "Redirect missing token code!" -msgstr "Az átirányításból hiányzik a token kód." - -msgid "Received invalid reply from web browser." -msgstr "Érvénytelen válasz érkezett a böngészőből." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "A Genius átirányításnál hiányzik a lekérdezett elemek kódja vagy állapota." - -msgid "General" -msgstr "Általános" - -msgid "User interface" -msgstr "Felhasználói felület" - -msgid "Streaming" -msgstr "Közvetítés" - -msgid "Add directory..." -msgstr "Könyvtár hozzáadása…" - -msgid "Write all playcounts and ratings to files" -msgstr "Az összes lejátszásszám és értékelés fájlba írása" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Biztos, hogy felülírja a gyűjteményében szereplő összes szám lejátszási számát és értékelését?" - -msgid "Enter your user token from" -msgstr "Adja meg az itteni felhasználói tokenjét:" - -msgid "Use Tidal settings to authenticate." -msgstr "Tidal beállítások használata a hitelesítéshez." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Qobuz beállítások használata a hitelesítéshez." - -#, qt-format -msgid "%1 needs authentication." -msgstr "A(z) %1 hitelesítést igényel." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "A(z) %1 nem igényel hitelesítést." - -msgid "No provider selected." -msgstr "Nincs szolgáltató kiválasztva." - -msgid "Authentication failed" -msgstr "A hitelesítés sikertelen" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Háttérkép kiválasztása" - -msgid "OSD Preview" -msgstr "OSD előnézet" - -msgid "Drag to reposition" -msgstr "Húzza el az áthelyezéshez" - -msgid "About Strawberry" -msgstr "A Strawberry névjegye" - -#, qt-format -msgid "Version %1" -msgstr "Verzió: %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "A Strawberry egy zenelejátszó és zenegyűjtemény-kezelő." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Ez a Clementine egy forkja, amely 2018-ban jelent meg, és a zenegyűjtőket és a vájtfülűeket célozza." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "A Strawberry GPL licenc alatt közzétett szabad szoftver. A forráskód itt érhető el: %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "A programmal meg kellett kapnia a GNU General Public License egy példányát is. Ha nem látogassa meg: %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Ha tetszik a Strawberry, és ki tudja használni, fontolja meg a szponzorálást vagy az adományozást." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "A szerzőt itt szponzorálhatja: %1. Egyszeri összeggel ezen az oldalon támogathat: %2." - -msgid "Author and maintainer" -msgstr "Szerző és karbantartó" - -msgid "Contributors" -msgstr "Közreműködők" - -msgid "Clementine authors" -msgstr "A Clementine szerzői" - -msgid "Clementine contributors" -msgstr "A Clementine közreműködői" - -msgid "Thanks to" -msgstr "Köszönet a következőknek" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Köszönet az Amarok és a Clementine közreműködőinek." - -msgid "(different across multiple songs)" -msgstr "(különbözik a számok között)" - -msgid "Different art across multiple songs." -msgstr "Különböző borító a különböző számok között." - -msgid "Previous" -msgstr "Előző" - -msgid "Next" -msgstr "Következő" - -msgid "Saving tracks" -msgstr "Számok mentése" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 szám kiválasztva." - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Albumborító nincs beállítva" - -msgid "Album cover editing is only available for collection songs." -msgstr "Az albumborító szerkesztése csak a gyűjteményben lévő számoknál érhető el." - -msgid "Cover changed: Will be cleared when saved." -msgstr "A borító megváltozott: mentéskor le lesz véve." - -msgid "Cover changed: Will be unset when saved." -msgstr "A borító megváltozott: mentéskor nem lesz beállítva." - -msgid "Cover changed: Will be deleted when saved." -msgstr "A borító megváltozott: mentéskor törölve lesz." - -msgid "Cover changed: Will set new when saved." -msgstr "A borító megváltozott: mentéskor az új lesz beállítva." - -msgid "Reset song play statistics" -msgstr "Lejátszásszámlálók lenullázása" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "Biztos, hogy lenullázza a szám statisztikáit?" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Eredeti címkék" - -msgid "Suggested tags" -msgstr "Javasolt címkék" - -msgid "Delete files" -msgstr "Fájlok törlése" - -msgid "The following files will be deleted from disk:" -msgstr "A következő fájlok lesznek törölve a lemezről:" - -msgid "Are you sure you want to continue?" -msgstr "Biztos, hogy folytatja?" - -msgid "Receiving initial data from last.fm..." -msgstr "Kezdeti adatok fogadása a last.fm-től…" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Lejátszásszám fogadása %1 számhoz, és a legutóbbi lejátszás fogadása %2 számhoz." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Legutóbbi lejátszás fogadása %1 számhoz." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Lejátszások számának fogadása %1 számhoz." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Lejátszásszám fogadva %1 számhoz, és a legutóbbi lejátszás fogadva %2 számhoz." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Legutóbbi lejátszások fogadva %1 számhoz." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Lejátszásszám fogadva %1 számhoz." - -msgid "Strawberry is running as a Snap" -msgstr "A Strawberry snapként fut" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "A Strawberry azt észlelte, hogy snapként fut" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "A Strawberry lassabb, és korlátozott, ha snapként fut. Nem fogja elérni a fájlrendszer gyökerét (/). Lehetnek egyéb korlátai is, például nem fog tudni elérni egyes eszközöket vagy hálózati megosztásokat." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Az Ubuntuhoz itt érhető el a hivatalos PPA tároló: %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Hivatalos kiadások a Debianhoz és az Ubuntuhoz érhetők el, amelyek a legtöbb leszármazott disztribúción is működnek. További információkért keresse fel ezt: %1." - -msgid "For a better experience please consider the other options above." -msgstr "A jobb élményért fontolja meg a fenti lehetőségeket." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Másolja ki a strawberry.conf és a strawberry.db fájlokat a ~/snap könyvtárból, hogy elkerülje a konfiguráció elvesztését a snap eltávolítása előtt:" - -msgid "Uninstall the snap with:" -msgstr "Snap eltávolítása ezzel:" - -msgid "Install strawberry through PPA:" -msgstr "A strawberry telepítése PPA-ból:" - -msgid "Select directory for the playlists" -msgstr "Válasszon könyvtárat a lejátszólistákhoz" - -msgid "Directory does not exist." -msgstr "A könyvtár nem létezik." - -msgid "Large sidebar" -msgstr "Nagy oldalsáv" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Kis oldalsáv" - -msgid "Plain sidebar" -msgstr "Egyszerű oldalsáv" - -msgid "Tabs on top" -msgstr "Fülek felül" - -msgid "Icons on top" -msgstr "Ikonok felül" - -msgid "Available" -msgstr "Elérhető" - -msgid "New songs" -msgstr "Új számok" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Használt" - -msgid "Clear" -msgstr "Ürítés" - -msgid "Reset" -msgstr "Visszaállítás" - -msgid "Small album cover" -msgstr "Kis albumborító" - -msgid "Large album cover" -msgstr "Nagy albumborító" - -msgid "Fit cover to width" -msgstr "Albumborító átméretezése szélesség szerint" - -msgid "Show above status bar" -msgstr "Megjelenítés az állapotsáv felett" - -msgid "You are signed in." -msgstr "Be van jelentkezve." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Be van jelentkezve mint %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Lejár ekkor: %1" - -#, qt-format -msgid "disc %1" -msgstr "%1. lemez" - -#, qt-format -msgid "track %1" -msgstr "%1. szám" - -msgid "Paused" -msgstr "Szüneteltetve" - -msgid "Stopped" -msgstr "Leállítva" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Leállítás a jelenlegi szám után: %1" - -msgid "On" -msgstr "Be" - -msgid "Off" -msgstr "Ki" - -msgid "Playlist finished" -msgstr "A lejátszólista befejezve" - -#, qt-format -msgid "Volume %1%" -msgstr "Hangerő %1%" - -msgid "Don't shuffle" -msgstr "Nincs keverés" - -msgid "Shuffle all" -msgstr "Az összes véletlenszerűen" - -msgid "Shuffle tracks in this album" -msgstr "Zeneszámok összekeverése az albumokban" - -msgid "Shuffle albums" -msgstr "Albumok összekeverése" - -msgid "Don't repeat" -msgstr "Nincs ismétlés" - -msgid "Repeat track" -msgstr "Szám ismétlése" - -msgid "Repeat album" -msgstr "Album ismétlése" - -msgid "Repeat playlist" -msgstr "Lejátszólista ismétlése" - -msgid "Stop after every track" -msgstr "Leállítás minden szám után" - -msgid "Intro tracks" -msgstr "Bevezető számok" - -#, qt-format -msgid "Configure %1..." -msgstr "%1 beállítása…" - -msgid "Add to artists" -msgstr "Hozzáadás előadókhoz" - -msgid "Add to albums" -msgstr "Hozzáadás albumokhoz" - -msgid "Add to songs" -msgstr "Hozzáadás a számokhoz" - -msgid "Enter search terms above to find music" -msgstr "Írja be a fenti keresési kifejezéseket a zene kereséséhez" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Kattintson ide a zenék lekéréséhez" - -msgid "Remove from favorites" -msgstr "Eltávolítás a kedvencek közül" - -msgid "Open homepage" -msgstr "Honlap megnyitása" - -msgid "Donate" -msgstr "Adományozás" - -msgid "Refresh channels" -msgstr "Csatornák frissítése" - -#, qt-format -msgid "Getting %1 channels" -msgstr "%1 csatorna lekérése" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 scrobbler hitelesítés" - -msgid "Open URL in web browser?" -msgstr "Webcím megnyitása böngészőben?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Nyomja meg a „Mentés” gombot a webcím vágólapra másolásához és megnyitásához egy böngészőben." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Nem lehet megnyitni az URL-t. Próbálja meg böngészőben megnyitni" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Érvénytelen válasz a böngészőből. Hiányzó token." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "A(z) %1 scrobbler nincs hitelesítve!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Scrobbler %1 hiba: %2" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz hitelesítés" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "Hibás scrobble a(z) %1 – %2 számnál: %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "Hiányzó MusicBrains felvételazonosító a következőnél: %1 %2 %3" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "ListenBrainz hiba: %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Hiányzó felhasználónév, először jelentkezzen be a last.fm-be!" - -msgid "Organizing files" -msgstr "Fájlok rendszerezése" - -msgid "Artist's initial" -msgstr "Előadó monogramja" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Bitráta" - -msgid "File extension" -msgstr "Fájlkiterjesztés" - -msgid "Error copying songs" -msgstr "Hiba történt a számok másolásakor" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Néhány szám másolása közben hiba lépett fel. Az alábbi fájlokat nem sikerült másolni:" - -msgid "Error deleting songs" -msgstr "Hiba történt a számok törlésekor" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Néhány szám törlése közben hiba lépett fel. Az alábbi fájlokat nem sikerült törölni:" - -msgid "Play/Pause" -msgstr "Lejátszás/szüneteltetés" - -msgid "Stop" -msgstr "Leállítás" - -msgid "Stop playing after current track" -msgstr "Lejátszás leállítása a jelenlegi szám után" - -msgid "Next track" -msgstr "Következő szám" - -msgid "Previous track" -msgstr "Előző szám" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "Hangerő növelése" - -msgid "Decrease volume" -msgstr "Hangerő csökkentése" - -msgid "Mute" -msgstr "Némítás" - -msgid "Seek forward" -msgstr "Előretekerés" - -msgid "Seek backward" -msgstr "Visszatekerés" - -msgid "Show/Hide" -msgstr "Megjelenítés/elrejtés" - -msgid "Show OSD" -msgstr "OSD megjelenítése" - -msgid "Toggle Pretty OSD" -msgstr "Saját OSD be/ki" - -msgid "Change shuffle mode" -msgstr "Keverési mód módosítása" - -msgid "Change repeat mode" -msgstr "Ismétlési mód módosítása" - -msgid "Enable/disable scrobbling" -msgstr "Scrobble funkció be/ki" - -msgid "Love" -msgstr "Kedvenc" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Nyomja meg a(z) %1 funkcióhoz használandó billentyűkombinációt…" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "A(z) „%1” parancsot nem lehetett elindítani." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Gyorsbillentyű ehhez: %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Az X11 gyorsbillentyűk használata %1 esetén nem ajánlott, és lehet, hogy a billentyűzet nem fog reagálni." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "A %1 gyorsbillentyűi általában az MPRIS és a KGlobalAccel összetevőkön keresztül használatosak." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "A %1 gyorsbillentyűi általában a GNOME Beállításdémonon keresztül használatosak, és a gnome-settings-daemon használatával kell őket beállítani." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "A %1 gyorsbillentyűi általában a GNOME Beállításdémonon keresztül használatosak, és a cinnamon-settings-daemon használatával kell őket beállítani." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "A %1 gyorsbillentyűi általában a MATE Beállításdémonon keresztül használatosak, így annak használatával kell őket beállítani." - -msgid "Buffering" -msgstr "Pufferelés" - -msgid "D-Bus path" -msgstr "D-Bus elérési út" - -msgid "Serial number" -msgstr "Sorozatszám" - -msgid "Mount points" -msgstr "Csatolási pontok" - -msgid "Partition label" -msgstr "Partíció címkéje" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Eszköz csatlakoztatása" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Ez az első alkalom, hogy csatlakoztatta ezt az eszközt. A Strawberry átvizsgálja zenefájlokat keresve, ez eltarthat egy ideig." - -msgid "This device will not work properly" -msgstr "Az eszköz nem fog megfelelően működni" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Ez egy MTP-eszköz, de a Strawberry libmtp támogatás nélkül lett lefordítva." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Ha folytatja, az eszköz lassan fog működni és a rá másolt számok használhatatlanok lehetnek." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Ez egy iPod, de a Strawberry libgpod támogatás nélkül lett lefordítva." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Ez az eszköztípus nem támogatott: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Frissítés: %1%…" - -msgid "Not connected" -msgstr "Nincs kapcsolat" - -msgid "Not mounted - double click to mount" -msgstr "Nincs csatolva – kattintson duplán a csatoláshoz" - -msgid "Double click to open" -msgstr "Dupla kattintás a megnyitáshoz" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 szám%2" - -msgid "Safely remove device" -msgstr "Eszköz biztonságos eltávolítása" - -msgid "Forget device" -msgstr "Eszköz elfelejtése" - -msgid "Device properties..." -msgstr "Eszköztulajdonságok…" - -msgid "Delete from device..." -msgstr "Törlés az eszközről…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Egy eszköz elfelejtésekor a Strawberry törli erről a listáról, és újra be kell olvasnia róla minden számot, ha legközelebb csatlakoztatja." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Ezek a fájlok törölve lesznek az eszközről. Biztos, hogy folytatja?" - -msgid "Model" -msgstr "Modell" - -msgid "Manufacturer" -msgstr "Gyártó" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "iPod adatbázis betöltése" - -msgid "An error occurred loading the iTunes database" -msgstr "Hiba történt az iTunes adatbázis betöltésekor" - -msgid "Mount point" -msgstr "Csatolási pont" - -msgid "Device" -msgstr "Eszköz" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "MTP eszköz betöltése" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Hiba az MTP-eszköz csatlakoztatásakor: %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Nem hozható létre a(z) „%1” GStreamer elem – győződjön meg róla, hogy telepített-e minden szükséges GStreamer bővítményt" - -#, qt-format -msgid "Successfully written %1" -msgstr "A(z) %1 sikeresen írva" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "%1 fájl átkódolása %2 szálon" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Hiba a(z) %1 feldolgozásakor: %2" - -#, qt-format -msgid "Starting %1" -msgstr "%1 indítása" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Nem található kódoló a(z) %1 számára, győződjön meg róla, hogy telepített-e minden szükséges GStreamer bővítményt" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Nem található muxer a(z) %1 számára, győződjön meg róla, hogy telepített-e minden szükséges GStreamer bővítményt" - -msgid "Start transcoding" -msgstr "Átkódolás indítása" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n hátralévő" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n befejezve" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n sikertelen" - -msgid "Add files to transcode" -msgstr "Fájlok hozzáadása átkódoláshoz" - -msgid "Open a directory to import music from" -msgstr "Mappa megnyitása zene importáláshoz" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Hiba történt a CDDA eszköz készre állításakor." - -msgid "Error while setting CDDA device to pause state." -msgstr "Hiba történt a CDDA-eszköz szünetre állításakor." - -msgid "Error while querying CDDA tracks." -msgstr "Hiba történt a CDDA számok lekérdezésekor" - -msgid "Server URL is invalid." -msgstr "A kiszolgáló webcíme érvénytelen." - -msgid "Missing username or password." -msgstr "Hiányzó felhasználónév vagy jelszó." - -msgid "Subsonic server URL is invalid." -msgstr "A Subsonic kiszolgáló webcíme érvénytelen." - -msgid "Missing Subsonic username or password." -msgstr "Hiányzó Subsonic felhasználónév vagy jelszó." - -msgid "Retrieving albums..." -msgstr "Albumok lekérése…" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Számok lekérése %1 albumhoz…" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Számok lekérése %1 albumhoz…" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Albumborító lekérése %1 albumhoz…" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Albumborítók lekérése %1 albumhoz…" - -msgid "Configuration incomplete" -msgstr "A konfiguráció hiányos" - -msgid "Missing server url, username or password." -msgstr "Hiányzó kiszolgáló-webcím, felhasználónév vagy jelszó." - -msgid "Configuration incorrect" -msgstr "A konfiguráció hibás" - -msgid "Test successful!" -msgstr "A teszt sikeres!" - -msgid "Test failed!" -msgstr "A teszt sikertelen!" - -msgid "Reply from Tidal is missing query items." -msgstr "A Tidal válaszából hiányoznak a lekérdezett elemek." - -msgid "Missing Tidal API token." -msgstr "Hiányzó Tidal API token." - -msgid "Missing Tidal username." -msgstr "Hiányzó Tidal felhasználónév." - -msgid "Missing Tidal password." -msgstr "Hiányzó Tidal jelszó." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Nincs hitelesítve a Tidallal, és elérte a bejelentkezési kísérletek legnagyobb számát." - -msgid "Not authenticated with Tidal." -msgstr "Nincs hitelesítve a Tidallal." - -msgid "Missing Tidal API token, username or password." -msgstr "Hiányzó Tidal API token, felhasználónév vagy jelszó." - -msgid "Authenticating..." -msgstr "Hitelesítés…" - -msgid "Receiving artists..." -msgstr "Előadók fogadása…" - -msgid "Receiving albums..." -msgstr "Albumok fogadása…" - -msgid "Receiving songs..." -msgstr "Számok fogadása…" - -msgid "Searching..." -msgstr "Keresés…" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "Albumok fogadása %1 előadóhoz…" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "Albumok fogadása %1 előadóhoz..." - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "Számok fogadása %1 albumhoz…" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "Számok fogadása %1 albumhoz…" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "Albumborító fogadása %1 albumhoz…" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "Albumborítók fogadása %1 albumhoz…" - -msgid "No match." -msgstr "Nincs egyezés." - -msgid "Cancelled." -msgstr "Megszakítva." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "%1 titkosított közvetítést tartalmazó webcím fogadva a Tidaltól. A Strawberry jelenleg nem támogatja a titkosított közvetítéseket." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Titkosított közvetítést tartalmazó webcím fogadva a Tidaltól. A Strawberry jelenleg nem támogatja a titkosított közvetítéseket." - -msgid "Missing Tidal client ID." -msgstr "Hiányzó Tidal kliensazonosító." - -msgid "Missing API token." -msgstr "Hiányzó API token." - -msgid "Missing username." -msgstr "Hiányzó felhasználónév." - -msgid "Missing password." -msgstr "Hiányzó jelszó." - -msgid "Spotify Authentication" -msgstr "Spotify hitelesítés" - -msgid "Redirect missing token code or state!" -msgstr "Az átirányításból hiányzik a token kód vagy az állapot." - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "A bejelentkezési próbálkozások legnagyobb száma elérve." - -msgid "Missing Qobuz app ID." -msgstr "Hiányzó Qoboz alkalmazásazonosító." - -msgid "Missing Qobuz username." -msgstr "Hiányzó Qobuz felhasználónév." - -msgid "Missing Qobuz password." -msgstr "Hiányzó Qobuz jelszó." - -msgid "Not authenticated with Qobuz." -msgstr "Nincs hitelesítve a Qobuzzal." - -msgid "Missing Qobuz app ID or secret." -msgstr "Hiányzó Qobuz alkalmazásazonosító vagy -titok" - -msgid "Missing app id." -msgstr "Hiányzó alkalmazásazonosító." - -msgid "Show moodbar" -msgstr "Hangulatsáv megjelenítése" - -msgid "Moodbar style" -msgstr "Hangulatsáv stílusa" - -msgid "Normal" -msgstr "Normál" - -msgid "Angry" -msgstr "Dühös" - -msgid "Frozen" -msgstr "Fagyos" - -msgid "Happy" -msgstr "Vidám" - -msgid "System colors" -msgstr "Rendszerszínek" - -msgid "Strawberry Music Player" -msgstr "Strawberry zenelejátszó" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Lejátszás" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Leállítás" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "Kö&vetkező szám" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Kilépés" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "Lejátszólista tö&rlése" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Számok újraszámozása ebben a sorrendben…" - -msgid "Set value for all selected tracks..." -msgstr "Az érték beállítása az összes kiválasztott számhoz…" - -msgid "Edit tag..." -msgstr "Címke szerkesztése…" - -msgid "&Settings..." -msgstr "B&eállítások…" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "A &Strawberry névjegye" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "Lejátszólista összeke&verése" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Fájl hozzáadása…" - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Fájl megnyitása…" - -msgid "Open audio &CD..." -msgstr "Zenei &CD megnyitása…" - -msgid "&Cover Manager" -msgstr "&Borítókezelő" - -msgid "C&onsole" -msgstr "&Konzol" - -msgid "&Shuffle mode" -msgstr "&Keverési mód" - -msgid "&Repeat mode" -msgstr "&Ismétlés" - -msgid "Remove from playlist" -msgstr "Eltávolítás a lejátszólistáról" - -msgid "&Equalizer" -msgstr "&Hangszínszabályzó" - -msgid "&Transcode Music" -msgstr "&Zene átkódolása" - -msgid "Add &folder..." -msgstr "&Mappa hozzáadása…" - -msgid "&Jump to the currently playing track" -msgstr "&Ugrás a most játszott számra" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "Ú&j lejátszólista" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Leját&szólista mentése…" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Lejátszólista betöltése…" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "Ö&sszes lejátszólista mentése…" - -msgid "Go to next playlist tab" -msgstr "Váltás a következő lejátszólista lapra" - -msgid "Go to previous playlist tab" -msgstr "Váltás az előző lejátszólista lapra" - -msgid "&Update changed collection folders" -msgstr "Gyű&jtemény megváltozott mappáinak frissítése" - -msgid "About &Qt" -msgstr "A &Qt névjegye" - -msgid "&Mute" -msgstr "&Némítás" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Gyűjtemény teljes újraellenőrzése" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Címkék automatikus kiegészítése…" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Scrobble funkció be/ki" - -msgid "Remove &duplicates from playlist" -msgstr "Más&olatok törlése a lejátszólistáról" - -msgid "Remove &unavailable tracks from playlist" -msgstr "&Nem elérhető számok törlése a lejátszólistáról" - -msgid "Add file(s) to transcoder" -msgstr "Fájl(ok) hozzáadása az átkódoláshoz" - -msgid "Add file to transcoder" -msgstr "Fájl hozzáadása az átkódoláshoz" - -msgid "Add stream..." -msgstr "Közvetítés hozzáadása…" - -msgid "Show sidebar" -msgstr "Oldalsáv megjelenítése" - -msgid "Import data from last.fm..." -msgstr "Adatok importálása last.fm-ből…" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Zene" - -msgid "P&laylist" -msgstr "&Lejátszólista" - -msgid "Help" -msgstr "Súgó" - -msgid "&Tools" -msgstr "&Eszközök" - -msgid "Collection advanced grouping" -msgstr "Gyűjtemény speciális csoportosítása" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Megváltoztathatja, hogy milyen módon legyenek a számok rendezve a gyűjteményben." - -msgid "Group Collection by..." -msgstr "Gyűjtemény csoportosítása…" - -msgid "Second level" -msgstr "Második szinten" - -msgid "Third level" -msgstr "Harmadik szinten" - -msgid "Separate albums by grouping tag" -msgstr "Albumok szétválasztása csoportosítási címkével" - -msgid "Collection Filter" -msgstr "Gyűjtemény szűrő" - -msgid "Entire collection" -msgstr "Teljes gyűjtemény" - -msgid "Added today" -msgstr "Hozzáadva ma" - -msgid "Added this week" -msgstr "Hozzáadva ezen a héten" - -msgid "Added within three months" -msgstr "Hozzáadva három hónapon belül" - -msgid "Added this year" -msgstr "Hozzáadva ebben az évben" - -msgid "Added this month" -msgstr "Hozzáadva ebben a hónapban" - -msgid "Save current grouping" -msgstr "Jelenlegi csoportosítás mentése" - -msgid "Manage saved groupings" -msgstr "Mentett csoportosítások kezelése" - -msgid "Enter search terms here" -msgstr "Adja meg a keresett kifejezést" - -msgid "Form" -msgstr "Űrlap" - -msgid "Saved Grouping Manager" -msgstr "Csoportosításkezelő mentése" - -msgid "Remove" -msgstr "Eltávolítás" - -msgid "Ctrl+Up" -msgstr "Ctrl+Fel" - -msgid "File paths" -msgstr "Fájlútvonalak" - -msgid "This can be changed later through the preferences" -msgstr "Ez később megváltoztatható a beállításokban" - -msgid "Remember my choice" -msgstr "Választás megjegyzése" - -msgid "Stop after each track" -msgstr "Leállítás az egyes számok után" - -msgid "Repeat" -msgstr "Ismétlés" - -msgid "Shuffle" -msgstr "Keverés" - -msgid "Dynamic mode is on" -msgstr "Dinamikus mód be" - -msgid "New tracks will be added automatically." -msgstr "Az új számok automatikusan hozzá lesznek adva." - -msgid "Expand" -msgstr "Kibontás" - -msgid "Repopulate" -msgstr "Újrafeltöltés" - -msgid "Turn off" -msgstr "Kikapcsolás" - -msgid "QueueView" -msgstr "Lejátszási sor nézet" - -msgid "Move down" -msgstr "Mozgatás lefelé" - -msgid "Move up" -msgstr "Mozgatás felfelé" - -msgid "Ctrl+Down" -msgstr "Ctrl+Le" - -msgid "Search mode" -msgstr "Keresési mód" - -msgid "Match every search term (AND)" -msgstr "Összes keresési feltétellel egyezzen (ÉS)" - -msgid "Match one or more search terms (OR)" -msgstr "Legalább egy keresési feltétellel egyezzen (VAGY)" - -msgid "Include all songs" -msgstr "Tartalmazza az összes számot" - -msgid "Sorting" -msgstr "Rendezés" - -msgid "Put songs in a random order" -msgstr "Számok véletlenszerű sorrendbe helyezése" - -msgid "Sort songs by" -msgstr "Számok rendezése eszerint" - -msgid "Limits" -msgstr "Korlátok" - -msgid "Show all the songs" -msgstr "Összes szám megjelenítése" - -msgid "Only show the first" -msgstr "Csak az első megjelenítése" - -msgid " songs" -msgstr " számok" - -msgid "Preview" -msgstr "Előnézet" - -msgid "and" -msgstr "és" - -msgid "ago" -msgstr "óta" - -msgid "New smart playlist" -msgstr "Új okos lejátszólista" - -msgid "Edit smart playlist" -msgstr "Okos lejátszólista szerkesztése" - -msgid "Use dynamic mode" -msgstr "Dinamikus mód használata" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "A dinamikus módban az új számok akkor lesznek kiválasztva és hozzáadva a lejátszólistához, amikor egy szám befejeződik." - -msgid "Export covers" -msgstr "Borítók exportálása" - -msgid "Output" -msgstr "Kimenet" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Adja meg az exportálandó borítók nevét (kiterjesztés nélkül):" - -msgid "Export downloaded covers" -msgstr "Letöltött borítók exportálása" - -msgid "Export embedded covers" -msgstr "Beágyazott borítók exportálása" - -msgid "Existing covers" -msgstr "Meglévő borítók" - -msgid "Do not overwrite" -msgstr "Ne írja felül" - -msgid "O&verwrite all" -msgstr "Össz&es felülírása" - -msgid "Overwrite s&maller ones only" -msgstr "&Csak a kisebbek felülírása" - -msgid "Size" -msgstr "Méret" - -msgid "Scale size" -msgstr "Skála mérete" - -msgid "Size:" -msgstr "Méret:" - -msgid "Pixel" -msgstr "Képpont" - -msgid "Cover Manager" -msgstr "Borítókezelő" - -msgid "Fetch automatically" -msgstr "Letöltés automatikusan" - -msgid "Load" -msgstr "Betöltés" - -msgid "Add to playlist" -msgstr "Hozzáadás lejátszólistához" - -msgid "View" -msgstr "Nézet" - -msgid "Total albums:" -msgstr "Összes album:" - -msgid "Without cover:" -msgstr "Borító nélkül:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Hiányzó borítók letöltése" - -msgid "Export Covers" -msgstr "Borítók exportálása" - -msgid "Fetch completed" -msgstr "Letöltés sikeres" - -msgid "Load cover from URL" -msgstr "Borító letöltése webcímről" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Albumborító letöltése az alábbi URL-ről:" - -msgid "Settings" -msgstr "Beállítások" - -msgid "Behavior" -msgstr "Működés" - -msgid "Show system tray icon" -msgstr "Tálcaikon megjelenítése" - -msgid "Keep running in the background when the window is closed" -msgstr "Bezárt ablak esetén futás a háttérben" - -msgid "Show song progress on system tray icon" -msgstr "Lejátszási folyamatjelző megjelenítése a rendszertálca ikonon" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Lejátszás folytatása induláskor" - -msgid "Show playing widget" -msgstr "Albumborító megjelenítése az oldalsávban" - -msgid "On startup" -msgstr "Indításkor" - -msgid "Remember from &last time" -msgstr "Ahogy &legutoljára volt" - -msgid "Show the main window" -msgstr "Főablak megjelenítése" - -msgid "Hide the main window" -msgstr "Főablak elrejtése" - -msgid "Show the main window maximized" -msgstr "Főablak megjelenítése maximalizálva" - -msgid "Show the main window minimized" -msgstr "Főablak megjelenítése minimalizálva" - -msgid "Language" -msgstr "Nyelv" - -msgid "Use the system default" -msgstr "Rendszer alapértelmezésének használata" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "A nyelv megváltoztatásához újra kell indítani a Strawberryt." - -msgid "Using the menu to add a song will..." -msgstr "Szám hozzáadásakor a menü használatával..." - -msgid "Never start playing" -msgstr "Soha ne indítsa el a lejátszást" - -msgid "Play if there is nothing already playing" -msgstr "Lejátszás, ha nincs lejátszás folyamatban" - -msgid "Always start playing" -msgstr "Mindig indítsa el a lejátszást" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Az „Előző” gomb megnyomásakor…" - -msgid "Jump to previous song right away" -msgstr "Ugrás az előző számra" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Szám újraindítása és újbóli megnyomáskor ugrás az előzőre" - -msgid "Double clicking a song will..." -msgstr "Dupla kattintásra egy szám…" - -msgid "Append to the playlist" -msgstr "Hozzáadás a lejátszólistához" - -msgid "Replace the playlist" -msgstr "Lejátszólista cseréje" - -msgid "Add to the queue" -msgstr "Hozzáadás a lejátszási sorhoz" - -msgid "Double clicking a song in the playlist will..." -msgstr "Dupla kattintásra egy szám a lejátszólistában…" - -msgid "Change the currently playing song" -msgstr "Váltás a legutóbb játszott számra" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Léptetés gyorsbillentyűvel vagy egérgörgővel" - -msgid "Time step" -msgstr "Léptetés ideje" - -msgid " s" -msgstr " mp" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Ezek a mappák lesznek átvizsgálva a gyűjtemény feltöltéséhez" - -msgid "Add new folder..." -msgstr "Új mappa hozzáadása…" - -msgid "Remove folder" -msgstr "Mappa eltávolítása" - -msgid "Automatic updating" -msgstr "Automatikus frissítés" - -msgid "Update the collection when Strawberry starts" -msgstr "Gyűjtemény frissítése a Strawberry indításakor" - -msgid "Monitor the collection for changes" -msgstr "Gyűjtemény figyelése változások után" - -msgid "Song fingerprinting and tracking" -msgstr "Ujjlenyomat készítése a számokhoz, és azok követése" - -msgid "Mark disappeared songs unavailable" -msgstr "Eltűnt számok megjelölése nem elérhetőként" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "Nem elérhető számok elévülése ennyi idő után" - -msgid "days" -msgstr "nap" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Előnyben részesített albumborító-fájlnevek (vesszővel elválasztva)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Amikor a Strawberry albumborítót keres, először azokat a fájlokat ellenőrzi, melyek neve tartalmazza az alábbi szavakat.\n" -"Ha nincs egyezés, akkor a legnagyobb képet veszi a könyvtárból." - -msgid "Automatically open single categories in the collection tree" -msgstr "Egyelemű kategóriák automatikus listázása a gyűjteményben" - -msgid "Show dividers" -msgstr "Elválasztók megjelenítése" - -msgid "Show album cover art in collection" -msgstr "Albumborító megjelenítése a gyűjteményben" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Albumborító-gyorsítótár" - -msgid "Enable Disk Cache" -msgstr "Lemezgyorsítótár engedélyezése" - -msgid "Disk Cache Size" -msgstr "Lemezgyorsítótár mérete" - -msgid "Current disk cache in use:" -msgstr "Jelenleg használt lemezgyorsítótár:" - -msgid "Clear Disk Cache" -msgstr "Lemezgyorsítótár törlése" - -msgid "Song playcounts and ratings" -msgstr "Számok lejátszásszáma és értékelése" - -msgid "Save playcounts to song tags when possible" -msgstr "A lejátszásszámok számcímkékbe írása, ha lehetséges" - -msgid "Save ratings to song tags when possible" -msgstr "Az értékelések számcímkékbe írása, ha lehetséges" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Az adatbázisban lévő lejátszásszámok felülírása, ha a számok újra vannak olvasva a lemezről" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Az adatbázisban lévő értékelések felülírása, ha a számok újra vannak olvasva a lemezről" - -msgid "Save playcounts and ratings to files now" -msgstr "A lejátszásszámok és az értékelések azonnali fájlba írása" - -msgid "Enable delete files in the right click context menu" -msgstr "Fájlok törlésének engedélyezése a jobb-kattintásos menüből" - -msgid "Backend" -msgstr "Háttérprogram" - -msgid "Audio output" -msgstr "Hangkimenet" - -msgid "Engine" -msgstr "Motor" - -msgid "ALSA plugin:" -msgstr "ALSA bővítmény:" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "Beállítások" - -msgid "Enable volume control" -msgstr "Hangerőszabályzás engedélyezése" - -msgid "Upmix / downmix to" -msgstr "Felkeverés/lekeverés" - -msgid "channels" -msgstr "csatorna" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "A sztereó hangfelvételek fejhallgatós hallgatásának javítása (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "HTTPS/2 engedélyezése a közvetítésekhez" - -msgid "Use strict SSL mode" -msgstr "Szigorú SSL mód használata" - -msgid "Buffer" -msgstr "Puffer" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Puffer hossza" - -msgid "High watermark" -msgstr "Magas vízjel" - -msgid "Low watermark" -msgstr "Alacsony vízjel" - -msgid "Defaults" -msgstr "Alapértelmezett" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "Hangerő-kiegyenlítés (Replay Gain)" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Hangerő kiegyenlítési metaadatok használata, ha elérhető" - -msgid "Replay Gain mode" -msgstr "Hangerő-kiegyenlítés módja" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Rádió (egyenlő hangerő minden számhoz)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (ideális hangerő minden számhoz)" - -msgid "Apply compression to prevent clipping" -msgstr "Tömörítés engedélyezése a túlvezérlés elkerülése érdekében" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Elhalkulás" - -msgid "Fade out when stopping a track" -msgstr "Elhalkulás a szám megállításakor" - -msgid "Cross-fade when changing tracks manually" -msgstr "Áttűnés használata a számok kézi váltásánál" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Áttűnés használata a számok automatikus váltásánál" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Kivéve az azonos albumon vagy azonos CUE fájlban lévő számok között" - -msgid "Fading duration" -msgstr "Elhalkulás hossza" - -msgid "Fade out on pause / fade in on resume" -msgstr "Áttűnés a szünet megnyomásakor és a folytatáskor" - -msgid "Add song artist tag" -msgstr "Előadó hozzáadása" - -msgid "Add song album tag" -msgstr "Album hozzáadása" - -msgid "Add song title tag" -msgstr "Cím címke hozzáadása" - -msgid "Add song albumartist tag" -msgstr "Albumelőadó címke hozzáadása" - -msgid "Add song year tag" -msgstr "Szám évének hozzáadása" - -msgid "Add song composer tag" -msgstr "Zeneszerző hozzáadása" - -msgid "Add song performer tag" -msgstr "Számelőadó címke hozzáadása" - -msgid "Add song grouping tag" -msgstr "Számcsoportosítási címke hozzáadása" - -msgid "Add song disc tag" -msgstr "Lemez címke hozzáadása" - -msgid "Add song track tag" -msgstr "Szám sorszám címke hozzáadása" - -msgid "Add song genre tag" -msgstr "Műfaj hozzáadása" - -msgid "Add song length tag" -msgstr "Számhossz címke hozzáadása" - -msgid "Add song play count" -msgstr "Lejátszásszámláló hozzáadása" - -msgid "Add song skip count" -msgstr "Számkihagyás számláló hozzáadása" - -msgid "Add a new line if supported by the notification type" -msgstr "Sortörés hozzáadása, ha az értesítéstípus támogatja" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Szám fájlnevének hozzáadása" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Szám URL hozzáadása" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Számértékelés hozzáadása" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "Eredeti év címke hozzáadása a számhoz" - -msgid "Custom text settings" -msgstr "Egyéni szövegbeállítások" - -msgid "Summary" -msgstr "Összegzés" - -msgid "Enable Items" -msgstr "Elemek engedélyezése" - -msgid "Technical Data" -msgstr "Műszaki adatok" - -msgid "Song Lyrics" -msgstr "Dalszöveg" - -msgid "Automatically search for album cover" -msgstr "Albumborító automatikus keresése" - -msgid "Font for headline" -msgstr "Cím betűkészlete" - -msgid "Font" -msgstr "Betűkészlet" - -msgid "Font size" -msgstr "Betűméret" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "Adatok és dalszöveg betűkészlete" - -msgid "Use alternating row colors" -msgstr "Felváltott sorszínek használata" - -msgid "Show bars on the currently playing track" -msgstr "Sávok megjelenítése a jelenlegi játszott számon" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Ragyogás animáció megjelenítése a jelenleg játszott számon" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Folytatás a következő elemtől a lejátszólistában, ha a szám nem érhető el" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Nem elérhető számok kiszürkítése lejátszáskor" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Nem elérhető számok kiszürkítése induláskor" - -msgid "Automatically select current playing track" -msgstr "A legutóbbi szám automatikus kiválasztása" - -msgid "Enable playlist toolbar" -msgstr "Lejátszólista eszköztár engedélyezése" - -msgid "Enable playlist clear button" -msgstr "Lejátszólista törlése gomb engedélyezése" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Lejátszólista automatikus rendezése számok beillesztésekor" - -msgid "When saving a playlist, file paths should be" -msgstr "A lejátszólista mentésekor a fájl elérési útvonala" - -msgid "A&utomatic" -msgstr "A&utomatikus" - -msgid "Absolu&te" -msgstr "Abszolú&t" - -msgid "Re&lative" -msgstr "Re&latív" - -msgid "As&k when saving" -msgstr "&Rákérdezés mentéskor" - -msgid "Metadata" -msgstr "Metaadatok" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Ha engedélyezve van, a kijelölt szám címkéje szerkeszthető lesz a lejátszólistán" - -msgid "Enable song metadata inline edition with click" -msgstr "Számok metaadatainak szerkesztése kattintásra" - -msgid "Write metadata when saving playlists" -msgstr "Metaadatok írása a lejátszólisták mentésekor" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Engedélyezés" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "A számok akkor lesznek scrobble-ozva, ha érvényes metaadataik vannak, 30 \n" -"másodpercnél hosszabbak, illetve legalább a felükig vagy 4 percig vannak lejátszva (amelyik korábban teljesül)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Működés kapcsolat nélküli módban (csak gyorsítótárazás)" - -msgid "Show scrobble button" -msgstr "Scrobble gomb megjelenítése" - -msgid "Show love button" -msgstr "Kedvenc gomb megjelenítése" - -msgid "Submit scrobbles every" -msgstr "Scrobble-ok beküldése minden" - -msgid " seconds" -msgstr " másodperc" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(Ez a szám scrobble-ozása és a scrobble kiszolgáló felé elküldése közti késleltetés. Az idő 0-ra állítása azt eredményezi, hogy azonnal elküldi.)" - -msgid "Prefer album artist when sending scrobbles" -msgstr "Albumelőadó előnyben részesítése a scrobble-ok beküldésénél" - -msgid "Show dialog for errors" -msgstr "Párbeszédablak megjelenítése hibák esetén" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Scrobble funkció engedélyezése a következő forrásokhoz:" - -msgid "Local file" -msgstr "Helyi fájl" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Közvetítés" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Bejelentkezés" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Felhasználói token:" - -msgid "Covers" -msgstr "Borítók" - -msgid "Cover providers" -msgstr "Borító szolgáltatók" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Válassza ki az albumborítók keresésénél használandó szolgáltatókat." - -msgid "Authentication" -msgstr "Hitelesítés" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Albumborítók mentése" - -msgid "Save album covers in album directory" -msgstr "Albumborítók mentése az album könyvtárába" - -msgid "Save album covers in cache directory" -msgstr "Albumborítók mentése a gyorsítótár könyvtárába" - -msgid "Save album covers as embedded cover" -msgstr "Albumborítók mentése beágyazott borítóként" - -msgid "Filename:" -msgstr "Fájlnév:" - -msgid "Pattern" -msgstr "Minta" - -msgid "Random" -msgstr "Véletlenszerű" - -msgid "Overwrite existing file" -msgstr "Létező fájl felülírása" - -msgid "Lowercase filename" -msgstr "Kisbetűs fájlnevek" - -msgid "Replace spaces with dashes" -msgstr "Szóközök lecserélése kötőjelekre" - -msgid "Lyrics" -msgstr "Dalszöveg" - -msgid "Lyrics providers" -msgstr "Dalszöveg-szolgáltatók" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Válassza ki a dalszövegek kereséséhez használandó szolgáltatókat." - -msgid "Network Proxy" -msgstr "Hálózati proxy" - -msgid "&Use the system proxy settings" -msgstr "&Rendszer proxybeállításainak használata" - -msgid "Direct internet connection" -msgstr "Közvetlen internetkapcsolat" - -msgid "&Manual proxy configuration" -msgstr "&Kézi proxybeállítás" - -msgid "HTTP proxy" -msgstr "" - -msgid "SOCKS proxy" -msgstr "" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "Hitelesítés használata" - -msgid "Username" -msgstr "Felhasználónév" - -msgid "Password" -msgstr "Jelszó" - -msgid "Use proxy settings for streaming" -msgstr "Proxybeállítások használata a közvetítésekhez" - -msgid "Appearance" -msgstr "Megjelenés" - -msgid "Style" -msgstr "Stílus" - -msgid "Use system theme icons" -msgstr "Rendszerikonok használata" - -msgid "Settings require restart." -msgstr "A beállítások újraindítást igényelnek." - -msgid "Tabbar colors" -msgstr "Lapsáv színei" - -msgid "&Use the system default color" -msgstr "&Rendszer alapértelmezett színének használata" - -msgid "Use custom color" -msgstr "Egyéni szín használata" - -msgid "Use gradient background" -msgstr "Átmenetes háttérszín" - -msgid "Select tabbar color:" -msgstr "Lapsáv színének kiválasztása:" - -msgid "Background image" -msgstr "Háttérkép" - -msgid "Default bac&kground image" -msgstr "A&lapértelmezett háttérkép" - -msgid "&No background image" -msgstr "&Nincs háttérkép" - -msgid "The album cover of the currently playing song" -msgstr "A jelenleg játszott szám albumborítója" - -msgid "Albu&m cover" -msgstr "&Albumborító" - -msgid "Custom image:" -msgstr "Egyéni kép:" - -msgid "Browse..." -msgstr "Tallózás…" - -msgid "Position" -msgstr "Helyzet" - -msgid "Upper Left" -msgstr "Balra fent" - -msgid "Upper Right" -msgstr "Jobbra fent" - -msgid "Middle" -msgstr "Középen" - -msgid "Bottom Left" -msgstr "Balra lent" - -msgid "Bottom Right" -msgstr "Jobbra lent" - -msgid "Max cover size" -msgstr "Legnagyobb borítóméret" - -msgid "Stretch image to fill playlist" -msgstr "Kép nyújtása a lejátszólista kitöltéséhez" - -msgid "Keep aspect ratio" -msgstr "Képarány megtartása" - -msgid "Do not cut image" -msgstr "Ne legyen levágva a képből" - -msgid "Blur amount" -msgstr "Elmosás mértéke" - -msgid "0px" -msgstr "0 px" - -msgid "Opacity" -msgstr "Átlátszatlanság" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "Ikonméret" - -msgid "Playlist buttons" -msgstr "Lejátszólista gombok" - -msgid "Tabbar large mode" -msgstr "Nagy módú lapsáv" - -msgid "Play control buttons" -msgstr "Lejátszásvezérlő gombok" - -msgid "Configure buttons" -msgstr "Gombok beállítása" - -msgid "Files, playlists and queue buttons" -msgstr "Fájl, lejátszólista és lejátszási sor gombok" - -msgid "Tabbar small mode" -msgstr "Kis módú lapsáv" - -msgid "Playlist playing song color" -msgstr "A lejátszott szám színe a lejátszólistán" - -msgid "System highlight color" -msgstr "Rendszer kiemelőszíne" - -msgid "Custom color" -msgstr "Egyéni szín" - -msgid "Select playlist playing song color:" -msgstr "Válassza ki a lejátszott szám színét a lejátszólistán" - -msgid "Notifications" -msgstr "Értesítések" - -msgid "Strawberry can show a message when the track changes." -msgstr "A Strawberry felbukkanó üzenetben tudja jelezni, ha számot vált." - -msgid "Notification type" -msgstr "Értesítés típusa" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Letiltva" - -msgid "Show a &native desktop notification" -msgstr "&Natív asztali értesítés megjelenítése" - -msgid "Show a pretty OSD" -msgstr "Saját OSD megjelenítése" - -msgid "Show a popup fro&m the system tray" -msgstr "A rendszertálcáról &felugró értesítés megjelenítése " - -msgid "General settings" -msgstr "Általános beállítások" - -msgid "Popup duration" -msgstr "Értesítés időtartama" - -msgid "Disable duration" -msgstr "Időtartam letiltása" - -msgid "Show a notification when I change the volume" -msgstr "Értesítés megjelenítése a hangerő változtatásakor" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Értesítés megjelenítése, ha megváltoztatom az ismétlést/keverést" - -msgid "Show a notification when I pause playback" -msgstr "Értesítés megjelenítése szüneteltetéskor" - -msgid "Show a notification when I resume playback" -msgstr "Értesítés megjelenítése a lejátszás folytatásához" - -msgid "Include album art in the notification" -msgstr "Albumborító megjelenítése az értesítésben" - -msgid "Custom message settings" -msgstr "Egyéni üzenetbeállítások" - -msgid "Use a custom message for notifications" -msgstr "Egyéni üzenet használata az értesítéseknél" - -msgid "Body" -msgstr "Törzs" - -msgid "Pretty OSD options" -msgstr "Saját OSD beállításai" - -msgid "Background color" -msgstr "Háttérszín" - -msgid "Text options" -msgstr "Szövegbeállítások" - -msgid "Choose font..." -msgstr "Betűtípus kiválasztása…" - -msgid "Choose color..." -msgstr "Szín kiválasztása…" - -msgid "Background opacity" -msgstr "Háttér áttetszősége" - -msgid "Basic Blue" -msgstr "Egyszerű kék" - -msgid "Strawberry Red" -msgstr "Szamócapiros" - -msgid "Custom..." -msgstr "Egyéni…" - -msgid "Enable fading" -msgstr "Elhalkulás engedélyezése" - -msgid "Equalizer" -msgstr "Hangszínszabályzó" - -msgid "Preset:" -msgstr "Előbeállítás:" - -msgid "Enable equalizer" -msgstr "Hangszínszabályzó engedélyezése" - -msgid "Enable stereo balancer" -msgstr "Hangegyensúly engedélyezése" - -msgid "Left" -msgstr "Bal" - -msgid "Balance" -msgstr "Egyensúly" - -msgid "Right" -msgstr "Jobb" - -msgid "About" -msgstr "Névjegy" - -msgid "Strawberry Error" -msgstr "Strawberry hiba" - -msgid "Console" -msgstr "Konzol" - -msgid "Run" -msgstr "Futtatás" - -msgid "Edit track information" -msgstr "Száminformációk szerkesztése" - -msgid "Date created" -msgstr "Létrehozás dátuma" - -msgid "Art Automatic" -msgstr "Automatikus albumborító" - -msgid "Date modified" -msgstr "Módosítás dátuma" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Legutóbb játszott" - -msgid "Play count" -msgstr "Lejátszásszám" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Bitráta" - -msgid "Skip count" -msgstr "Kihagyások száma" - -msgid "Path" -msgstr "Elérési út" - -msgid "Filename" -msgstr "Fájlnév" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Fájlméret" - -msgid "Art Manual" -msgstr "Kézi albumborító" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Lejátszásszámok lenullázása" - -msgid "Change art" -msgstr "Borító módosítása" - -msgid "Embedded cover" -msgstr "Beágyazott albumborító" - -msgid "Complete tags automatically" -msgstr "Címkék automatikus kiegészítése" - -msgid "Compilation" -msgstr "Összeállítás" - -msgid "Tags" -msgstr "Címkék" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Címkeletöltő" - -msgid "Sorry" -msgstr "Elnézést" - -msgid "Strawberry was unable to find results for this file" -msgstr "A Strawberry nem talált semmit ehhez a fájlhoz" - -msgid "Select best possible match" -msgstr "A legjobb egyezés választása" - -msgid "Add Stream" -msgstr "Közvetítés hozzáadása" - -msgid "Enter the URL of a stream:" -msgstr "Közvetítés URL-jének megadása:" - -msgid "Enter username and password" -msgstr "Felhasználónév és jelszó megadása" - -msgid "Import data from last.fm" -msgstr "Adatok importálása last.fm-ből" - -msgid "Choose data to import from last.fm" -msgstr "A last.fm-ből importálandó adatok kiválasztása" - -msgid "Play counts" -msgstr "Lejátszásszámok" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Figyelmeztetés: A last.fm-ből származó lejátszásszámok és legutóbbi lejátszási időpontok lecserélik az egyező számok megfelelő adatait. A lejátszásszámok felváltják az egyező albumok adatait az előadó és a szám címe alapján. Mielőtt elindítaná, készítsen biztonsági másolatot az adatbázisáról." - -msgid "Go!" -msgstr "Ugrás!" - -msgid "Close" -msgstr "Bezárás" - -msgid "Cancel" -msgstr "Mégse" - -msgid "Message Dialog" -msgstr "Üzenet párbeszédablaka" - -msgid "Do not show this message again." -msgstr "Ne jelenítse meg újra ezt az üzenetet." - -msgid "Select directory for saving playlists" -msgstr "Válasszon könyvtárat a lejátszólisták mentéséhez" - -msgid "Type" -msgstr "Típus" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Kattintson a hátralévő és a teljes idő kijelzése közti váltáshoz" - -msgid "You are not signed in." -msgstr "Nincs bejelentkezve." - -msgid "Sign out" -msgstr "Kijelentkezés" - -msgid "Signing in..." -msgstr "Belépés…" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Előadók" - -msgid "Albums" -msgstr "Albumok" - -msgid "Songs" -msgstr "Számok" - -msgid "Refresh catalogue" -msgstr "Katalógus frissítése" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "előadók" - -msgid "albums" -msgstr "albumok" - -msgid "songs" -msgstr "számok" - -msgid "Organize Files" -msgstr "Fájlok rendszerezése" - -msgid "Destination" -msgstr "Cél" - -msgid "After copying..." -msgstr "Másolás után…" - -msgid "Keep the original files" -msgstr "Eredeti fájlok megőrzése" - -msgid "Delete the original files" -msgstr "Eredeti fájlok törlése" - -msgid "Naming options" -msgstr "Elnevezési lehetőségek" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

A száminformációk behelyettesítéséhez a címkék % jellel kezdődnek, például: %artist %album %title

\n\n" -"

Ha egy szövegrészt kapcsos zárójelek közé tesz, akkor az el lesz rejtve, ha a benne lévő címke helyére semmi sem helyettesíthető be.

" - -msgid "Insert..." -msgstr "Beszúrás…" - -msgid "Remove problematic characters from filenames" -msgstr "Problémás karakterek eltávolítása a fájlnevekből" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Csak a FAT fájlrendszerekben engedélyezett karakterek használata" - -msgid "Restrict characters to ASCII" -msgstr "Csak az ASCII-ban engedélyezett karakterek használata" - -msgid "Allow extended ASCII characters" -msgstr "Bővített ASCII karakterek engedélyezése" - -msgid "Replace spaces with underscores" -msgstr "Szóközök lecserélése aláhúzásjelekre" - -msgid "Overwrite existing files" -msgstr "Létező fájlok felülírása" - -msgid "Copy album cover artwork" -msgstr "Albumborító másolása" - -msgid "Safely remove the device after copying" -msgstr "Eszköz biztonságos eltávolítása másolás után" - -msgid "Press a key" -msgstr "Nyomjon meg egy billentyűt" - -msgid "Global Shortcuts" -msgstr "Globális gyorsbillentyűk" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Gnome (GSD) gyorsbillentyűk használata, ha elérhető" - -msgid "Open..." -msgstr "Megnyitás…" - -msgid "Use MATE shortcuts when available" -msgstr "MATE gyorsbillentyűk használata, ha elérhető" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "KDE (KGlobalAccel) gyorsbillentyűk használata, ha elérhető" - -msgid "Use X11 shortcuts when available" -msgstr "X11 gyorsbillentyűk használata, ha elérhető" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "A Rendszerbeállításokban engedélyeznie kell a „számítógép irányítása” beállítást a globális gyorsbillentyűk használatához a Strawberryben." - -msgid "Shortcut" -msgstr "Gyorsbillentyű" - -msgctxt "Category label" -msgid "Action" -msgstr "Művelet" - -msgid "&None" -msgstr "&Nincs" - -msgid "&Default" -msgstr "&Alapértelmezett" - -msgid "&Custom" -msgstr "&Egyéni" - -msgid "Change shortcut..." -msgstr "Gyorsbillentyű módosítása…" - -msgid "Device Properties" -msgstr "Eszköztulajdonságok" - -msgid "Icon" -msgstr "Ikon" - -msgid "Hardware information" -msgstr "Hardverjellemzők" - -msgid "Hardware information is only available while the device is connected." -msgstr "A hardverjellemzők csak csatlakoztatott eszköz esetén tekinthetők meg." - -msgid "Information" -msgstr "Információ" - -msgid "Supported formats" -msgstr "Támogatott formátumok" - -msgid "This device supports the following file formats:" -msgstr "Ez az eszköz az alábbi fájlformátumokat támogatja:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "A Strawberry automatikusan az eszköz által is támogatott formátumba tudja alakítani a számokat másolás előtt." - -msgid "Do not convert any music" -msgstr "Ne konvertáljon egy zenét sem" - -msgid "Convert any music that the device can't play" -msgstr "Az eszköz által nem támogatott zenék konvertálása" - -msgid "Convert all music" -msgstr "Összes zene konvertálása" - -msgid "Preferred format" -msgstr "Előnyben részesített formátum" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "A Strawberry csak az eszköz csatlakoztatása és megnyitása után képes megállapítani, hogy az milyen fájlformátumokat támogat." - -msgid "Open device" -msgstr "Eszköz megnyitása" - -msgid "Querying device..." -msgstr "Eszköz lekérdezése…" - -msgid "File formats" -msgstr "Fájlformátumok" - -msgid "Transcode Music" -msgstr "Zene átkódolása" - -msgid "Files to transcode" -msgstr "Átkódolandó fájlok" - -msgid "Directory" -msgstr "Könyvtár" - -msgid "Add..." -msgstr "Hozzáadás…" - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Az összes szám hozzáadása a könyvtárból és az alkönyvtáraktból" - -msgid "Import..." -msgstr "Importálás…" - -msgid "Output options" -msgstr "Kimenet beállításai" - -msgid "Audio format" -msgstr "Hangformátum" - -msgid "Options..." -msgstr "Beállítások…" - -msgid "Alongside the originals" -msgstr "Az eredetiek mellé" - -msgid "Select..." -msgstr "Kiválasztás…" - -msgid "Progress" -msgstr "Folyamat" - -msgid "Details..." -msgstr "Részletek…" - -msgid "Transcoder Log" -msgstr "Átkódolási napló" - -msgid " kbps" -msgstr " kbit/s" - -msgid "Profile" -msgstr "Profil" - -msgid "Main profile (MAIN)" -msgstr "Fő profil (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Alacsony komplexitású profil (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Skálázható mintavételezési profil (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Hosszú távú előrejelzésen alapuló profil (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Időbeli zajformázás alkalmazása" - -msgid "Allow mid/side encoding" -msgstr "Mid/side kódolás engedélyezése" - -msgid "Block type" -msgstr "Blokktípus" - -msgid "Normal block type" -msgstr "Normál blokkok" - -msgid "No short blocks" -msgstr "Rövid blokkok nélkül" - -msgid "No long blocks" -msgstr "Hosszú blokkok nélkül" - -msgid "Transcoding options" -msgstr "Átkódolási beállítások" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Minőség" - -msgid "Fast" -msgstr "Gyors" - -msgid "Best" -msgstr "Legjobb" - -msgid "Use bitrate management engine" -msgstr "Bitráta-kezelőszolgáltatás használata" - -msgid "Target bitrate" -msgstr "Cél bitráta" - -msgid "Minimum bitrate" -msgstr "Legkisebb bitráta" - -msgid "disabled" -msgstr "kikapcsolva" - -msgid "Maximum bitrate" -msgstr "Legnagyobb bitráta" - -msgid "automatic" -msgstr "automatikus" - -msgid "Average bitrate" -msgstr "Átlagos bitráta" - -msgid "Encoding mode" -msgstr "Kódolási mód" - -msgid "Auto" -msgstr "Automatikus" - -msgid "Ultra wide band (UWB)" -msgstr "Ultra szélessávú (UWB)" - -msgid "Wide band (WB)" -msgstr "Szélessávú (WB)" - -msgid "Narrow band (NB)" -msgstr "Keskenysávú (NB)" - -msgid "Variable bit rate" -msgstr "Változó bitráta" - -msgid "Voice activity detection" -msgstr "Hangtevékenység észlelése" - -msgid "Discontinuous transmission" -msgstr "Szakaszos átvitel" - -msgid "Encoding complexity" -msgstr "Kódolás összetettsége" - -msgid "Frames per buffer" -msgstr "Képkockák pufferenként" - -msgid "Optimize for &quality" -msgstr "Optimalizálás &minőségre" - -msgid "Opti&mize for bitrate" -msgstr "Opti&malizálás bitrátára" - -msgid "Constant bitrate" -msgstr "Állandó bitráta" - -msgid "Encoding engine quality" -msgstr "Kódolás minősége" - -msgid "Standard" -msgstr "Normál" - -msgid "High" -msgstr "Magas" - -msgid "Force mono encoding" -msgstr "Mono kódolás kényszerítése" - -msgid "Transcoding" -msgstr "Átkódolás" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Ezek a beállítások a „Zene átkódolása” ablakban használatosak, illetve amikor zenéket alakít át egy eszközre másolás előtt." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "Kiszolgáló webcíme" - -msgid "Authentication method:" -msgstr "Hitelesítési mód:" - -msgid "Hex" -msgstr "Hexa" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Beállítások" - -msgid "Use HTTP/2 when possible" -msgstr "HTTP/2 használata, ha lehetséges" - -msgid "Verify server certificate" -msgstr "Kiszolgáló tanúsítványának ellenőrzése" - -msgid "Download album covers" -msgstr "Albumborítók letöltése" - -msgid "Server-side scrobbling" -msgstr "Kiszolgálóoldali scrobble funkció" - -msgid "Test" -msgstr "Teszt" - -msgid "Delete songs" -msgstr "Számok törlése" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "A Tidal támogatása nem hivatalos, és ahhoz, hogy működjön, regisztrált alkalmazás API-token szükséges. Nem tudunk segíteni ennek a beszerzésében." - -msgid "Use OAuth" -msgstr "OAuth használata" - -msgid "Client ID" -msgstr "Kliens azonosító" - -msgid "API Token" -msgstr "API token" - -msgid "Audio quality" -msgstr "Hangminőség" - -msgid "Search delay" -msgstr "Keresés késleltetése" - -msgid "ms" -msgstr " ms" - -msgid "Artists search limit" -msgstr "Előadó keresési korlát" - -msgid "Albums search limit" -msgstr "Album keresési korlát" - -msgid "Songs search limit" -msgstr "Számkeresési korlát" - -msgid "Fetch entire albums when searching songs" -msgstr "Számok keresésekor a teljes albumok letöltése" - -msgid "Album cover size" -msgstr "Albumborító mérete" - -msgid "Stream URL method" -msgstr "Közvetítési webcím metódusa" - -msgid "Append explicit to album title for explicit albums" -msgstr "Szókimondó felirat hozzáfűzése a korhatáros albumokhoz" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "A Qobuz-támogatás nem hivatalos, és ahhoz, hogy működjön, API alkalmazásazonosító és titok szükséges egy regisztrált alkalmazásból. Ezek beszerzésében nem tudunk segíteni." - -msgid "App ID" -msgstr "Alkalmazás azonosító" - -msgid "App Secret" -msgstr "Alkalmazás titok" - -msgid "Base64 encoded secret" -msgstr "Base64 kódolású titok" - -msgid "Moodbar" -msgstr "Hangulatsáv" - -msgid "Show a moodbar in the track progress bar" -msgstr "Hangulatsáv megjelenítése a folyamatjelző sávban" - -msgid "Save the .mood files directly in the songs folders" -msgstr "A .mood fájlok mentése a számok mappáiba" - -msgid "Enabled" -msgstr "Engedélyezve" - -msgid "Return to Strawberry" -msgstr "Visszatérés a Strawberryhez" - -msgid "Success!" -msgstr "Sikeres!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Zárja be a böngészőjét, és térjen vissza a Strawberryhez." - diff --git a/src/translations/id_ID.po b/src/translations/id_ID.po deleted file mode 100644 index c9b96bbe..00000000 --- a/src/translations/id_ID.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: id\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Indonesian\n" -"Language: id_ID\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Semua Berkas (*)" - -msgid "Context" -msgstr "Konteks" - -msgid "Collection" -msgstr "Pustakascan" - -msgid "Queue" -msgstr "Antrean" - -msgid "Playlists" -msgstr "Daftar putar" - -msgid "Smart playlists" -msgstr "" - -msgid "Files" -msgstr "Berkas" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "Perangkat" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Tampilkan semua lagu" - -msgid "Show only duplicates" -msgstr "Tampilkan hanya duplikat" - -msgid "Show only untagged" -msgstr "Tampilkan hanya tidak bertag" - -msgid "Configure collection..." -msgstr "Konfigurasi pustaka..." - -msgid "Play" -msgstr "Putar" - -msgid "Stop after this track" -msgstr "Berhenti setelah trek ini" - -msgid "Toggle queue status" -msgstr "Alihkan status antrean" - -msgid "Queue selected tracks to play next" -msgstr "Antre trek terpilih untuk diputar selanjutnya" - -msgid "Toggle skip status" -msgstr "Alihkan status melewati" - -msgid "Rescan song(s)..." -msgstr "" - -msgid "Copy URL(s)..." -msgstr "" - -msgid "Show in collection..." -msgstr "Tampilkan di pustaka..." - -msgid "Show in file browser..." -msgstr "Tampilkan di peramban berkas..." - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "Salin ke pustaka..." - -msgid "Move to collection..." -msgstr "Pindah ke pustaka..." - -msgid "Copy to device..." -msgstr "Salin ke perangkat..." - -msgid "Delete from disk..." -msgstr "Hapus dari diska..." - -msgid "Check for updates..." -msgstr "Periksa pembaruan..." - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Jeda" - -msgid "Dequeue track" -msgstr "Buang antrean trek" - -msgid "Dequeue selected tracks" -msgstr "Buang antrean trek terpilih" - -msgid "Queue track" -msgstr "Antre trek" - -msgid "Queue selected tracks" -msgstr "Antre trek terpilih" - -msgid "Queue to play next" -msgstr "Antre untuk diputar selanjutnya" - -msgid "Unskip track" -msgstr "Taklewati trek" - -msgid "Unskip selected tracks" -msgstr "Taklewati trek yang dipilih" - -msgid "Skip track" -msgstr "Lewati trek" - -msgid "Skip selected tracks" -msgstr "Lewati trek yang dipilih" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Tetapkan %1 ke \"%2\"..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Sunting tag \"%1\"..." - -msgid "Add to another playlist" -msgstr "Tambahkan ke daftar putar lainnya" - -msgid "New playlist" -msgstr "Daftar putar baru" - -msgid "Add file" -msgstr "Tambah berkas" - -msgid "Music" -msgstr "Musik" - -msgid "Add folder" -msgstr "Tambah folder" - -msgid "Clear playlist" -msgstr "Bersihkan daftar putar" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "" - -msgid "Error" -msgstr "Kesalahan" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Tidak satu pun dari lagu yang dipilih cocok untuk disalin ke perangkat" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Versi Strawberry yang baru saja Anda perbarui membutuhkan pemindaian ulang pustaka menyeluruh karena fitur baru yang tercantum di bawah ini:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Apakah Anda ingin menjalankan pemindaian ulang menyeluruh sekarang?" - -msgid "Collection rescan notice" -msgstr "Pemberitahuan pemindaian ulang pustaka" - -msgid "Usage" -msgstr "Penggunaan" - -msgid "options" -msgstr "opsi" - -msgid "URL(s)" -msgstr "URL" - -msgid "Player options" -msgstr "Opsi pemutar" - -msgid "Start the playlist currently playing" -msgstr "Mulai daftar putar yang berputar saat ini" - -msgid "Play if stopped, pause if playing" -msgstr "Putar jika berhenti, jeda jika berputar" - -msgid "Pause playback" -msgstr "Jeda pemutaran" - -msgid "Stop playback" -msgstr "Hentikan pemutaran" - -msgid "Stop playback after current track" -msgstr "Hentikan pemutaran setelah trek saat ini" - -msgid "Skip backwards in playlist" -msgstr "Lewati mundur di dalam daftar putar" - -msgid "Skip forwards in playlist" -msgstr "Lewati maju di dalam daftar putar" - -msgid "Set the volume to percent" -msgstr "Tetapkan volume ke persen" - -msgid "Increase the volume by 4 percent" -msgstr "Naikkan volume 4 persen" - -msgid "Decrease the volume by 4 percent" -msgstr "Kurangi volume 4 persen" - -msgid "Increase the volume by percent" -msgstr "Naikkan volume persen" - -msgid "Decrease the volume by percent" -msgstr "Kurangi volume persen" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Jangkau yang sedang diputar ke posisi mutlak" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Jangkau trek yang sedang diputar berdasarkan nilai relatif" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Mulai ulang trek, atau putar trek sebelumnya jika masih dalam 8 detik sejak mulai." - -msgid "Playlist options" -msgstr "Opsi daftar putar" - -msgid "Create a new playlist with files" -msgstr "Buat daftar putar baru dengan berkas" - -msgid "Append files/URLs to the playlist" -msgstr "Tambahkan berkas/URL ke daftar putar" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Muat berkas/URL, menggantikan daftar putar saat ini" - -msgid "Play the th track in the playlist" -msgstr "Putar trek ke dalam daftar putar" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "Opsi lainnya" - -msgid "Display the on-screen-display" -msgstr "Tampilkan tampilan-pada-layar" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Alihkan kenampakan tampilan-pada-layar cantik" - -msgid "Change the language" -msgstr "Ubah bahasa" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "Setara dengan --log-level *: 1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Setara dengan --log-level *: 3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Daftar yang dipisahkan koma dari kelas:level, level adalah 0-3" - -msgid "Print out version information" -msgstr "Cetak informasi versi" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Periksa integritas" - -msgid "Database corruption detected." -msgstr "Kerusakan basis data terdeteksi." - -msgid "Backing up database" -msgstr "Membuat cadangan basis data" - -msgid "Deleting files" -msgstr "Menghapus berkas" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Tidak diketahui" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Anda memerlukan GStreamer untuk URL ini." - -msgid "Preload function was not set for blocking operation." -msgstr "Fungsi preload tidak diatur untuk operasi memblokir." - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Berkas %1 bukanlah berkas audio yang benar." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "Pemutaran CD hanya tersedia dengan mesin GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Daftar putar" - -msgid "1 day" -msgstr "1 hari" - -#, qt-format -msgid "%1 days" -msgstr "%1 hari" - -msgid "Today" -msgstr "Hari Ini" - -msgid "Yesterday" -msgstr "Kemarin" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 hari yang lalu" - -msgid "Tomorrow" -msgstr "Besok" - -#, qt-format -msgid "In %1 days" -msgstr "Dalam %1 hari" - -msgid "Next week" -msgstr "Minggu depan" - -#, qt-format -msgid "In %1 weeks" -msgstr "Dalam %1 minggu" - -msgid "Show in file browser" -msgstr "Tampilkan di peramban berkas" - -msgid "Too many songs selected." -msgstr "Terlalu banyak lagu yang terpilih." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Kesalahan tak terduga" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "" - -msgid "Framerate" -msgstr "Lajubingkai" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Rendah (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Sedang (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Tinggi (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Sangat tinggi (%1 fps)" - -msgid "No analyzer" -msgstr "Tidak ada penganalisis" - -msgid "Block analyzer" -msgstr "Penganalisis blok" - -msgid "Boom analyzer" -msgstr "Penganalisis dentuman" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "" - -msgid "Custom" -msgstr "Ubahsuai" - -msgid "Classical" -msgstr "Klasik" - -msgid "Club" -msgstr "Klub" - -msgid "Dance" -msgstr "Dansa" - -msgid "Full Bass" -msgstr "Bass Penuh" - -msgid "Full Treble" -msgstr "Treble Penuh" - -msgid "Full Bass + Treble" -msgstr "Bass + Treble Penuh" - -msgid "Laptop/Headphones" -msgstr "Laptop/Fonkepala" - -msgid "Large Hall" -msgstr "Balai Besar" - -msgid "Live" -msgstr "Langsung" - -msgid "Party" -msgstr "Pesta" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "Tekno" - -msgid "Zero" -msgstr "Nol" - -msgid "Save preset" -msgstr "Simpan prasetel" - -msgid "Name" -msgstr "Nama" - -msgid "Delete preset" -msgstr "Hapus prasetel" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Apakah Anda yakin ingin menghapus prasetel \"%1\"?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Tipe berkas" - -msgid "Length" -msgstr "Durasi" - -msgid "Samplerate" -msgstr "Lajusampel" - -msgid "Bit depth" -msgstr "Kedalaman bit" - -msgid "Bitrate" -msgstr "Lajubit" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "" - -msgid "Show song technical data" -msgstr "Tampilkan data teknis lagu" - -msgid "Show song lyrics" -msgstr "Tampilkan lirik lagu" - -msgid "Automatically search for song lyrics" -msgstr "" - -msgid "No song playing" -msgstr "Tidak ada lagu yang berputar" - -#, qt-format -msgid "%1 song" -msgstr "" - -#, qt-format -msgid "%1 songs" -msgstr "" - -#, qt-format -msgid "%1 artist" -msgstr "" - -#, qt-format -msgid "%1 artists" -msgstr "" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "Artis beraga" - -msgid "Loading..." -msgstr "Memuat..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "Memperbarui pustaka" - -#, qt-format -msgid "Updating %1" -msgstr "Memperbarui %1" - -msgid "Your collection is empty!" -msgstr "Pustaka Anda kosong!" - -msgid "Click here to add some music" -msgstr "Klik di sini untuk menambahkan musik" - -msgid "Append to current playlist" -msgstr "Tambahkan ke daftar putar saat ini" - -msgid "Replace current playlist" -msgstr "Ganti daftar putar saat ini" - -msgid "Open in new playlist" -msgstr "Buka di daftar putar baru" - -msgid "Search for this" -msgstr "Cari ini" - -msgid "Edit track information..." -msgstr "Sunting informasi trek..." - -msgid "Edit tracks information..." -msgstr "Sunting informasi trek..." - -msgid "Rescan song(s)" -msgstr "Pindai ulang lagu" - -msgid "Show in various artists" -msgstr "Tampilkan di artis beragam" - -msgid "Don't show in various artists" -msgstr "Jangan tampilkan di artis beragam" - -msgid "There are other songs in this album" -msgstr "Ada lagu lainnya di dalam album ini" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "Tampilkan" - -msgid "Group by" -msgstr "Grup berdasarkan" - -msgid "Display options" -msgstr "Opsi tampilan" - -msgid "Group by Album artist/Album" -msgstr "Grup berdasarkan Artis album/Album" - -msgid "Group by Album artist/Album - Disc" -msgstr "Grup berdasarkan Artis album/Album - Cakram" - -msgid "Group by Album artist/Year - Album" -msgstr "Grup berdasarkan Artis album/Tahun - Album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Grup berdasarkan Artis album/Tahun - Album - Cakram" - -msgid "Group by Artist/Album" -msgstr "Grup berdasarkan Artis/Album" - -msgid "Group by Artist/Album - Disc" -msgstr "Grup berdasarkan Artis/Album - Cakram" - -msgid "Group by Artist/Year - Album" -msgstr "Grup berdasarkan Artis/Tahun - Album" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Grup berdasarkan Artis/Tahun - Album - Cakram" - -msgid "Group by Genre/Album artist/Album" -msgstr "Grup berdasarkan Genre/Artis album/Album" - -msgid "Group by Genre/Artist/Album" -msgstr "Grup berdasarkan Genre/Artis/Album" - -msgid "Group by Album Artist" -msgstr "Grup berdasarkan Artis Album" - -msgid "Group by Artist" -msgstr "Grup berdasarkan Artis" - -msgid "Group by Album" -msgstr "Grup berdasarkan Album" - -msgid "Group by Genre/Album" -msgstr "Grup berdasarkan Genre/Album" - -msgid "Advanced grouping..." -msgstr "Pengelompokkan lanjut..." - -msgid "Grouping Name" -msgstr "Nama Pengelompokan" - -msgid "Grouping name:" -msgstr "Nama pengelompokan:" - -msgid "First level" -msgstr "Level pertama" - -msgid "Second Level" -msgstr "Level Kedua" - -msgid "Third Level" -msgstr "Level Ketiga" - -msgid "None" -msgstr "Nihil" - -msgid "Album artist" -msgstr "Album artis" - -msgid "Artist" -msgstr "Artis" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "Album - Cakram" - -msgid "Year - Album" -msgstr "Tahun - Album" - -msgid "Year - Album - Disc" -msgstr "Tahun - Album - Cakram" - -msgid "Original year - Album" -msgstr "Tahun asli - Album" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "Cakram" - -msgid "Year" -msgstr "Tahun" - -msgid "Original year" -msgstr "Tahun asli" - -msgid "Genre" -msgstr "" - -msgid "Composer" -msgstr "Komposer" - -msgid "Performer" -msgstr "Penampil" - -msgid "Grouping" -msgstr "Pengelompokan" - -msgid "File type" -msgstr "Jenis berkas" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "Laju sampel" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Judul" - -msgid "Track" -msgstr "Trek" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Komentar" - -msgid "Source" -msgstr "Sumber" - -msgid "Mood" -msgstr "" - -msgid "Rating" -msgstr "" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Muat daftar putar" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Tidak ada yang cocok. Kosongkan kotak pencarian untuk menampilkan lagi seluruh daftar putar." - -msgid "stop" -msgstr "berhenti" - -msgid "Never" -msgstr "Tidak Pernah" - -msgid "&Hide..." -msgstr "&Sembunyikan..." - -msgid "&Stretch columns to fit window" -msgstr "&Regang kolom agar pas dengan jendela" - -msgid "&Reset columns to default" -msgstr "Atu&r ulang kolom ke pengaturan standar" - -msgid "&Lock rating" -msgstr "" - -msgid "&Align text" -msgstr "Sej&ajarkan teks" - -msgid "&Left" -msgstr "&Kiri" - -msgid "&Center" -msgstr "&Tengah" - -msgid "&Right" -msgstr "&Kanan" - -#, qt-format -msgid "&Hide %1" -msgstr "&Sembunyikan %1" - -msgid "New folder" -msgstr "Folder baru" - -msgid "Delete" -msgstr "Hapus" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Simpan daftar putar" - -msgid "Enter the name of the folder" -msgstr "Masukkan nama folder" - -msgid "Copy to device" -msgstr "" - -msgid "Playlist must be open first." -msgstr "" - -msgid "Remove playlists" -msgstr "Buang daftar putar" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Anda akan membuang %1 daftar putar dari favorit Anda, apakah Anda yakin?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Anda dapat memfavoritkan daftar putar dengan mengklik ikon bintang di sebelah nama daftar putar" - -msgid "Favorited playlists will be saved here" -msgstr "Daftar putar yang difavoritkan akan disimpan di sini" - -msgid "Couldn't create playlist" -msgstr "Tidak bisa membuat daftar putar" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Simpan daftar putar" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "%1 terpilih dari" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Otomatis" - -msgid "Relative" -msgstr "Relatif" - -msgid "Absolute" -msgstr "Absolut" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Tutup daftar putar" - -msgid "Rename playlist..." -msgstr "Ubah nama daftar putar.." - -msgid "Save playlist..." -msgstr "Simpan daftar putar..." - -msgid "Rename playlist" -msgstr "Ubah nama daftar putar" - -msgid "Enter a new name for this playlist" -msgstr "Masukkan nama baru untuk daftar putar ini" - -msgid "Remove playlist" -msgstr "Buang daftar putar" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Anda akan membuang daftar putar yang bukan bagian dari daftar putar favorit Anda: daftar putar ini akan dihapus (tindakan ini tidak dapat diurungkan). \n" -"Apakah Anda yakin ingin melanjutkan?" - -msgid "Warn me when closing a playlist tab" -msgstr "Peringatkan saya ketika menutup tab daftar putar" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Opsi ini dapat diubah di pengaturan \"Perilaku\"" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "tambahkan %n lagu" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "buang %n lagu" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "pindah %n lagu" - -msgid "sort songs" -msgstr "urutkan lagu" - -msgid "shuffle songs" -msgstr "karau lagu" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Terjadi kesalahan saat memuat CD audio." - -msgid "Loading tracks" -msgstr "Memuat trek" - -msgid "Loading tracks info" -msgstr "Memuat info trek" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Semua daftar putar (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 daftar putar (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "" - -msgid "Collection search" -msgstr "" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "" - -msgid "Search options" -msgstr "" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "" - -#, qt-format -msgid "%1 songs found" -msgstr "" - -msgid "after" -msgstr "" - -msgid "before" -msgstr "" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "" - -msgid "contains" -msgstr "" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "" - -msgid "Days" -msgstr "" - -msgid "Weeks" -msgstr "" - -msgid "Months" -msgstr "" - -msgid "Years" -msgstr "" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "" - -msgid "Newest tracks" -msgstr "" - -msgid "50 random tracks" -msgstr "" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "" - -msgid "Last played" -msgstr "Terakhir diputar" - -msgid "Most played" -msgstr "" - -msgid "Favourite tracks" -msgstr "" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "" - -msgid "Dynamic random mix" -msgstr "" - -msgid "New smart playlist..." -msgstr "" - -msgid "Play next" -msgstr "" - -msgid "Edit smart playlist..." -msgstr "" - -msgid "Delete smart playlist" -msgstr "" - -msgid "Smart playlist" -msgstr "" - -msgid "Playlist type" -msgstr "" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "" - -msgid "Finish" -msgstr "" - -msgid "Choose a name for your smart playlist" -msgstr "" - -msgid "Abort" -msgstr "Batal" - -msgid "All albums" -msgstr "Semua album" - -msgid "Albums with covers" -msgstr "Album dengan sampul" - -msgid "Albums without covers" -msgstr "Album tanpa sampul" - -msgid "Really cancel?" -msgstr "Benar-benar membatalkan?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Menutup jendela ini akan menghentikan pencarian sampul album." - -msgid "Don't stop!" -msgstr "Jangan berhenti!" - -msgid "All artists" -msgstr "Semua artis" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Mendapatkan %1 sampul dari %2 ( %3 gagal)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 telah ditransfer" - -msgid "Export finished" -msgstr "Ekspor selesai" - -msgid "No covers to export." -msgstr "Tidak ada sampul untuk diekspor." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Mengekspor %1 sampul dari %2 (%3 dilewati)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Sampul dari %1" - -msgid "Search" -msgstr "Cari" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Gambar (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Gambar (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Semua berkas (*)" - -msgid "Load cover from disk..." -msgstr "Muat sampul dari diska..." - -msgid "Save cover to disk..." -msgstr "Simpan sampul ke diska..." - -msgid "Load cover from URL..." -msgstr "Muat sampul dari URL..." - -msgid "Search for album covers..." -msgstr "Cari sampul album..." - -msgid "Unset cover" -msgstr "Tak set sampul" - -msgid "Delete cover" -msgstr "" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "Tampilkan ukuran penuh..." - -msgid "Search automatically" -msgstr "Cari secara otomatis" - -msgid "Load cover from disk" -msgstr "Muat sampul dari diska" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "tidak diketahui" - -msgid "Save album cover" -msgstr "Simpan sampul album" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "Total permintaan jaringan yang dibuat" - -msgid "Average image size" -msgstr "Ukuran gambar rerata" - -msgid "Total bytes transferred" -msgstr "Jumlah byte yang ditransfer" - -msgid "Fetching cover error" -msgstr "Terjadi kesalahan saat mengambil sampul" - -msgid "The site you requested does not exist!" -msgstr "Situs yang Anda minta tidak ada!" - -msgid "The site you requested is not an image!" -msgstr "Situs yang Anda minta bukan sebuah gambar!" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "" - -msgid "Redirect missing token code!" -msgstr "Alihkan kode token yang tidak tersedia!" - -msgid "Received invalid reply from web browser." -msgstr "Balasan yang tidak benar diterima dari peramban web." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "Umum" - -msgid "User interface" -msgstr "Antarmuka" - -msgid "Streaming" -msgstr "" - -msgid "Add directory..." -msgstr "Tambah direktori..." - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "" - -msgid "No provider selected." -msgstr "" - -msgid "Authentication failed" -msgstr "Otentikasi gagal" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Pilih gambar latar belakang" - -msgid "OSD Preview" -msgstr "Pratinjau OSD" - -msgid "Drag to reposition" -msgstr "Seret untuk reposisi" - -msgid "About Strawberry" -msgstr "Tentang Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "" - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "" - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "" - -msgid "Contributors" -msgstr "" - -msgid "Clementine authors" -msgstr "" - -msgid "Clementine contributors" -msgstr "" - -msgid "Thanks to" -msgstr "" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "" - -msgid "(different across multiple songs)" -msgstr "(berbeda diantara berbagai lagu)" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "Sebelumnya" - -msgid "Next" -msgstr "Lanjut" - -msgid "Saving tracks" -msgstr "Menyimpan trek" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Sampul tidak diset" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Tag asli" - -msgid "Suggested tags" -msgstr "Tag yang disarankan" - -msgid "Delete files" -msgstr "Hapus berkas" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Bilah sisi besar" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Bilah sisi kecil" - -msgid "Plain sidebar" -msgstr "Bilah sisi polos" - -msgid "Tabs on top" -msgstr "Tab di puncak" - -msgid "Icons on top" -msgstr "Ikon di atas" - -msgid "Available" -msgstr "Tersedia" - -msgid "New songs" -msgstr "Lagu baru" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Bekas" - -msgid "Clear" -msgstr "Bersihkan" - -msgid "Reset" -msgstr "Setel-ulang" - -msgid "Small album cover" -msgstr "Sampul album kecil" - -msgid "Large album cover" -msgstr "Sampul album besar" - -msgid "Fit cover to width" -msgstr "Paskan sampul ke lebar" - -msgid "Show above status bar" -msgstr "Tampilkan di atas bilah status" - -msgid "You are signed in." -msgstr "Anda sudah masuk." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Anda masuk sebagai %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Kedaluwarsa pada %1" - -#, qt-format -msgid "disc %1" -msgstr "cakram %1" - -#, qt-format -msgid "track %1" -msgstr "trek %1" - -msgid "Paused" -msgstr "Jeda" - -msgid "Stopped" -msgstr "Berhenti" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Berhenti memutar setelah trek: %1" - -msgid "On" -msgstr "Nyala" - -msgid "Off" -msgstr "Mati" - -msgid "Playlist finished" -msgstr "Daftar putar selesai" - -#, qt-format -msgid "Volume %1%" -msgstr "" - -msgid "Don't shuffle" -msgstr "Jangan karau" - -msgid "Shuffle all" -msgstr "Karau semua" - -msgid "Shuffle tracks in this album" -msgstr "Karau trek di dalam album ini" - -msgid "Shuffle albums" -msgstr "Karau album" - -msgid "Don't repeat" -msgstr "Jangan ulang" - -msgid "Repeat track" -msgstr "Ulang trek" - -msgid "Repeat album" -msgstr "Ulang album" - -msgid "Repeat playlist" -msgstr "Ulang daftar putar" - -msgid "Stop after every track" -msgstr "Berhenti setelah setiap trek" - -msgid "Intro tracks" -msgstr "Trek intro" - -#, qt-format -msgid "Configure %1..." -msgstr "Konfigurasi %1..." - -msgid "Add to artists" -msgstr "Tambahkan ke artis" - -msgid "Add to albums" -msgstr "Tambahkan ke album" - -msgid "Add to songs" -msgstr "Tambahkan ke lagu" - -msgid "Enter search terms above to find music" -msgstr "Masukkan kata pencarian di atas untuk mencari musik" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Klik di sini untuk menerima musik" - -msgid "Remove from favorites" -msgstr "Buang dari favorit" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 Autentikasi Scrobbler" - -msgid "Open URL in web browser?" -msgstr "" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Balasan tidak benar dari peramban web. Token tidak tersedia." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Scrobbler %1 tidak terautentikasi!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "Otentikasi ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "" - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "Inisial artis" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "Ekstensi berkas" - -msgid "Error copying songs" -msgstr "Terjadi kesalahan saat menyalin lagu" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Ada masalah penyalinan pada beberapa lagu. Berkas-berkas berikut tidak dapat disalin:" - -msgid "Error deleting songs" -msgstr "Terjadi kesalahan saat menghapus lagu" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Ada masalah dalam menghapus beberapa lagu. Berkas-berkas berikut tidak dapat dihapus:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "Trek sebelumnya" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "Bisu" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "Suka" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Tekan kombinasi tombol untuk menggunakan %1..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Perintah \"%1\" tidak dapat dimulai." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Pintasan untuk %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Menggunakan pintasan X11 pada %1 tidak direkomendasikan dan dapat membuat keyboard tidak responsif!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "Membufer..." - -msgid "D-Bus path" -msgstr "Lokasi D-Bus" - -msgid "Serial number" -msgstr "Nomor seri" - -msgid "Mount points" -msgstr "Titik kait" - -msgid "Partition label" -msgstr "Label partisi" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Sambungkan perangkat" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Ini adalah pertama kalinya Anda menyambungkan perangkat ini. Strawberry sekarang akan memindai perangkat untuk mencari berkas musik - ini mungkin memakan waktu." - -msgid "This device will not work properly" -msgstr "Perangkat ini tidak akan bekerja dengan baik" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Ini adalah perangkat MTP, tetapi Anda mengompilasi Strawberry tanpa dukungan libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Jika Anda lanjutkan, perangkat ini akan bekerja lambat dan lagu-lagu yang disalin mungkin tidak bekerja." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Ini adalah iPod, tetapi Anda mengompilasi Strawberry tanpa dukungan libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Tipe perangkat ini tidak didukung: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Memperbarui %1%..." - -msgid "Not connected" -msgstr "Tidak terhubung" - -msgid "Not mounted - double click to mount" -msgstr "Tidak terkait - klik ganda untuk mengait" - -msgid "Double click to open" -msgstr "Kilk ganda untuk membuka" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 lagu%2" - -msgid "Safely remove device" -msgstr "Secara aman melepas perangkat" - -msgid "Forget device" -msgstr "Lupakan perangkat" - -msgid "Device properties..." -msgstr "Properti perangkat..." - -msgid "Delete from device..." -msgstr "Hapus dari perangkat..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Melupakan perangkat akan membuangnya dari daftar ini dan Strawberry harus memindai ulang semua lagu ketika Anda menyambungkannya lagi." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Berkas-berkas ini akan dihapus dari perangkat, apakah Anda yakin ingin melanjutkan?" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "Produsen" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Memuat basis data iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Sebuah galat terjadi saat memuat basis data iTunes" - -msgid "Mount point" -msgstr "Titik kait" - -msgid "Device" -msgstr "Perangkat" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Memuat perangkat MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Terjadi kesalahan saat menyambungkan perangkat MTP %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Tidak dapat membuat elemen GStreamer \"%1\" - pastikan Anda memiliki semua plugin GStreamer yang dibutuhkan terpasang" - -#, qt-format -msgid "Successfully written %1" -msgstr "Berhasil menulis %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Transkode berkas %1 menggunakan %2 thread" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Terjadi kesalahan saat memproses %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Memulai %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Tidak dapat menemukan enkoder untuk %1, periksa apakah Anda memiliki plugin GStreamer yang benar terpasang" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Tidak dapat menemukan muxer untuk %1, periksa apakah Anda memiliki plugin GStreamer yang benar terpasang" - -msgid "Start transcoding" -msgstr "Mulai transkode" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n tersisa" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n telah selesai" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n gagal" - -msgid "Add files to transcode" -msgstr "Tambah berkas untuk ditranskode" - -msgid "Open a directory to import music from" -msgstr "Buka sebuah direktori untuk mengimpor musik dari" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -msgid "Server URL is invalid." -msgstr "URL server tidak benar." - -msgid "Missing username or password." -msgstr "Nama pengguna atau kata sandi tidak tersedia." - -msgid "Subsonic server URL is invalid." -msgstr "URL server Subsonic tidak benar." - -msgid "Missing Subsonic username or password." -msgstr "Nama pengguna atau kata sandi Subsonic tidak tersedia." - -msgid "Retrieving albums..." -msgstr "Mengambil album..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Mengambil lagu untuk %1 album..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Mengambil lagu untuk %1 album..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Mengambil sampul album untuk %1 album..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Mengambil sampul album untuk %1 album..." - -msgid "Configuration incomplete" -msgstr "Konfigurasi tidak lengkap" - -msgid "Missing server url, username or password." -msgstr "URL server, nama pengguna atau kata sandi tidak tersedia." - -msgid "Configuration incorrect" -msgstr "Konfigurasi tidak benar" - -msgid "Test successful!" -msgstr "Tes berhasil!" - -msgid "Test failed!" -msgstr "Tes gagal!" - -msgid "Reply from Tidal is missing query items." -msgstr "Balasan dari Tidal tidak memiliki artikel yang diminta." - -msgid "Missing Tidal API token." -msgstr "Token API Tidal tidak tersedia." - -msgid "Missing Tidal username." -msgstr "Nama pengguna Tidal tidak tersedia." - -msgid "Missing Tidal password." -msgstr "Kata sandi Tidal tidak tersedia." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Tidak terautentikasi dengan Tidal dan jumlah maksimum upaya masuk tercapai." - -msgid "Not authenticated with Tidal." -msgstr "Tidak terautentikasi dengan Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "" - -msgid "Authenticating..." -msgstr "Mengautentikasi..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "Mencari..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "Tidak ada yang cocok." - -msgid "Cancelled." -msgstr "Dibatalkan." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "Client ID Tidal tidak tersedia." - -msgid "Missing API token." -msgstr "" - -msgid "Missing username." -msgstr "" - -msgid "Missing password." -msgstr "" - -msgid "Spotify Authentication" -msgstr "" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Jumlah maksimum upaya masuk tercapai." - -msgid "Missing Qobuz app ID." -msgstr "App ID Qobuz tidak tersedia." - -msgid "Missing Qobuz username." -msgstr "Nama pengguna Qobuz tidak tersedia." - -msgid "Missing Qobuz password." -msgstr "Kata sandi Qobuz tidak tersedia." - -msgid "Not authenticated with Qobuz." -msgstr "Tidak terautentikasi dengan Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "App ID atau secret Qobuz tidak tersedia." - -msgid "Missing app id." -msgstr "" - -msgid "Show moodbar" -msgstr "Tampilkan moodbar" - -msgid "Moodbar style" -msgstr "Gaya moodbar" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "Marah" - -msgid "Frozen" -msgstr "Beku" - -msgid "Happy" -msgstr "Senang" - -msgid "System colors" -msgstr "Warna sistem" - -msgid "Strawberry Music Player" -msgstr "Pemutar Musik Strawberry" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Putar" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "Ber&henti" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Trek berikutnya" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Keluar" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Bersihkan daftar putar" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Beri nomor baru trek dalam urutan ini..." - -msgid "Set value for all selected tracks..." -msgstr "Tetapkan nilai untuk semua trek terpilih..." - -msgid "Edit tag..." -msgstr "Sunting tag..." - -msgid "&Settings..." -msgstr "&Pengaturan..." - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&Tentang Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "A&cak daftar putar" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Tambah file..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Buka berkas..." - -msgid "Open audio &CD..." -msgstr "Buka &CD audio..." - -msgid "&Cover Manager" -msgstr "Pengelola &Sampul" - -msgid "C&onsole" -msgstr "K&onsol" - -msgid "&Shuffle mode" -msgstr "Mode &Acak" - -msgid "&Repeat mode" -msgstr "Mode pe&rulangan" - -msgid "Remove from playlist" -msgstr "Buang dari daftar putar" - -msgid "&Equalizer" -msgstr "" - -msgid "&Transcode Music" -msgstr "&Transkode Musik" - -msgid "Add &folder..." -msgstr "Tambah &folder..." - -msgid "&Jump to the currently playing track" -msgstr "&Lompat ke trek yang sedang berputar" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Daftar putar baru" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Simpan &daftar putar..." - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Muat daftar putar..." - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Buka tab daftar putar selanjutnya" - -msgid "Go to previous playlist tab" -msgstr "Buka tab daftar putar sebelumnya" - -msgid "&Update changed collection folders" -msgstr "Perbar&ui folder pustaka yang telah diubah" - -msgid "About &Qt" -msgstr "Tentang &Qt" - -msgid "&Mute" -msgstr "&Bisukan" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "Lakukan pemin&daian ulang seluruh pustaka" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Lengkapi tag secara otomatis..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Alihkan scrobbling" - -msgid "Remove &duplicates from playlist" -msgstr "Buang &duplikat dari daftar putar" - -msgid "Remove &unavailable tracks from playlist" -msgstr "B&uang trek yang tidak tersedia dari daftar putar" - -msgid "Add file(s) to transcoder" -msgstr "Tambah berkas ke transkoder" - -msgid "Add file to transcoder" -msgstr "Tambah berkas ke transkoder" - -msgid "Add stream..." -msgstr "" - -msgid "Show sidebar" -msgstr "" - -msgid "Import data from last.fm..." -msgstr "" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Musik" - -msgid "P&laylist" -msgstr "D&aftar putar" - -msgid "Help" -msgstr "Bantuan" - -msgid "&Tools" -msgstr "&Perkakas" - -msgid "Collection advanced grouping" -msgstr "Pengelompokan pustaka lanjutan" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "Grup Pustaka berdasarkan..." - -msgid "Second level" -msgstr "Level kedua" - -msgid "Third level" -msgstr "Level ketiga" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "" - -msgid "Entire collection" -msgstr "Semua koleksi" - -msgid "Added today" -msgstr "Ditambahkan hari ini" - -msgid "Added this week" -msgstr "Ditambahkan minggu ini" - -msgid "Added within three months" -msgstr "Ditambahkan pada tiga bulan terakhir" - -msgid "Added this year" -msgstr "Ditambahkan tahun ini" - -msgid "Added this month" -msgstr "Ditambahkan bulan ini" - -msgid "Save current grouping" -msgstr "Simpan pengelompokan saat ini" - -msgid "Manage saved groupings" -msgstr "Kelola pengelompokan tersimpan" - -msgid "Enter search terms here" -msgstr "Masukkan lema pencarian di sini" - -msgid "Form" -msgstr "" - -msgid "Saved Grouping Manager" -msgstr "Pengelola Pengelompokan Tersimpan" - -msgid "Remove" -msgstr "Buang" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "Lokasi berkas" - -msgid "This can be changed later through the preferences" -msgstr "Ini dapat diubah kemudian melalui preferensi" - -msgid "Remember my choice" -msgstr "Ingat pilihan saya" - -msgid "Stop after each track" -msgstr "Berhenti setelah masing-masing trek" - -msgid "Repeat" -msgstr "Ulang" - -msgid "Shuffle" -msgstr "Karau" - -msgid "Dynamic mode is on" -msgstr "" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "Pindah turun" - -msgid "Move up" -msgstr "Pindah naik" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "" - -msgid "Preview" -msgstr "Pratinjau" - -msgid "and" -msgstr "" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "" - -msgid "Edit smart playlist" -msgstr "" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "Ekspor sampul" - -msgid "Output" -msgstr "Keluaran" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Masukkan nama berkas untuk sampul yang diekspor (tanpa ekstensi):" - -msgid "Export downloaded covers" -msgstr "Ekspor sampul yang sudah diunduh" - -msgid "Export embedded covers" -msgstr "Ekspor sampul yang tertanam" - -msgid "Existing covers" -msgstr "Sampul yang tersedia" - -msgid "Do not overwrite" -msgstr "Jangan timpa" - -msgid "O&verwrite all" -msgstr "T&impa semua" - -msgid "Overwrite s&maller ones only" -msgstr "Hanya ti&mpa yang lebih kecil" - -msgid "Size" -msgstr "Ukuran" - -msgid "Scale size" -msgstr "Ukuran skala" - -msgid "Size:" -msgstr "Ukuran:" - -msgid "Pixel" -msgstr "Piksel" - -msgid "Cover Manager" -msgstr "Pengelola Sampul" - -msgid "Fetch automatically" -msgstr "Ambil secara otomatis" - -msgid "Load" -msgstr "Muat" - -msgid "Add to playlist" -msgstr "Tambahkan ke daftar putar" - -msgid "View" -msgstr "Tampilan" - -msgid "Total albums:" -msgstr "Total album:" - -msgid "Without cover:" -msgstr "Tanpa sampul:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Ambil Sampul yang Hilang" - -msgid "Export Covers" -msgstr "Ekspor Sampul" - -msgid "Fetch completed" -msgstr "Pengambilan selesai" - -msgid "Load cover from URL" -msgstr "Muat sampul dari URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Masukkan URL untuk mengunduh sampul dari Internet:" - -msgid "Settings" -msgstr "Setelan" - -msgid "Behavior" -msgstr "Perilaku" - -msgid "Show system tray icon" -msgstr "Tampilkan ikon baki sistem" - -msgid "Keep running in the background when the window is closed" -msgstr "Tetap jalankan di belakang layar ketika jendela ditutup" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Lanjutkan pemutaran saat memulai Strawberry" - -msgid "Show playing widget" -msgstr "Tampilkan widget berputar" - -msgid "On startup" -msgstr "Saat membuka" - -msgid "Remember from &last time" -msgstr "Ingat dari terakhir ka&li" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "Bahasa" - -msgid "Use the system default" -msgstr "Gunakan bawaan sistem" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Anda perlu memulai ulang Strawberry jika Anda mengubah bahasa." - -msgid "Using the menu to add a song will..." -msgstr "Menggunakan menu untuk menambah lagu akan..." - -msgid "Never start playing" -msgstr "Jangan mulai memutar" - -msgid "Play if there is nothing already playing" -msgstr "Putar jika tidak ada yang sedang diputar" - -msgid "Always start playing" -msgstr "Selalu mulai memutar" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Menekan \"Sebelumnya\" pada pemutar akan..." - -msgid "Jump to previous song right away" -msgstr "Lompat ke lagu sebelumnya sesegera" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Mulai ulang lagu, lalu lompat ke yang sebelumnya jika ditekan lagi" - -msgid "Double clicking a song will..." -msgstr "Klik ganda pada lagu akan..." - -msgid "Append to the playlist" -msgstr "Tambahkan ke daftar putar" - -msgid "Replace the playlist" -msgstr "Ganti daftar putar" - -msgid "Add to the queue" -msgstr "Tambahkan ke antrean" - -msgid "Double clicking a song in the playlist will..." -msgstr "Klik ganda pada lagu dalam daftar putar akan..." - -msgid "Change the currently playing song" -msgstr "Ganti lagu yang diputar saat ini" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Menjangkau menggunakan pintasan keyboard atau roda mouse" - -msgid "Time step" -msgstr "Selang waktu" - -msgid " s" -msgstr " d" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Folder berikut akan dipindai untuk musik untuk membuat pustaka Anda" - -msgid "Add new folder..." -msgstr "Tambah folder baru..." - -msgid "Remove folder" -msgstr "Buang folder" - -msgid "Automatic updating" -msgstr "Pembaruan otomatis" - -msgid "Update the collection when Strawberry starts" -msgstr "Perbarui pustaka ketika memulai Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Monitor perubahan pustaka" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "Tandai lagu yang hilang sebagai tidak tersedia" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Nama berkas sampul album yang diinginkan (dipisahkan koma)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Ketika mencari sampul album, Strawberry akan lebih dulu mencari berkas gambar yang mengandung satu dari kata berikut.\n" -"Jika tidak ada yang cocok maka akan menggunakan gambar terbesar dalam direktori." - -msgid "Automatically open single categories in the collection tree" -msgstr "Secara otomatis membuka kategori tunggal di pohon pustaka" - -msgid "Show dividers" -msgstr "Tampilkan pembagi" - -msgid "Show album cover art in collection" -msgstr "Tampilkan sampul album di pustaka" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "" - -msgid "Enable Disk Cache" -msgstr "" - -msgid "Disk Cache Size" -msgstr "" - -msgid "Current disk cache in use:" -msgstr "" - -msgid "Clear Disk Cache" -msgstr "" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Keluaran audio" - -msgid "Engine" -msgstr "Mesin" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "Fungsikan kontrol volume" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr " md" - -msgid "Buffer duration" -msgstr "Durasi Bufer" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Gunakan metadata Replay Gain jika tersedia" - -msgid "Replay Gain mode" -msgstr "Mode Replay Gain" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (kenyaringan sama untuk semua trek)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (kenyaringan ideal untuk semua trek)" - -msgid "Apply compression to prevent clipping" -msgstr "Terapkan kompresi untuk mencegah clipping" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Melesap" - -msgid "Fade out when stopping a track" -msgstr "Lesap senyap saat menghentikan trek" - -msgid "Cross-fade when changing tracks manually" -msgstr "Lesap-silang ketika mengubah trek secara manual" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Lesap-silang ketika mengubah trek secara otomatis" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Kecuali antara trek pada album yang sama atau di lembar CUE yang sama" - -msgid "Fading duration" -msgstr "Durasi lesap" - -msgid "Fade out on pause / fade in on resume" -msgstr "Lesap senyap saat jeda / lesap jelma saat melanjutkan" - -msgid "Add song artist tag" -msgstr "Tambahkan nama artis" - -msgid "Add song album tag" -msgstr "Tambahkan nama album" - -msgid "Add song title tag" -msgstr "Tambahkan judul lagu" - -msgid "Add song albumartist tag" -msgstr "Tambahkan nama album artis" - -msgid "Add song year tag" -msgstr "Tambahkan tahun rilis" - -msgid "Add song composer tag" -msgstr "Tambahkan nama komposer" - -msgid "Add song performer tag" -msgstr "Tambahkan nama penampil" - -msgid "Add song grouping tag" -msgstr "Tambahkan kelompok" - -msgid "Add song disc tag" -msgstr "Tambahkan nomor cakram" - -msgid "Add song track tag" -msgstr "Tambahkan nomor trek" - -msgid "Add song genre tag" -msgstr "Tambahkan genre" - -msgid "Add song length tag" -msgstr "Tambahkan durasi lagu" - -msgid "Add song play count" -msgstr "Tambahkan jumlah pemutaran" - -msgid "Add song skip count" -msgstr "Tambahkan jumlah lewatan" - -msgid "Add a new line if supported by the notification type" -msgstr "Tambah baris baru jika didukung oleh tipe notifikasi" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Tambahkan nama berkas" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Tambahkan peringkat" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "Ringkasan" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "" - -msgid "Song Lyrics" -msgstr "" - -msgid "Automatically search for album cover" -msgstr "" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Lanjutkan ke lagu berikutnya jika suatu lagu di daftar putar tidak tersedia" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Abu-abukan lagu yang tidak tersedia di daftar putar saat pemutaran" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Abu-abukan lagu yang tidak tersedia di daftar putar saat membuka" - -msgid "Automatically select current playing track" -msgstr "Pilih trek yang sedang diputar secara otomatis" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "Ketika menyimpan daftar putar, lokasi berkas sebaiknya" - -msgid "A&utomatic" -msgstr "&Otomatis" - -msgid "Absolu&te" -msgstr "Absolu&t" - -msgid "Re&lative" -msgstr "Re&latif" - -msgid "As&k when saving" -msgstr "Tanya&kan saat menyimpan" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Jika diaktifkan, mengklik lagu yang dipilih di dalam tampilan daftar putar memperbolehkan Anda menyunting nilai tag secara langsung" - -msgid "Enable song metadata inline edition with click" -msgstr "Fungsikan edisi metadata lagu sebaris dengan mengkliknya" - -msgid "Write metadata when saving playlists" -msgstr "Tulis metadata saat menyimpan daftar putar" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Fungsikan" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Lagu akan di-scrobble jika memiliki metadata yang benar dan lebih panjang dari 30 detik, sudah berputar setidaknya setengah dari durasinya atau 4 menit (yang mana terdahulu terjadi)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Bekerja di modus offline (Hanya cache scrobble)" - -msgid "Show scrobble button" -msgstr "Tampilkan tombol scrobble" - -msgid "Show love button" -msgstr "Tampilkan tombol suka" - -msgid "Submit scrobbles every" -msgstr "Kirimkan scrobble setiap" - -msgid " seconds" -msgstr " detik" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "Kemukakan artis album saat scrobble" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Strim" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Masuk" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Token pengguna:" - -msgid "Covers" -msgstr "" - -msgid "Cover providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "" - -msgid "Authentication" -msgstr "Otentikasi" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Menyimpan sampul album" - -msgid "Save album covers in album directory" -msgstr "Simpan sampul album di direktori album" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "Nama berkas:" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "Timpa berkas yang sudah ada" - -msgid "Lowercase filename" -msgstr "Nama berkas huruf kecil" - -msgid "Replace spaces with dashes" -msgstr "Ganti spasi dengan garis strip" - -msgid "Lyrics" -msgstr "Lirik" - -msgid "Lyrics providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "" - -msgid "Network Proxy" -msgstr "Proxy Jaringan" - -msgid "&Use the system proxy settings" -msgstr "G&unakan pengaturan proxy sistem" - -msgid "Direct internet connection" -msgstr "Sambungan internet langsung" - -msgid "&Manual proxy configuration" -msgstr "Konfigurasi proxy &manual" - -msgid "HTTP proxy" -msgstr "Proxy HTTP" - -msgid "SOCKS proxy" -msgstr "Proxy SOCKS" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "Gunakan otentikasi" - -msgid "Username" -msgstr "Nama pengguna" - -msgid "Password" -msgstr "Sandi" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "Penampilan" - -msgid "Style" -msgstr "" - -msgid "Use system theme icons" -msgstr "Gunakan ikon tema sistem" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "Warna tabbar" - -msgid "&Use the system default color" -msgstr "G&unakan warna standar sistem" - -msgid "Use custom color" -msgstr "Gunakan warna kustom" - -msgid "Use gradient background" -msgstr "Gunakan latar belakang gradien" - -msgid "Select tabbar color:" -msgstr "Pilih warna tabbar:" - -msgid "Background image" -msgstr "Gambar latar belakang" - -msgid "Default bac&kground image" -msgstr "Gambar latar bela&kang standar" - -msgid "&No background image" -msgstr "&Tidak ada gambar latar belakang" - -msgid "The album cover of the currently playing song" -msgstr "Sampul album dari lagu yang diputar saat ini" - -msgid "Albu&m cover" -msgstr "Sa&mpul album" - -msgid "Custom image:" -msgstr "Gambar ubahsuai:" - -msgid "Browse..." -msgstr "Ramban..." - -msgid "Position" -msgstr "Posisi" - -msgid "Upper Left" -msgstr "Kiri Atas" - -msgid "Upper Right" -msgstr "Kanan Atas" - -msgid "Middle" -msgstr "Tengah" - -msgid "Bottom Left" -msgstr "Kiri Bawah" - -msgid "Bottom Right" -msgstr "Kanan Bawah" - -msgid "Max cover size" -msgstr "Ukuran sampul maksimum" - -msgid "Stretch image to fill playlist" -msgstr "Regangkan gambar hingga memenuhi daftar putar" - -msgid "Keep aspect ratio" -msgstr "Jaga aspek ratio" - -msgid "Do not cut image" -msgstr "Jangan potong gambar" - -msgid "Blur amount" -msgstr "Besaran kekaburan" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Kelegapan" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "Notifikasi" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry dapat menampilkan pesan ketika trek berubah." - -msgid "Notification type" -msgstr "Tipe notifikasi" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Nonfungsi" - -msgid "Show a &native desktop notification" -msgstr "Tampilkan ¬ifikasi desktop asli" - -msgid "Show a pretty OSD" -msgstr "Tampilkan OSD cantik" - -msgid "Show a popup fro&m the system tray" -msgstr "Tampilkan popup dari baki siste&m" - -msgid "General settings" -msgstr "Setelan umum" - -msgid "Popup duration" -msgstr "Durasi sembulan" - -msgid "Disable duration" -msgstr "Nonfungsikan durasi" - -msgid "Show a notification when I change the volume" -msgstr "Tampilkan notifikasi ketika saya mengubah volume" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Tampilkan notifikasi ketika saya mengubah mode ulang/karau" - -msgid "Show a notification when I pause playback" -msgstr "Tampilkan sebuah notifikasi ketika saya jeda pemutaran" - -msgid "Show a notification when I resume playback" -msgstr "Tampilkan notifikasi saat Saya meneruskan pemutaran" - -msgid "Include album art in the notification" -msgstr "Sertakan sampul album di dalam pemberitahuan" - -msgid "Custom message settings" -msgstr "Setelan pesan ubahsuai" - -msgid "Use a custom message for notifications" -msgstr "Gunakan pesan ubahsuai untuk pemberitahuan" - -msgid "Body" -msgstr "Badan" - -msgid "Pretty OSD options" -msgstr "Opsi Pretty OSD" - -msgid "Background color" -msgstr "Warna latar belakang" - -msgid "Text options" -msgstr "Opsi teks" - -msgid "Choose font..." -msgstr "Pilih huruf..." - -msgid "Choose color..." -msgstr "Pilih warna..." - -msgid "Background opacity" -msgstr "Kelegapan latar belakang" - -msgid "Basic Blue" -msgstr "Biru Dasar" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "Ubahsuai..." - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "Ekualiser" - -msgid "Preset:" -msgstr "Prasetel:" - -msgid "Enable equalizer" -msgstr "Fungsikan ekualiser" - -msgid "Enable stereo balancer" -msgstr "Fungsikan penyeimbang stereo" - -msgid "Left" -msgstr "Kiri" - -msgid "Balance" -msgstr "Seimbang" - -msgid "Right" -msgstr "Kanan" - -msgid "About" -msgstr "" - -msgid "Strawberry Error" -msgstr "Kesalahan dengan Strawberry" - -msgid "Console" -msgstr "Konsol" - -msgid "Run" -msgstr "Jalankan" - -msgid "Edit track information" -msgstr "Sunting informasi trek" - -msgid "Date created" -msgstr "Tanggal dibuat" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "Tanggal diubah" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Terakhir diputar" - -msgid "Play count" -msgstr "Jumlah putar" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Laju bit" - -msgid "Skip count" -msgstr "Lewati hitungan" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "Nama berkas" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Ukuran berkas" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Setel-ulang jumlah putar" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "Lengkapi tag secara otomatis" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Pengambil tag" - -msgid "Sorry" -msgstr "Maaf" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry tidak dapat menemukan hasil untuk berkas ini" - -msgid "Select best possible match" -msgstr "Pilih kecocokan yang terbaik" - -msgid "Add Stream" -msgstr "" - -msgid "Enter the URL of a stream:" -msgstr "" - -msgid "Enter username and password" -msgstr "" - -msgid "Import data from last.fm" -msgstr "" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "Tutup" - -msgid "Cancel" -msgstr "" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Klik untuk beralih antara waktu tersisa dan total waktu" - -msgid "You are not signed in." -msgstr "Anda belum masuk." - -msgid "Sign out" -msgstr "Keluar" - -msgid "Signing in..." -msgstr "Sedang masuk..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Artis" - -msgid "Albums" -msgstr "Album" - -msgid "Songs" -msgstr "Lagu" - -msgid "Refresh catalogue" -msgstr "Segarkan katalog" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "" - -msgid "albums" -msgstr "" - -msgid "songs" -msgstr "" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "Tujuan" - -msgid "After copying..." -msgstr "Setelah menyalin..." - -msgid "Keep the original files" -msgstr "Simpan berkas yang asli" - -msgid "Delete the original files" -msgstr "Hapus berkas yang asli" - -msgid "Naming options" -msgstr "Opsi penamaan" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Token dimulai dengan %, sebagai contoh: %artist %album %title

\n\n" -"

Jika Anda mengurung bagian dari teks yang mengandung token dengan kurung kurawal, maka bagian tersebut akan disembunyikan jika token tersebut kosong.

" - -msgid "Insert..." -msgstr "Sisipkan..." - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Bataskan ke karakter yang diperbolehkan oleh sistem file FAT" - -msgid "Restrict characters to ASCII" -msgstr "Bataskan ke karakter ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Perbolehkan karakter ASCII diperpanjang" - -msgid "Replace spaces with underscores" -msgstr "Ganti spasi dengan garis bawah" - -msgid "Overwrite existing files" -msgstr "Timpa berkas yang ada" - -msgid "Copy album cover artwork" -msgstr "Salin sampul album" - -msgid "Safely remove the device after copying" -msgstr "Secara aman melepas perangkat setelah menyalin" - -msgid "Press a key" -msgstr "Tekan tombol" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "Buka..." - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Anda perlu meluncurkan Preferensi Sistem dan mengizinkan Strawberry untuk \"mengendalikan komputer Anda\" untuk menggunakan pintasan global di Strawberry." - -msgid "Shortcut" -msgstr "Pintasan" - -msgctxt "Category label" -msgid "Action" -msgstr "Tindakan" - -msgid "&None" -msgstr "&Nihil" - -msgid "&Default" -msgstr "Stan&dar" - -msgid "&Custom" -msgstr "&Ubahsuai" - -msgid "Change shortcut..." -msgstr "Ubah pintasan..." - -msgid "Device Properties" -msgstr "Properti Perangkat" - -msgid "Icon" -msgstr "Ikon" - -msgid "Hardware information" -msgstr "Informasi perangkat keras" - -msgid "Hardware information is only available while the device is connected." -msgstr "Informasi hardware hanya tersedia ketika perangkat tersambung." - -msgid "Information" -msgstr "Informasi" - -msgid "Supported formats" -msgstr "Format yang didukung" - -msgid "This device supports the following file formats:" -msgstr "Perangkat ini mendukung format berkas berikut:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry dapat secara otomatis mengonversi musik yang Anda salin ke perangkat ini ke dalam format yang dapat diputar." - -msgid "Do not convert any music" -msgstr "Jangan konversi musik apapun" - -msgid "Convert any music that the device can't play" -msgstr "Konversi semua musik yang tidak dapat diputar oleh perangkat." - -msgid "Convert all music" -msgstr "Konversi semua musik" - -msgid "Preferred format" -msgstr "Format yang diinginkan" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Perangkat ini harus tersambung dan dibuka sebelum Strawberry dapat melihat format berkas apa yang didukungnya." - -msgid "Open device" -msgstr "Buka perangkat" - -msgid "Querying device..." -msgstr "Meminta perangkat..." - -msgid "File formats" -msgstr "Format berkas" - -msgid "Transcode Music" -msgstr "Transkode Musik" - -msgid "Files to transcode" -msgstr "Berkas untuk ditranskode" - -msgid "Directory" -msgstr "Direktori" - -msgid "Add..." -msgstr "Tambah..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Tambah semua trek dari sebuah direktori dan semua subdirektorinya" - -msgid "Import..." -msgstr "Impor..." - -msgid "Output options" -msgstr "Opsi keluaran" - -msgid "Audio format" -msgstr "Format audio" - -msgid "Options..." -msgstr "Opsi..." - -msgid "Alongside the originals" -msgstr "Bersama dengan yang asli" - -msgid "Select..." -msgstr "Pilih..." - -msgid "Progress" -msgstr "Kemajuan" - -msgid "Details..." -msgstr "Detail..." - -msgid "Transcoder Log" -msgstr "Log Transkoder" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "Profil" - -msgid "Main profile (MAIN)" -msgstr "Profil utama (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Profil kompleksitas rendah (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Profil laju sampel terukur (LST)" - -msgid "Long term prediction profile (LTP)" -msgstr "Profil prediksi jangka panjang (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Gunakan pengasah derau temporal" - -msgid "Allow mid/side encoding" -msgstr "Izinkan enkode tengah/sisi" - -msgid "Block type" -msgstr "Tipe blok" - -msgid "Normal block type" -msgstr "Tipe blok normal" - -msgid "No short blocks" -msgstr "Tanpa blok pendek" - -msgid "No long blocks" -msgstr "Tanpa blok panjang" - -msgid "Transcoding options" -msgstr "Opsi transkode" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Kualitas" - -msgid "Fast" -msgstr "Cepat" - -msgid "Best" -msgstr "Terbaik" - -msgid "Use bitrate management engine" -msgstr "Gunakan mesin pengelolaan lajubit" - -msgid "Target bitrate" -msgstr "Target lajubit" - -msgid "Minimum bitrate" -msgstr "Lajubit minimum" - -msgid "disabled" -msgstr "nonfungsi" - -msgid "Maximum bitrate" -msgstr "Lajubit maksimum" - -msgid "automatic" -msgstr "otomatis" - -msgid "Average bitrate" -msgstr "Lajubit rerata" - -msgid "Encoding mode" -msgstr "Mode enkode" - -msgid "Auto" -msgstr "" - -msgid "Ultra wide band (UWB)" -msgstr "Pita ultra lebar (UWB)" - -msgid "Wide band (WB)" -msgstr "Pita lebar (WB)" - -msgid "Narrow band (NB)" -msgstr "Pita sempit (NB)" - -msgid "Variable bit rate" -msgstr "Laju bit beragam" - -msgid "Voice activity detection" -msgstr "Deteksi aktivitas suara" - -msgid "Discontinuous transmission" -msgstr "Transmisi putus-putus" - -msgid "Encoding complexity" -msgstr "Kompleksitas enkode" - -msgid "Frames per buffer" -msgstr "Bingkai per bufer" - -msgid "Optimize for &quality" -msgstr "Optimasi untuk &kualitas" - -msgid "Opti&mize for bitrate" -msgstr "Opti&masi untuk lajubit" - -msgid "Constant bitrate" -msgstr "Lajubit konstan" - -msgid "Encoding engine quality" -msgstr "Kualitas mesin enkode" - -msgid "Standard" -msgstr "Standar" - -msgid "High" -msgstr "Tinggi" - -msgid "Force mono encoding" -msgstr "Paksa enkode mono" - -msgid "Transcoding" -msgstr "Transkode" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Setelan ini digunakan dalam dialog \"Transkode Musik\", dan ketika mengonversi musik sebelum menyalinnya ke perangkat." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "URL server" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Preferensi" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "Verifikasi sertifikat server" - -msgid "Download album covers" -msgstr "Unduh sampul album" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "Tes" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "Gunakan OAuth" - -msgid "Client ID" -msgstr "" - -msgid "API Token" -msgstr "Token API" - -msgid "Audio quality" -msgstr "Kualitas audio" - -msgid "Search delay" -msgstr "Jeda pencarian" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Batasan pencarian artis" - -msgid "Albums search limit" -msgstr "Batasan pencarian album" - -msgid "Songs search limit" -msgstr "Batasan pencarian lagu" - -msgid "Fetch entire albums when searching songs" -msgstr "Ambil seluruh album saat mencari lagu" - -msgid "Album cover size" -msgstr "Ukuran sampul album" - -msgid "Stream URL method" -msgstr "Metode URL Stream" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "Tampilkan moodbar di bilah kemajuan trek" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Simpan berkas .mood di folder lagu" - -msgid "Enabled" -msgstr "Terfungsikan" - -msgid "Return to Strawberry" -msgstr "Kembali ke Strawberry" - -msgid "Success!" -msgstr "Sukses!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Mohon tutup peramban Anda dan kembali ke Strawberry." - diff --git a/src/translations/it_IT.po b/src/translations/it_IT.po deleted file mode 100644 index 56c29bc5..00000000 --- a/src/translations/it_IT.po +++ /dev/null @@ -1,4371 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: it\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Italian\n" -"Language: it_IT\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Tutti i file (*)" - -msgid "Context" -msgstr "Contesto" - -msgid "Collection" -msgstr "Raccolta" - -msgid "Queue" -msgstr "Coda" - -msgid "Playlists" -msgstr "Playlist" - -msgid "Smart playlists" -msgstr "Playlist intelligenti" - -msgid "Files" -msgstr "File" - -msgid "Radios" -msgstr "Radio" - -msgid "Devices" -msgstr "Dispositivi" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Visualizza tutti i brani" - -msgid "Show only duplicates" -msgstr "Visualizza solo i duplicati" - -msgid "Show only untagged" -msgstr "Visualizza solo i brani senza tag" - -msgid "Configure collection..." -msgstr "Configura raccolta..." - -msgid "Play" -msgstr "Riproduci" - -msgid "Stop after this track" -msgstr "Ferma dopo questa traccia" - -msgid "Toggle queue status" -msgstr "Modifica lo stato della coda" - -msgid "Queue selected tracks to play next" -msgstr "Accoda i brani selezionati per riprodurli successivamente" - -msgid "Toggle skip status" -msgstr "Attiva/disattiva stato salto" - -msgid "Rescan song(s)..." -msgstr "Nuova scansione brani..." - -msgid "Copy URL(s)..." -msgstr "Copia URL..." - -msgid "Show in collection..." -msgstr "Visualizza nella raccolta..." - -msgid "Show in file browser..." -msgstr "Visualizza nel navigatore file..." - -msgid "Organize files..." -msgstr "Organizza file..." - -msgid "Copy to collection..." -msgstr "Copia nella raccolta..." - -msgid "Move to collection..." -msgstr "Sposta nella raccolta..." - -msgid "Copy to device..." -msgstr "Copia nel dispositivo..." - -msgid "Delete from disk..." -msgstr "Elimina dal disco..." - -msgid "Check for updates..." -msgstr "Controlla aggiornamenti..." - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry in esecuzione tramite Rosetta" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Pausa" - -msgid "Dequeue track" -msgstr "Rimuovi tracce dalla coda" - -msgid "Dequeue selected tracks" -msgstr "Rimuovi tracce selezionate dalla coda" - -msgid "Queue track" -msgstr "Accoda la traccia" - -msgid "Queue selected tracks" -msgstr "Accoda le tracce selezionate" - -msgid "Queue to play next" -msgstr "Accoda cosa riprodurre dopo" - -msgid "Unskip track" -msgstr "Ripristina traccia" - -msgid "Unskip selected tracks" -msgstr "Ripristina tracce selezionate" - -msgid "Skip track" -msgstr "Salta la traccia" - -msgid "Skip selected tracks" -msgstr "Salta le tracce selezionate" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Imposta '%1' a '%2'..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Modifica tag '%1'..." - -msgid "Add to another playlist" -msgstr "Aggiungi ad un'altra playlist" - -msgid "New playlist" -msgstr "Nuova playlist" - -msgid "Add file" -msgstr "Aggiungi file" - -msgid "Music" -msgstr "Musica" - -msgid "Add folder" -msgstr "Aggiungi cartella" - -msgid "Clear playlist" -msgstr "Azzera playlist" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "La playlist contiene '%1' brani, troppo grande per essere annullata, sei sicuro di voler pulire la playlist?" - -msgid "Error" -msgstr "Errore" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Nessuno dei brani selezionati era adatto alla copia in un dispositivo" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "La versione di Strawberry appena aggiornata richiede una scansione completa della raccolta, a causa delle nuove funzionalità elencate di seguito:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Vuoi eseguire subito una nuova scansione completa?" - -msgid "Collection rescan notice" -msgstr "Notifica nuova scansione della raccolta" - -msgid "Usage" -msgstr "Uso" - -msgid "options" -msgstr "opzioni" - -msgid "URL(s)" -msgstr "URL" - -msgid "Player options" -msgstr "Opzioni riproduttore" - -msgid "Start the playlist currently playing" -msgstr "Avvia la playlist attualmente in riproduzione" - -msgid "Play if stopped, pause if playing" -msgstr "Riproduci se fermata, sospendi se in riproduzione" - -msgid "Pause playback" -msgstr "Sospendi riproduzione" - -msgid "Stop playback" -msgstr "Ferma riproduzione" - -msgid "Stop playback after current track" -msgstr "Ferma la riproduzione dopo la traccia attuale" - -msgid "Skip backwards in playlist" -msgstr "Salta indietro nella playlist" - -msgid "Skip forwards in playlist" -msgstr "Salta in avanti nella playlist" - -msgid "Set the volume to percent" -msgstr "Imposta il volume al %" - -msgid "Increase the volume by 4 percent" -msgstr "Aumenta il volume del 4 %" - -msgid "Decrease the volume by 4 percent" -msgstr "Diminuisce il volume del 4 %" - -msgid "Increase the volume by percent" -msgstr "Aumenta il volume del %" - -msgid "Decrease the volume by percent" -msgstr "Riduci il volume del %" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Sposta la traccia in riproduzione in una posizione assoluta" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Sposta la traccia in riproduzione di una quantità relativa" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Riavvia la traccia, o riproduci la traccia precedente se entro 8 secondi dall'avvio." - -msgid "Playlist options" -msgstr "Opzioni playlist" - -msgid "Create a new playlist with files" -msgstr "Crea una nuova playlist con i file" - -msgid "Append files/URLs to the playlist" -msgstr "Aggiungi file/URL alla playlist" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Carica file/URL, sostituendo la playlist attuale" - -msgid "Play the th track in the playlist" -msgstr "Riproduci la traccia numero della playlist" - -msgid "Play given playlist" -msgstr "Riproduci una determinata playlist" - -msgid "Other options" -msgstr "Altre opzioni" - -msgid "Display the on-screen-display" -msgstr "Visualizza notifiche a schermo (OSD)" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Attiva/disattiva visibilità OSD gradevole" - -msgid "Change the language" -msgstr "Modifica lingua interfaccia" - -msgid "Resize the window" -msgstr "Ridimensiona la finestra" - -msgid "Equivalent to --log-levels *:1" -msgstr "Equivalente a --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Equivalente a --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Elenco separato da virgole (classe:livello, dove livello è 0-3)" - -msgid "Print out version information" -msgstr "Visualizza informazioni versione" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "Impossibile eseguire l'interrogazione SQL: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Interrogazione SQL non riuscita: %1" - -msgid "Integrity check" -msgstr "Controllo integrità" - -msgid "Database corruption detected." -msgstr "Rilevato danneggiamento del database." - -msgid "Backing up database" -msgstr "Backup database" - -msgid "Deleting files" -msgstr "Eliminazione file" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Sconosciuto" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Hai bisogno di GStreamer per questa URL." - -msgid "Preload function was not set for blocking operation." -msgstr "La funzione di pre-caricamento non è stata impostata per l'operazione di blocco." - -#, qt-format -msgid "File %1 does not exist." -msgstr "Il file '%1' non esiste." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Il file '%1' non è stato riconosciuto come un file audio valido." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "La riproduzione CD è disponibile unicamente tramite motore GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Impossibile aprire il file '%1' in lettura: '%2'" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Impossibile aprire il file CUE '%1' per la lettura: '%2'" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Impossibile aprire il file della playlist '%1' in lettura: '%2'" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Impossibile creare l'elemento sorgente GStreamer per '%1'" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "Impossibile creare l'elemento typefind di GStreamer per '%1'" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "Impossibile creare l'elemento fakesink di GStreamer per '%1'" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "Impossibile collegare gli elementi sorgente, typefind e fakesink di GStreamer per '%1'" - -msgid "Playlist" -msgstr "" - -msgid "1 day" -msgstr "un giorno" - -#, qt-format -msgid "%1 days" -msgstr "%1 giorni" - -msgid "Today" -msgstr "Oggi" - -msgid "Yesterday" -msgstr "Ieri" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 giorni fa" - -msgid "Tomorrow" -msgstr "Domani" - -#, qt-format -msgid "In %1 days" -msgstr "Tra %1 giorni" - -msgid "Next week" -msgstr "Settimana prossima" - -#, qt-format -msgid "In %1 weeks" -msgstr "Tra %1 settimane" - -msgid "Show in file browser" -msgstr "Visualizza nel navigatore file" - -msgid "Too many songs selected." -msgstr "Troppi brani selezionati." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "'%1' brani in '%2' diverse cartelle selezionate, sei sicuro di volerli aprire tutti?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Errore sconosciuto" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "artista" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Campi disponibili" - -msgid "Framerate" -msgstr "Velocità fotogrammi" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Basso (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Medio (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Alto (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Molto alto (%1 fps)" - -msgid "No analyzer" -msgstr "Nessun analizzatore" - -msgid "Block analyzer" -msgstr "Analizzatore a blocchi" - -msgid "Boom analyzer" -msgstr "Analizzatore boom" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Preamplificazione" - -msgid "Custom" -msgstr "Personalizzato" - -msgid "Classical" -msgstr "Classica" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Bassi al massimo" - -msgid "Full Treble" -msgstr "Alti al massimo" - -msgid "Full Bass + Treble" -msgstr "Bassi e alti al massimo" - -msgid "Laptop/Headphones" -msgstr "Portatile/cuffie" - -msgid "Large Hall" -msgstr "Sala grande" - -msgid "Live" -msgstr "" - -msgid "Party" -msgstr "" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "Rock leggero" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "Salva preimpostazione" - -msgid "Name" -msgstr "Nome" - -msgid "Delete preset" -msgstr "Elimina preimpostazione" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Sei sicuro di voler eliminare la preimpostazione '%1'?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Tipo di file" - -msgid "Length" -msgstr "Durata" - -msgid "Samplerate" -msgstr "Freq. campionamento" - -msgid "Bit depth" -msgstr "Profondità bit" - -msgid "Bitrate" -msgstr "" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Visualizza copertina album" - -msgid "Show song technical data" -msgstr "Visualizza i dati tecnici del brano" - -msgid "Show song lyrics" -msgstr "Visualizza il testo del brano" - -msgid "Automatically search for song lyrics" -msgstr "Cerca automaticamente i testi dei brani" - -msgid "No song playing" -msgstr "Nessuna brano in riproduzione" - -#, qt-format -msgid "%1 song" -msgstr "%1 brano" - -#, qt-format -msgid "%1 songs" -msgstr "%1 brani" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artista" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artisti" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "%1 album" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "Salvataggio numero riproduzioni valutazioni" - -msgid "Various artists" -msgstr "Artisti vari" - -msgid "Loading..." -msgstr "Caricamento..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "Impossibile eseguire l'interrogazione di collezione SQL: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "Aggiornamento database '%1'." - -msgid "Updating collection" -msgstr "Aggiornamento raccolta" - -#, qt-format -msgid "Updating %1" -msgstr "Aggiornamento di %1" - -msgid "Your collection is empty!" -msgstr "La raccolta è vuota!" - -msgid "Click here to add some music" -msgstr "Fai clic qui per aggiungere della musica" - -msgid "Append to current playlist" -msgstr "Aggiungi alla playlist attuale" - -msgid "Replace current playlist" -msgstr "Sostituisci playlist attuale" - -msgid "Open in new playlist" -msgstr "Apri in nuova playlist" - -msgid "Search for this" -msgstr "Cerca questo" - -msgid "Edit track information..." -msgstr "Modifica informazioni traccia..." - -msgid "Edit tracks information..." -msgstr "Modifica le informazioni tracce..." - -msgid "Rescan song(s)" -msgstr "Riscansione brano/i" - -msgid "Show in various artists" -msgstr "Visualizza in artisti vari" - -msgid "Don't show in various artists" -msgstr "Non mostrare in artisti vari" - -msgid "There are other songs in this album" -msgstr "Ci sono altri brani in questo album" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Vuoi spostare anche gli altri brani di questo album in 'Artisti vari'?" - -msgid "Show" -msgstr "Visualizza" - -msgid "Group by" -msgstr "Raggruppa per" - -msgid "Display options" -msgstr "Opzioni visualizzazione" - -msgid "Group by Album artist/Album" -msgstr "Raggruppa per artista album/album" - -msgid "Group by Album artist/Album - Disc" -msgstr "Raggruppa per artista album/disco - album" - -msgid "Group by Album artist/Year - Album" -msgstr "Raggruppa per artista album/anno - album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Raggruppa per artista album/anno - album - disco" - -msgid "Group by Artist/Album" -msgstr "Raggruppa per artista/album" - -msgid "Group by Artist/Album - Disc" -msgstr "Raggruppa per artista/album - disco" - -msgid "Group by Artist/Year - Album" -msgstr "Raggruppa per artista/anno - album" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Raggruppa per artista/anno - album - disco" - -msgid "Group by Genre/Album artist/Album" -msgstr "Raggruppa per genere/artista album/album" - -msgid "Group by Genre/Artist/Album" -msgstr "Raggruppa per genere/artista/album" - -msgid "Group by Album Artist" -msgstr "Raggruppa per artista album" - -msgid "Group by Artist" -msgstr "Raggruppa per artista" - -msgid "Group by Album" -msgstr "Raggruppa per album" - -msgid "Group by Genre/Album" -msgstr "Raggruppa per genere/album" - -msgid "Advanced grouping..." -msgstr "Raggruppamento avanzato..." - -msgid "Grouping Name" -msgstr "Nome raggruppamento" - -msgid "Grouping name:" -msgstr "Nome raggruppamento:" - -msgid "First level" -msgstr "Primo livello" - -msgid "Second Level" -msgstr "Secondo livello" - -msgid "Third Level" -msgstr "Terzo livello" - -msgid "None" -msgstr "Nessuna" - -msgid "Album artist" -msgstr "Artista album" - -msgid "Artist" -msgstr "Artista" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "Album - Disco" - -msgid "Year - Album" -msgstr "Anno - album" - -msgid "Year - Album - Disc" -msgstr "Anno - album - disco" - -msgid "Original year - Album" -msgstr "Anno originale - album" - -msgid "Original year - Album - Disc" -msgstr "Anno originale - album - disco" - -msgid "Disc" -msgstr "Disco" - -msgid "Year" -msgstr "Anno" - -msgid "Original year" -msgstr "Anno originale" - -msgid "Genre" -msgstr "Genere" - -msgid "Composer" -msgstr "Compositore" - -msgid "Performer" -msgstr "Musicista" - -msgid "Grouping" -msgstr "Gruppo" - -msgid "File type" -msgstr "Tipo di file" - -msgid "Format" -msgstr "Formato" - -msgid "Sample rate" -msgstr "Freq. campionamento" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Titolo" - -msgid "Track" -msgstr "Traccia" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Commento" - -msgid "Source" -msgstr "Sorgente" - -msgid "Mood" -msgstr "Umore" - -msgid "Rating" -msgstr "Valutazione" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "Annulla operazione" - -msgid "Redo" -msgstr "Ripeti operazione" - -msgid "Load playlist" -msgstr "Carica playlist" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Nessuna corrispondenza trovata. Per visualizzare nuovamente la playlist completa svuota il campo di ricerca." - -msgid "stop" -msgstr "ferma" - -msgid "Never" -msgstr "Mai" - -msgid "&Hide..." -msgstr "&Nascondi..." - -msgid "&Stretch columns to fit window" -msgstr "&Allunga le colonne per adattarle alla finestra" - -msgid "&Reset columns to default" -msgstr "&Ripristina colonne ai valori predefiniti" - -msgid "&Lock rating" -msgstr "&Blocca valutazione" - -msgid "&Align text" -msgstr "&Allinea il testo" - -msgid "&Left" -msgstr "&Sinistra" - -msgid "&Center" -msgstr "Al ¢ro" - -msgid "&Right" -msgstr "Dest&ra" - -#, qt-format -msgid "&Hide %1" -msgstr "&Nascondi %1" - -msgid "New folder" -msgstr "Nuova cartella" - -msgid "Delete" -msgstr "Elimina" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Salva playlist" - -msgid "Enter the name of the folder" -msgstr "Digita il nome della cartella" - -msgid "Copy to device" -msgstr "Copia nel dispositivo" - -msgid "Playlist must be open first." -msgstr "Prima è necessario aprire la playlist." - -msgid "Remove playlists" -msgstr "Rimuovi playlist" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Stai per rimuovere %1 playlist dai preferiti, sei sicuro?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Puoi creare le playlist preferite facendo clic sulla stella accanto al nome della playlist" - -msgid "Favorited playlists will be saved here" -msgstr "Le playlist preferite saranno salvate qui" - -msgid "Couldn't create playlist" -msgstr "Impossibile creare la playlist" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Salva playlist" - -msgid "Unknown playlist extension" -msgstr "Estensione playlist sconosciuta" - -msgid "Unknown file extension for playlist." -msgstr "Estensione file playlist sconosciuta." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 selezionate di" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automatico" - -msgid "Relative" -msgstr "Relativo" - -msgid "Absolute" -msgstr "Assoluto" - -msgid "Star playlist" -msgstr "Stella playlist" - -msgid "Close playlist" -msgstr "Chiudi playlist" - -msgid "Rename playlist..." -msgstr "Rinomina playlist..." - -msgid "Save playlist..." -msgstr "Salva playlist..." - -msgid "Rename playlist" -msgstr "Rinomina playlist" - -msgid "Enter a new name for this playlist" -msgstr "Inserisci un nuovo nome per questa playlist" - -msgid "Remove playlist" -msgstr "Rimuovi playlist" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Stai per rimuovere una playlist che non fa parte delle playlist preferite: la playlist sarà eliminata (questa azione non può essere annullata).\n" -"Sei sicuro di voler continuare?" - -msgid "Warn me when closing a playlist tab" -msgstr "Avvisami alla chiusura di una scheda della playlist" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Questa opzione può essere modificata nelle preferenze di \"Comportamento\"" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Doppio clic qui per aggiungere questa playlist ai preferiti in modo che venga salvata e rimanga accessibile tramite il pannello \"Playlist\" nella barra laterale sinistra" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "aggiungi %n brani" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "rimuovi %n brani" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "sposta %n brani" - -msgid "sort songs" -msgstr "ordina brani" - -msgid "shuffle songs" -msgstr "mescola i brani" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Errore durante il caricamento del CD audio." - -msgid "Loading tracks" -msgstr "Caricamento tracce" - -msgid "Loading tracks info" -msgstr "Caricamento informazioni traccia" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Tutte le scalette (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 playlist (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Caricamento playlist intelligente" - -msgid "Collection search" -msgstr "Ricerca raccolta" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Trova i brani nella raccolta che corrispondono ai criteri specificati." - -msgid "Search terms" -msgstr "Termini di ricerca" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Un brano verrà incluso nella playlist se soddisfa queste condizioni." - -msgid "Search options" -msgstr "Opzioni ricerca" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Scegli come è ordinata la playlist e quanti brani conterrà." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "'%1' brani trovati (visualizza '%2')" - -#, qt-format -msgid "%1 songs found" -msgstr "'%1' brani trovati" - -msgid "after" -msgstr "dopo" - -msgid "before" -msgstr "prima" - -msgid "on" -msgstr "in" - -msgid "not on" -msgstr "non in" - -msgid "in the last" -msgstr "nell'ultimo" - -msgid "not in the last" -msgstr "non nell'ultimo" - -msgid "between" -msgstr "tra" - -msgid "contains" -msgstr "contiene" - -msgid "does not contain" -msgstr "non contiene" - -msgid "starts with" -msgstr "inizia con" - -msgid "ends with" -msgstr "finisce con" - -msgid "greater than" -msgstr "più grande di" - -msgid "less than" -msgstr "meno di" - -msgid "equals" -msgstr "equivale" - -msgid "not equals" -msgstr "non uguale" - -msgid "empty" -msgstr "vuoto" - -msgid "not empty" -msgstr "non vuoto" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "prima i più vecchi" - -msgid "newest first" -msgstr "prima i più nuovi" - -msgid "shortest first" -msgstr "prima il più breve" - -msgid "longest first" -msgstr "più lungo prima" - -msgid "smallest first" -msgstr "prima il più piccolo" - -msgid "biggest first" -msgstr "più grande prima" - -msgid "Hours" -msgstr "Ore" - -msgid "Days" -msgstr "Giorni" - -msgid "Weeks" -msgstr "Settimane" - -msgid "Months" -msgstr "Mesi" - -msgid "Years" -msgstr "Anni" - -msgid "The second value must be greater than the first one!" -msgstr "Il secondo valore deve essere maggiore del primo!" - -msgid "Add search term" -msgstr "Aggiungi termine di ricerca" - -msgid "Newest tracks" -msgstr "Tracce più recenti" - -msgid "50 random tracks" -msgstr "50 tracce casuali" - -msgid "Ever played" -msgstr "Mai riprodotto" - -msgid "Never played" -msgstr "Mai riprodotti" - -msgid "Last played" -msgstr "Ultima riproduzione" - -msgid "Most played" -msgstr "Più riprodotti" - -msgid "Favourite tracks" -msgstr "Tracce preferite" - -msgid "Least favourite tracks" -msgstr "Tracce meno preferite" - -msgid "All tracks" -msgstr "Tutte le tracce" - -msgid "Dynamic random mix" -msgstr "Mix casuale dinamico" - -msgid "New smart playlist..." -msgstr "Nuova playlist intelligente..." - -msgid "Play next" -msgstr "Riproduci successivo" - -msgid "Edit smart playlist..." -msgstr "Modifica playlist intelligente..." - -msgid "Delete smart playlist" -msgstr "Elimina playlist intelligente" - -msgid "Smart playlist" -msgstr "Playlist intelligente" - -msgid "Playlist type" -msgstr "Tipo playlist" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Una playlist intelligente è un elenco dinamico di brani che provengono da una raccolta. \n" -"Esistono diversi tipi di playlist intelligenti che offrono diversi modi di selezionare i brani." - -msgid "Finish" -msgstr "Fine" - -msgid "Choose a name for your smart playlist" -msgstr "Scegli un nome per la playlist intelligente" - -msgid "Abort" -msgstr "Interrompi" - -msgid "All albums" -msgstr "Tutti gli album" - -msgid "Albums with covers" -msgstr "Album con copertina" - -msgid "Albums without covers" -msgstr "Album senza copertina" - -msgid "Really cancel?" -msgstr "Vuoi davvero annullare?" - -msgid "Closing this window will stop searching for album covers." -msgstr "La chiusura di questa finestra fermerà la ricerca delle copertine." - -msgid "Don't stop!" -msgstr "Non fermare!" - -msgid "All artists" -msgstr "Tutti gli artisti" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Ottenute %1 copertine su %2 (%3 non riuscite)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 trasferiti" - -msgid "Export finished" -msgstr "Esportazione completata" - -msgid "No covers to export." -msgstr "Nessuna copertina da esportare." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Esportate '%1' copertine di '%2' (%3 saltate)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "Impossibile salvare la copertina nel file %1." - -#, qt-format -msgid "Covers from %1" -msgstr "Copertine da '%1'" - -msgid "Search" -msgstr "Cerca" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Immagini (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Immagini (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Tutti i file (*)" - -msgid "Load cover from disk..." -msgstr "Carica copertina dal disco..." - -msgid "Save cover to disk..." -msgstr "Salva copertina nel disco..." - -msgid "Load cover from URL..." -msgstr "Carica copertina da URL..." - -msgid "Search for album covers..." -msgstr "Cerca copertine album..." - -msgid "Unset cover" -msgstr "Rimuovi copertina" - -msgid "Delete cover" -msgstr "Elimina copertina" - -msgid "Clear cover" -msgstr "Rimuovi copertina" - -msgid "Show fullsize..." -msgstr "Visualizza a dimensioni originali..." - -msgid "Search automatically" -msgstr "Cerca automaticamente" - -msgid "Load cover from disk" -msgstr "Carica copertina dal disco" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Impossibile aprire il file copertina '%1' in lettura: '%2'" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "Il file copertina '%1' è vuoto." - -msgid "unknown" -msgstr "sconosciuto" - -msgid "Save album cover" -msgstr "Salva copertina album" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Impossibile aprire il file copertina '%1' in scrittura: '%2'" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Impossibile scrivere la copertina nel file '%1': '%2'" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Impossibile scrivere la copertina nel file '%1'." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Impossibile eliminare il file copertina '%1': '%2'" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Impossibile scrivere la copertina nel file '%1': '%2'" - -msgid "Total network requests made" -msgstr "Totale richieste di rete effettuate" - -msgid "Average image size" -msgstr "Dimensione media immagine" - -msgid "Total bytes transferred" -msgstr "Totale byte trasferiti" - -msgid "Fetching cover error" -msgstr "Errore recupero copertina" - -msgid "The site you requested does not exist!" -msgstr "Il sito richiesto non esiste!" - -msgid "The site you requested is not an image!" -msgstr "Il sito richiesto non è un'immagine!" - -msgid "Genius Authentication" -msgstr "Autenticazione Genius" - -msgid "Please open this URL in your browser" -msgstr "Apri questa URL nel browser" - -msgid "Redirect missing token code!" -msgstr "Manca il codice del token per il reindirizzamento!" - -msgid "Received invalid reply from web browser." -msgstr "Ricevuta una risposta non valida dal browser web." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Nel reindirizzamento da Genius mancano il codice o lo stato degli elementi della richiesta." - -msgid "General" -msgstr "Generale" - -msgid "User interface" -msgstr "Interfaccia utente" - -msgid "Streaming" -msgstr "" - -msgid "Add directory..." -msgstr "Aggiungi cartella..." - -msgid "Write all playcounts and ratings to files" -msgstr "Scrivi tutti i numeri riproduzioni e valutazioni nei file" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Sei sicuro di voler scrivere per tutti i brani della raccolta il numero di riproduzioni e le classificazioni dei brani in un file?" - -msgid "Enter your user token from" -msgstr "Inserisci il tuo token utente da" - -msgid "Use Tidal settings to authenticate." -msgstr "Usaper l'autenticazione le impostazioni di Tidal." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Usa le impostazioni di Qobuz per l'autenticazione." - -#, qt-format -msgid "%1 needs authentication." -msgstr "'%1' richiede l'autenticazione." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "'%1' non necessita di autenticazione." - -msgid "No provider selected." -msgstr "Nessun forrnitore selezionato." - -msgid "Authentication failed" -msgstr "Autenticazione non riuscita" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "Manualmente disabilitata (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "Impostato tramite la ricerca della copertina dell'album (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "Prelevato automaticamente dalla cartella dell'album (%1)" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "Copertina incorporata nell'album (%1)" - -msgid "Select background image" -msgstr "Seleziona immagine di sfondo" - -msgid "OSD Preview" -msgstr "Anteprima OSD" - -msgid "Drag to reposition" -msgstr "Trascina per riposizionare" - -msgid "About Strawberry" -msgstr "Informazioni su Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Versione %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry è un riproduttore musicale ed un organizzatore di raccolte musicali." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "È un fork di Clementine pubblicato nel 2018 rivolto a collezionisti di musica e audiofili." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry è un software gratuito rilasciato sotto licenza GPL. \n" -"Il codice sorgente è disponibile su '%1'" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Dovresti aver ricevuto una copia della GNU General Public License insieme a questo programma. In caso contrario, vedi '%1'" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Se ti piace Strawberry e puoi farne uso, prendi in considerazione la sponsorizzazione o la donazione." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Puoi sponsorizzare l'autore su '%1'. \n" -"Puoi anche effettuare un pagamento una tantum tramite '%2'." - -msgid "Author and maintainer" -msgstr "Autore e manutentore" - -msgid "Contributors" -msgstr "Contributori" - -msgid "Clementine authors" -msgstr "Autori di Clementine" - -msgid "Clementine contributors" -msgstr "Contributori di Clementine" - -msgid "Thanks to" -msgstr "Grazie a" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Grazie a tutti gli altri contributori di Amarok e Clementine." - -msgid "(different across multiple songs)" -msgstr "(differente tra diversi brani)" - -msgid "Different art across multiple songs." -msgstr "Arte diversa in più brani." - -msgid "Previous" -msgstr "Precedente" - -msgid "Next" -msgstr "Successivo" - -msgid "Saving tracks" -msgstr "Salvataggio tracce" - -#, qt-format -msgid "%1 songs selected." -msgstr "'%1' brani selezionati." - -msgid "Yes" -msgstr "Sì" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "Copertina non impostata" - -msgid "Cover from embedded image." -msgstr "Copertina dall'immagine incorporata." - -#, qt-format -msgid "Cover from %1" -msgstr "Copertina da %1" - -msgid "Cover art not set" -msgstr "Copertina non impostata" - -msgid "Album cover editing is only available for collection songs." -msgstr "La modifica della copertina dell'album è disponibile solo per i brani della raccolta." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Copertina modificata: verrà cancellata quando verrà salvata." - -msgid "Cover changed: Will be unset when saved." -msgstr "Copertina modificata: verrà annullata quando verrà salvata." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Copertina modificata: verrà eliminata quando verrà salvata." - -msgid "Cover changed: Will set new when saved." -msgstr "Copertina modificata: verrà impostata una nuova quando verrà salvata." - -msgid "Reset song play statistics" -msgstr "Ripristina statistiche riproduzione brano" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "Sei sicuro di voler reimpostare le statistiche di riproduzione di questo brano?" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Tag originali" - -msgid "Suggested tags" -msgstr "Tag consigliati" - -msgid "Delete files" -msgstr "Elimina i file" - -msgid "The following files will be deleted from disk:" -msgstr "Verranno eliminati dal disco i seguenti file:" - -msgid "Are you sure you want to continue?" -msgstr "Sei sicuro di voler continuare?" - -msgid "Receiving initial data from last.fm..." -msgstr "Ricezione dati iniziali da last.fm..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Ricezione numero riproduzioni per '%1' brani e ultima riproduzione per '%2' brani." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Ricezione ultimi brani riprodotti per '%1'." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Ricezione numero riproduzioni per '%1' brani." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Numero di riproduzioni per '%1' brani e ultima riproduzione per '%2' brani ricevuti." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Ultima riproduzione per %1 brani ricevuti." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Numero di riproduzioni per '%1' brani ricevuti." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry è in esecuzione come 'snap'" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "È stato rilevato che Strawberry è in esecuzione come Snap" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry quando viene eseguito come 'snap' è più lento e ha delle restrizioni. \n" -"L'accesso al filesystem root (/) non funzionerà. \n" -"Potrebbero esserci anche altre restrizioni come l'accesso a determinati dispositivi o condivisioni di rete." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Per Ubuntu è disponibile un repository PPA ufficiale in '%1'." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Sono disponibili rilasci ufficiali per Debian e Ubuntu che funzionano anche nella maggior parte dei loro derivati. \n" -"Per ulteriori informazioni vedi '%1' ." - -msgid "For a better experience please consider the other options above." -msgstr "Per un'esperienza migliore, considera le altre opzioni di cui sopra." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Prima di disinstallare lo snap copia il straw.conf e straw.db dalla cartella ~/snap per evitare di perdere la configurazione:" - -msgid "Uninstall the snap with:" -msgstr "Disinstalla lo snap con:" - -msgid "Install strawberry through PPA:" -msgstr "Installa Strawberry tramite PPA:" - -msgid "Select directory for the playlists" -msgstr "Seleziona cartella per la playlist" - -msgid "Directory does not exist." -msgstr "La cartella non esiste." - -msgid "Large sidebar" -msgstr "Pannello laterale grande" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Pannello laterale piccolo" - -msgid "Plain sidebar" -msgstr "Barra laterale semplice" - -msgid "Tabs on top" -msgstr "Schede in alto" - -msgid "Icons on top" -msgstr "Icone in alto" - -msgid "Available" -msgstr "Disponibile" - -msgid "New songs" -msgstr "Nuovi brani" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Usato" - -msgid "Clear" -msgstr "Svuota" - -msgid "Reset" -msgstr "Ripristina" - -msgid "Small album cover" -msgstr "Copertine piccole" - -msgid "Large album cover" -msgstr "Copertina grande" - -msgid "Fit cover to width" -msgstr "Adatta la copertina alla larghezza" - -msgid "Show above status bar" -msgstr "Visualizza barra di stato superiore" - -msgid "You are signed in." -msgstr "Sei registrato." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Sei registrato come %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Scade il %1" - -#, qt-format -msgid "disc %1" -msgstr "disco %1" - -#, qt-format -msgid "track %1" -msgstr "traccia %1" - -msgid "Paused" -msgstr "In pausa" - -msgid "Stopped" -msgstr "Fermato" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Ferma la riproduzione dopo la traccia: %1" - -msgid "On" -msgstr "Attivato" - -msgid "Off" -msgstr "Disattivato" - -msgid "Playlist finished" -msgstr "Playlist terminata" - -#, qt-format -msgid "Volume %1%" -msgstr "" - -msgid "Don't shuffle" -msgstr "Non mescolare" - -msgid "Shuffle all" -msgstr "Mescola tutti" - -msgid "Shuffle tracks in this album" -msgstr "Mescola le tracce di questo album" - -msgid "Shuffle albums" -msgstr "Mescola album" - -msgid "Don't repeat" -msgstr "Non ripetere" - -msgid "Repeat track" -msgstr "Ripeti traccia" - -msgid "Repeat album" -msgstr "Ripeti album" - -msgid "Repeat playlist" -msgstr "Ripeti playlist" - -msgid "Stop after every track" -msgstr "Ferma dopo tutte le tracce" - -msgid "Intro tracks" -msgstr "Tracce introduzione" - -#, qt-format -msgid "Configure %1..." -msgstr "Configura %1..." - -msgid "Add to artists" -msgstr "Aggiungi agli artisti" - -msgid "Add to albums" -msgstr "Aggiungi agli album" - -msgid "Add to songs" -msgstr "Aggiungi ai brani" - -msgid "Enter search terms above to find music" -msgstr "Inserisci qui sopra i termini per la ricerca per trovare la musica che cerchi" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Fai clic qui per recuperare la musica" - -msgid "Remove from favorites" -msgstr "Rimuovi dai preferiti" - -msgid "Open homepage" -msgstr "Apri sito web" - -msgid "Donate" -msgstr "Dona" - -msgid "Refresh channels" -msgstr "Aggiorna canali" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Ottieni %1 canali" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 autenticazione Scrobbler" - -msgid "Open URL in web browser?" -msgstr "Vuoi aprire l'URL nel browser web?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Seleziona \"Salva\" per copiare l'URL negli Appunti ed aprirla manualmente nel browser web." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Impossibile aprire l'URL, apri questo URL nel browser" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Risposta non valida dal browser web. Token mancante." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Scrobbler '%1' non è autenticato!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Scrobbler '%1' errore: '%2'" - -msgid "ListenBrainz Authentication" -msgstr "Autenticazione ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "Impossibile effettuare lo scrobble '%1' - '%2' a causa dell'errore: %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "ID registrazione MusicBrainz mancante per %1 %2 %3" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "Errore di ListenBrainz: %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Nome utente mancante, accedi prima a last.fm!" - -msgid "Organizing files" -msgstr "Organizzazione file" - -msgid "Artist's initial" -msgstr "Iniziale artista" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "Estensione file" - -msgid "Error copying songs" -msgstr "Errore durante la copia dei brani" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Si sono verificati dei problemi durante la copia di alcuni brani. \n" -"Non è stato possibile copiare i seguenti file:" - -msgid "Error deleting songs" -msgstr "Errore durante l'eliminazione dei brani" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Si sono verificati dei problemi durante l'eliminazione di alcuni brani. \n" -"Non è stato possibile eliminare i seguenti file:" - -msgid "Play/Pause" -msgstr "Riproduci/pausa" - -msgid "Stop" -msgstr "Interrompi" - -msgid "Stop playing after current track" -msgstr "Interrompi riproduzione dopo il brano attuale" - -msgid "Next track" -msgstr "Traccia successiva" - -msgid "Previous track" -msgstr "Traccia precedente" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "Aumenta volume" - -msgid "Decrease volume" -msgstr "Diminuisci volume" - -msgid "Mute" -msgstr "Silenzia" - -msgid "Seek forward" -msgstr "Vai avanti" - -msgid "Seek backward" -msgstr "Vai indietro" - -msgid "Show/Hide" -msgstr "Visualizza/nascondi" - -msgid "Show OSD" -msgstr "Visualizza OSD" - -msgid "Toggle Pretty OSD" -msgstr "Attiva/disattiva OSD gradevole" - -msgid "Change shuffle mode" -msgstr "Modifica modalità casuale" - -msgid "Change repeat mode" -msgstr "Modifica modalità ripetizione" - -msgid "Enable/disable scrobbling" -msgstr "Abilita/disabilita scrobbling" - -msgid "Love" -msgstr "Amore" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Premi una combinazione di tasto da usare per '%1'..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Il comando '%1' non può essere avviato." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Scorciatoia per '%1'" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "L'uso delle scorciatoie di sistema in '%1' non è raccomandato e potrebbe rendere non reattiva la tastiera!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr " Le scorciatoie in '%1' sono solitamente usate tramite MPRIS e KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr " Le scorciatoie in '%1' vengono solitamente usate tramite il demone delle impostazioni di Gnome e dovrebbero invece essere configurate in gnome-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr " Le scorciatoie in '%1' vengono solitamente usate tramite il demone delle impostazioni di Gnome e dovrebbero essere configurate invece in cinnamon-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr " Le scorciatoie in '%1' vengono solitamente usate tramite il demone delle impostazioni MATE e dovrebbero invece essere configurate lì." - -msgid "Buffering" -msgstr "Riempimento buffer" - -msgid "D-Bus path" -msgstr "Percorso D-Bus" - -msgid "Serial number" -msgstr "Numero seriale" - -msgid "Mount points" -msgstr "Punti di montaggio" - -msgid "Partition label" -msgstr "Etichetta partizione" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Connetti dispositivo" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "È la prima volta che si connette questo dispositivo. \n" -"Strawberry effettuerà una scansione del dispositivo alla ricerca di file musicali - l'operazione potrebbe richiedere del tempo." - -msgid "This device will not work properly" -msgstr "Il dispositivo non funzionerà correttamente" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Questo è un dispositivo MTP, ma hai compilato Strawberry senza il supporto a libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Se continui, il dispositivo funzionerà lentamente e i brani copiati su di esso potrebbero non essere riproducibili." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Questo è un iPod, ma hai compilato Strawberry senza il supporto a libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Questi tipo di dispositivo non è supportato: '%1'" - -#, qt-format -msgid "Updating %1%..." -msgstr "Aggiornamento %1%..." - -msgid "Not connected" -msgstr "Non connesso" - -msgid "Not mounted - double click to mount" -msgstr "Non montato - doppio clic per montare" - -msgid "Double click to open" -msgstr "Doppio clic per aprire" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 brano%2" - -msgid "Safely remove device" -msgstr "Rimuovi il dispositivo in sicurezza" - -msgid "Forget device" -msgstr "Elimina dispositivo" - -msgid "Device properties..." -msgstr "Proprietà dispositivo..." - -msgid "Delete from device..." -msgstr "Elimina da dispositivo..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "L'eliminazione di un dispositivo lo rimuoverà da questo elenco e Strawberry al successivo collegamento dovrà effettuare una nuova scansione di tutti i brani." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Questi file saranno eliminati dal dispositivo, sei sicuro di voler continuare?" - -msgid "Model" -msgstr "Modello" - -msgid "Manufacturer" -msgstr "Produttore" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Caricamento database iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Si è verificato un errore durante il caricamento del database di iTunes" - -msgid "Mount point" -msgstr "Punto di montaggio" - -msgid "Device" -msgstr "Dispositivo" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Caricamento dispositivo MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Errore durante la connessione MTP al dispositivo '%1'" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Impossibile creare l'elemento «%1» di GStreamer - assicurati che tutti i plugin necessari siano installati" - -#, qt-format -msgid "Successfully written %1" -msgstr "'%1' scritti correttamente" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Conversione di '%1' file usando '%2' thread" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Errore durante l'elaborazione di '%1': '%2'" - -#, qt-format -msgid "Starting %1" -msgstr "Avvio di %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Impossibile trovare un codificatore per '%1', verifica l'installazione del plugin GStreamer corretto" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Impossibile trovare un muxer per '%1', verifica l'installazione del plugin GStreamer corretto" - -msgid "Start transcoding" -msgstr "Avvia conversione" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n rimanenti" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n completati" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n non riusciti" - -msgid "Add files to transcode" -msgstr "Aggiungi file da convertire" - -msgid "Open a directory to import music from" -msgstr "Apri una cartella da cui importare la musica" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Errore durante l'impostazione del dispositivo CDDA nello stato pronto." - -msgid "Error while setting CDDA device to pause state." -msgstr "Errore durante l'impostazione del dispositivo CDDA nello stato di pausa." - -msgid "Error while querying CDDA tracks." -msgstr "Errore durante l'interrogazione delle tracce CDDA." - -msgid "Server URL is invalid." -msgstr "L'URL del server non è valida." - -msgid "Missing username or password." -msgstr "Nome utente o password mancanti." - -msgid "Subsonic server URL is invalid." -msgstr "L'URL del server Subsonic non è valida." - -msgid "Missing Subsonic username or password." -msgstr "Nome utente o password di Subsonic mancante." - -msgid "Retrieving albums..." -msgstr "Recupero album..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Recupero brani per l'album '%1'..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Recupero brani per gli album '%1'..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Recupero copertina per l'album '%1'..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Recupero copertine per gli album '%1'..." - -msgid "Configuration incomplete" -msgstr "Configurazione non completa" - -msgid "Missing server url, username or password." -msgstr "URL del server, nome utente o password mancanti." - -msgid "Configuration incorrect" -msgstr "Configurazione non corretta" - -msgid "Test successful!" -msgstr "Test riuscito!" - -msgid "Test failed!" -msgstr "Test non riuscito!" - -msgid "Reply from Tidal is missing query items." -msgstr "Alla risposta del server Tidal mancano elementi della richiesta." - -msgid "Missing Tidal API token." -msgstr "Token API Tidal mancante." - -msgid "Missing Tidal username." -msgstr "Nome utente Tidal mancante." - -msgid "Missing Tidal password." -msgstr "Password Tidal mancante." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Non sei autenticato su Tidal ed hai raggiunto il massimo numero di tentativi di accesso." - -msgid "Not authenticated with Tidal." -msgstr "Non sei autenticato su Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Token API Tidal, nome utente o password mancanti." - -msgid "Authenticating..." -msgstr "Autenticazione..." - -msgid "Receiving artists..." -msgstr "Ricezione artisti..." - -msgid "Receiving albums..." -msgstr "Ricezione album..." - -msgid "Receiving songs..." -msgstr "Ricezione brani..." - -msgid "Searching..." -msgstr "Ricerca..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "Ricezione album per '%1' artista..." - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "Receiving albums for '%1' artists..." - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "Ricezione brani per '%1' album..." - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "Ricezione brani per '%1' album..." - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "Ricezione copertina album per '%1' album..." - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "Ricezione copertine album per' %1' album..." - -msgid "No match." -msgstr "Nessuna corrispondenza." - -msgid "Cancelled." -msgstr "Annullato." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "URL ricevuto da Tidal con flusso crittografato '%1'.\n" -"Strawberry attualmente non supporta i flussi crittografati." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "URL ricevuto con flusso crittografato da Tidal. \n" -"Strawberry attualmente non supporta i flussi crittografati." - -msgid "Missing Tidal client ID." -msgstr "ID client Tidal mancante." - -msgid "Missing API token." -msgstr "Token API mancante." - -msgid "Missing username." -msgstr "Nome utente mancante." - -msgid "Missing password." -msgstr "Password mancante." - -msgid "Spotify Authentication" -msgstr "Autenticazione Spotify" - -msgid "Redirect missing token code or state!" -msgstr "Reindirizza il codice o lo stato del token mancante!" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Raggiunto numero massimo tentativi di accesso." - -msgid "Missing Qobuz app ID." -msgstr "ID app Qobuz mancante." - -msgid "Missing Qobuz username." -msgstr "Nome utente Qobuz mancante." - -msgid "Missing Qobuz password." -msgstr "Password Qobuz mancante." - -msgid "Not authenticated with Qobuz." -msgstr "Non sei autenticato su Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "ID app (o segreto) Qobuz mancante." - -msgid "Missing app id." -msgstr "ID app mancante." - -msgid "Show moodbar" -msgstr "Visualizza la barra dell'umore" - -msgid "Moodbar style" -msgstr "Stile barra dell'umore" - -msgid "Normal" -msgstr "Normale" - -msgid "Angry" -msgstr "Arrabbiato" - -msgid "Frozen" -msgstr "Congelato" - -msgid "Happy" -msgstr "Felice" - -msgid "System colors" -msgstr "Colori sistema" - -msgid "Strawberry Music Player" -msgstr "Riproduttore musicale Strawberry" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Riproduci" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Ferma" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Prossima traccia" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Esci" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "Pulis&ci playlist" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Ricorda l'ordine delle tracce..." - -msgid "Set value for all selected tracks..." -msgstr "Imposta valore per tutte le tracce selezionate..." - -msgid "Edit tag..." -msgstr "Modifica tag..." - -msgid "&Settings..." -msgstr "Impo&stazioni..." - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "Inform&azioni su Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "M&escola playlist" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Aggiungi file..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Apri file..." - -msgid "Open audio &CD..." -msgstr "Apri un &CD audio…" - -msgid "&Cover Manager" -msgstr "Gestione &copertine" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "Modalità ca&suale" - -msgid "&Repeat mode" -msgstr "Modalità &ripetizione" - -msgid "Remove from playlist" -msgstr "Rimuovi dalla playlist" - -msgid "&Equalizer" -msgstr "&Equalizzatore" - -msgid "&Transcode Music" -msgstr "&Converti musica" - -msgid "Add &folder..." -msgstr "Aggiungi &cartella..." - -msgid "&Jump to the currently playing track" -msgstr "&Vai alla traccia attualmente in esecuzione" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Nuova playlist" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Salva &playlist..." - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Carica playlist..." - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "&Salva tutte le playlist..." - -msgid "Go to next playlist tab" -msgstr "Vai alla scheda della playlist successiva" - -msgid "Go to previous playlist tab" -msgstr "Vai alla scheda della playlist precedente" - -msgid "&Update changed collection folders" -msgstr "&Aggiorna le cartelle modificate della raccolta" - -msgid "About &Qt" -msgstr "Informazioni su &Qt" - -msgid "&Mute" -msgstr "&Silenzia" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Esegui una nuova scansione della raccolta" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Completa automaticamente i tag..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Attiva/disattiova scrobbling" - -msgid "Remove &duplicates from playlist" -msgstr "Rimuovi &duplicati dalla playlist" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Rimuovi tracce &non disponibili dalla playlist" - -msgid "Add file(s) to transcoder" -msgstr "Aggiungi file al convertitore" - -msgid "Add file to transcoder" -msgstr "Aggiungi file al convertitore" - -msgid "Add stream..." -msgstr "Aggiungi flusso..." - -msgid "Show sidebar" -msgstr "Visualizza barra laterale" - -msgid "Import data from last.fm..." -msgstr "Importa dati da last.fm..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Musica" - -msgid "P&laylist" -msgstr "" - -msgid "Help" -msgstr "Aiuto" - -msgid "&Tools" -msgstr "S&trumenti" - -msgid "Collection advanced grouping" -msgstr "Raggruppamento avanzato della raccolta" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Puoi modificare il modo in cui sono organizzati i brani nella raccolta." - -msgid "Group Collection by..." -msgstr "Raggruppa raccolta per..." - -msgid "Second level" -msgstr "Secondo livello" - -msgid "Third level" -msgstr "Terzo livello" - -msgid "Separate albums by grouping tag" -msgstr "Separa gli album raggruppando i tag" - -msgid "Collection Filter" -msgstr "Filtro raccolta" - -msgid "Entire collection" -msgstr "Raccolta completa" - -msgid "Added today" -msgstr "Aggiunti oggi" - -msgid "Added this week" -msgstr "Aggiunti questa settimana" - -msgid "Added within three months" -msgstr "Aggiunti negli ultimi tre mesi" - -msgid "Added this year" -msgstr "Aggiunti quest'anno" - -msgid "Added this month" -msgstr "Aggiunti questo mese" - -msgid "Save current grouping" -msgstr "Salva raggruppamento attuale" - -msgid "Manage saved groupings" -msgstr "Gestisci raggruppamenti salvati" - -msgid "Enter search terms here" -msgstr "Inserisci qui i termini di ricerca" - -msgid "Form" -msgstr "Modulo" - -msgid "Saved Grouping Manager" -msgstr "Gestione raggruppamenti salvati" - -msgid "Remove" -msgstr "Rimuovi" - -msgid "Ctrl+Up" -msgstr "Ctrl+Sù" - -msgid "File paths" -msgstr "Percorsi file" - -msgid "This can be changed later through the preferences" -msgstr "Può essere modificata successivamente tramite le preferenze" - -msgid "Remember my choice" -msgstr "Ricorda la mia scelta" - -msgid "Stop after each track" -msgstr "Ferma dopo ogni traccia" - -msgid "Repeat" -msgstr "Ripeti" - -msgid "Shuffle" -msgstr "Mescola" - -msgid "Dynamic mode is on" -msgstr "La modalità dinamica è attiva" - -msgid "New tracks will be added automatically." -msgstr "Le nuove tracce verranno aggiunte automaticamente." - -msgid "Expand" -msgstr "Espandi" - -msgid "Repopulate" -msgstr "Ripopola" - -msgid "Turn off" -msgstr "Disabilita" - -msgid "QueueView" -msgstr "Vista coda" - -msgid "Move down" -msgstr "Sposta in basso" - -msgid "Move up" -msgstr "Sposta in alto" - -msgid "Ctrl+Down" -msgstr "Ctrl+Giù" - -msgid "Search mode" -msgstr "Modalità ricerca" - -msgid "Match every search term (AND)" -msgstr "Cerca corrispondenza di ogni termine di ricerca (E)" - -msgid "Match one or more search terms (OR)" -msgstr "Cerca corrispondenza di uno o più termini di ricerca (O)" - -msgid "Include all songs" -msgstr "Includi tutte i brani" - -msgid "Sorting" -msgstr "Ordinamento" - -msgid "Put songs in a random order" -msgstr "Ordina i brani in ordine casuale" - -msgid "Sort songs by" -msgstr "Ordina i brani per" - -msgid "Limits" -msgstr "Limiti" - -msgid "Show all the songs" -msgstr "Visualizza tutte i brani" - -msgid "Only show the first" -msgstr "Visualizza solo il primo" - -msgid " songs" -msgstr " brani" - -msgid "Preview" -msgstr "Anteprima" - -msgid "and" -msgstr "e" - -msgid "ago" -msgstr "fa" - -msgid "New smart playlist" -msgstr "Nuova playlist intelligente" - -msgid "Edit smart playlist" -msgstr "Modifica playlist intelligente" - -msgid "Use dynamic mode" -msgstr "Usa modalità dinamica" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "In modalità dinamica verranno scelti nuovi brani e aggiunti alla playlist ogni volta che un brano finisce." - -msgid "Export covers" -msgstr "Esporta copertine" - -msgid "Output" -msgstr "Uscita" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Digita un nome file per le copertine esportate (nessuna estensione):" - -msgid "Export downloaded covers" -msgstr "Esporta copertine scaricate" - -msgid "Export embedded covers" -msgstr "Esporta copertine integrate" - -msgid "Existing covers" -msgstr "Copertine esistenti" - -msgid "Do not overwrite" -msgstr "Non sovrascrivere" - -msgid "O&verwrite all" -msgstr "So&vrascrivi tutto" - -msgid "Overwrite s&maller ones only" -msgstr "Sovrascrivi solamente i più &piccoli" - -msgid "Size" -msgstr "Dimensioni" - -msgid "Scale size" -msgstr "Dimensione scala" - -msgid "Size:" -msgstr "Dimensioni:" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "Gestione copertine" - -msgid "Fetch automatically" -msgstr "Recupera automaticamente" - -msgid "Load" -msgstr "Carica" - -msgid "Add to playlist" -msgstr "Aggiungi alla playlist" - -msgid "View" -msgstr "Visualizza" - -msgid "Total albums:" -msgstr "Album totali:" - -msgid "Without cover:" -msgstr "Senza copertina:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Recupera copertine mancanti" - -msgid "Export Covers" -msgstr "Esporta copertine" - -msgid "Fetch completed" -msgstr "Recupero completato" - -msgid "Load cover from URL" -msgstr "Carica copertina da URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Inserisci una URL per scaricare una copertina da Internet:" - -msgid "Settings" -msgstr "Impostazioni" - -msgid "Behavior" -msgstr "Comportamento" - -msgid "Show system tray icon" -msgstr "Visualizza l'icona nella barra di notifica" - -msgid "Keep running in the background when the window is closed" -msgstr "Quando la finestra è chiusa mantieni l'esecuzione sullo sfondo" - -msgid "Show song progress on system tray icon" -msgstr "Visualizza avanzamento del brano nell'icona della barra applicazioni" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Riprendi la riproduzione all'avvio" - -msgid "Show playing widget" -msgstr "Visualizza il widget di riproduzione" - -msgid "On startup" -msgstr "All'avvio" - -msgid "Remember from &last time" -msgstr "Ricorda &l'ultima sessione" - -msgid "Show the main window" -msgstr "Visualizza finestra principale" - -msgid "Hide the main window" -msgstr "Nascondi la finestra principale" - -msgid "Show the main window maximized" -msgstr "Visualizza finestra principale massimizzata" - -msgid "Show the main window minimized" -msgstr "Visualizza finestra principale ridotta a icona" - -msgid "Language" -msgstr "Lingua" - -msgid "Use the system default" -msgstr "Usa valori predefiniti di sistema" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Se modifichi la lingua dell'interfaccia per applicare le modifiche dovrai riavviare Strawberry ." - -msgid "Using the menu to add a song will..." -msgstr "L'uso del menu per aggiungere un brano..." - -msgid "Never start playing" -msgstr "Non iniziare mai la riproduzione" - -msgid "Play if there is nothing already playing" -msgstr "Riproduci se non c'è altro in riproduzione" - -msgid "Always start playing" -msgstr "Inizia sempre la riproduzione" - -msgid "Pressing \"Previous\" in player will..." -msgstr "La pressione di \"Precedente\" nel lettore..." - -msgid "Jump to previous song right away" -msgstr "Vai subito al brano precedente" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Riavvia il brano, poi salta al precedente se premuto ancora" - -msgid "Double clicking a song will..." -msgstr "Con un doppio clic su un brano..." - -msgid "Append to the playlist" -msgstr "Aggiungi alla playlist" - -msgid "Replace the playlist" -msgstr "Sostituisci la playlist" - -msgid "Add to the queue" -msgstr "Aggiungi alla coda" - -msgid "Double clicking a song in the playlist will..." -msgstr "Il doppio clic in un brano nella playlist..." - -msgid "Change the currently playing song" -msgstr "Modifica il brano attualmente in riproduzione" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Posizionamento usando una scorciatoia da tastiera o la rotella del mouse" - -msgid "Time step" -msgstr "Intervallo di tempo" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Queste cartelle saranno analizzate alla ricerca di musica per creare la raccolta" - -msgid "Add new folder..." -msgstr "Aggiungi nuova cartella..." - -msgid "Remove folder" -msgstr "Rimuovi cartella" - -msgid "Automatic updating" -msgstr "Aggiornamento automatico" - -msgid "Update the collection when Strawberry starts" -msgstr "Aggiorna la raccolta all'avvio di Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Monitora cambiamenti raccolta" - -msgid "Song fingerprinting and tracking" -msgstr "Impronta digitale e tracciamento brani" - -msgid "Mark disappeared songs unavailable" -msgstr "Segna i brani scomparsi come non disponibili" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "Fai scadere i brani non disponibili dopo" - -msgid "days" -msgstr "giorni" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Nomi file copertina preferiti (separati da virgole)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Quando cercherà la copertina di un album, Strawberry analizzerà prima le immagini che contengono una queste parole nel nome del file.\n" -"Se non ci saranno corrispondenze, userà l'immagine più grande che si trova nella cartella." - -msgid "Automatically open single categories in the collection tree" -msgstr "Apri automaticamente categorie singole nella struttura raccolta" - -msgid "Show dividers" -msgstr "Visualizza separatori" - -msgid "Show album cover art in collection" -msgstr "Visualizza copertina album nella collezione" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Cache pixmap copertina album" - -msgid "Enable Disk Cache" -msgstr "Abilita cache disco" - -msgid "Disk Cache Size" -msgstr "Dimensioni cache disco" - -msgid "Current disk cache in use:" -msgstr "Cache del disco attualmente in uso:" - -msgid "Clear Disk Cache" -msgstr "Svuota cache disco" - -msgid "Song playcounts and ratings" -msgstr "Numero riproduzioni e valutazioni dei brani" - -msgid "Save playcounts to song tags when possible" -msgstr "Salva numeri riproduzioni nei tag brani quando possibile" - -msgid "Save ratings to song tags when possible" -msgstr "Salva valutazioni nei tag dei brani quando possibile" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Sovrascrivi il numero di riproduzioni nel database quando i brani vengono riletti dal disco" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Sovrascrivi la valutazione nel database quando i brani vengono riletti dal disco" - -msgid "Save playcounts and ratings to files now" -msgstr "Salva numero riproduzioni e valutazioni file" - -msgid "Enable delete files in the right click context menu" -msgstr "Abilita l'eliminazione file nel menu contestuale tasto destro" - -msgid "Backend" -msgstr "Sistema" - -msgid "Audio output" -msgstr "Uscita audio" - -msgid "Engine" -msgstr "Motore" - -msgid "ALSA plugin:" -msgstr "Plugin ALSA:" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "Opzioni" - -msgid "Enable volume control" -msgstr "Abilita controllo volume" - -msgid "Upmix / downmix to" -msgstr "Upmix / downmix in" - -msgid "channels" -msgstr "canali" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "Migliorare l'ascolto in cuffia di registrazioni audio stereo (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "Abilita HTTP/2 per lo streaming" - -msgid "Use strict SSL mode" -msgstr "Usa modalità SSL rigorosa" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Durata buffer" - -msgid "High watermark" -msgstr "Filigrana grande" - -msgid "Low watermark" -msgstr "Filigrana bassa" - -msgid "Defaults" -msgstr "Predefiniti" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "Guadagno di riproduzione" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Usa i metadati del guadagno di riproduzione se disponibili" - -msgid "Replay Gain mode" -msgstr "Modalità Guadagno di riproduzione" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (volume uguale per tutte le tracce)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (volume ideale per tutte le tracce)" - -msgid "Apply compression to prevent clipping" -msgstr "Applica la compressione per evitare il fruscio" - -msgid "Fallback-gain" -msgstr "Guadagno fallback" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Dissolvenza" - -msgid "Fade out when stopping a track" -msgstr "Dissolvenza all'interruzione di una traccia" - -msgid "Cross-fade when changing tracks manually" -msgstr "Dissolvenza incrociata al cambio manuale di traccia" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Dissolvenza incrociata al cambio automatico di traccia" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Ad eccezione delle tracce dello stesso album o dello stesso CUE sheet" - -msgid "Fading duration" -msgstr "Durata dissolvenza" - -msgid "Fade out on pause / fade in on resume" -msgstr "Dissolvenza in uscita in pausa / dissolvenza in entrata al ripristino" - -msgid "Add song artist tag" -msgstr "Aggiungi tag artista al brano" - -msgid "Add song album tag" -msgstr "Aggiungi tag album al brano" - -msgid "Add song title tag" -msgstr "Aggiungi tag titolo al brano" - -msgid "Add song albumartist tag" -msgstr "Aggiungi tag artista album al brano" - -msgid "Add song year tag" -msgstr "Aggiungi tag anno al brano" - -msgid "Add song composer tag" -msgstr "Aggiungi tag compositore al brano" - -msgid "Add song performer tag" -msgstr "Aggiungi tag del musicista del brano" - -msgid "Add song grouping tag" -msgstr "Aggiungi tag del gruppo del brano" - -msgid "Add song disc tag" -msgstr "Aggiungi tag disco al brano" - -msgid "Add song track tag" -msgstr "Aggiungi tag traccia al brano" - -msgid "Add song genre tag" -msgstr "Aggiungi tag genere al brano" - -msgid "Add song length tag" -msgstr "Aggiungi tag durata al brano" - -msgid "Add song play count" -msgstr "Aggiungi tag numero riproduzioni al brano" - -msgid "Add song skip count" -msgstr "Aggiungi numero salti al brano" - -msgid "Add a new line if supported by the notification type" -msgstr "Aggiungi una nuova riga se supportato dal tipo di notifica" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Aggiungi nome file del brano" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Aggiungi URL brano" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Aggiungi valutazione brano" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "Aggiungi tag anno originale del brano" - -msgid "Custom text settings" -msgstr "Impostazioni testo personalizzato" - -msgid "Summary" -msgstr "Riepilogo" - -msgid "Enable Items" -msgstr "Abilita elementi" - -msgid "Technical Data" -msgstr "Dati tecnici" - -msgid "Song Lyrics" -msgstr "Testo brano" - -msgid "Automatically search for album cover" -msgstr "Cerca automaticamente copertina album" - -msgid "Font for headline" -msgstr "Carattere per il titolo" - -msgid "Font" -msgstr "Carattere" - -msgid "Font size" -msgstr "Dimensione carattere" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "Carattere per dati e testi" - -msgid "Use alternating row colors" -msgstr "Usa colori alternati per le righe" - -msgid "Show bars on the currently playing track" -msgstr "Visualizza barre sulla traccia attualmente in riproduzione" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Visualizza un'animazione luminosa sulla traccia attualmente in riproduzione" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Continua con il prossimo elemento della playlist se un brano non è disponibile" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Disabilita i brani non disponibili nelle playlist durante la riproduzione" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Disabilita i brani non disponibili nelle playlist all'avvio" - -msgid "Automatically select current playing track" -msgstr "Seleziona automaticamente la traccia che è in riproduzione" - -msgid "Enable playlist toolbar" -msgstr "Abilita barra strumenti playlist" - -msgid "Enable playlist clear button" -msgstr "Abilita pulsante cancellazione playlist" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Ordina automaticamente playlist durante l'inserimento brani" - -msgid "When saving a playlist, file paths should be" -msgstr "Quando salvi una playlist, i percorsi dei file dovrebbero essere" - -msgid "A&utomatic" -msgstr "A&utomatico" - -msgid "Absolu&te" -msgstr "Assolu&to" - -msgid "Re&lative" -msgstr "Re&lativo" - -msgid "As&k when saving" -msgstr "&Chiedi durante il salvataggio" - -msgid "Metadata" -msgstr "Metadati" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Se attivata, il clic su un brano selezionato nella vista della playlist ti consentirà di modificare direttamente il valore di un tag" - -msgid "Enable song metadata inline edition with click" -msgstr "Abilita la modifica in linea dei metadati di un brano con un clic" - -msgid "Write metadata when saving playlists" -msgstr "Quando si salvano le playlist scrivi i metadati" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Abilita" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "I brani vengono inviate per lo scrobble se hanno dei metadata validi, durano più di 30 secondi e sono state riprodotti per almeno la metà della loro lunghezza totale o per 4 minuti (qualsiasi dei quali avvenga prima)" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Lavora in modalità offline (solo scrobble in cache)" - -msgid "Show scrobble button" -msgstr "Visualizza il pulsante di scrobble" - -msgid "Show love button" -msgstr "Visualizza il pulsante love" - -msgid "Submit scrobbles every" -msgstr "Invia gli scrobble ogni" - -msgid " seconds" -msgstr " secondi" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(questo è il ritardo tra il momento in cui un brano viene scrobbled e il momento in cui gli scrobble vengono inviati al server. L'impostazione del tempo su 0 secondi invierà immediatamente gli scrobble)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Preferisci l'artista dell'album nell'invio degli scrobble" - -msgid "Show dialog for errors" -msgstr "Visualizza finestra di dialogo per gli errori" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Abilita scrobbling per le seguenti sorgenti:" - -msgid "Local file" -msgstr "File locale" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Flusso" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Accedi" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Token utente:" - -msgid "Covers" -msgstr "Copertine" - -msgid "Cover providers" -msgstr "Fornitori copertine" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Scegli i fornitori che vuoi usare durante la ricerca di copertine." - -msgid "Authentication" -msgstr "Autenticazione" - -msgid "Album cover types" -msgstr "Tipo copertina album" - -msgid "Saving album covers" -msgstr "Salvataggio copertine album" - -msgid "Save album covers in album directory" -msgstr "Salva copertine album nella cartella album" - -msgid "Save album covers in cache directory" -msgstr "Salva le copertine degli album nella cartella della cache" - -msgid "Save album covers as embedded cover" -msgstr "Salva le copertine degli album come copertina incorporata" - -msgid "Filename:" -msgstr "Nome file:" - -msgid "Pattern" -msgstr "Modello" - -msgid "Random" -msgstr "Casuale" - -msgid "Overwrite existing file" -msgstr "Sovrascrivi file esistente" - -msgid "Lowercase filename" -msgstr "Nome file in minuscolo" - -msgid "Replace spaces with dashes" -msgstr "Sostituisci spazi con trattini" - -msgid "Lyrics" -msgstr "Testi" - -msgid "Lyrics providers" -msgstr "Fornitori di testi" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Scegli i fornitori che vuoi usare durante la ricerca dei testi." - -msgid "Network Proxy" -msgstr "Proxy di rete" - -msgid "&Use the system proxy settings" -msgstr "&Usa le impostazioni proxy di sistema" - -msgid "Direct internet connection" -msgstr "Connessione diretta a Internet" - -msgid "&Manual proxy configuration" -msgstr "Configurazione proxy &manuale" - -msgid "HTTP proxy" -msgstr "Proxy HTTP" - -msgid "SOCKS proxy" -msgstr "Proxy SOCKS" - -msgid "Port" -msgstr "Porta" - -msgid "Use authentication" -msgstr "Usa autenticazione" - -msgid "Username" -msgstr "Nome utente" - -msgid "Password" -msgstr "" - -msgid "Use proxy settings for streaming" -msgstr "Usa impostazioni di proxy per lo streaming" - -msgid "Appearance" -msgstr "Aspetto" - -msgid "Style" -msgstr "Stile" - -msgid "Use system theme icons" -msgstr "Usa icone del tema di sistema" - -msgid "Settings require restart." -msgstr "Le impostazioni richiedono il riavvio." - -msgid "Tabbar colors" -msgstr "Colori scheda" - -msgid "&Use the system default color" -msgstr "&Usa colori predefiniti di sistema" - -msgid "Use custom color" -msgstr "Usa colore personalizzato" - -msgid "Use gradient background" -msgstr "Usa sfondo sfumato" - -msgid "Select tabbar color:" -msgstr "Seleziona colore scheda:" - -msgid "Background image" -msgstr "Immagine di sfondo" - -msgid "Default bac&kground image" -msgstr "Immagine di sf&ondo predefinita" - -msgid "&No background image" -msgstr "&Nessuna immagine di sfondo" - -msgid "The album cover of the currently playing song" -msgstr "La copertina dell'album del brano attualmente in riproduzione" - -msgid "Albu&m cover" -msgstr "Copertina albu&m" - -msgid "Custom image:" -msgstr "Immagine personalizzata:" - -msgid "Browse..." -msgstr "Sfoglia..." - -msgid "Position" -msgstr "Posizione" - -msgid "Upper Left" -msgstr "Superiore sinistro" - -msgid "Upper Right" -msgstr "Superiore destro" - -msgid "Middle" -msgstr "Al centro" - -msgid "Bottom Left" -msgstr "In basso a sinistra" - -msgid "Bottom Right" -msgstr "In basso a destra" - -msgid "Max cover size" -msgstr "Dimensione massima copertina" - -msgid "Stretch image to fill playlist" -msgstr "Allarga l'immagine per riempire la playlist" - -msgid "Keep aspect ratio" -msgstr "Mantieni proporzioni" - -msgid "Do not cut image" -msgstr "Non ritagliare l'immagine" - -msgid "Blur amount" -msgstr "Sfocatura" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Opacità" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "Dimensioni icona" - -msgid "Playlist buttons" -msgstr "Pulsanti playlist" - -msgid "Tabbar large mode" -msgstr "Modalità barre schede grandi" - -msgid "Play control buttons" -msgstr "Pulsanti controllo riproduzione" - -msgid "Configure buttons" -msgstr "Configura pulsanti" - -msgid "Files, playlists and queue buttons" -msgstr "Pulsanti file, playlist e coda" - -msgid "Tabbar small mode" -msgstr "Modalità barra schede piccola" - -msgid "Playlist playing song color" -msgstr "Colore brano in riproduzione della playlist" - -msgid "System highlight color" -msgstr "Colore evidenziazione sistema" - -msgid "Custom color" -msgstr "Colore personalizzato" - -msgid "Select playlist playing song color:" -msgstr "Seleziona colore brano playlist in riproduzione:" - -msgid "Notifications" -msgstr "Notifiche" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry può visualizzare un messaggio al cambiamento di traccia." - -msgid "Notification type" -msgstr "Tipo di notifica" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Disabilitata" - -msgid "Show a &native desktop notification" -msgstr "Visualizza una notifica del desktop &nativa" - -msgid "Show a pretty OSD" -msgstr "Visualizza un OSD gradevole" - -msgid "Show a popup fro&m the system tray" -msgstr "Visualizza una notifica d&alla barra notifiche" - -msgid "General settings" -msgstr "Impostazioni generali" - -msgid "Popup duration" -msgstr "Durata notifica a comparsa" - -msgid "Disable duration" -msgstr "Disabilita durata" - -msgid "Show a notification when I change the volume" -msgstr "Visualizza una notifica quando regolo il volume" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Visualizza una notifica quando cambio la modalità di ripetizione/mescolamento" - -msgid "Show a notification when I pause playback" -msgstr "Visualizza una notifica quando sospendo la riproduzione" - -msgid "Show a notification when I resume playback" -msgstr "Visualizza una notifica quando riparte la riproduzione" - -msgid "Include album art in the notification" -msgstr "Includi copertina nella notifica" - -msgid "Custom message settings" -msgstr "Impostazioni messaggio personalizzato" - -msgid "Use a custom message for notifications" -msgstr "Usa un messaggio personalizzato per le notifiche " - -msgid "Body" -msgstr "Corpo" - -msgid "Pretty OSD options" -msgstr "Opzioni OSD gradevole" - -msgid "Background color" -msgstr "Colore di fondo" - -msgid "Text options" -msgstr "Opzioni testo" - -msgid "Choose font..." -msgstr "Scegli carattere..." - -msgid "Choose color..." -msgstr "Scegli colore..." - -msgid "Background opacity" -msgstr "Opacità sfondo" - -msgid "Basic Blue" -msgstr "Blu di base" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "Personalizzato..." - -msgid "Enable fading" -msgstr "Abilita dissolvenza" - -msgid "Equalizer" -msgstr "Equalizzatore" - -msgid "Preset:" -msgstr "Preimpostazione:" - -msgid "Enable equalizer" -msgstr "Abilita equalizzatore" - -msgid "Enable stereo balancer" -msgstr "Abilita bilanciatore stereo" - -msgid "Left" -msgstr "Sinistra" - -msgid "Balance" -msgstr "Bilanciamento" - -msgid "Right" -msgstr "Destra" - -msgid "About" -msgstr "Info programma" - -msgid "Strawberry Error" -msgstr "Errore di Strawberry" - -msgid "Console" -msgstr "" - -msgid "Run" -msgstr "Esegui" - -msgid "Edit track information" -msgstr "Modifica informazioni traccia" - -msgid "Date created" -msgstr "Data modifica" - -msgid "Art Automatic" -msgstr "Arte automatica" - -msgid "Date modified" -msgstr "Data creazione" - -msgid "Art Embedded" -msgstr "Copertina incorporata" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Ultima riproduzione" - -msgid "Play count" -msgstr "Contatore riproduzione" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Bitrate" - -msgid "Skip count" -msgstr "Salta il conteggio" - -msgid "Path" -msgstr "Percorso" - -msgid "Filename" -msgstr "Nome file" - -msgid "Art Unset" -msgstr "Copertina non impostata" - -msgid "File size" -msgstr "Dimensione file" - -msgid "Art Manual" -msgstr "Arte manuale" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Azzera contatori riproduzione" - -msgid "Change art" -msgstr "Modifica copertina" - -msgid "Embedded cover" -msgstr "Copertina incorporata" - -msgid "Complete tags automatically" -msgstr "Completa automaticamente i tag" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "Tag" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Strumento di recupero dei tag" - -msgid "Sorry" -msgstr "Spiacente" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry non ha trovato risultati per questo file" - -msgid "Select best possible match" -msgstr "Seleziona migliori corrispondenze possibili" - -msgid "Add Stream" -msgstr "Aggiungi flusso" - -msgid "Enter the URL of a stream:" -msgstr "Inserisci URL del flusso:" - -msgid "Enter username and password" -msgstr "Inserisci nome utente e password" - -msgid "Import data from last.fm" -msgstr "Importa dati da last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Scegli i dati da importare da last.fm" - -msgid "Play counts" -msgstr "Numero riproduzioni" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Attenzione: i numeri delle riproduzioni e l'ultima riproduzione da last.fm sostituiranno completamente gli stessi dati per i brani abbinati. \n" -"I numeri delle riproduzioni sostituiranno i dati basati su artista e titolo del brano per gli stessi album! \n" -"Prima di iniziare ti suggeriamo di eseguire il backup del database." - -msgid "Go!" -msgstr "Vai!" - -msgid "Close" -msgstr "Chiudi" - -msgid "Cancel" -msgstr "Annulla" - -msgid "Message Dialog" -msgstr "Finestra di messaggio" - -msgid "Do not show this message again." -msgstr "Non visualizzare più questo messaggio." - -msgid "Select directory for saving playlists" -msgstr "Seleziona cartella salvataggio playlist" - -msgid "Type" -msgstr "Tipo" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Clic per passare dal tempo rimanente al tempo totale" - -msgid "You are not signed in." -msgstr "Non sei registrato." - -msgid "Sign out" -msgstr "Disconnetti" - -msgid "Signing in..." -msgstr "Registrazione..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Artisti" - -msgid "Albums" -msgstr "Album" - -msgid "Songs" -msgstr "Brani" - -msgid "Refresh catalogue" -msgstr "Aggiorna catalogo" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "artisti" - -msgid "albums" -msgstr "album" - -msgid "songs" -msgstr "brani" - -msgid "Organize Files" -msgstr "Organizza file" - -msgid "Destination" -msgstr "Destinazione" - -msgid "After copying..." -msgstr "Dopo la copia..." - -msgid "Keep the original files" -msgstr "Mantieni i file originali" - -msgid "Delete the original files" -msgstr "Elimina i file originali" - -msgid "Naming options" -msgstr "Opzioni assegnazione nomi" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Le variabili iniziano con %, ad esempio: %artist %album %title

\n\n" -"

Se racchiudi sezioni di testo che contengono una variabile tra parentesi graffe, queste sezioni saranno nascoste se la variabile non contiene alcun valore.

" - -msgid "Insert..." -msgstr "Inserisci..." - -msgid "Remove problematic characters from filenames" -msgstr "Rimuovi dai nomi dei file i caratteri problematici" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Limita i caratteri a quelli permessi dal file system FAT" - -msgid "Restrict characters to ASCII" -msgstr "Limita i caratteri ad ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Consenti i caratteri ASCII estesi" - -msgid "Replace spaces with underscores" -msgstr "Sostituisci spazzi con trattini bassi" - -msgid "Overwrite existing files" -msgstr "Sovrascrivi file esistenti" - -msgid "Copy album cover artwork" -msgstr "Copia copertina album" - -msgid "Safely remove the device after copying" -msgstr "Rimuovi il dispositivo in sicurezza al termine della copia" - -msgid "Press a key" -msgstr "Premi un tasto" - -msgid "Global Shortcuts" -msgstr "Scorciatoie globali" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Usa le scorciatoie di Gnome (GSD) quando disponibili" - -msgid "Open..." -msgstr "Apri..." - -msgid "Use MATE shortcuts when available" -msgstr "Usa le scorciatoie MATE quando disponibili" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Usa le scorciatoie di KDE (KGlobalAccel) quando disponibili" - -msgid "Use X11 shortcuts when available" -msgstr "Usa le scorciatoie X11 quando disponibili" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Per usare le scorciatoie globali in Strawberry devi eseguire le preferenze di sistema e consentire a Strawberry di \"controllare il computer\"." - -msgid "Shortcut" -msgstr "Scorciatoia" - -msgctxt "Category label" -msgid "Action" -msgstr "Azione" - -msgid "&None" -msgstr "&Nessuna" - -msgid "&Default" -msgstr "&Predefinito" - -msgid "&Custom" -msgstr "&Personalizzata" - -msgid "Change shortcut..." -msgstr "Modifica scorciatoia..." - -msgid "Device Properties" -msgstr "Proprietà dispositivo" - -msgid "Icon" -msgstr "Icona" - -msgid "Hardware information" -msgstr "Informazioni hardware" - -msgid "Hardware information is only available while the device is connected." -msgstr "Le informazioni hardware sono disponibili solo quando il dispositivo è connesso." - -msgid "Information" -msgstr "Informazioni" - -msgid "Supported formats" -msgstr "Formati supportati" - -msgid "This device supports the following file formats:" -msgstr "Questo dispositivo usa i seguenti formati file:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry può convertire automaticamente la musica che copi nel dispositivo in un formato riproducibile." - -msgid "Do not convert any music" -msgstr "Non convertire nessuna musica" - -msgid "Convert any music that the device can't play" -msgstr "Converti qualsiasi musica che il dispositivo non può riprodurre" - -msgid "Convert all music" -msgstr "Converti tutta la musica" - -msgid "Preferred format" -msgstr "Formato preferito" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Il dispositivo deve essere collegato e aperto prima che Strawberry possa rilevare i formati supportati." - -msgid "Open device" -msgstr "Apri dispositivo" - -msgid "Querying device..." -msgstr "Interrogazione dispositivo..." - -msgid "File formats" -msgstr "Formati di file" - -msgid "Transcode Music" -msgstr "Converti musica" - -msgid "Files to transcode" -msgstr "File da convertire" - -msgid "Directory" -msgstr "Cartella" - -msgid "Add..." -msgstr "Aggiungi..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Aggiungi tutte le tracce da una cartella e da tutte le sue sottocartelle" - -msgid "Import..." -msgstr "Importa..." - -msgid "Output options" -msgstr "Opzioni destinazione" - -msgid "Audio format" -msgstr "Formato audio" - -msgid "Options..." -msgstr "Opzioni..." - -msgid "Alongside the originals" -msgstr "Insieme agli originali" - -msgid "Select..." -msgstr "Seleziona..." - -msgid "Progress" -msgstr "Avanzamento" - -msgid "Details..." -msgstr "Dettagli..." - -msgid "Transcoder Log" -msgstr "Registro eventi conversione" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "Profilo" - -msgid "Main profile (MAIN)" -msgstr "Profilo principale (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Profilo a bassa complessità (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Profilo con campionamento scalabile (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Profilo con predizione di lungo termine (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Usa modellazione temporale del rumore" - -msgid "Allow mid/side encoding" -msgstr "Consenti codifica mid/side" - -msgid "Block type" -msgstr "Tipo di blocco" - -msgid "Normal block type" -msgstr "Tipo di blocco normale" - -msgid "No short blocks" -msgstr "Nessun blocco corto" - -msgid "No long blocks" -msgstr "Nessun blocco lungo" - -msgid "Transcoding options" -msgstr "Opzioni di conversione" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Qualità" - -msgid "Fast" -msgstr "Veloce" - -msgid "Best" -msgstr "Migliore" - -msgid "Use bitrate management engine" -msgstr "Usa motore gestione bitrate" - -msgid "Target bitrate" -msgstr "Bitrate finale" - -msgid "Minimum bitrate" -msgstr "Bitrate minimo" - -msgid "disabled" -msgstr "disabilitata" - -msgid "Maximum bitrate" -msgstr "Bitrate massimo" - -msgid "automatic" -msgstr "automatica" - -msgid "Average bitrate" -msgstr "Bitrate medio" - -msgid "Encoding mode" -msgstr "Modalità codifica" - -msgid "Auto" -msgstr "Automatica" - -msgid "Ultra wide band (UWB)" -msgstr "Banda ultra larga (UWB)" - -msgid "Wide band (WB)" -msgstr "Banda larga (WB)" - -msgid "Narrow band (NB)" -msgstr "Banda stretta (NB)" - -msgid "Variable bit rate" -msgstr "Bitrate variabile" - -msgid "Voice activity detection" -msgstr "Rilevazione attività vocale" - -msgid "Discontinuous transmission" -msgstr "Trasmissione discontinua" - -msgid "Encoding complexity" -msgstr "Complessità codifica" - -msgid "Frames per buffer" -msgstr "Fotogrammi per buffer" - -msgid "Optimize for &quality" -msgstr "Ottimizza per la &qualità" - -msgid "Opti&mize for bitrate" -msgstr "Otti&mizza per il bitrate" - -msgid "Constant bitrate" -msgstr "Bitrate costante" - -msgid "Encoding engine quality" -msgstr "Qualità motore codifica" - -msgid "Standard" -msgstr "" - -msgid "High" -msgstr "Alto" - -msgid "Force mono encoding" -msgstr "Forza codifica mono" - -msgid "Transcoding" -msgstr "Conversione" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Queste impostazioni sono usate nella finestra \"Conversione musica\", e quando è necessario convertire musica prima di copiarla in un dispositivo." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "URL server" - -msgid "Authentication method:" -msgstr "Metodo autenticazione:" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Preferenze" - -msgid "Use HTTP/2 when possible" -msgstr "Usa HTTP/2 quando possibile" - -msgid "Verify server certificate" -msgstr "Verifica certificato server" - -msgid "Download album covers" -msgstr "Scarica copertine album" - -msgid "Server-side scrobbling" -msgstr "Scrobbling lato server" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "Elimina brani" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Il supporto Tidal non è ufficiale e per funzionare richiede un token API da un'applicazione registrata. \n" -"Non possiamo aiutarti a procurarteli." - -msgid "Use OAuth" -msgstr "Usa OAuth" - -msgid "Client ID" -msgstr "ID client" - -msgid "API Token" -msgstr "Token API" - -msgid "Audio quality" -msgstr "Qualità audio" - -msgid "Search delay" -msgstr "Ritardo ricerca" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Limite di ricerca artisti" - -msgid "Albums search limit" -msgstr "Limite di ricerca album" - -msgid "Songs search limit" -msgstr "Limite ricerca brani" - -msgid "Fetch entire albums when searching songs" -msgstr "Recupera gli album interi quando cerchi dei brani" - -msgid "Album cover size" -msgstr "Dimensione cover album" - -msgid "Stream URL method" -msgstr "Metodo per l'URL del flusso" - -msgid "Append explicit to album title for explicit albums" -msgstr "Aggiungi esplicito al titolo dell'album per gli album espliciti" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Il supporto Qobuz non è ufficiale e richiede per funzionare un ID app API e un segreto da un'applicazione registrata. \n" -"Non possiamo aiutarti a procurarteli." - -msgid "App ID" -msgstr "ID app" - -msgid "App Secret" -msgstr "Segreto app" - -msgid "Base64 encoded secret" -msgstr "Segreto codificato in base64" - -msgid "Moodbar" -msgstr "Barra umore" - -msgid "Show a moodbar in the track progress bar" -msgstr "Visualizza una barra dell'umore nella barra di avanzamento della traccia" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Salva i file .mood direttamente nelle cartelle brani" - -msgid "Enabled" -msgstr "Abilitato" - -msgid "Return to Strawberry" -msgstr "Torna a Strawberry" - -msgid "Success!" -msgstr "Completato!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Chiudi il browser e ritorna a Strawberry." - diff --git a/src/translations/ja_JP.po b/src/translations/ja_JP.po deleted file mode 100644 index 912ab423..00000000 --- a/src/translations/ja_JP.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: ja\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Japanese\n" -"Language: ja_JP\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "すべてのファイル (*)" - -msgid "Context" -msgstr "コンテキスト" - -msgid "Collection" -msgstr "ライブラリ" - -msgid "Queue" -msgstr "キュー" - -msgid "Playlists" -msgstr "プレイリスト" - -msgid "Smart playlists" -msgstr "スマートプレイリスト" - -msgid "Files" -msgstr "ファイル" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "デバイス" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "すべての曲を表示する" - -msgid "Show only duplicates" -msgstr "重複するものだけ表示" - -msgid "Show only untagged" -msgstr "タグのないものだけ表示" - -msgid "Configure collection..." -msgstr "ライブラリの設定..." - -msgid "Play" -msgstr "再生" - -msgid "Stop after this track" -msgstr "このトラック後に停止" - -msgid "Toggle queue status" -msgstr "キュー状態の切り替え" - -msgid "Queue selected tracks to play next" -msgstr "選択したトラックを次に再生する" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "曲を再スキャン中..." - -msgid "Copy URL(s)..." -msgstr "URLをコピー" - -msgid "Show in collection..." -msgstr "ライブラリーに表示..." - -msgid "Show in file browser..." -msgstr "ファイルブラウザーで表示..." - -msgid "Organize files..." -msgstr "ファイルを管理..." - -msgid "Copy to collection..." -msgstr "ライブラリへコピー..." - -msgid "Move to collection..." -msgstr "ライブラリへ移動..." - -msgid "Copy to device..." -msgstr "デバイスへコピー..." - -msgid "Delete from disk..." -msgstr "ディスクから削除..." - -msgid "Check for updates..." -msgstr "更新のチェック..." - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "あなたは、Rosetta で Strawberry を実行しています。 Rosetta での Strawberry の実行はサポートされておらず、問題があることが知られています。正しい CPU アーキテクチャの Strawberry を %1 からダウンロードする必要があります。" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry は無料のオープンソース ソフトウェアです。Strawberry を気に入ったらぜひこのプロジェクトへのご支援をご検討ください。スポンサーシップの詳細については、私たちの Web サイト %1 を参照してください。" - -msgid "Pause" -msgstr "一時停止" - -msgid "Dequeue track" -msgstr "トラックをキューから削除" - -msgid "Dequeue selected tracks" -msgstr "選択されたトラックをキューから削除する" - -msgid "Queue track" -msgstr "トラックをキューに追加" - -msgid "Queue selected tracks" -msgstr "選択されたトラックをキューに追加" - -msgid "Queue to play next" -msgstr "次に再生する" - -msgid "Unskip track" -msgstr "トラックをスキップしない" - -msgid "Unskip selected tracks" -msgstr "選択したトラックをスキップしない" - -msgid "Skip track" -msgstr "トラックをスキップする" - -msgid "Skip selected tracks" -msgstr "選択したトラックをスキップする" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "%1 を「%2」に設定します..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "タグ「%1」を編集..." - -msgid "Add to another playlist" -msgstr "別のプレイリストに追加" - -msgid "New playlist" -msgstr "新しいプレイリスト" - -msgid "Add file" -msgstr "ファイルを追加" - -msgid "Music" -msgstr "ミュージック" - -msgid "Add folder" -msgstr "フォルダーを追加" - -msgid "Clear playlist" -msgstr "プレイリストをクリア" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "プレイリストに %1 曲があり、大きすぎて元に戻せません。プレイリストをクリアしてもよろしいですか?" - -msgid "Error" -msgstr "エラー" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "デバイスへのコピーに適切な曲が選択されていません" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "更新したこのバージョンの Strawberry は、次の新機能によりライブラリ全体の再スキャンが必要です。" - -msgid "Would you like to run a full rescan right now?" -msgstr "全体の再スキャンを今すぐ実行しますか?" - -msgid "Collection rescan notice" -msgstr "ライブラリー再スキャン通知" - -msgid "Usage" -msgstr "使用量" - -msgid "options" -msgstr "オプション" - -msgid "URL(s)" -msgstr "URL" - -msgid "Player options" -msgstr "プレーヤーのオプション" - -msgid "Start the playlist currently playing" -msgstr "現在再生中のプレイリストを開始する" - -msgid "Play if stopped, pause if playing" -msgstr "停止中は再生し、再生中は一時停止します" - -msgid "Pause playback" -msgstr "再生を一時停止します" - -msgid "Stop playback" -msgstr "再生の停止" - -msgid "Stop playback after current track" -msgstr "現在のトラック後に停止" - -msgid "Skip backwards in playlist" -msgstr "プレイリストで後ろにスキップ" - -msgid "Skip forwards in playlist" -msgstr "プレイリストで前にスキップ" - -msgid "Set the volume to percent" -msgstr "音量を %に設定しました" - -msgid "Increase the volume by 4 percent" -msgstr "音量を 4% 上げる" - -msgid "Decrease the volume by 4 percent" -msgstr "音量を 4% 下げる" - -msgid "Increase the volume by percent" -msgstr "音量を % 上げる" - -msgid "Decrease the volume by percent" -msgstr "音量を % 下げる" - -msgid "Seek the currently playing track to an absolute position" -msgstr "現在再生中のトラックの絶対的な位置へシークする" - -msgid "Seek the currently playing track by a relative amount" -msgstr "現在再生中のトラックを相対値でシークする" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "トラックを再開 (開始8秒以内なら前のトラックを再生)" - -msgid "Playlist options" -msgstr "プレイリストのオプション" - -msgid "Create a new playlist with files" -msgstr "ファイルを含む新しいプレイリストを作成" - -msgid "Append files/URLs to the playlist" -msgstr "ファイル・URL をプレイリストに追加する" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "ファイル・URL を読み込んで、現在のプレイリストを置き換えます" - -msgid "Play the th track in the playlist" -msgstr "プレイリストの 番目のトラックを再生する" - -msgid "Play given playlist" -msgstr "プレイリストを再生する" - -msgid "Other options" -msgstr "その他のオプション" - -msgid "Display the on-screen-display" -msgstr "OSD を表示する" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "pretty OSD 表示の切り替え" - -msgid "Change the language" -msgstr "言語の変更" - -msgid "Resize the window" -msgstr "このウィンドウの大きさを変える" - -msgid "Equivalent to --log-levels *:1" -msgstr "--log-levels *:1 と同じ" - -msgid "Equivalent to --log-levels *:3" -msgstr "--log-levels *:3 と同じ" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "コンマ区切りの クラス:レベル のリスト、レベルは 0-3" - -msgid "Print out version information" -msgstr "バージョン情報を出力" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "失敗した SQL クエリ: %1" - -msgid "Integrity check" -msgstr "整合性の検査" - -msgid "Database corruption detected." -msgstr "データベースの不整合が検出されました。" - -msgid "Backing up database" -msgstr "データベースをバックアップ中" - -msgid "Deleting files" -msgstr "ファイルの削除中" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "ディレクトリ %1 の作成に失敗しました。" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "宛先ファイル %1 は存在しますが上書きが許可されていません。" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "宛先ファイル %1 は存在しますが上書きが許可されていません" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "ファイル %1 を %2 にコピーできません。" - -msgid "Unknown" -msgstr "不明" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "" - -msgid "Preload function was not set for blocking operation." -msgstr "ブロッキング操作にプリロード機能が設定されていません" - -#, qt-format -msgid "File %1 does not exist." -msgstr "ファイル %1 は存在しません。" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "ファイル %1 は正常な音声ファイルではありません" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "CD の再生は GStreamer エンジンでのみ使用できます" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "ファイル %1 を読み取れません: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "キューファイル %1 を読み取れません: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "プレイリストファイル %1 を読み取れません: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "プレイリスト" - -msgid "1 day" -msgstr "1 日" - -#, qt-format -msgid "%1 days" -msgstr "%1 日" - -msgid "Today" -msgstr "今日" - -msgid "Yesterday" -msgstr "昨日" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 日前" - -msgid "Tomorrow" -msgstr "明日" - -#, qt-format -msgid "In %1 days" -msgstr "%1 日以内" - -msgid "Next week" -msgstr "次週" - -#, qt-format -msgid "In %1 weeks" -msgstr "%1 週以内" - -msgid "Show in file browser" -msgstr "ファイルブラウザーで表示" - -msgid "Too many songs selected." -msgstr "選択した曲が多すぎます。" - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "%2 個の異なるディレクトリにある %1 曲が選択されていますが、それらをすべて開いてもよろしいですか?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "不明なエラー" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "アーティスト" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "評価" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "複数の検索語を「%1」(デフォルト) および「%2」と組み合わせたり、括弧でグループ化したりすることもできます。" - -msgid "Available fields" -msgstr "利用可能なフィールド" - -msgid "Framerate" -msgstr "フレームレート" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "低 (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "中 (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "高 (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "最高 (%1 fps)" - -msgid "No analyzer" -msgstr "アナライザーなし" - -msgid "Block analyzer" -msgstr "ブロック表示" - -msgid "Boom analyzer" -msgstr "ブームアナライザー" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "プリアンプ" - -msgid "Custom" -msgstr "カスタム" - -msgid "Classical" -msgstr "クラシック" - -msgid "Club" -msgstr "クラブ" - -msgid "Dance" -msgstr "ダンス" - -msgid "Full Bass" -msgstr "" - -msgid "Full Treble" -msgstr "" - -msgid "Full Bass + Treble" -msgstr "" - -msgid "Laptop/Headphones" -msgstr "ノートパソコン・ヘッドフォン" - -msgid "Large Hall" -msgstr "広間" - -msgid "Live" -msgstr "ライブ" - -msgid "Party" -msgstr "パーティー" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "レゲエ" - -msgid "Rock" -msgstr "ロック" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "テクノ" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "プリセットの保存" - -msgid "Name" -msgstr "名前" - -msgid "Delete preset" -msgstr "プリセットの削除" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "プリセット「%1」を削除してもよろしいですか?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "ファイルタイプ" - -msgid "Length" -msgstr "長さ" - -msgid "Samplerate" -msgstr "サンプルレート" - -msgid "Bit depth" -msgstr "ビット深度" - -msgid "Bitrate" -msgstr "ビットレート" - -msgid "EBU R 128 Integrated Loudness" -msgstr "EBU R 128 統合ラウドネス" - -msgid "EBU R 128 Loudness Range" -msgstr "EBU R 128 ラウドネスレンジ" - -msgid "Show album cover" -msgstr "アルバムカバーを表示" - -msgid "Show song technical data" -msgstr "曲のテクニカルデータを表示" - -msgid "Show song lyrics" -msgstr "歌詞を表示" - -msgid "Automatically search for song lyrics" -msgstr "歌詞の自動検索" - -msgid "No song playing" -msgstr "曲が再生されていません" - -#, qt-format -msgid "%1 song" -msgstr "%1 曲" - -#, qt-format -msgid "%1 songs" -msgstr "%1 曲" - -#, qt-format -msgid "%1 artist" -msgstr "%1 アーティスト" - -#, qt-format -msgid "%1 artists" -msgstr "%1 アーティスト" - -#, qt-format -msgid "%1 album" -msgstr "%1 枚のアルバム" - -#, qt-format -msgid "%1 albums" -msgstr "%1 枚のアルバム" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "再生回数と評価" - -msgid "Various artists" -msgstr "さまざまなアーティスト" - -msgid "Loading..." -msgstr "読み込んでいます..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "%1 データベースを更新しています。" - -msgid "Updating collection" -msgstr "ライブラリの更新中" - -#, qt-format -msgid "Updating %1" -msgstr "%1 の更新中" - -msgid "Your collection is empty!" -msgstr "ライブラリは空です!" - -msgid "Click here to add some music" -msgstr "音楽を追加するにはここをクリックします" - -msgid "Append to current playlist" -msgstr "現在のプレイリストに追加する" - -msgid "Replace current playlist" -msgstr "現在のプレイリストを置き換える" - -msgid "Open in new playlist" -msgstr "新しいプレイリストで開く" - -msgid "Search for this" -msgstr "" - -msgid "Edit track information..." -msgstr "トラック情報の編集..." - -msgid "Edit tracks information..." -msgstr "トラック情報の編集..." - -msgid "Rescan song(s)" -msgstr "曲を再スキャン" - -msgid "Show in various artists" -msgstr "さまざまなアーティストに表示" - -msgid "Don't show in various artists" -msgstr "さまざまなアーティストに表示しない" - -msgid "There are other songs in this album" -msgstr "このアルバムにはほかの曲があります" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "表示" - -msgid "Group by" -msgstr "グループ化" - -msgid "Display options" -msgstr "画面のオプション" - -msgid "Group by Album artist/Album" -msgstr "アーティスト/アルバムでアルバムをグループ化" - -msgid "Group by Album artist/Album - Disc" -msgstr "アーティスト/アルバム - ディスクでアルバムをグループ化" - -msgid "Group by Album artist/Year - Album" -msgstr "アーティスト/年 - アルバムでアルバムをグループ化" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "アーティスト/年 - アルバム - ディスクでアルバムをグループ化" - -msgid "Group by Artist/Album" -msgstr "アーティスト/アルバムでグループ化" - -msgid "Group by Artist/Album - Disc" -msgstr "アーティスト/アルバム - ディスクでグループ化" - -msgid "Group by Artist/Year - Album" -msgstr "アーティスト/年 - アルバムでグループ化" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "アーティスト/年 - アルバム - ディスクでグループ化" - -msgid "Group by Genre/Album artist/Album" -msgstr "ジャンル/アルバム、アーティスト/アルバムでグループ化" - -msgid "Group by Genre/Artist/Album" -msgstr "ジャンル/アーティスト/アルバムでグループ化" - -msgid "Group by Album Artist" -msgstr "アーティストでアルバムをグループ化" - -msgid "Group by Artist" -msgstr "アーティストでグループ化" - -msgid "Group by Album" -msgstr "アルバムでグループ化" - -msgid "Group by Genre/Album" -msgstr "ジャンル/アルバムでグループ化" - -msgid "Advanced grouping..." -msgstr "高度なグループ化..." - -msgid "Grouping Name" -msgstr "分類名" - -msgid "Grouping name:" -msgstr "分類名:" - -msgid "First level" -msgstr "第 1 階層" - -msgid "Second Level" -msgstr "第 2 階層" - -msgid "Third Level" -msgstr "第 3 階層" - -msgid "None" -msgstr "なし" - -msgid "Album artist" -msgstr "アルバムアーティスト" - -msgid "Artist" -msgstr "アーティスト" - -msgid "Album" -msgstr "アルバム" - -msgid "Album - Disc" -msgstr "アルバム - ディスク" - -msgid "Year - Album" -msgstr "年 - アルバム" - -msgid "Year - Album - Disc" -msgstr "年 - アルバム - ディスク" - -msgid "Original year - Album" -msgstr "元の年 - アルバム" - -msgid "Original year - Album - Disc" -msgstr "元の年 - アルバム - ディスク" - -msgid "Disc" -msgstr "ディスク" - -msgid "Year" -msgstr "年" - -msgid "Original year" -msgstr "元の年" - -msgid "Genre" -msgstr "ジャンル" - -msgid "Composer" -msgstr "作曲者" - -msgid "Performer" -msgstr "出演者" - -msgid "Grouping" -msgstr "分類" - -msgid "File type" -msgstr "ファイルの種類" - -msgid "Format" -msgstr "形式" - -msgid "Sample rate" -msgstr "サンプルレート" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "タイトル" - -msgid "Track" -msgstr "トラック" - -msgid "Original Year" -msgstr "発表年" - -msgid "Album Artist" -msgstr "アルバムアーティスト" - -msgid "Play Count" -msgstr "再生回数" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "最終再生時刻" - -msgid "Sample Rate" -msgstr "サンプリングレート" - -msgid "Bit Depth" -msgstr "ビット深度" - -msgid "File Name" -msgstr "ファイル名" - -msgid "File Name (without path)" -msgstr "ファイル名 (パスなし)" - -msgid "File Size" -msgstr "ファイルサイズ" - -msgid "File Type" -msgstr "ファイルタイプ" - -msgid "Date Modified" -msgstr "更新日" - -msgid "Date Created" -msgstr "作成日" - -msgid "Comment" -msgstr "コメント" - -msgid "Source" -msgstr "ソース" - -msgid "Mood" -msgstr "ムード" - -msgid "Rating" -msgstr "評価" - -msgid "CUE" -msgstr "キュー" - -msgid "Integrated Loudness" -msgstr "統合ラウドネス" - -msgid "Loudness Range" -msgstr "ラウドネスレンジ" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "プレイリストの読み込み" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "見つかりません。再びプレイリスト全体を表示するには検索ボックスをクリアします。" - -msgid "stop" -msgstr "停止" - -msgid "Never" -msgstr "なし" - -msgid "&Hide..." -msgstr "非表示にする(&H)..." - -msgid "&Stretch columns to fit window" -msgstr "列の幅をウィンドウに合わせる(&S)" - -msgid "&Reset columns to default" -msgstr "列を既定値にリセット" - -msgid "&Lock rating" -msgstr "評価を固定" - -msgid "&Align text" -msgstr "テキストの配置(&A)" - -msgid "&Left" -msgstr "左揃え(&L)" - -msgid "&Center" -msgstr "中央揃え(&C)" - -msgid "&Right" -msgstr "右揃え(&R)" - -#, qt-format -msgid "&Hide %1" -msgstr "%1 を非表示にする(&H)" - -msgid "New folder" -msgstr "新しいフォルダー" - -msgid "Delete" -msgstr "削除" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "プレイリストを保存する" - -msgid "Enter the name of the folder" -msgstr "フォルダ名を入力してください" - -msgid "Copy to device" -msgstr "デバイスへコピー" - -msgid "Playlist must be open first." -msgstr "プレイリストを最初に開く必要があります。" - -msgid "Remove playlists" -msgstr "プレイリストを削除する" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "プレイリスト「%1」をお気に入りから削除します。よろしいですか?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "プレイリスト名の横にある星アイコンをクリックするとプレイリストをお気に入りにできます。" - -msgid "Favorited playlists will be saved here" -msgstr "お気に入りにしたプレイリストはここに保存されます" - -msgid "Couldn't create playlist" -msgstr "プレイリストを作成できません" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "プレイリストを保存する" - -msgid "Unknown playlist extension" -msgstr "不明なプレイリスト拡張子" - -msgid "Unknown file extension for playlist." -msgstr "プレイリストの不明なファイル拡張子。" - -#, qt-format -msgid "%1 selected of" -msgstr "%1 個選択中" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "自動" - -msgid "Relative" -msgstr "相対パス" - -msgid "Absolute" -msgstr "絶対パス" - -msgid "Star playlist" -msgstr "プレイリストに星をつける" - -msgid "Close playlist" -msgstr "プレイリストを閉じる" - -msgid "Rename playlist..." -msgstr "プレイリストの名前の変更..." - -msgid "Save playlist..." -msgstr "プレイリストの保存..." - -msgid "Rename playlist" -msgstr "プレイリストの名前の変更" - -msgid "Enter a new name for this playlist" -msgstr "このプレイリストの名前を入力してください" - -msgid "Remove playlist" -msgstr "プレイリストを削除する" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "お気に入りに含まれていないプレイリストを削除しようとしています。このプレイリストは削除されます(この操作は元に戻せません)。\n" -"削除してもよろしいですか?" - -msgid "Warn me when closing a playlist tab" -msgstr "プレイリストタブを閉じるときに警告する" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "このオプションは設定の「動作」で変更できます。" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "このプレイリストを左側のサイドバーの\"プレイリスト\"からアクセスできるようにするにはここをダブルクリックします。" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "%n 曲の追加" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "%n 曲の削除" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "%n 曲の移動" - -msgid "sort songs" -msgstr "曲の並び替え" - -msgid "shuffle songs" -msgstr "曲のシャッフル" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "音楽 CD を読み込み中にエラーが発生しました" - -msgid "Loading tracks" -msgstr "トラックの読み込み中" - -msgid "Loading tracks info" -msgstr "トラック情報の読み込み中" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "すべてのプレイリスト (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 プレイリスト (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "スマートプレイリストをロード中" - -msgid "Collection search" -msgstr "コレクション検索" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "指定した条件でコレクションを検索します" - -msgid "Search terms" -msgstr "検索語" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "これらの条件に一致する曲がプレイリストに含まれます" - -msgid "Search options" -msgstr "検索オプション" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "プレイリストの並び順と含まれる曲数を選択します。" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 曲が見つかりました( %2 を表示中)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 曲が見つかりました" - -msgid "after" -msgstr "の後" - -msgid "before" -msgstr "以前" - -msgid "on" -msgstr "が次の日付" - -msgid "not on" -msgstr "が次の日付でない" - -msgid "in the last" -msgstr "最後の時間" - -msgid "not in the last" -msgstr "が次の時間以前" - -msgid "between" -msgstr "の間" - -msgid "contains" -msgstr "含む" - -msgid "does not contain" -msgstr "含まない" - -msgid "starts with" -msgstr "で始まる" - -msgid "ends with" -msgstr "で終わる" - -msgid "greater than" -msgstr "より大きい" - -msgid "less than" -msgstr "より小さい" - -msgid "equals" -msgstr "等しい" - -msgid "not equals" -msgstr "が次と異なる" - -msgid "empty" -msgstr "空" - -msgid "not empty" -msgstr "が空ではない" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "古い順" - -msgid "newest first" -msgstr "新しい順" - -msgid "shortest first" -msgstr "短い順" - -msgid "longest first" -msgstr "最長優先" - -msgid "smallest first" -msgstr "昇順" - -msgid "biggest first" -msgstr "降順" - -msgid "Hours" -msgstr "時間" - -msgid "Days" -msgstr "日" - -msgid "Weeks" -msgstr "週" - -msgid "Months" -msgstr "月" - -msgid "Years" -msgstr "年" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "検索条件を追加" - -msgid "Newest tracks" -msgstr "新しい順" - -msgid "50 random tracks" -msgstr "ランダムな 50 トラック" - -msgid "Ever played" -msgstr "再生済み" - -msgid "Never played" -msgstr "未再生" - -msgid "Last played" -msgstr "最終再生" - -msgid "Most played" -msgstr "最も再生された曲" - -msgid "Favourite tracks" -msgstr "お気に入りのトラック" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "すべてのトラック" - -msgid "Dynamic random mix" -msgstr "ダイナミックランダムミックス" - -msgid "New smart playlist..." -msgstr "新しいスマートプレイリスト..." - -msgid "Play next" -msgstr "次を再生" - -msgid "Edit smart playlist..." -msgstr "スマートプレイリストを編集..." - -msgid "Delete smart playlist" -msgstr "スマートプレイリストを削除" - -msgid "Smart playlist" -msgstr "スマートプレイリスト" - -msgid "Playlist type" -msgstr "プレイリストタイプ" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "スマートプレイリストは、コレクションから一定の作成される動的なプレイリストです。さまざまな選曲方法を提供する異なるタイプのスマートプレイリストがあります。" - -msgid "Finish" -msgstr "終了" - -msgid "Choose a name for your smart playlist" -msgstr "スマートプレイリスト名の変更" - -msgid "Abort" -msgstr "中止" - -msgid "All albums" -msgstr "すべてのアルバム" - -msgid "Albums with covers" -msgstr "カバー付きのアルバム" - -msgid "Albums without covers" -msgstr "カバーなしのアルバム数" - -msgid "Really cancel?" -msgstr "本当に取り消しますか?" - -msgid "Closing this window will stop searching for album covers." -msgstr "このウィンドウを閉じるとアルバムカバーの検索を中止します。" - -msgid "Don't stop!" -msgstr "中止しないでください!" - -msgid "All artists" -msgstr "すべてのアーティスト" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "%2 個中 %1 個のカバーを取得しました (%3 個失敗しました)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 転送済み" - -msgid "Export finished" -msgstr "エクスポートが完了しました" - -msgid "No covers to export." -msgstr "エクスポートしたカバーはありません" - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "%2 個中 %1 個のカバーをエクスポートしました (%3 個スキップしました)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "カバーをファイル %1 に保存できません。" - -#, qt-format -msgid "Covers from %1" -msgstr "%1 からのカバー" - -msgid "Search" -msgstr "検索" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "画像 (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "画像 (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "すべてのファイル (*)" - -msgid "Load cover from disk..." -msgstr "ディスクからカバーの読み込み..." - -msgid "Save cover to disk..." -msgstr "カバーをディスクに保存..." - -msgid "Load cover from URL..." -msgstr "URL からカバーの読み込み..." - -msgid "Search for album covers..." -msgstr "アルバムカバーの検索..." - -msgid "Unset cover" -msgstr "カバーを未設定にする" - -msgid "Delete cover" -msgstr "カバーを削除" - -msgid "Clear cover" -msgstr "カバーを選択" - -msgid "Show fullsize..." -msgstr "原寸表示..." - -msgid "Search automatically" -msgstr "自動的に検索する" - -msgid "Load cover from disk" -msgstr "ディスクからカバーの読み込み" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "カバーファイル %1 を読み取れません: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "カバーファイル %1 は空です。" - -msgid "unknown" -msgstr "不明" - -msgid "Save album cover" -msgstr "カバーアートの保存" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "カバーファイル %1 を書き込めません: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "ファイル %1 へのカバーの書き込みに失敗: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "ファイル %1 へのカバーの書き込みに失敗しました。" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "カバーファイル %1 の削除に失敗しました: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "ファイル %1 へのカバーの書き込みに失敗: %2" - -msgid "Total network requests made" -msgstr "合計ネットワーク要求回数" - -msgid "Average image size" -msgstr "平均画像サイズ" - -msgid "Total bytes transferred" -msgstr "合計転送バイト数" - -msgid "Fetching cover error" -msgstr "カバーの取得エラー" - -msgid "The site you requested does not exist!" -msgstr "指定されたサイトは存在しません!" - -msgid "The site you requested is not an image!" -msgstr "指定されたサイトは画像ではありません!" - -msgid "Genius Authentication" -msgstr "Genius 認証" - -msgid "Please open this URL in your browser" -msgstr "このURLをブラウザで開いてください" - -msgid "Redirect missing token code!" -msgstr "不足しているトークンコードをリダイレクトしてください!" - -msgid "Received invalid reply from web browser." -msgstr "Webブラウザから無効な返信を受け取りました。" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Genius からのリダイレクトにクエリアイテムのコードまたは状態がありません。" - -msgid "General" -msgstr "全般" - -msgid "User interface" -msgstr "ユーザーインターフェース" - -msgid "Streaming" -msgstr "ストリーミング" - -msgid "Add directory..." -msgstr "ディレクトリを追加..." - -msgid "Write all playcounts and ratings to files" -msgstr "すべての再生回数と評価をファイルに書き込む" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "コレクション内のすべての曲のファイルに曲の再生回数と評価を書き込んでもよろしいですか?" - -msgid "Enter your user token from" -msgstr "ユーザートークンを入力:" - -msgid "Use Tidal settings to authenticate." -msgstr "Tidal 設定を使用して認証します。" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 には認証が必要です。" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 には認証は不要です。" - -msgid "No provider selected." -msgstr "プロバイダーが選択されていません" - -msgid "Authentication failed" -msgstr "認証に失敗しました" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "手動で設定を解除 (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "アルバムカバー検索で設定 (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "アルバムのディレクトリ (%1) から自動的に取得" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "埋め込まれたアルバムカバーアート (%1)" - -msgid "Select background image" -msgstr "背景画像の選択" - -msgid "OSD Preview" -msgstr "OSD のプレビュー" - -msgid "Drag to reposition" -msgstr "位置を変更するにはドラッグします" - -msgid "About Strawberry" -msgstr "Strawberry について" - -#, qt-format -msgid "Version %1" -msgstr "バージョン %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry は、音楽プレーヤーおよび音楽コレクションのオーガナイザーです。" - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry は、GPL の下でリリースされた自由ソフトウェアです。ソースコードは %1 で入手できます。" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "もし Strawberry が気に入って利用する場合は、後援または寄付を検討してください" - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "作者とメンテナー" - -msgid "Contributors" -msgstr "貢献者" - -msgid "Clementine authors" -msgstr "Clementine の作者" - -msgid "Clementine contributors" -msgstr "Clementine への貢献者" - -msgid "Thanks to" -msgstr "ありがとうございます" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "" - -msgid "(different across multiple songs)" -msgstr "(複数の曲で一致しません)" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "前へ" - -msgid "Next" -msgstr "次へ" - -msgid "Saving tracks" -msgstr "トラックの保存中" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 曲が選択されました" - -msgid "Yes" -msgstr "はい" - -msgid "No" -msgstr "いいえ" - -msgid "Cover is unset." -msgstr "カバーはセットされていません。" - -msgid "Cover from embedded image." -msgstr "埋め込み画像からのカバー。" - -#, qt-format -msgid "Cover from %1" -msgstr "%1 のカバー" - -msgid "Cover art not set" -msgstr "カバーアートが設定されていません" - -msgid "Album cover editing is only available for collection songs." -msgstr "アルバムカバーの編集はコレクションだけで可能です。" - -msgid "Cover changed: Will be cleared when saved." -msgstr "カバーが変更されました: 保存するとクリアされます。" - -msgid "Cover changed: Will be unset when saved." -msgstr "カバーが変更されました: 保存すると設定が解除されます。" - -msgid "Cover changed: Will be deleted when saved." -msgstr "カバーが変更されました: 保存時に削除されます。" - -msgid "Cover changed: Will set new when saved." -msgstr "カバーが変更されました: 保存時に新しい設定になります。" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "この曲の再生統計をリセットしてもよろしいですか?" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "元のタグ" - -msgid "Suggested tags" -msgstr "お薦めのタグ" - -msgid "Delete files" -msgstr "ファイルの削除" - -msgid "The following files will be deleted from disk:" -msgstr "これらのファイルがディスクから削除されます:" - -msgid "Are you sure you want to continue?" -msgstr "本当に続行しますか?" - -msgid "Receiving initial data from last.fm..." -msgstr "last.fm から初期データを受信中..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "最近再生した %1 曲を受信中です。" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "%1 曲の再生回数を受信中。" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "最近再生した %1 曲を受信しました" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "%1 曲の再生回数を受信しました。" - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry は Snap として実行されています" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry はスナップとして実行する場合、遅く、制限があります。ルートファイルシステム ( /) へのアクセスはできません。特定のデバイスやネットワーク共有へのアクセスなど、他の制限もある場合があります。" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "より良い体験のために、上記の他のオプションを検討してください" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "snapをアンインストールする前に、構成が失われないように ~/snap ディレクトリからstrawberry.confとstrawberry.dbをコピーする:" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "プレイリストのディレクトリを選択" - -msgid "Directory does not exist." -msgstr "ディレクトリが存在しません。" - -msgid "Large sidebar" -msgstr "大きいサイドバー" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "小さいサイドバー" - -msgid "Plain sidebar" -msgstr "プレーンサイドバー" - -msgid "Tabs on top" -msgstr "タブを上に配置" - -msgid "Icons on top" -msgstr "アイコンを上に配置" - -msgid "Available" -msgstr "空き" - -msgid "New songs" -msgstr "新しい曲" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "使用中" - -msgid "Clear" -msgstr "クリア" - -msgid "Reset" -msgstr "リセット" - -msgid "Small album cover" -msgstr "小さいアルバムカバー" - -msgid "Large album cover" -msgstr "大きいアルバムカバー" - -msgid "Fit cover to width" -msgstr "カバーの大きさを幅に合わせる" - -msgid "Show above status bar" -msgstr "ステータスバーの上に表示" - -msgid "You are signed in." -msgstr "サインインしています。" - -#, qt-format -msgid "You are signed in as %1." -msgstr "%1 でサインインしています。" - -#, qt-format -msgid "Expires on %1" -msgstr "期限: %1" - -#, qt-format -msgid "disc %1" -msgstr "ディスク %1" - -#, qt-format -msgid "track %1" -msgstr "トラック %1" - -msgid "Paused" -msgstr "一時停止中" - -msgid "Stopped" -msgstr "停止しました" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "このトラック後に停止: %1" - -msgid "On" -msgstr "オン" - -msgid "Off" -msgstr "オフ" - -msgid "Playlist finished" -msgstr "プレイリストが完了しました" - -#, qt-format -msgid "Volume %1%" -msgstr "音量 %1%" - -msgid "Don't shuffle" -msgstr "シャッフルしない" - -msgid "Shuffle all" -msgstr "すべてシャッフル" - -msgid "Shuffle tracks in this album" -msgstr "このアルバムのトラックをシャッフル" - -msgid "Shuffle albums" -msgstr "アルバムをシャッフル" - -msgid "Don't repeat" -msgstr "リピートしない" - -msgid "Repeat track" -msgstr "トラックをリピート" - -msgid "Repeat album" -msgstr "アルバムをリピート" - -msgid "Repeat playlist" -msgstr "プレイリストをリピート" - -msgid "Stop after every track" -msgstr "各トラック後に停止" - -msgid "Intro tracks" -msgstr "イントロ再生" - -#, qt-format -msgid "Configure %1..." -msgstr "%1 の設定..." - -msgid "Add to artists" -msgstr "アーティストに追加" - -msgid "Add to albums" -msgstr "アルバムに追加" - -msgid "Add to songs" -msgstr "曲に追加" - -msgid "Enter search terms above to find music" -msgstr "音楽を見つけるには、上記の検索用語を入力してください" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "音楽を取得するにはここをクリック" - -msgid "Remove from favorites" -msgstr "お気に入りから削除" - -msgid "Open homepage" -msgstr "ホームページを開く" - -msgid "Donate" -msgstr "寄付" - -msgid "Refresh channels" -msgstr "チャネルを更新" - -#, qt-format -msgid "Getting %1 channels" -msgstr "%1 チャネルを取得中" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 Scrobbler 認証" - -msgid "Open URL in web browser?" -msgstr "ブラウザで開きますか?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "\"保存\"を押してURLをクリップボードにコピーし、Webブラウザで手動で開きます" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "URLを開けません。ブラウザで開いてください。" - -msgid "Invalid reply from web browser. Missing token." -msgstr "ブラウザからの不正な応答 トークンがありません" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Scrobbler %1 のエラー: %2" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz 認証" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "ユーザー名がありません。最初に last.fm にログインしてください!" - -msgid "Organizing files" -msgstr "ファイルを管理中" - -msgid "Artist's initial" -msgstr "アーティストの頭文字" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "ビットレート" - -msgid "File extension" -msgstr "ファイル拡張子" - -msgid "Error copying songs" -msgstr "曲のコピーエラー" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "曲のコピーに問題がありました。次のファイルはコピーできませんでした:" - -msgid "Error deleting songs" -msgstr "曲の削除エラー" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "曲の削除に問題がありました。次のファイルは削除できませんでした:" - -msgid "Play/Pause" -msgstr "再生/一時停止" - -msgid "Stop" -msgstr "停止" - -msgid "Stop playing after current track" -msgstr "現在のトラックの後で再生を停止" - -msgid "Next track" -msgstr "次の曲" - -msgid "Previous track" -msgstr "前のトラック" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "音量を上げる" - -msgid "Decrease volume" -msgstr "音量を下げる" - -msgid "Mute" -msgstr "ミュート" - -msgid "Seek forward" -msgstr "順方向にシークする" - -msgid "Seek backward" -msgstr "逆方向にシークする" - -msgid "Show/Hide" -msgstr "表示/隠す" - -msgid "Show OSD" -msgstr "OSDの表示" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "シャッフルモードの変更" - -msgid "Change repeat mode" -msgstr "リピートモードの変更" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "%1 に使用するキーの組み合わせを押してください..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "コマンド「%1」を開始できませんでした。" - -#, qt-format -msgid "Shortcut for %1" -msgstr "%1 のショートカット" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "%1 のショートカットは通常 MPRIS と KGlobalAccel で利用されます。" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "%1 のショートカットは通常 Gnome Settings Daemon で利用されるため、gnome-settings-daemon で構成する必要があります。" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "%1 のショートカットは通常 Gnome Settings Daemon で利用されるため、cinnamon-settings-daemon で構成する必要があります。" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "%1 のショートカットは通常 Mate Settings Daemon で利用されるため、そちらで構成する必要があります。" - -msgid "Buffering" -msgstr "バッファ中" - -msgid "D-Bus path" -msgstr "D-Bus パス" - -msgid "Serial number" -msgstr "シリアル番号" - -msgid "Mount points" -msgstr "マウントポイント" - -msgid "Partition label" -msgstr "パーティションのラベル" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "デバイスの接続" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "このデバイスに初めて接続しました。音楽ファイルを検索するためにデバイスをスキャンします - これには時間がかかる可能性があります。" - -msgid "This device will not work properly" -msgstr "このデバイスは適切に動作しません" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "これは MTP デバイスですが、Strawberry は libmtp サポートなしでコンパイルされています。" - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "続行すると、このデバイスは低速で動作しコピーされた曲は動作しなくなる可能性があります。" - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "これは iPod ですが、Strawberry は libgpod サポートなしでコンパイルされています。" - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "この種類のデバイスはサポートされていません: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "更新しています %1%..." - -msgid "Not connected" -msgstr "接続されていません" - -msgid "Not mounted - double click to mount" -msgstr "マウントされていません - マウントするにはダブルクリックします" - -msgid "Double click to open" -msgstr "ダブルクリックで開く" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 曲" - -msgid "Safely remove device" -msgstr "デバイスを安全に取り外す" - -msgid "Forget device" -msgstr "デバイスを忘れる" - -msgid "Device properties..." -msgstr "デバイスのプロパティ..." - -msgid "Delete from device..." -msgstr "デバイスから削除..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "デバイスを忘れるとこの一覧から削除して Strawberry は次回接続時に再びすべての曲を再スキャンします。" - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "これらのファイルはデバイスから削除されます。続行してもよろしいですか?" - -msgid "Model" -msgstr "モデル" - -msgid "Manufacturer" -msgstr "製造元" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "%1 を %2 にコピーできませんでした: %3" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "データベースの書き込みに失敗: %1" - -msgid "Writing database failed." -msgstr "データベースの書き込みに失敗しました。" - -msgid "Loading iPod database" -msgstr "iPod データベースの読み込み中" - -msgid "An error occurred loading the iTunes database" -msgstr "iTunes のデータベースを読み込み中にエラーが発生しました" - -msgid "Mount point" -msgstr "マウントポイント" - -msgid "Device" -msgstr "デバイス" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "無効な MTP デバイス: %1" - -msgid "Could not open MTP device." -msgstr "MTP デバイスを開けませんでした。" - -#, qt-format -msgid "MTP error: %1" -msgstr "MTP エラー: %1" - -msgid "MTP device not found." -msgstr "MTP デバイスが見つかりません。" - -msgid "Loading MTP device" -msgstr "MTP デバイスの読み込み中" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "MTP デバイス %1 の接続エラー" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "MTP デバイス %1 の接続エラー: %2" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "GStreamer 要素「%1」を作成できませんでした。必要な GStreamer プラグインがすべてインストールされていることを確認してください" - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 の書き込みに成功しました" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "%2 個のスレッドを使用して %1 個のファイルをトランスコードしています" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "%1 の処理エラー: %2" - -#, qt-format -msgid "Starting %1" -msgstr "%1 の開始中" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "%1 のエンコーダーを見つけることができませんでした。正しい GStreamer プラグインがインストールされていることをチェックしてください" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "%1 のミュクサーを見つけることができませんでした。正しい GStreamer プラグインがインストールされていることをチェックしてください" - -msgid "Start transcoding" -msgstr "トランスコードの開始" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n 曲残っています" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n が完了しました" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n 曲失敗しました" - -msgid "Add files to transcode" -msgstr "変換するファイルを追加" - -msgid "Open a directory to import music from" -msgstr "音楽を取り込むディレクトリを開く" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "CDDA デバイスを準備中にエラーが発生しました" - -msgid "Error while setting CDDA device to pause state." -msgstr "CDDA デバイスを一時停止中にエラーが発生しました" - -msgid "Error while querying CDDA tracks." -msgstr "CDDAトラック取得中にエラーが発生しました" - -msgid "Server URL is invalid." -msgstr "サーバーURLが不正です。" - -msgid "Missing username or password." -msgstr "ユーザー名またはパスワードがありません" - -msgid "Subsonic server URL is invalid." -msgstr "Subsonic サーバーの URL が不正です" - -msgid "Missing Subsonic username or password." -msgstr "Subsonic ユーザー名またはシークレットがありません" - -msgid "Retrieving albums..." -msgstr "アルバムを取得..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "アルバム %1 から曲を取得..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "アルバム %1 から曲を取得..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "アルバム %1 からアルバムカバーを取得..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "アルバム %1 からアルバムカバーを取得..." - -msgid "Configuration incomplete" -msgstr "設定に失敗" - -msgid "Missing server url, username or password." -msgstr "サーバーの URL、ユーザー名またはパスワードがありません" - -msgid "Configuration incorrect" -msgstr "設定が不正" - -msgid "Test successful!" -msgstr "テスト成功!" - -msgid "Test failed!" -msgstr "テスト失敗!" - -msgid "Reply from Tidal is missing query items." -msgstr "Tidal からの返信にクエリアイテムがありません。" - -msgid "Missing Tidal API token." -msgstr "Tidal API トークンがありません。" - -msgid "Missing Tidal username." -msgstr "Tidal ユーザー名がありません。" - -msgid "Missing Tidal password." -msgstr "Tidal パスワードがありません。" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Tidal で認証されずログイン最大試行回数に達しました。" - -msgid "Not authenticated with Tidal." -msgstr "Tidal で認証されませんでした。" - -msgid "Missing Tidal API token, username or password." -msgstr "Tidal API トークン、ユーザー名またはパスワードがありません。" - -msgid "Authenticating..." -msgstr "認証中..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "検索中..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "見つかりません" - -msgid "Cancelled." -msgstr "キャンセルされました。" - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Tidal から %1 暗号化ストリームを含む URL を受信しました。 Strawberry は現在暗号化されたストリームをサポートしていません。" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Tidal から暗号化されたストリームを含む URL を受信しました。 Strawberry は現在暗号化されたストリームをサポートしていません。" - -msgid "Missing Tidal client ID." -msgstr "Tidal Client ID がありません。" - -msgid "Missing API token." -msgstr "API トークンがありません" - -msgid "Missing username." -msgstr "ユーザー名がありません" - -msgid "Missing password." -msgstr "パスワードがありません" - -msgid "Spotify Authentication" -msgstr "Spotify 認証" - -msgid "Redirect missing token code or state!" -msgstr "不足しているトークンコードまたは状態をリダイレクトしてください!" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "ログイン試行数が最大数に達しました" - -msgid "Missing Qobuz app ID." -msgstr "Qobuz app ID がありません" - -msgid "Missing Qobuz username." -msgstr "Qobuz ユーザー名がありません" - -msgid "Missing Qobuz password." -msgstr "Qobuz パスワードがありません" - -msgid "Not authenticated with Qobuz." -msgstr "Qobuz で認証されませんでした" - -msgid "Missing Qobuz app ID or secret." -msgstr "Qobuz app ID またはシークレットがありません" - -msgid "Missing app id." -msgstr "app id がありません" - -msgid "Show moodbar" -msgstr "ムードバーを表示" - -msgid "Moodbar style" -msgstr "ムードバーのスタイル" - -msgid "Normal" -msgstr "ノーマル" - -msgid "Angry" -msgstr "怒り" - -msgid "Frozen" -msgstr "凍結" - -msgid "Happy" -msgstr "" - -msgid "System colors" -msgstr "システムの色" - -msgid "Strawberry Music Player" -msgstr "" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "再生" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "停止" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "次のトラック(&N)" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "終了(&Q)" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "プレイリストをクリア(&C)" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "この順序でトラック番号を振る..." - -msgid "Set value for all selected tracks..." -msgstr "すべての選択されたトラックの音量を設定しました..." - -msgid "Edit tag..." -msgstr "タグの編集..." - -msgid "&Settings..." -msgstr "設定" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "Strawberryについて(&A)" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "プレイリストをシャッフル(&s)" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "ファイルを追加..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "ファイルを開く..." - -msgid "Open audio &CD..." -msgstr "音楽CDを開く(&C)" - -msgid "&Cover Manager" -msgstr "カバーマネージャー(&C)" - -msgid "C&onsole" -msgstr "コンソール" - -msgid "&Shuffle mode" -msgstr "シャッフルモード(&S)" - -msgid "&Repeat mode" -msgstr "リピートモード(&R)" - -msgid "Remove from playlist" -msgstr "プレイリストから削除" - -msgid "&Equalizer" -msgstr "イコライザー(&E)" - -msgid "&Transcode Music" -msgstr "音楽を変換" - -msgid "Add &folder..." -msgstr "フォルダーを追加(&F)..." - -msgid "&Jump to the currently playing track" -msgstr "再生中のトラックへジャンプ(&J)" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "新しいプレイリスト(&N)" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "プレイリストを保存(&s)" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "プレイリストの読み込み(&L)" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "すべてのプレイリストを保存..." - -msgid "Go to next playlist tab" -msgstr "次のプレイリストタブへ" - -msgid "Go to previous playlist tab" -msgstr "前のプレイリストタブへ" - -msgid "&Update changed collection folders" -msgstr "変更されたコレクションフォルダーの更新(&U)" - -msgid "About &Qt" -msgstr "QT について(&Q)" - -msgid "&Mute" -msgstr "ミュート(&M)" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "すべてのコレクションを再スキャン(&D)" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "タグを自動補完..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "scrobbling の切り替え" - -msgid "Remove &duplicates from playlist" -msgstr "プレイリストから重複を削除する(&d)" - -msgid "Remove &unavailable tracks from playlist" -msgstr "プレイリストから利用できないトラックを削除する(&u)" - -msgid "Add file(s) to transcoder" -msgstr "ファイルをトランスコーダーに追加" - -msgid "Add file to transcoder" -msgstr "ファイルをトランスコーダーに追加" - -msgid "Add stream..." -msgstr "ストリームを追加..." - -msgid "Show sidebar" -msgstr "サイドバーを表示" - -msgid "Import data from last.fm..." -msgstr "last.fm からデータをインポート中..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "音楽(&M)" - -msgid "P&laylist" -msgstr "プレイリスト(&l)" - -msgid "Help" -msgstr "ヘルプ" - -msgid "&Tools" -msgstr "ツール(&T)" - -msgid "Collection advanced grouping" -msgstr "ライブラリの高度なグループ化" - -msgid "You can change the way the songs in the collection are organized." -msgstr "コレクション内の曲の編成方法を変更できます。" - -msgid "Group Collection by..." -msgstr "ライブラリのグループ化..." - -msgid "Second level" -msgstr "第 2 階層" - -msgid "Third level" -msgstr "第 3 階層" - -msgid "Separate albums by grouping tag" -msgstr "グループタグでアルバムを分ける" - -msgid "Collection Filter" -msgstr "コレクションフィルター" - -msgid "Entire collection" -msgstr "コレクション全体" - -msgid "Added today" -msgstr "今日追加されたもの" - -msgid "Added this week" -msgstr "今週追加されたもの" - -msgid "Added within three months" -msgstr "3 ヶ月以内に追加されたもの" - -msgid "Added this year" -msgstr "今年追加されたもの" - -msgid "Added this month" -msgstr "今月追加されたもの" - -msgid "Save current grouping" -msgstr "現在の分類を保存する" - -msgid "Manage saved groupings" -msgstr "保存した分類を管理する" - -msgid "Enter search terms here" -msgstr "ここに検索条件を入力してください" - -msgid "Form" -msgstr "フォーム" - -msgid "Saved Grouping Manager" -msgstr "保存した分類マネージャー" - -msgid "Remove" -msgstr "削除" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "ファイルのパス" - -msgid "This can be changed later through the preferences" -msgstr "これは後でプリファレンスから変えることができます" - -msgid "Remember my choice" -msgstr "選択を記憶する" - -msgid "Stop after each track" -msgstr "各トラック後に停止" - -msgid "Repeat" -msgstr "リピート" - -msgid "Shuffle" -msgstr "シャッフル" - -msgid "Dynamic mode is on" -msgstr "ダイナミックモードがオン" - -msgid "New tracks will be added automatically." -msgstr "新しいトラックは自動的に追加されます" - -msgid "Expand" -msgstr "展開" - -msgid "Repopulate" -msgstr "再装着" - -msgid "Turn off" -msgstr "オフにする" - -msgid "QueueView" -msgstr "キュービュー" - -msgid "Move down" -msgstr "下へ移動" - -msgid "Move up" -msgstr "上へ移動" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "検索モード" - -msgid "Match every search term (AND)" -msgstr "すべての検索語に一致 (AND)" - -msgid "Match one or more search terms (OR)" -msgstr "1 つ以上の検索語に一致する (OR)" - -msgid "Include all songs" -msgstr "すべての曲を含む" - -msgid "Sorting" -msgstr "整列" - -msgid "Put songs in a random order" -msgstr "曲をランダムに並び替える" - -msgid "Sort songs by" -msgstr "曲を並べ替え" - -msgid "Limits" -msgstr "制限" - -msgid "Show all the songs" -msgstr "すべての曲を表示" - -msgid "Only show the first" -msgstr "最初だけ表示" - -msgid " songs" -msgstr " 曲" - -msgid "Preview" -msgstr "プレビュー" - -msgid "and" -msgstr "かつ" - -msgid "ago" -msgstr "前" - -msgid "New smart playlist" -msgstr "新しいスマートプレイリスト" - -msgid "Edit smart playlist" -msgstr "スマートプレイリストを編集" - -msgid "Use dynamic mode" -msgstr "ダイナミックモード" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "ダイナミックモードでは曲が終了するたびに新しいトラックが選択され、プレイリストに追加されます" - -msgid "Export covers" -msgstr "カバーをエクスポートする" - -msgid "Output" -msgstr "出力" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "エクスポートするカバーのファイル名を入力してください (拡張子なし):" - -msgid "Export downloaded covers" -msgstr "ダウンロードしたカバーをエクスポートする" - -msgid "Export embedded covers" -msgstr "埋め込みカバーをエクスポートする" - -msgid "Existing covers" -msgstr "既存のカバー" - -msgid "Do not overwrite" -msgstr "上書きしない" - -msgid "O&verwrite all" -msgstr "すべて上書きする(&v)" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "サイズ" - -msgid "Scale size" -msgstr "サイズを調整する" - -msgid "Size:" -msgstr "サイズ:" - -msgid "Pixel" -msgstr "ピクセル" - -msgid "Cover Manager" -msgstr "カバーマネージャー" - -msgid "Fetch automatically" -msgstr "自動的に取得する" - -msgid "Load" -msgstr "読み込み" - -msgid "Add to playlist" -msgstr "プレイリストに追加" - -msgid "View" -msgstr "表示" - -msgid "Total albums:" -msgstr "全アルバム数:" - -msgid "Without cover:" -msgstr "カバーなし:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "足りないカバーの取得" - -msgid "Export Covers" -msgstr "カバーをエクスポート" - -msgid "Fetch completed" -msgstr "取得完了" - -msgid "Load cover from URL" -msgstr "URL からカバーの読み込み" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "インターネットからカバーアートをダウンロードする URL を入力してください:" - -msgid "Settings" -msgstr "設定" - -msgid "Behavior" -msgstr "動作" - -msgid "Show system tray icon" -msgstr "システムトレイアイコンを表示" - -msgid "Keep running in the background when the window is closed" -msgstr "ウィンドウを閉じたときバックグラウンドで起動し続ける" - -msgid "Show song progress on system tray icon" -msgstr "システムトレイアイコンで曲の進行状況を表示" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "起動時に再生を再開する" - -msgid "Show playing widget" -msgstr "再生ウィジェットを表示" - -msgid "On startup" -msgstr "起動時" - -msgid "Remember from &last time" -msgstr "前回起動時と同じ" - -msgid "Show the main window" -msgstr "メインウィンドウを表示" - -msgid "Hide the main window" -msgstr "メインウィンドウを隠す" - -msgid "Show the main window maximized" -msgstr "メインウィンドウを最大化して表示" - -msgid "Show the main window minimized" -msgstr "メインウィンドウを最小化して表示" - -msgid "Language" -msgstr "言語" - -msgid "Use the system default" -msgstr "システム既定を使用する" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "言語を変更するには Strawberry の再起動が必要です。" - -msgid "Using the menu to add a song will..." -msgstr "メニューから曲を追加した場合..." - -msgid "Never start playing" -msgstr "再生を開始しない" - -msgid "Play if there is nothing already playing" -msgstr "再生中の曲がない場合は再生する" - -msgid "Always start playing" -msgstr "常に再生を開始する" - -msgid "Pressing \"Previous\" in player will..." -msgstr "プレイヤーの \"前へ\" ボタンを押した場合..." - -msgid "Jump to previous song right away" -msgstr "すぐに、前の曲にジャンプする" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "曲を再スタートし、もう一度押された場合前の曲へジャンプする" - -msgid "Double clicking a song will..." -msgstr "曲をダブルクリックした場合..." - -msgid "Append to the playlist" -msgstr "プレイリストに追加する" - -msgid "Replace the playlist" -msgstr "プレイリストを置き換える" - -msgid "Add to the queue" -msgstr "キューに追加" - -msgid "Double clicking a song in the playlist will..." -msgstr "プレイリスト上の曲をダブルクリックした場合..." - -msgid "Change the currently playing song" -msgstr "再生中の曲を変更する" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "キーボードショートカットまたはマウスホイールを使ってシークする" - -msgid "Time step" -msgstr "時間刻み" - -msgid " s" -msgstr "秒" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "これらのフォルダーはライブラリを作成するためにスキャンされます" - -msgid "Add new folder..." -msgstr "新しいフォルダーを追加..." - -msgid "Remove folder" -msgstr "フォルダーの削除" - -msgid "Automatic updating" -msgstr "自動更新" - -msgid "Update the collection when Strawberry starts" -msgstr "Strawberry の起動時にライブラリを更新する" - -msgid "Monitor the collection for changes" -msgstr "ライブラリの変更を監視する" - -msgid "Song fingerprinting and tracking" -msgstr "曲の特徴を検出して追跡" - -msgid "Mark disappeared songs unavailable" -msgstr "消えた曲を利用できないとマークする" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "曲の EBU R 128 分析を実行します (EBU R 128 ラウドネス正規化に必要)" - -msgid "Expire unavailable songs after" -msgstr "利用できない曲の期限が切れるまで" - -msgid "days" -msgstr "日" - -msgid "Preferred album art filenames (comma separated)" -msgstr "優先するアルバムアートのファイル名 (コンマ区切り)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "アルバム アートの検索時に Strawberry はまずこれらの単語の 1 つを含む画像ファイルを探します。\n" -"一致するものがない場合はディレクトリにある最も大きいイメージを使用します。" - -msgid "Automatically open single categories in the collection tree" -msgstr "下位カテゴリが 1 つしかないときは、ライブラリツリーを自動で開く" - -msgid "Show dividers" -msgstr "区切りを表示する" - -msgid "Show album cover art in collection" -msgstr "コレクションでアルバムカバーアートを表示" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "アルバムカバーpixmapキャッシュ" - -msgid "Enable Disk Cache" -msgstr "ディスクキャッシュ有効化" - -msgid "Disk Cache Size" -msgstr "ディスクキャッシュサイズ" - -msgid "Current disk cache in use:" -msgstr "現在のディスクキャッシュ使用量:" - -msgid "Clear Disk Cache" -msgstr "ディスクキャッシュをクリア" - -msgid "Song playcounts and ratings" -msgstr "再生回数と評価" - -msgid "Save playcounts to song tags when possible" -msgstr "可能な場合は再生回数を曲のタグに保存する" - -msgid "Save ratings to song tags when possible" -msgstr "可能であれば曲のタグに評価を保存する" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "曲がディスクから再読取りされるときにデータベースの再生数を上書きします" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "曲がディスクから再読取りされるときにデータベースの評価を上書きします" - -msgid "Save playcounts and ratings to files now" -msgstr "再生回数と評価をファイルに保存する" - -msgid "Enable delete files in the right click context menu" -msgstr "右クリックメニューでの削除を有効化" - -msgid "Backend" -msgstr "バックエンド" - -msgid "Audio output" -msgstr "オーディオ出力" - -msgid "Engine" -msgstr "エンジン" - -msgid "ALSA plugin:" -msgstr "ALSA プラグイン" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "オプション" - -msgid "Enable volume control" -msgstr "ボリュームコントロールを有効化" - -msgid "Upmix / downmix to" -msgstr "アップミックス / ダウンミックス" - -msgid "channels" -msgstr "チャネル" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "ステレオ音源をヘッドフォンで聴く場合の改善(bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "ストリーミングでHTTP/2を有効にする" - -msgid "Use strict SSL mode" -msgstr "厳密なSSLモードを使用する" - -msgid "Buffer" -msgstr "バッファ" - -msgid " ms" -msgstr " ミリ秒" - -msgid "Buffer duration" -msgstr "バッファーの長さ" - -msgid "High watermark" -msgstr "最高水準点" - -msgid "Low watermark" -msgstr "最低水準点" - -msgid "Defaults" -msgstr "デフォルト" - -msgid "Audio normalization" -msgstr "オーディオの正規化" - -msgid "No audio normalization" -msgstr "オーディオを正規化しない" - -msgid "Replay Gain" -msgstr "再生ゲイン" - -msgid "Use Replay Gain metadata if it is available" -msgstr "可能なら再生ゲインのメタデータを使用する" - -msgid "Replay Gain mode" -msgstr "再生ゲインモード" - -msgid "Radio (equal loudness for all tracks)" -msgstr "ラジオ (すべてのトラックで均一の音量)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "アルバム (すべてのトラックで最適な音量)" - -msgid "Apply compression to prevent clipping" -msgstr "クリップ防止のために音量を制限する" - -msgid "Fallback-gain" -msgstr "フォールバックゲイン" - -msgid "EBU R 128 Loudness Normalization" -msgstr "EBU R 128 ラウドネス正規化" - -msgid "Perform track loudness normalization" -msgstr "曲をラウドネス正規化する" - -msgid "Target Level" -msgstr "ターゲットレベル" - -msgid "Fading" -msgstr "フェード" - -msgid "Fade out when stopping a track" -msgstr "トラックの停止時にフェードアウトする" - -msgid "Cross-fade when changing tracks manually" -msgstr "トラックを手動で変更したときにクロスフェードする" - -msgid "Cross-fade when changing tracks automatically" -msgstr "トラックが自動で変更するときにクロスフェードする" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "同じアルバムもしくはキューシートのトラック同士の場合は除外する" - -msgid "Fading duration" -msgstr "フェードの長さ" - -msgid "Fade out on pause / fade in on resume" -msgstr "一時停止/再開時にフェードアウト/インする" - -msgid "Add song artist tag" -msgstr "曲にアーティストタグを追加" - -msgid "Add song album tag" -msgstr "曲にアルバムタグを追加" - -msgid "Add song title tag" -msgstr "曲のタイトルタグを追加" - -msgid "Add song albumartist tag" -msgstr "曲にアルバムアーティストタグを追加" - -msgid "Add song year tag" -msgstr "曲の年タグを追加" - -msgid "Add song composer tag" -msgstr "曲に作曲者タグを追加" - -msgid "Add song performer tag" -msgstr "曲の出演者タグを追加" - -msgid "Add song grouping tag" -msgstr "曲の分類タグを追加" - -msgid "Add song disc tag" -msgstr "曲にディスクタグを追加" - -msgid "Add song track tag" -msgstr "曲のトラックタグを追加" - -msgid "Add song genre tag" -msgstr "曲にジャンルタグを追加" - -msgid "Add song length tag" -msgstr "曲に曲の長さのタグを追加" - -msgid "Add song play count" -msgstr "曲の再生回数を追加" - -msgid "Add song skip count" -msgstr "曲のスキップ回数を追加" - -msgid "Add a new line if supported by the notification type" -msgstr "改行を追加 (通知形式が対応している場合)" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "曲のファイル名を追加" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "曲の URL を追加" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "曲の評価を追加" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "元の年タグを追加" - -msgid "Custom text settings" -msgstr "カスタムテキスト設定" - -msgid "Summary" -msgstr "要約" - -msgid "Enable Items" -msgstr "アイテム有効化" - -msgid "Technical Data" -msgstr "技術データ" - -msgid "Song Lyrics" -msgstr "歌詞" - -msgid "Automatically search for album cover" -msgstr "アルバムカバーの自動検索" - -msgid "Font for headline" -msgstr "ヘッドラインのフォント" - -msgid "Font" -msgstr "フォント" - -msgid "Font size" -msgstr "フォントサイズ" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "データと歌詞のフォント" - -msgid "Use alternating row colors" -msgstr "行の色を交互に変える" - -msgid "Show bars on the currently playing track" -msgstr "現在再生中のトラックのバーを表示" - -msgid "Show a glowing animation on the currently playing track" -msgstr "現在再生中のトラックにグローアニメーションを表示する" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "曲が見つからない場合にプレイリストの次のアイテムを続ける" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "再生時にプレイリスト内の利用できない曲をグレーアウトする" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "起動時にプレイリストで利用できない曲をグレーアウトする" - -msgid "Automatically select current playing track" -msgstr "再生中の曲の自動選択" - -msgid "Enable playlist toolbar" -msgstr "プレイリストツールバーを有効にする" - -msgid "Enable playlist clear button" -msgstr "プレイリストのクリアボタンを有効化" - -msgid "Automatically sort playlist when inserting songs" -msgstr "曲を挿入時にプレイリストを自動的に並べ替える" - -msgid "When saving a playlist, file paths should be" -msgstr "プレイリストを保存する時、パス名は" - -msgid "A&utomatic" -msgstr "自動" - -msgid "Absolu&te" -msgstr "絶対パス(&t)" - -msgid "Re&lative" -msgstr "相対パス(&L)" - -msgid "As&k when saving" -msgstr "保存時に確認する(&K)" - -msgid "Metadata" -msgstr "メタデータ" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "有効にすると、プレイリストの選択された曲をクリックすることでタグの値を直接編集できるようになります" - -msgid "Enable song metadata inline edition with click" -msgstr "クリックによる曲のメタデータの直接編集を有効にする" - -msgid "Write metadata when saving playlists" -msgstr "プレイリストを保存するときにメタデータを書き込む" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "有効" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "有効なメタデータで30秒以上ある曲で、再生時間が少なくとも半分または4分間(どちらか早い方)になると、曲は Scrobble されます。" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "Scrobbleボタンを表示" - -msgid "Show love button" -msgstr "Loveボタンを表示" - -msgid "Submit scrobbles every" -msgstr "" - -msgid " seconds" -msgstr " 秒" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "Scrobbles を送信するときにアルバムアーティストを優先する" - -msgid "Show dialog for errors" -msgstr "エラーダイアログを表示" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "以下のソースへのScrobblingを有効化:" - -msgid "Local file" -msgstr "ローカルファイル" - -msgid "CDDA" -msgstr "オーディオ CD" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "ストリーム" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "ログイン" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "ユーザートークン:" - -msgid "Covers" -msgstr "カバー" - -msgid "Cover providers" -msgstr "カバー提供者" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "カバーの検索に利用するプロバイダーを選択します。" - -msgid "Authentication" -msgstr "認証" - -msgid "Album cover types" -msgstr "アルバムカバータイプ" - -msgid "Saving album covers" -msgstr "アルバムカバーを保存" - -msgid "Save album covers in album directory" -msgstr "アルバムカバーをアルバムディレクトリに保存" - -msgid "Save album covers in cache directory" -msgstr "アルバムカバーをキャッシュディレクトリに保存" - -msgid "Save album covers as embedded cover" -msgstr "アルバムカバーを埋め込みカバーとして保存" - -msgid "Filename:" -msgstr "ファイル名:" - -msgid "Pattern" -msgstr "パターン" - -msgid "Random" -msgstr "ランダム" - -msgid "Overwrite existing file" -msgstr "既存ファイルを上書きする" - -msgid "Lowercase filename" -msgstr "ファイル名を小文字にする" - -msgid "Replace spaces with dashes" -msgstr "スペースをダッシュ​​に置き換える" - -msgid "Lyrics" -msgstr "歌詞" - -msgid "Lyrics providers" -msgstr "歌詞提供元" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "歌詞の検索に利用するプロバイダーを選択します。" - -msgid "Network Proxy" -msgstr "ネットワークプロキシ" - -msgid "&Use the system proxy settings" -msgstr "システムのプロキシー設定を使用する" - -msgid "Direct internet connection" -msgstr "インターネットに直接接続する" - -msgid "&Manual proxy configuration" -msgstr "プロキシの手動構成(&M)" - -msgid "HTTP proxy" -msgstr "HTTP プロキシ" - -msgid "SOCKS proxy" -msgstr "SOCKS プロキシ" - -msgid "Port" -msgstr "ポート" - -msgid "Use authentication" -msgstr "認証を使用する" - -msgid "Username" -msgstr "ユーザー名" - -msgid "Password" -msgstr "パスワード" - -msgid "Use proxy settings for streaming" -msgstr "ストリーミングプロキシ設定" - -msgid "Appearance" -msgstr "外観" - -msgid "Style" -msgstr "スタイル" - -msgid "Use system theme icons" -msgstr "システムのテーマアイコンを使用する" - -msgid "Settings require restart." -msgstr "設定には再起動が必要です" - -msgid "Tabbar colors" -msgstr "タブバーの色" - -msgid "&Use the system default color" -msgstr "システムの既定の色を使用する" - -msgid "Use custom color" -msgstr "カスタム色" - -msgid "Use gradient background" -msgstr "背景" - -msgid "Select tabbar color:" -msgstr "タブバーの色を選択:" - -msgid "Background image" -msgstr "背景画像" - -msgid "Default bac&kground image" -msgstr "既定の背景(&K)" - -msgid "&No background image" -msgstr "背景画像なし(&N)" - -msgid "The album cover of the currently playing song" -msgstr "再生中の曲のアルバムカバー" - -msgid "Albu&m cover" -msgstr "アルバムカバー(&m)" - -msgid "Custom image:" -msgstr "カスタム画像:" - -msgid "Browse..." -msgstr "参照..." - -msgid "Position" -msgstr "位置" - -msgid "Upper Left" -msgstr "左上" - -msgid "Upper Right" -msgstr "右上" - -msgid "Middle" -msgstr "中央" - -msgid "Bottom Left" -msgstr "左下" - -msgid "Bottom Right" -msgstr "右下" - -msgid "Max cover size" -msgstr "最大カバーサイズ" - -msgid "Stretch image to fill playlist" -msgstr "" - -msgid "Keep aspect ratio" -msgstr "縦横比を維持" - -msgid "Do not cut image" -msgstr "画像をカットしない" - -msgid "Blur amount" -msgstr "ぼかし量" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "不透明度" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "アイコンサイズ" - -msgid "Playlist buttons" -msgstr "プレイリストボタン" - -msgid "Tabbar large mode" -msgstr "大きなタブバーモード" - -msgid "Play control buttons" -msgstr "再生コントロールボタン" - -msgid "Configure buttons" -msgstr "設定ボタン" - -msgid "Files, playlists and queue buttons" -msgstr "ファイル、プレイリスト、キューボタン" - -msgid "Tabbar small mode" -msgstr "小さなタブバーモード" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "システムのハイライト色" - -msgid "Custom color" -msgstr "カスタム色" - -msgid "Select playlist playing song color:" -msgstr "プレイリスト再生中の曲の色を選択:" - -msgid "Notifications" -msgstr "通知" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry はトラックの変更時にメッセージを表示できます。" - -msgid "Notification type" -msgstr "通知の種類" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "無効" - -msgid "Show a &native desktop notification" -msgstr "ネイティブのデスクトップ通知を表示" - -msgid "Show a pretty OSD" -msgstr "Pretty OSD を表示する" - -msgid "Show a popup fro&m the system tray" -msgstr "システムトレイからポップアップを表示する(&m)" - -msgid "General settings" -msgstr "全般設定" - -msgid "Popup duration" -msgstr "ポップアップの長さ" - -msgid "Disable duration" -msgstr "長さを無効にする" - -msgid "Show a notification when I change the volume" -msgstr "音量の変更時に通知を表示する" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "リピート・シャッフルモードの変更時に通知を表示する" - -msgid "Show a notification when I pause playback" -msgstr "ポーズした際に通知を表示する" - -msgid "Show a notification when I resume playback" -msgstr "再生再開時に通知を表示する" - -msgid "Include album art in the notification" -msgstr "通知にアルバムアートを含める" - -msgid "Custom message settings" -msgstr "カスタムメッセージの設定" - -msgid "Use a custom message for notifications" -msgstr "通知にカスタムメッセージを使用する" - -msgid "Body" -msgstr "本文" - -msgid "Pretty OSD options" -msgstr "Pretty OSD のオプション" - -msgid "Background color" -msgstr "背景色" - -msgid "Text options" -msgstr "文字のオプション" - -msgid "Choose font..." -msgstr "フォントの選択..." - -msgid "Choose color..." -msgstr "色の選択..." - -msgid "Background opacity" -msgstr "背景の不透明度" - -msgid "Basic Blue" -msgstr "標準のブルー" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "カスタム..." - -msgid "Enable fading" -msgstr "フェーディングを有効にする" - -msgid "Equalizer" -msgstr "イコライザー" - -msgid "Preset:" -msgstr "プリセット:" - -msgid "Enable equalizer" -msgstr "イコライザーを有効にする" - -msgid "Enable stereo balancer" -msgstr "ステレオバランサーを有効化" - -msgid "Left" -msgstr "左" - -msgid "Balance" -msgstr "バランス" - -msgid "Right" -msgstr "右" - -msgid "About" -msgstr "" - -msgid "Strawberry Error" -msgstr "Strawberry のエラー" - -msgid "Console" -msgstr "コンソール" - -msgid "Run" -msgstr "実行" - -msgid "Edit track information" -msgstr "トラック情報の編集" - -msgid "Date created" -msgstr "作成日時" - -msgid "Art Automatic" -msgstr "自動アート" - -msgid "Date modified" -msgstr "更新日時" - -msgid "Art Embedded" -msgstr "アート埋め込み" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "最後に再生" - -msgid "Play count" -msgstr "再生回数" - -msgid "EBU R 128 integrated loudness" -msgstr "EBU R 128 統合ラウドネス" - -msgid "Bit rate" -msgstr "ビットレート" - -msgid "Skip count" -msgstr "スキップ回数" - -msgid "Path" -msgstr "パス" - -msgid "Filename" -msgstr "ファイル名" - -msgid "Art Unset" -msgstr "アート解除" - -msgid "File size" -msgstr "ファイルサイズ" - -msgid "Art Manual" -msgstr "手動アート" - -msgid "EBU R 128 loudness range" -msgstr "EBU R 128 ラウドネスレンジ" - -msgid "Reset play counts" -msgstr "再生回数のリセット" - -msgid "Change art" -msgstr "アートの変更" - -msgid "Embedded cover" -msgstr "埋め込みカバー" - -msgid "Complete tags automatically" -msgstr "タグの自動補完" - -msgid "Compilation" -msgstr "コンピレーション" - -msgid "Tags" -msgstr "タグ" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "タグ取得ツール" - -msgid "Sorry" -msgstr "申し訳ありません" - -msgid "Strawberry was unable to find results for this file" -msgstr "このファイルの検索結果を見つけられませんでした。" - -msgid "Select best possible match" -msgstr "一番近いものを選ぶ" - -msgid "Add Stream" -msgstr "ストリームを追加" - -msgid "Enter the URL of a stream:" -msgstr "ストリームのURLを入力:" - -msgid "Enter username and password" -msgstr "ユーザー名とパスワードを入力:" - -msgid "Import data from last.fm" -msgstr "last.fm からデータをインポート" - -msgid "Choose data to import from last.fm" -msgstr "last.fm からインポートするデータを選択" - -msgid "Play counts" -msgstr "再生回数" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "警告: last.fm から受信した再生回数と最後に再生された曲は、一致した曲の同じデータを完全に置き換えます。再生回数は同じアルバムのアーティストと曲名に基づいてデータを置き換えます! 開始する前にデータベースをバックアップしてください。" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "閉じる" - -msgid "Cancel" -msgstr "キャンセル" - -msgid "Message Dialog" -msgstr "メッセージダイアログ" - -msgid "Do not show this message again." -msgstr "このメッセージを再度表示しない" - -msgid "Select directory for saving playlists" -msgstr "プレイリストを保存するディレクトリを選択" - -msgid "Type" -msgstr "タイプ" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "ここをクリックすると、残り時間と合計時間の表示を切り替えます" - -msgid "You are not signed in." -msgstr "サインインしていません。" - -msgid "Sign out" -msgstr "サインアウト" - -msgid "Signing in..." -msgstr "サインインしています..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "アーティスト" - -msgid "Albums" -msgstr "アルバム" - -msgid "Songs" -msgstr "曲" - -msgid "Refresh catalogue" -msgstr "カタログを更新" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "アーティスト" - -msgid "albums" -msgstr "アルバム" - -msgid "songs" -msgstr "曲" - -msgid "Organize Files" -msgstr "ファイルを管理" - -msgid "Destination" -msgstr "フォルダー" - -msgid "After copying..." -msgstr "コピー後..." - -msgid "Keep the original files" -msgstr "元のファイルを保持する" - -msgid "Delete the original files" -msgstr "元のファイルを削除する" - -msgid "Naming options" -msgstr "名前のオプション" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

トークンは % で始まります (例: %artist %album %title)。

\n\n" -"

トークンを含むテキストの一部を「{ }」で囲むと、トークンが空の場合、{ } で選択した部分が非表示になります。

" - -msgid "Insert..." -msgstr "挿入..." - -msgid "Remove problematic characters from filenames" -msgstr "ファイル名から問題のある文字を削除する" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "FATファイルシステムで許可されている文字に制限" - -msgid "Restrict characters to ASCII" -msgstr "文字をASCIIに制限" - -msgid "Allow extended ASCII characters" -msgstr "拡張ASCII文字の許可" - -msgid "Replace spaces with underscores" -msgstr "スペースをアンダースコアに置き換える" - -msgid "Overwrite existing files" -msgstr "既存のファイルを上書きする" - -msgid "Copy album cover artwork" -msgstr "アルバムのカバーアートワークをコピー" - -msgid "Safely remove the device after copying" -msgstr "コピー後にデバイスを安全に取り外す" - -msgid "Press a key" -msgstr "キーを押してください" - -msgid "Global Shortcuts" -msgstr "グローバルショートカット" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "可能なら Gnome (GSD) のショートカットを使用する" - -msgid "Open..." -msgstr "開く..." - -msgid "Use MATE shortcuts when available" -msgstr "可能なら MATE のショートカットを使用する" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "可能なら KDE (KGlobalAccel) のショートカットを使用する" - -msgid "Use X11 shortcuts when available" -msgstr "可能なら X11 のショートカットを使用する" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "" - -msgid "Shortcut" -msgstr "ショートカット" - -msgctxt "Category label" -msgid "Action" -msgstr "アクション" - -msgid "&None" -msgstr "なし(&N)" - -msgid "&Default" -msgstr "デフォルト(&D)" - -msgid "&Custom" -msgstr "カスタム(&C)" - -msgid "Change shortcut..." -msgstr "ショートカットの変更..." - -msgid "Device Properties" -msgstr "デバイスのプロパティ" - -msgid "Icon" -msgstr "アイコン" - -msgid "Hardware information" -msgstr "ハードウェアの情報" - -msgid "Hardware information is only available while the device is connected." -msgstr "ハードウェアの情報はデバイス接続中のみ利用できます。" - -msgid "Information" -msgstr "情報" - -msgid "Supported formats" -msgstr "サポートされている形式" - -msgid "This device supports the following file formats:" -msgstr "このデバイスは次のファイル形式をサポートしています:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry はこのデバイスへコピーする際、このデバイスで再生可能な形式に自動で変換できます。" - -msgid "Do not convert any music" -msgstr "すべてのミュージックを変換しない" - -msgid "Convert any music that the device can't play" -msgstr "デバイスが再生できないすべての曲を変換する" - -msgid "Convert all music" -msgstr "すべての曲を変換する" - -msgid "Preferred format" -msgstr "優先する形式" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Strawberry がこのデバイスのサポートするファイル形式を認識する前にデバイスが接続されて開かれている必要があります。" - -msgid "Open device" -msgstr "デバイスを開く" - -msgid "Querying device..." -msgstr "デバイスを照会しています..." - -msgid "File formats" -msgstr "ファイル形式" - -msgid "Transcode Music" -msgstr "音楽のトランスコード" - -msgid "Files to transcode" -msgstr "トランスコードするファイル" - -msgid "Directory" -msgstr "ディレクトリ" - -msgid "Add..." -msgstr "追加..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "ディレクトリとサブディレクトリにあるすべてのトラックを追加" - -msgid "Import..." -msgstr "インポート中..." - -msgid "Output options" -msgstr "出力のオプション" - -msgid "Audio format" -msgstr "オーディオ形式" - -msgid "Options..." -msgstr "オプション..." - -msgid "Alongside the originals" -msgstr "元と同じ" - -msgid "Select..." -msgstr "選択..." - -msgid "Progress" -msgstr "進行状況" - -msgid "Details..." -msgstr "詳細..." - -msgid "Transcoder Log" -msgstr "トランスコーダーのログ" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "プロファイル" - -msgid "Main profile (MAIN)" -msgstr "Main プロファイル (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Low Complexity プロファイル (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Scalable Sampling Rate プロファイル (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Long Term Prediction プロファイル (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Temporal Noise Shaping (TNS) を使用する" - -msgid "Allow mid/side encoding" -msgstr "M/S エンコードを許可" - -msgid "Block type" -msgstr "ブロックタイプ" - -msgid "Normal block type" -msgstr "通常ブロックタイプ" - -msgid "No short blocks" -msgstr "短いブロックなし" - -msgid "No long blocks" -msgstr "長いブロックなし" - -msgid "Transcoding options" -msgstr "トランスコードのオプション" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "品質" - -msgid "Fast" -msgstr "速" - -msgid "Best" -msgstr "良" - -msgid "Use bitrate management engine" -msgstr "ビットレート管理エンジンを使用する" - -msgid "Target bitrate" -msgstr "目標ビットレート" - -msgid "Minimum bitrate" -msgstr "最低ビットレート" - -msgid "disabled" -msgstr "無効" - -msgid "Maximum bitrate" -msgstr "最高ビットレート" - -msgid "automatic" -msgstr "自動" - -msgid "Average bitrate" -msgstr "平均ビットレート" - -msgid "Encoding mode" -msgstr "エンコーディングモード" - -msgid "Auto" -msgstr "自動" - -msgid "Ultra wide band (UWB)" -msgstr "超高速回線 (UWB)" - -msgid "Wide band (WB)" -msgstr "高速回線 (WB)" - -msgid "Narrow band (NB)" -msgstr "低速回線 (NB)" - -msgid "Variable bit rate" -msgstr "可変ビットレート" - -msgid "Voice activity detection" -msgstr "有音/無音検出 (VAD)" - -msgid "Discontinuous transmission" -msgstr "不連続送信 (DTX)" - -msgid "Encoding complexity" -msgstr "Complexity エンコーディング" - -msgid "Frames per buffer" -msgstr "バッファーあたりのフレーム数" - -msgid "Optimize for &quality" -msgstr "音質で最適化(&q)" - -msgid "Opti&mize for bitrate" -msgstr "ビットレートで最適化(&m)" - -msgid "Constant bitrate" -msgstr "固定ビットレート" - -msgid "Encoding engine quality" -msgstr "エンコーディングエンジンの品質" - -msgid "Standard" -msgstr "標準" - -msgid "High" -msgstr "高" - -msgid "Force mono encoding" -msgstr "モノラルエンコーディングを強制する" - -msgid "Transcoding" -msgstr "トランスコード" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "以下の設定は「音楽のトランスコード」ダイアログや、デバイスへコピーする前に音楽を変換する時に使われます。" - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "サーバーURL" - -msgid "Authentication method:" -msgstr "認証方法:" - -msgid "Hex" -msgstr "16進数" - -msgid "MD5 token (Recommended)" -msgstr "MD5トークン (推奨)" - -msgid "Preferences" -msgstr "設定" - -msgid "Use HTTP/2 when possible" -msgstr "可能な場合は HTTP/2 を使用" - -msgid "Verify server certificate" -msgstr "サーバー証明書の検証" - -msgid "Download album covers" -msgstr "アルバムカバーをダウンロード" - -msgid "Server-side scrobbling" -msgstr "サーバーサイドの scrobbling" - -msgid "Test" -msgstr "テスト" - -msgid "Delete songs" -msgstr "曲の削除" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Tidal サポートは公式ではないため、利用するには登録済みアプリケーションの API トークンが必要です。これらを入手するお手伝いはできません。" - -msgid "Use OAuth" -msgstr "OAuth を使用する" - -msgid "Client ID" -msgstr "クライアント ID" - -msgid "API Token" -msgstr "API トークン" - -msgid "Audio quality" -msgstr "音質" - -msgid "Search delay" -msgstr "" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "アーティスト検索の制限" - -msgid "Albums search limit" -msgstr "アルバム検索の制限" - -msgid "Songs search limit" -msgstr "曲検索の制限" - -msgid "Fetch entire albums when searching songs" -msgstr "曲検索時にアルバム全体を取得する" - -msgid "Album cover size" -msgstr "アルバムカバーサイズ" - -msgid "Stream URL method" -msgstr "ストリームURLメソッド" - -msgid "Append explicit to album title for explicit albums" -msgstr "露骨な表現を含むアルバムのタイトルに露骨な表現を追加する。" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Qobuz のサポートは公式ではなく、利用するには API app ID と登録済みアプリケーションのシークレットが必要です。私たちはあなたがこれらを手に入れるのを手伝うことはできません。" - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "Base64でエンコードされたシークレット" - -msgid "Moodbar" -msgstr "ムードバー" - -msgid "Show a moodbar in the track progress bar" -msgstr "プログレスバー内にムードバーを表示" - -msgid "Save the .mood files directly in the songs folders" -msgstr ".mood ファイルを曲フォルダーに直接保存" - -msgid "Enabled" -msgstr "有効" - -msgid "Return to Strawberry" -msgstr "Strawberry に戻る" - -msgid "Success!" -msgstr "成功!" - -msgid "Please close your browser and return to Strawberry." -msgstr "ブラウザーを閉じて Strawberry に戻ってください。" - diff --git a/src/translations/ko_KR.po b/src/translations/ko_KR.po deleted file mode 100644 index 1da374fd..00000000 --- a/src/translations/ko_KR.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: ko\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Korean\n" -"Language: ko_KR\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "모든 파일 (*)" - -msgid "Context" -msgstr "지금 재생" - -msgid "Collection" -msgstr "라이브러리" - -msgid "Queue" -msgstr "대기열" - -msgid "Playlists" -msgstr "재생 목록" - -msgid "Smart playlists" -msgstr "스마트 재생 목록" - -msgid "Files" -msgstr "파일" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "장치" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "모든 곡 표시" - -msgid "Show only duplicates" -msgstr "복사본만 표시" - -msgid "Show only untagged" -msgstr "태그되지 않은 것만 표시" - -msgid "Configure collection..." -msgstr "라이브러리 설정..." - -msgid "Play" -msgstr "재생" - -msgid "Stop after this track" -msgstr "현재 트랙 이후 정지" - -msgid "Toggle queue status" -msgstr "대기열 상태 전환" - -msgid "Queue selected tracks to play next" -msgstr "선택한 트랙을 다음에 재생하도록 대기열에 추가" - -msgid "Toggle skip status" -msgstr "건너뛰기 상태 전환" - -msgid "Rescan song(s)..." -msgstr "다시 곡 검색" - -msgid "Copy URL(s)..." -msgstr "URL 복사" - -msgid "Show in collection..." -msgstr "라이브러리에 표시..." - -msgid "Show in file browser..." -msgstr "파일 탐색기에 표시..." - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "라이브러리로 복사..." - -msgid "Move to collection..." -msgstr "라이브러리로 이동..." - -msgid "Copy to device..." -msgstr "장치로 복사..." - -msgid "Delete from disk..." -msgstr "디스크에서 삭제..." - -msgid "Check for updates..." -msgstr "업데이트 확인..." - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "일시 정지" - -msgid "Dequeue track" -msgstr "대기열에서 트랙 삭제" - -msgid "Dequeue selected tracks" -msgstr "선택한 트랙을 대기열에서 삭제" - -msgid "Queue track" -msgstr "대기열에 트랙 추가" - -msgid "Queue selected tracks" -msgstr "선택한 트랙을 대기열에 추가" - -msgid "Queue to play next" -msgstr "다음에 재생할 대기열에 추가" - -msgid "Unskip track" -msgstr "트랙 건너뛰기 해제" - -msgid "Unskip selected tracks" -msgstr "선택한 트랙 건너뛰기 해제" - -msgid "Skip track" -msgstr "트랙 건너뛰기" - -msgid "Skip selected tracks" -msgstr "선택한 트랙 건너뛰기" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "%1을(를) \"%2\"(으)로 설정..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "\"%1\" 태그 편집..." - -msgid "Add to another playlist" -msgstr "다른 재생 목록에 추가" - -msgid "New playlist" -msgstr "새로운 재생 목록" - -msgid "Add file" -msgstr "파일 추가" - -msgid "Music" -msgstr "음악" - -msgid "Add folder" -msgstr "폴더 추가" - -msgid "Clear playlist" -msgstr "재생 목록 비우기" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "재생 목록에 %1곡이 있습니다. 실행 취소하기에는 너무 큽니다. 재생 목록을 비우시겠습니까?" - -msgid "Error" -msgstr "오류" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "선택한 음악을 장치에 복사하기에 적합하지 않음" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Strawberry의 업데이트한 버전에 다음 기능이 추가되어 전체 라이브러리를 재검색해야 합니다:" - -msgid "Would you like to run a full rescan right now?" -msgstr "지금 전부 다시 검색하시겠습니까?" - -msgid "Collection rescan notice" -msgstr "라이브러리 재탐색 알림" - -msgid "Usage" -msgstr "사용" - -msgid "options" -msgstr "옵션" - -msgid "URL(s)" -msgstr "URL" - -msgid "Player options" -msgstr "재생기 옵션" - -msgid "Start the playlist currently playing" -msgstr "현재 재생 중인 재생 목록 시작" - -msgid "Play if stopped, pause if playing" -msgstr "정지 상태라면 재생, 재생 상태라면 일시 정지" - -msgid "Pause playback" -msgstr "재생 일시 정지" - -msgid "Stop playback" -msgstr "재생 정지" - -msgid "Stop playback after current track" -msgstr "현재 트랙 이후에 재생 정지" - -msgid "Skip backwards in playlist" -msgstr "재생 목록의 이전 곡으로 전환" - -msgid "Skip forwards in playlist" -msgstr "재생 목록의 다음 곡으로 전환" - -msgid "Set the volume to percent" -msgstr "음량을 퍼센트로 설정" - -msgid "Increase the volume by 4 percent" -msgstr "4퍼센트만큼 음량 올리기" - -msgid "Decrease the volume by 4 percent" -msgstr "4퍼센트만큼 음량 내리기" - -msgid "Increase the volume by percent" -msgstr "%만큼 음량 올리기" - -msgid "Decrease the volume by percent" -msgstr "%만큼 음량 내리기" - -msgid "Seek the currently playing track to an absolute position" -msgstr "현재 재생 중인 트랙의 절대적 위치로 이동" - -msgid "Seek the currently playing track by a relative amount" -msgstr "현재 재생 중인 트랙을 상대적 양만큼 이동" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "트랙을 다시 시작하거나, 재생한 지 8초 이내라면 이전 트랙을 재생합니다." - -msgid "Playlist options" -msgstr "재생 목록 옵션" - -msgid "Create a new playlist with files" -msgstr "지정한 파일을 포함하는 새 재생 목록 만들기" - -msgid "Append files/URLs to the playlist" -msgstr "재생 목록에 파일/URL 추가" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "불러올 파일이나 URL, 현재 재생 목록을 대체함" - -msgid "Play the th track in the playlist" -msgstr "재생 목록의 번째 곡 재생" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "기타 옵션" - -msgid "Display the on-screen-display" -msgstr "OSD 표시" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "예쁜 OSD 표시 여부 전환" - -msgid "Change the language" -msgstr "언어 변경" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "--log-levels *:1과 동일함" - -msgid "Equivalent to --log-levels *:3" -msgstr "--log-levels *:3과 동일함" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "쉼표로 구분된 class:level 목록, level은 0-3" - -msgid "Print out version information" -msgstr "버전 정보 표시" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "무결성 검사" - -msgid "Database corruption detected." -msgstr "데이터베이스가 손상되었습니다." - -msgid "Backing up database" -msgstr "데이터베이스 백업 중" - -msgid "Deleting files" -msgstr "파일 삭제 중" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "알 수 없음" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "이 URL에 접근하려면 GStreamer가 필요합니다." - -msgid "Preload function was not set for blocking operation." -msgstr "차단하는 작업의 프리로드 함수를 설정하지 않았습니다." - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "%1 파일은 올바른 오디오 파일이 아닌 것 같습니다." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "CD 재생은 GStreamer 엔진에서만 지원합니다." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "재생 목록" - -msgid "1 day" -msgstr "1일" - -#, qt-format -msgid "%1 days" -msgstr "%1일" - -msgid "Today" -msgstr "오늘" - -msgid "Yesterday" -msgstr "어제" - -#, qt-format -msgid "%1 days ago" -msgstr "%1일 전" - -msgid "Tomorrow" -msgstr "내일" - -#, qt-format -msgid "In %1 days" -msgstr "%1일 후" - -msgid "Next week" -msgstr "다음 주" - -#, qt-format -msgid "In %1 weeks" -msgstr "%1주 후" - -msgid "Show in file browser" -msgstr "파일 탐색기에 표시" - -msgid "Too many songs selected." -msgstr "너무 많은 곡을 선택했습니다." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "알 수 없는 오류" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "아티스트" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "사용 가능한 필드" - -msgid "Framerate" -msgstr "프레임레이트" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "낮음(%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "중간(%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "높음(%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "아주 높음(%1 fps)" - -msgid "No analyzer" -msgstr "분석기 없음" - -msgid "Block analyzer" -msgstr "블록 분석기" - -msgid "Boom analyzer" -msgstr "붐 분석기" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "프리앰프" - -msgid "Custom" -msgstr "사용자 정의" - -msgid "Classical" -msgstr "클래식" - -msgid "Club" -msgstr "클럽" - -msgid "Dance" -msgstr "댄스" - -msgid "Full Bass" -msgstr "저음 강화" - -msgid "Full Treble" -msgstr "고음 강화" - -msgid "Full Bass + Treble" -msgstr "저음+고음 강화" - -msgid "Laptop/Headphones" -msgstr "노트북/헤드폰" - -msgid "Large Hall" -msgstr "거대한 홀" - -msgid "Live" -msgstr "라이브" - -msgid "Party" -msgstr "파티" - -msgid "Pop" -msgstr "팝" - -msgid "Reggae" -msgstr "레게" - -msgid "Rock" -msgstr "록" - -msgid "Soft" -msgstr "소프트" - -msgid "Ska" -msgstr "스카" - -msgid "Soft Rock" -msgstr "소프트 록" - -msgid "Techno" -msgstr "테크노" - -msgid "Zero" -msgstr "제로" - -msgid "Save preset" -msgstr "사전 설정 저장" - -msgid "Name" -msgstr "이름" - -msgid "Delete preset" -msgstr "사전 설정 삭제" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "\"%1\" 사전 설정을 지우시겠습니까?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "파일 형식" - -msgid "Length" -msgstr "길이" - -msgid "Samplerate" -msgstr "샘플링 레이트" - -msgid "Bit depth" -msgstr "비트 해상도" - -msgid "Bitrate" -msgstr "비트 전송률" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "앨범아트 보기" - -msgid "Show song technical data" -msgstr "노래의 기술적 데이터 표시" - -msgid "Show song lyrics" -msgstr "노래 가사 표시" - -msgid "Automatically search for song lyrics" -msgstr "자동으로 가사 찾기" - -msgid "No song playing" -msgstr "재생 중인 곡 없음" - -#, qt-format -msgid "%1 song" -msgstr "노래 %1곡" - -#, qt-format -msgid "%1 songs" -msgstr "노래 %1곡" - -#, qt-format -msgid "%1 artist" -msgstr "아티스트 %1명" - -#, qt-format -msgid "%1 artists" -msgstr "아티스트 %1명" - -#, qt-format -msgid "%1 album" -msgstr "앨범 %1개" - -#, qt-format -msgid "%1 albums" -msgstr "앨범 %1개" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "편집 음반" - -msgid "Loading..." -msgstr "불러오는 중..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "라이브러리 업데이트 중" - -#, qt-format -msgid "Updating %1" -msgstr "%1 업데이트 중" - -msgid "Your collection is empty!" -msgstr "라이브러리가 비어 있습니다!" - -msgid "Click here to add some music" -msgstr "음악을 추가하려면 여기를 클릭하십시오" - -msgid "Append to current playlist" -msgstr "현재 재생 목록에 추가" - -msgid "Replace current playlist" -msgstr "현재 재생 목록 대체" - -msgid "Open in new playlist" -msgstr "새 재생 목록에서 열기" - -msgid "Search for this" -msgstr "다음 항목 검색" - -msgid "Edit track information..." -msgstr "트랙 정보 편집..." - -msgid "Edit tracks information..." -msgstr "트랙 정보 편집..." - -msgid "Rescan song(s)" -msgstr "노래 다시 검색" - -msgid "Show in various artists" -msgstr "편집 음반으로 표시" - -msgid "Don't show in various artists" -msgstr "여러 아티스로 표시하지 않기" - -msgid "There are other songs in this album" -msgstr "이 앨범에 다른 곡이 있습니다" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "표시" - -msgid "Group by" -msgstr "그룹 방식" - -msgid "Display options" -msgstr "옵션 표시" - -msgid "Group by Album artist/Album" -msgstr "앨범 아티스트/앨범으로 그룹" - -msgid "Group by Album artist/Album - Disc" -msgstr "앨범 아티스트/앨범 - 디스크로 그룹" - -msgid "Group by Album artist/Year - Album" -msgstr "앨범 아티스트/년도 - 앨범으로 그룹" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "앨범 아티스트/년도 - 앨범 - 디스크로 그룹" - -msgid "Group by Artist/Album" -msgstr "아티스트/앨범으로 그룹" - -msgid "Group by Artist/Album - Disc" -msgstr "아티스트/앨범 - 디스크로 그룹" - -msgid "Group by Artist/Year - Album" -msgstr "아티스트/년도 - 앨범으로 그룹" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "아티스트/년도 - 앨범 - 디스크로 그룹" - -msgid "Group by Genre/Album artist/Album" -msgstr "장르/앨범 아티스트/앨범으로 그룹" - -msgid "Group by Genre/Artist/Album" -msgstr "장르/아티스트/앨범으로 그룹" - -msgid "Group by Album Artist" -msgstr "앨범 아티스트로 그룹" - -msgid "Group by Artist" -msgstr "아티스트로 그룹" - -msgid "Group by Album" -msgstr "앨범으로 그룹" - -msgid "Group by Genre/Album" -msgstr "장르/앨범으로 그룹" - -msgid "Advanced grouping..." -msgstr "고급 그룹..." - -msgid "Grouping Name" -msgstr "그룹 이름" - -msgid "Grouping name:" -msgstr "그룹 이름:" - -msgid "First level" -msgstr "첫 단계" - -msgid "Second Level" -msgstr "두 번째 단계" - -msgid "Third Level" -msgstr "세 번째 단계" - -msgid "None" -msgstr "없음" - -msgid "Album artist" -msgstr "앨범 아티스트" - -msgid "Artist" -msgstr "아티스트" - -msgid "Album" -msgstr "앨범" - -msgid "Album - Disc" -msgstr "앨범 - 디스크" - -msgid "Year - Album" -msgstr "년도 - 앨범" - -msgid "Year - Album - Disc" -msgstr "년도 - 앨범 - 디스크" - -msgid "Original year - Album" -msgstr "원본 년도 - 앨범" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "디스크" - -msgid "Year" -msgstr "년도" - -msgid "Original year" -msgstr "원본 년도" - -msgid "Genre" -msgstr "장르" - -msgid "Composer" -msgstr "작곡가" - -msgid "Performer" -msgstr "연주가" - -msgid "Grouping" -msgstr "그룹" - -msgid "File type" -msgstr "파일 형식" - -msgid "Format" -msgstr "형식" - -msgid "Sample rate" -msgstr "샘플링 레이트" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "제목" - -msgid "Track" -msgstr "트랙" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "설명" - -msgid "Source" -msgstr "출처" - -msgid "Mood" -msgstr "무드" - -msgid "Rating" -msgstr "" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "재생 목록 불러오기" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "일치하는 결과를 찾을 수 없습니다. 검색어를 비우면 전체 재생 목록을 볼 수 있습니다." - -msgid "stop" -msgstr "정지" - -msgid "Never" -msgstr "없음" - -msgid "&Hide..." -msgstr "숨기기(&H)..." - -msgid "&Stretch columns to fit window" -msgstr "창 크기에 맞게 열 너비 조정(&S)" - -msgid "&Reset columns to default" -msgstr "기본값으로 열 초기화(&R)" - -msgid "&Lock rating" -msgstr "" - -msgid "&Align text" -msgstr "텍스트 정렬(&A)" - -msgid "&Left" -msgstr "왼쪽(&L)" - -msgid "&Center" -msgstr "가운데(&C)" - -msgid "&Right" -msgstr "오른쪽(&R)" - -#, qt-format -msgid "&Hide %1" -msgstr "%1 숨기기(&H)" - -msgid "New folder" -msgstr "새 폴더" - -msgid "Delete" -msgstr "삭제" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "재생 목록 저장" - -msgid "Enter the name of the folder" -msgstr "폴더 이름 입력" - -msgid "Copy to device" -msgstr "디바이스에 복사" - -msgid "Playlist must be open first." -msgstr "" - -msgid "Remove playlists" -msgstr "재생 목록 삭제" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "즐겨찾기에서 재생 목록 %1개를 삭제할 것입니다. 계속 진행하시겠습니까?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "재생 목록 왼쪽의 별 모양 아이콘을 클릭해서 즐겨찾기에 추가할 수 있습니다." - -msgid "Favorited playlists will be saved here" -msgstr "즐겨찾는 재생 목록은 여기에 저장됩니다" - -msgid "Couldn't create playlist" -msgstr "재생 목록을 생성할 수 없음" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "재생 목록 저장" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "%1개 선택됨," - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "자동" - -msgid "Relative" -msgstr "상대 경로" - -msgid "Absolute" -msgstr "절대 경로" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "재생 목록 닫기" - -msgid "Rename playlist..." -msgstr "재생 목록 이름 바꾸기..." - -msgid "Save playlist..." -msgstr "재생 목록 저장..." - -msgid "Rename playlist" -msgstr "재생 목록 이름 바꾸기" - -msgid "Enter a new name for this playlist" -msgstr "재생 목록의 새로운 이름 입력" - -msgid "Remove playlist" -msgstr "재생 목록 삭제" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "즐겨찾는 재생 목록에 없는 재생 목록을 삭제하려고 합니다. 이 작업은 취소할 수 없습니다.\n" -"계속 진행하시겠습니까?" - -msgid "Warn me when closing a playlist tab" -msgstr "재생 목록 탭을 닫을 때 알리기" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "이 옵션은 \"행동\" 설정에서 변경할 수 있습니다" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "%n곡 추가" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "%n곡 삭제" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "%n곡 이동" - -msgid "sort songs" -msgstr "음악 정렬" - -msgid "shuffle songs" -msgstr "노래 섞기" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "오디오 CD를 불러오는 중 오류가 발생했습니다." - -msgid "Loading tracks" -msgstr "트랙 불러오는 중" - -msgid "Loading tracks info" -msgstr "트랙 정보 불러오는 중" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "모든 재생 목록(%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "재생 목록 %1개(%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "스마트 재생 목록 로딩" - -msgid "Collection search" -msgstr "라이브러리 검색" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "검색 조건" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "이 조건에 맞는 곡들이 재생 목록에 들어갑니다." - -msgid "Search options" -msgstr "검색 옵션" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "재생목록 정렬 조건과 최대로 들어갈 곡 수를 정하세요." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "" - -#, qt-format -msgid "%1 songs found" -msgstr "" - -msgid "after" -msgstr "" - -msgid "before" -msgstr "" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "" - -msgid "contains" -msgstr "" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "" - -msgid "Days" -msgstr "" - -msgid "Weeks" -msgstr "" - -msgid "Months" -msgstr "" - -msgid "Years" -msgstr "" - -msgid "The second value must be greater than the first one!" -msgstr "두번째 값은 첫번째보다 커야 합니다." - -msgid "Add search term" -msgstr "검색 조건 추가" - -msgid "Newest tracks" -msgstr "새로 추가된 곡" - -msgid "50 random tracks" -msgstr "랜덤 곡 50곡" - -msgid "Ever played" -msgstr "재생된 적 있음" - -msgid "Never played" -msgstr "한번도 재생하지 않은 곡" - -msgid "Last played" -msgstr "마지막 재생" - -msgid "Most played" -msgstr "많이 재생된 곡" - -msgid "Favourite tracks" -msgstr "좋아요 표시된 곡" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "모든 트랙" - -msgid "Dynamic random mix" -msgstr "모든 곡 랜덤 믹스" - -msgid "New smart playlist..." -msgstr "새 스마트 재생 목록" - -msgid "Play next" -msgstr "다음 재생" - -msgid "Edit smart playlist..." -msgstr "스마트 재생 목록 수정" - -msgid "Delete smart playlist" -msgstr "스마트 재생 목록 제거" - -msgid "Smart playlist" -msgstr "스마트 재생 목록" - -msgid "Playlist type" -msgstr "" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "스마트 재생 목록은 조건에 맞는 곡들을 라이브러리에서 찾아 자동으로 생성됩니다. 다양한 스마트 재생 목록과 스마트 재생 목록을 만드는 규칙들이 있습니다." - -msgid "Finish" -msgstr "완료" - -msgid "Choose a name for your smart playlist" -msgstr "스마트 재생 목록 이름을 정하세요" - -msgid "Abort" -msgstr "중지" - -msgid "All albums" -msgstr "모든 앨범" - -msgid "Albums with covers" -msgstr "앨범아트가 있는 앨범" - -msgid "Albums without covers" -msgstr "앨범아트가 없는 앨범" - -msgid "Really cancel?" -msgstr "정말로 취소하시겠습니까?" - -msgid "Closing this window will stop searching for album covers." -msgstr "이 창을 닫으면 앨범아트 검색을 정지합니다." - -msgid "Don't stop!" -msgstr "멈추지 마세요!" - -msgid "All artists" -msgstr "모든 아티스트" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "앨범아트 %2개 중 %1개 가져옴(%3개 실패)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1개 전송됨" - -msgid "Export finished" -msgstr "내보내기 완료" - -msgid "No covers to export." -msgstr "내보낼 표지가 없습니다." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "앨범아트 %2개 중 %1개 내보냄(%3개 건너뜀)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "%1의 표지" - -msgid "Search" -msgstr "검색" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "그림 (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "그림 (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "모든 파일 (*)" - -msgid "Load cover from disk..." -msgstr "디스크에서 표지 불러오기..." - -msgid "Save cover to disk..." -msgstr "디스크에 표지 저장..." - -msgid "Load cover from URL..." -msgstr "URL에서 표지 불러오기..." - -msgid "Search for album covers..." -msgstr "앨범아트 검색..." - -msgid "Unset cover" -msgstr "표지 설정 해제" - -msgid "Delete cover" -msgstr "" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "전체 크기 표시..." - -msgid "Search automatically" -msgstr "자동으로 검색" - -msgid "Load cover from disk" -msgstr "디스크에서 표지 불러오기" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "알 수 없음" - -msgid "Save album cover" -msgstr "앨범아트 저장" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "총 네트워크 요청 수" - -msgid "Average image size" -msgstr "평균 그림 크기" - -msgid "Total bytes transferred" -msgstr "전송된 총 바이트" - -msgid "Fetching cover error" -msgstr "표지 가져오기 오류" - -msgid "The site you requested does not exist!" -msgstr "요청한 사이트가 존재하지 않습니다!" - -msgid "The site you requested is not an image!" -msgstr "요청한 사이트는 이미지가 아닙니다!" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "웹 브라우저에서 다음 URL을 여십시오" - -msgid "Redirect missing token code!" -msgstr "넘겨주기 응답에 토큰 코드가 없습니다!" - -msgid "Received invalid reply from web browser." -msgstr "웹 브라우저에서 잘못된 응답을 받았습니다." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "일반" - -msgid "User interface" -msgstr "사용자 인터페이스" - -msgid "Streaming" -msgstr "스트리밍" - -msgid "Add directory..." -msgstr "디렉터리 추가..." - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "다음에 있는 사용자 토큰 입력: " - -msgid "Use Tidal settings to authenticate." -msgstr "" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "" - -msgid "No provider selected." -msgstr "아무 곳도 선택되지 않았습니다." - -msgid "Authentication failed" -msgstr "인증 실패" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "배경 그림 선택" - -msgid "OSD Preview" -msgstr "OSD 미리 보기" - -msgid "Drag to reposition" -msgstr "위치를 바꾸려면 드래그하십시오" - -msgid "About Strawberry" -msgstr "Strawberry 정보" - -#, qt-format -msgid "Version %1" -msgstr "버전 %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry는 음악 재생기 및 음악 라이브러리 관리 도구입니다." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "이 프로그램은 2018년에 음악 컬렉터들과 오디오파일을 위해 Clementine으로부터 포크되었습니다." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry는 GPL로 라이선스되는 자유 소프트웨어이고 소스 코드는 %1에서 볼 수 있습니다." - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "GPL 라이선스가 프로그램과 함께 제공됩니다. 만약 그렇지 않았다면 %1에서 볼 수 있습니다." - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Strawberry가 마음에 들었다면 스폰서쉽과 기부를 할 수 있습니다." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "제작자 및 메인테이너" - -msgid "Contributors" -msgstr "기여자" - -msgid "Clementine authors" -msgstr "Clementine 작성자" - -msgid "Clementine contributors" -msgstr "Clementine 기여자" - -msgid "Thanks to" -msgstr "감사" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Amarok과 Clementine 기여자들에게 감사를 전합니다." - -msgid "(different across multiple songs)" -msgstr "(여러 곡마다 다름)" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "이전" - -msgid "Next" -msgstr "다음" - -msgid "Saving tracks" -msgstr "트랙 저장 중" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "표지 그림을 설정하지 않았음" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "원본 태그" - -msgid "Suggested tags" -msgstr "제안된 태그" - -msgid "Delete files" -msgstr "파일 삭제" - -msgid "The following files will be deleted from disk:" -msgstr "이 파일들이 디스크에서 제거됩니다." - -msgid "Are you sure you want to continue?" -msgstr "계속하시겠습니까?" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry는 Snap에서 실행되고 있습니다." - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Strawberry가 Snap에서 실행되고 있는 것을 감지하였습니다." - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "우분투용 공식 PPA 저장소는 %1 에서 찾을 수 있습니다." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "공식 릴리즈가 데비안, 우분투 혹은 파생 배포판에서 제공됩니다. %1을 참조하십시오." - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "큰 사이드바" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "작은 사이드바" - -msgid "Plain sidebar" -msgstr "일반 사이드바" - -msgid "Tabs on top" -msgstr "위쪽에 탭 표시" - -msgid "Icons on top" -msgstr "상단에 아이콘" - -msgid "Available" -msgstr "사용 가능" - -msgid "New songs" -msgstr "새로운 음악" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "사용됨" - -msgid "Clear" -msgstr "비우기" - -msgid "Reset" -msgstr "초기화" - -msgid "Small album cover" -msgstr "작은 앨범아트" - -msgid "Large album cover" -msgstr "큰 앨범아트" - -msgid "Fit cover to width" -msgstr "앨범아트를 너비에 맞춤" - -msgid "Show above status bar" -msgstr "상태 표시줄 위에 표시" - -msgid "You are signed in." -msgstr "로그인했습니다." - -#, qt-format -msgid "You are signed in as %1." -msgstr "%1(으)로 로그인했습니다." - -#, qt-format -msgid "Expires on %1" -msgstr "만료 일자: %1" - -#, qt-format -msgid "disc %1" -msgstr "디스크 %1" - -#, qt-format -msgid "track %1" -msgstr "트랙 %1" - -msgid "Paused" -msgstr "일시 정지됨" - -msgid "Stopped" -msgstr "정지됨" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "트랙 재생 후 정지: %1" - -msgid "On" -msgstr "켜짐" - -msgid "Off" -msgstr "꺼짐" - -msgid "Playlist finished" -msgstr "재생 목록 끝남" - -#, qt-format -msgid "Volume %1%" -msgstr "음량 %1%" - -msgid "Don't shuffle" -msgstr "섞지 않기" - -msgid "Shuffle all" -msgstr "모두 셔플" - -msgid "Shuffle tracks in this album" -msgstr "이 앨범에 있는 곡만 셔플" - -msgid "Shuffle albums" -msgstr "앨범 셔플" - -msgid "Don't repeat" -msgstr "반복하지 않기" - -msgid "Repeat track" -msgstr "한 곡 반복" - -msgid "Repeat album" -msgstr "앨범 반복" - -msgid "Repeat playlist" -msgstr "재생 목록 반복" - -msgid "Stop after every track" -msgstr "모든 트랙 이후에 정지" - -msgid "Intro tracks" -msgstr "인트로 트랙" - -#, qt-format -msgid "Configure %1..." -msgstr "%1 설정..." - -msgid "Add to artists" -msgstr "아티스트에 추가" - -msgid "Add to albums" -msgstr "앨범에 추가" - -msgid "Add to songs" -msgstr "노래에 추가" - -msgid "Enter search terms above to find music" -msgstr "음악을 찾으려면 위에 검색어를 입력하십시오" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "음악을 가져오려면 여기를 클릭하십시오" - -msgid "Remove from favorites" -msgstr "즐겨찾기에서 삭제" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 스크로블러 인증" - -msgid "Open URL in web browser?" -msgstr "웹 브라우저에서 URL을 여시겠습니까?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "클립보드에 URL을 복사하고 웹 브라우저에서 직접 열려면 \"저장\"을 누르십시오." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "URL을 열 수 없습니다. 웹 브라우저에서 여십시오" - -msgid "Invalid reply from web browser. Missing token." -msgstr "웹 브라우저에서 잘못된 응답을 받았습니다. 토큰이 없습니다." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "스크로블러 %1이(가) 인증되지 않았습니다!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz 인증" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "계정명이 없습니다. last.fm에 먼저 로그인해주세요." - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "아티스트 이니셜" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "비트레이트" - -msgid "File extension" -msgstr "파일 확장자" - -msgid "Error copying songs" -msgstr "노래 복사 오류" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "일부 곡을 복사하는 중 문제가 발생했습니다. 다음 파일을 복사할 수 없습니다: " - -msgid "Error deleting songs" -msgstr "노래 삭제 오류" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "일부 곡을 삭제하는 중 문제가 발생했습니다. 다음 파일을 삭제할 수 없습니다: " - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "이전 트랙" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "음소거" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "좋아요" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "%1에 사용할 단축키를 누르십시오..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "\"%1\" 명령을 시작할 수 없습니다." - -#, qt-format -msgid "Shortcut for %1" -msgstr "%1 단축키" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "%1에서 X11 단축키를 사용하는 것은 추천하지 않으며 키보드가 작동하지 않을 수도 있습니다!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "버퍼링" - -msgid "D-Bus path" -msgstr "D-Bus 경로" - -msgid "Serial number" -msgstr "일련 번호" - -msgid "Mount points" -msgstr "마운트 지점" - -msgid "Partition label" -msgstr "파티션 레이블" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "장치 연결" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "이 장치를 처음 연결했습니다. Strawberry에서 장치에 있는 음악 파일을 검색하는 동안 기다려 주십시오." - -msgid "This device will not work properly" -msgstr "이 장치는 올바르게 작동하지 않을 수 있음" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "이 장치는 MTP 장치이지만 Strawberry를 컴파일할 때 libmtp 지원이 빠졌습니다." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "계속 진행하면 이 장치가 느리게 작동하거나 복사된 음악을 재생하지 못할 수도 있습니다." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "이 장치는 iPod이지만 Strawberry를 컴파일할 때 libgpod 지원이 빠졌습니다." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "다음 장치의 형식은 지원하지 않습니다: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "%1% 업데이트 중..." - -msgid "Not connected" -msgstr "연결되지 않음" - -msgid "Not mounted - double click to mount" -msgstr "마운트되지 않음 - 마운트하려면 두 번 클릭" - -msgid "Double click to open" -msgstr "두 번 클릭해서 열기" - -#, qt-format -msgid "%1 song%2" -msgstr "노래 %1곡" - -msgid "Safely remove device" -msgstr "안전하게 장치 제거" - -msgid "Forget device" -msgstr "장치 삭제" - -msgid "Device properties..." -msgstr "장치 속성..." - -msgid "Delete from device..." -msgstr "장치에서 삭제..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "장치를 삭제하면 이 목록에 표시되지 않고 다음에 장치를 다시 연결했을 때 Strawberry에서 모든 음악을 다시 검색합니다." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "장치에서 다음 파일을 삭제합니다. 계속 진행하시겠습니까?" - -msgid "Model" -msgstr "모델" - -msgid "Manufacturer" -msgstr "제조사" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "iPod 데이터베이스 불러오는 중" - -msgid "An error occurred loading the iTunes database" -msgstr "iTunes 데이터베이스를 불러오는 중 오류 발생" - -msgid "Mount point" -msgstr "마운트 지점" - -msgid "Device" -msgstr "장치" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "MTP 장치 불러오는 중" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "MTP 장치 %1 연결 오류" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "GStreamer 엘리먼트 \"%1\"을(를) 찾을 수 없습니다. 필요한 모든 GStreamer 플러그인 설치 상태를 확인하십시오" - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 기록 완료" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "스레드 %2개로 파일 %1개 변환 중" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "%1 처리 오류: %2" - -#, qt-format -msgid "Starting %1" -msgstr "%1 시작 중" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "%1 인코더를 찾을 수 없습니다. GStreamer 플러그인 설치 상태를 확인하십시오" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "%1 먹서를 찾을 수 없습니다. GStreamer 플러그인 설치 상태를 확인하십시오" - -msgid "Start transcoding" -msgstr "변환 시작" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n개 남음" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n개 완료됨" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n개 실패함" - -msgid "Add files to transcode" -msgstr "변환할 파일 추가" - -msgid "Open a directory to import music from" -msgstr "음악을 가져올 폴더 선택" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "CDDA 디바이스를 준비하는데 오류가 있습니다." - -msgid "Error while setting CDDA device to pause state." -msgstr "CDDA 디바이스를 일시정지하는데 오류가 있습니다." - -msgid "Error while querying CDDA tracks." -msgstr "CDDA 트랙을 로딩하는데 오류가 있습니다." - -msgid "Server URL is invalid." -msgstr "서버 URL이 잘못되었습니다." - -msgid "Missing username or password." -msgstr "사용자 이름이나 암호가 없습니다." - -msgid "Subsonic server URL is invalid." -msgstr "Subsonic 서버 URL이 잘못되었습니다." - -msgid "Missing Subsonic username or password." -msgstr "Subsonic 사용자 이름이나 암호가 없습니다." - -msgid "Retrieving albums..." -msgstr "앨범 가져오는 중..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "앨범 %1개의 노래 가져오는 중..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "앨범 %1개의 노래 가져오는 중..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "앨범 %1개의 앨범아트 가져오는 중..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "앨범 %1개의 앨범아트 가져오는 중..." - -msgid "Configuration incomplete" -msgstr "설정이 불완전함" - -msgid "Missing server url, username or password." -msgstr "서버 URL, 사용자 이름이나 암호가 없습니다." - -msgid "Configuration incorrect" -msgstr "설정이 잘못됨" - -msgid "Test successful!" -msgstr "테스트 성공!" - -msgid "Test failed!" -msgstr "테스트 실패!" - -msgid "Reply from Tidal is missing query items." -msgstr "Tidal 응답에 쿼리 항목이 없습니다." - -msgid "Missing Tidal API token." -msgstr "Tidal API 토큰이 없습니다." - -msgid "Missing Tidal username." -msgstr "Tidal 사용자 이름이 없습니다." - -msgid "Missing Tidal password." -msgstr "Tidal 암호가 없습니다." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Tidal에 인증되지 않았으며 최대 로그인 시도 횟수에 도달했습니다." - -msgid "Not authenticated with Tidal." -msgstr "Tidal에 인증되지 않았습니다." - -msgid "Missing Tidal API token, username or password." -msgstr "타이달 API토큰, 계정 혹은 비밀번호가 없습니다." - -msgid "Authenticating..." -msgstr "인증 중..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "검색 중..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "일치하는 결과가 없습니다." - -msgid "Cancelled." -msgstr "취소됨." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "Tidal 클라이언트 ID가 없습니다." - -msgid "Missing API token." -msgstr "API 토큰이 없습니다." - -msgid "Missing username." -msgstr "계정명이 없습니다." - -msgid "Missing password." -msgstr "패스워드가 없습니다." - -msgid "Spotify Authentication" -msgstr "" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "최대 로그인 시도 횟수에 도달했습니다." - -msgid "Missing Qobuz app ID." -msgstr "Qobuz 앱 ID가 없습니다." - -msgid "Missing Qobuz username." -msgstr "Qobuz 사용자 이름이 없습니다." - -msgid "Missing Qobuz password." -msgstr "Qobuz 암호가 없습니다." - -msgid "Not authenticated with Qobuz." -msgstr "Qobuz에 인증되지 않았습니다." - -msgid "Missing Qobuz app ID or secret." -msgstr "Qobuz 앱 ID나 비밀 값이 없습니다." - -msgid "Missing app id." -msgstr "app_id가 없습니다." - -msgid "Show moodbar" -msgstr "무드바 표시" - -msgid "Moodbar style" -msgstr "무드바 스타일" - -msgid "Normal" -msgstr "일반" - -msgid "Angry" -msgstr "화남" - -msgid "Frozen" -msgstr "얼어붙음" - -msgid "Happy" -msgstr "행복함" - -msgid "System colors" -msgstr "시스템 색상" - -msgid "Strawberry Music Player" -msgstr "Strawberry 음악 재생기" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "재생(&P)" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "정지(&S)" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "다음 트랙(&N)" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "끝내기(&Q)" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "재생 목록 비우기(&C)" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "다음 순서로 트랙 번호 다시 매기기..." - -msgid "Set value for all selected tracks..." -msgstr "선택한 모든 트랙의 값 설정..." - -msgid "Edit tag..." -msgstr "태그 편집..." - -msgid "&Settings..." -msgstr "설정(&S)..." - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "Strawberry 정보(&A)" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "재생 목록 섞기(&H)" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "파일 추가(&A)..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "파일 열기(&O)..." - -msgid "Open audio &CD..." -msgstr "오디오 CD 열기(&C)..." - -msgid "&Cover Manager" -msgstr "앨범아트 관리자(&C)" - -msgid "C&onsole" -msgstr "콘솔(&O)" - -msgid "&Shuffle mode" -msgstr "셔플 재생 모드(&S)" - -msgid "&Repeat mode" -msgstr "반복 모드(&R)" - -msgid "Remove from playlist" -msgstr "재생 목록에서 제거" - -msgid "&Equalizer" -msgstr "이퀄라이저(&E)" - -msgid "&Transcode Music" -msgstr "음악 변환(&T)" - -msgid "Add &folder..." -msgstr "폴더 추가(&F)..." - -msgid "&Jump to the currently playing track" -msgstr "현재 재생 중인 트랙으로 이동(&J)" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "새 재생 목록(&N)" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "재생 목록 저장(&P)..." - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "재생 목록 불러오기(&L)..." - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "다음 재생 목록 탭으로 이동" - -msgid "Go to previous playlist tab" -msgstr "이전 재생 목록 탭으로 이동" - -msgid "&Update changed collection folders" -msgstr "라이브러리 변경 사항 업데이트(&U)" - -msgid "About &Qt" -msgstr "Qt 정보(&Q)" - -msgid "&Mute" -msgstr "음소거(&M)" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "전체 라이브러리 재탐색(&D)" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "자동으로 태그 완성..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "스크로블 전환" - -msgid "Remove &duplicates from playlist" -msgstr "재생 목록에서 중복 항목 삭제(&D)" - -msgid "Remove &unavailable tracks from playlist" -msgstr "재생 목록에서 사용할 수 없는 트랙 삭제(&U)" - -msgid "Add file(s) to transcoder" -msgstr "변환할 파일 추가" - -msgid "Add file to transcoder" -msgstr "변환할 파일 추가" - -msgid "Add stream..." -msgstr "스트림 추가" - -msgid "Show sidebar" -msgstr "사이드바 표시" - -msgid "Import data from last.fm..." -msgstr "last.fm으로부터 데이터 가져오기" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "음악(&M)" - -msgid "P&laylist" -msgstr "재생 목록(&L)" - -msgid "Help" -msgstr "도움말" - -msgid "&Tools" -msgstr "도구(&T)" - -msgid "Collection advanced grouping" -msgstr "라이브러리 고급 그룹" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "라이브러리 그룹 방식..." - -msgid "Second level" -msgstr "두 번째 단계" - -msgid "Third level" -msgstr "세 번째 단계" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "라이브러리 필터" - -msgid "Entire collection" -msgstr "전체 라이브러리" - -msgid "Added today" -msgstr "오늘 추가됨" - -msgid "Added this week" -msgstr "이번 주에 추가됨" - -msgid "Added within three months" -msgstr "3개월 이내에 추가됨" - -msgid "Added this year" -msgstr "올해 추가됨" - -msgid "Added this month" -msgstr "이번 달에 추가됨" - -msgid "Save current grouping" -msgstr "현재 그룹 저장" - -msgid "Manage saved groupings" -msgstr "저장한 그룹 관리" - -msgid "Enter search terms here" -msgstr "여기에 검색어 입력" - -msgid "Form" -msgstr "폼" - -msgid "Saved Grouping Manager" -msgstr "그룹 관리자 저장됨" - -msgid "Remove" -msgstr "삭제" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "파일 경로" - -msgid "This can be changed later through the preferences" -msgstr "설정에서 나중에 변경할 수 있습니다" - -msgid "Remember my choice" -msgstr "내 선택 기억" - -msgid "Stop after each track" -msgstr "각각 트랙이 끝난 후 정지" - -msgid "Repeat" -msgstr "반복" - -msgid "Shuffle" -msgstr "셔플 재생" - -msgid "Dynamic mode is on" -msgstr "자동 모드가 켜졌습니다" - -msgid "New tracks will be added automatically." -msgstr "새 곡들이 자동으로 추가됩니다." - -msgid "Expand" -msgstr "확장" - -msgid "Repopulate" -msgstr "다시 가져오기" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "대기열 보기" - -msgid "Move down" -msgstr "아래로 이동" - -msgid "Move up" -msgstr "위로 이동" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "검색 모드" - -msgid "Match every search term (AND)" -msgstr "모든 조건에 맞는 곡 (AND)" - -msgid "Match one or more search terms (OR)" -msgstr "조건 중 하나라도 맞는 곡 (OR)" - -msgid "Include all songs" -msgstr "모든 곡 추가" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "모든 곡 보기" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "" - -msgid "Preview" -msgstr "미리 보기" - -msgid "and" -msgstr "" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "새 스마트 재생 목록" - -msgid "Edit smart playlist" -msgstr "스마트 재생 목록 수정" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "다이나믹 모드일 때는 곡이 끝날 때마다 새 곡이 재생목록에 추가됩니다." - -msgid "Export covers" -msgstr "표지 내보내기" - -msgid "Output" -msgstr "출력" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "내보낼 표지 파일 이름 입력(확장자 제외):" - -msgid "Export downloaded covers" -msgstr "다운로드한 표지 내보내기" - -msgid "Export embedded covers" -msgstr "내장된 표지 내보내기" - -msgid "Existing covers" -msgstr "존재하는 표지" - -msgid "Do not overwrite" -msgstr "덮어쓰지 않기" - -msgid "O&verwrite all" -msgstr "모두 덮어쓰기(&V)" - -msgid "Overwrite s&maller ones only" -msgstr "더 작은 것만 덮어쓰기(&M)" - -msgid "Size" -msgstr "크기" - -msgid "Scale size" -msgstr "크기 조정" - -msgid "Size:" -msgstr "크기:" - -msgid "Pixel" -msgstr "픽셀" - -msgid "Cover Manager" -msgstr "표지 관리자" - -msgid "Fetch automatically" -msgstr "자동으로 가져오기" - -msgid "Load" -msgstr "불러오기" - -msgid "Add to playlist" -msgstr "재생 목록에 추가" - -msgid "View" -msgstr "보기" - -msgid "Total albums:" -msgstr "총 앨범 개수:" - -msgid "Without cover:" -msgstr "표지 없음:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "누락된 표지 가져오기" - -msgid "Export Covers" -msgstr "표지 내보내기" - -msgid "Fetch completed" -msgstr "가져오기 완료" - -msgid "Load cover from URL" -msgstr "URL에서 표지 불러오기" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "인터넷에서 표지를 다운로드할 URL 입력:" - -msgid "Settings" -msgstr "설정" - -msgid "Behavior" -msgstr "행동" - -msgid "Show system tray icon" -msgstr "시스템 트레이 아이콘 표시" - -msgid "Keep running in the background when the window is closed" -msgstr "창을 닫아도 백그라운드에서 계속 실행" - -msgid "Show song progress on system tray icon" -msgstr "트레이 아이콘에 곡 재생 상황 표시" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "시작할 때 재생 다시 시작" - -msgid "Show playing widget" -msgstr "재생 위젯 표시" - -msgid "On startup" -msgstr "시작할 때" - -msgid "Remember from &last time" -msgstr "마지막으로 사용한 값 기억(&L)" - -msgid "Show the main window" -msgstr "메인 창 표시" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "최대화 상태로 실행" - -msgid "Show the main window minimized" -msgstr "최소화 상태로 실행" - -msgid "Language" -msgstr "언어" - -msgid "Use the system default" -msgstr "시스템 기본값 사용" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "언어를 변경한 후에는 Strawberry를 다시 시작해야 합니다." - -msgid "Using the menu to add a song will..." -msgstr "메뉴에서 음악을 추가했을 때..." - -msgid "Never start playing" -msgstr "재생을 시작하지 않음" - -msgid "Play if there is nothing already playing" -msgstr "재생 중인 곡이 없다면 재생" - -msgid "Always start playing" -msgstr "항상 재생 시작" - -msgid "Pressing \"Previous\" in player will..." -msgstr "재생기에서 \"이전\"을 눌렀을 때..." - -msgid "Jump to previous song right away" -msgstr "바로 이전 곡으로 이동" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "트랙을 다시 시작하고 다시 누르면 이전 트랙을 재생합니다" - -msgid "Double clicking a song will..." -msgstr "노래를 두 번 클릭했을 때..." - -msgid "Append to the playlist" -msgstr "재생 목록에 추가" - -msgid "Replace the playlist" -msgstr "재생 목록 대체" - -msgid "Add to the queue" -msgstr "대기열에 추가" - -msgid "Double clicking a song in the playlist will..." -msgstr "재생 목록의 노래를 두 번 클릭했을 때..." - -msgid "Change the currently playing song" -msgstr "지금 재생 중인 음악 변경" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "키보드 단축키 또는 마우스 휠을 사용하여 이동" - -msgid "Time step" -msgstr "시간 간격" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "라이브러리를 생성할 때 다음 폴더를 검색합니다" - -msgid "Add new folder..." -msgstr "새로운 폴더 추가..." - -msgid "Remove folder" -msgstr "폴더 삭제" - -msgid "Automatic updating" -msgstr "자동 업데이트 중" - -msgid "Update the collection when Strawberry starts" -msgstr "Strawberry 시작 시 라이브러리 업데이트" - -msgid "Monitor the collection for changes" -msgstr "라이브러리 변화 감지" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "사라진 곡을 사용할 수 없는 것으로 표시" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "선호하는 앨범아트 파일 이름(쉼표로 구분)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Strawberry에서 앨범 아트를 찾을 때 다음 단어를 포함하는 그림 파일을 먼저 찾습니다.\n" -"일치하는 파일이 없으면 디렉터리에 있는 가장 큰 그림을 사용합니다." - -msgid "Automatically open single categories in the collection tree" -msgstr "한 개의 하위 항목만 있을 때 자동으로 열기" - -msgid "Show dividers" -msgstr "구분자 표시" - -msgid "Show album cover art in collection" -msgstr "앨범 목록에 앨범아트 표시" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "" - -msgid "Enable Disk Cache" -msgstr "디스크 캐시 활성화" - -msgid "Disk Cache Size" -msgstr "디스크 캐시 크기" - -msgid "Current disk cache in use:" -msgstr "현재 사용중인 디스크 캐시 :" - -msgid "Clear Disk Cache" -msgstr "디스크 캐시 비우기" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "마우스 우클릭 메뉴로부터 파일 제거 활성화" - -msgid "Backend" -msgstr "백엔드" - -msgid "Audio output" -msgstr "오디오 출력" - -msgid "Engine" -msgstr "엔진" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "plughw(&L)" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "음량 제어 활성화" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "버퍼" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "버퍼 시간" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "기본 설정" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "리플레이게인" - -msgid "Use Replay Gain metadata if it is available" -msgstr "사용 가능한 경우 리플레이게인 메타데이터 사용" - -msgid "Replay Gain mode" -msgstr "리플레이게인 모드" - -msgid "Radio (equal loudness for all tracks)" -msgstr "라디오(모든 트랙을 같은 음량으로)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "앨범(모든 트랙에 이상적인 음량)" - -msgid "Apply compression to prevent clipping" -msgstr "압축을 적용하여 클리핑 방지" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "페이드" - -msgid "Fade out when stopping a track" -msgstr "트랙 정지 시 페이드 아웃" - -msgid "Cross-fade when changing tracks manually" -msgstr "트랙을 직접 바꿀 때 크로스페이드" - -msgid "Cross-fade when changing tracks automatically" -msgstr "트랙을 자동으로 바꿀 때 크로스페이드" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "같은 앨범이나 같은 CUE 시트의 트랙 사이에서는 제외" - -msgid "Fading duration" -msgstr "페이드 시간" - -msgid "Fade out on pause / fade in on resume" -msgstr "일시 정지 시 페이드 아웃/다시 시작 시 페이드 인" - -msgid "Add song artist tag" -msgstr "아티스트 태그 추가" - -msgid "Add song album tag" -msgstr "앨범 태그 추가" - -msgid "Add song title tag" -msgstr "제목 태그 추가" - -msgid "Add song albumartist tag" -msgstr "앨범 아티스트 태그 추가" - -msgid "Add song year tag" -msgstr "년도 태그 추가" - -msgid "Add song composer tag" -msgstr "작곡가 태그 추가" - -msgid "Add song performer tag" -msgstr "음악 연주가 태그 추가" - -msgid "Add song grouping tag" -msgstr "음악 그룹화 태그 추가" - -msgid "Add song disc tag" -msgstr "음악 디스크 태그 추가" - -msgid "Add song track tag" -msgstr "트랙 태그 추가" - -msgid "Add song genre tag" -msgstr "장르 태그 추가" - -msgid "Add song length tag" -msgstr "음악 길이 태그 추가" - -msgid "Add song play count" -msgstr "재생 횟수 추가" - -msgid "Add song skip count" -msgstr "건너뛴 횟수 추가" - -msgid "Add a new line if supported by the notification type" -msgstr "알림 형식이 지원한다면 새로운 줄 추가" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "음악 파일 이름 추가" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "음악 별점 추가" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "사용자 정의 텍스트 설정" - -msgid "Summary" -msgstr "요약" - -msgid "Enable Items" -msgstr "항목 활성화" - -msgid "Technical Data" -msgstr "기술적 데이터" - -msgid "Song Lyrics" -msgstr "노래 가사" - -msgid "Automatically search for album cover" -msgstr "자동으로 앨범아트 찾기" - -msgid "Font for headline" -msgstr "제목 폰트 설정" - -msgid "Font" -msgstr "폰트" - -msgid "Font size" -msgstr "글자 크기" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "내용과 가사 폰트 설정" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "재생 목록에 있는 노래를 사용할 수 없을 때 다음 곡으로 진행" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "재생할 때 재생 목록에서 사용할 수 없는 곡을 회색으로 표시" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "시작할 때 재생 목록에서 사용할 수 없는 곡을 회색으로 표시" - -msgid "Automatically select current playing track" -msgstr "현재 재생 중인 트랙을 자동으로 선택" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "재생 목록 비우기 단추 활성화" - -msgid "Automatically sort playlist when inserting songs" -msgstr "곡을 추가하면 자동으로 재생목록 정렬" - -msgid "When saving a playlist, file paths should be" -msgstr "재생 목록을 저장할 때 파일 경로 처리 방식" - -msgid "A&utomatic" -msgstr "자동(&U)" - -msgid "Absolu&te" -msgstr "절대 경로(&T)" - -msgid "Re&lative" -msgstr "상대 경로(&L)" - -msgid "As&k when saving" -msgstr "저장할 때 묻기(&K)" - -msgid "Metadata" -msgstr "메타데이터" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "활성화하면 재생 목록에서 선택한 노래를 클릭하여 태그 값을 직접 수정할 수 있습니다." - -msgid "Enable song metadata inline edition with click" -msgstr "클릭하여 음악 메타데이터를 바로 편집하려면 활성화" - -msgid "Write metadata when saving playlists" -msgstr "재생 목록을 저장할 때 메타데이터 쓰기" - -msgid "Scrobbler" -msgstr "스크로블러" - -msgid "Enable" -msgstr "활성화" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "곡에 올바른 메타데이터가 있고, 재생 시간이 30초보다 길고, 재생 시간의 절반 이상 재생(최대 4분)되었을 때 스크로블 기록에 추가됩니다." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "오프라인 모드로 작업(스크로블을 캐시에만 추가)" - -msgid "Show scrobble button" -msgstr "스크로블 단추 표시" - -msgid "Show love button" -msgstr "좋아요 단추 표시" - -msgid "Submit scrobbles every" -msgstr "스크로블 제출 주기" - -msgid " seconds" -msgstr " 초" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "스크로블을 보낼 때 앨범 아티스트 선호" - -msgid "Show dialog for errors" -msgstr "에러 내용 보기" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "이 소스로부터 스크로블링 켜기" - -msgid "Local file" -msgstr "로컬 파일" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "스트림" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "로그인" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "사용자 토큰:" - -msgid "Covers" -msgstr "앨범아트" - -msgid "Cover providers" -msgstr "앨범 아트 가져오기" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "앨범 아트를 검색할 때 가져올 곳을 선택해 주세요." - -msgid "Authentication" -msgstr "인증" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "앨범아트 저장 중" - -msgid "Save album covers in album directory" -msgstr "앨범아트를 앨범 디렉터리에 저장" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "파일 이름:" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "기존 파일 덮어쓰기" - -msgid "Lowercase filename" -msgstr "소문자 파일 이름" - -msgid "Replace spaces with dashes" -msgstr "공백을 줄표로 대체" - -msgid "Lyrics" -msgstr "가사" - -msgid "Lyrics providers" -msgstr "가사 가져오기" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "가사를 검색할 때 가져올 곳을 선택해 주세요." - -msgid "Network Proxy" -msgstr "네트워크 프록시" - -msgid "&Use the system proxy settings" -msgstr "시스템 프록시 설정 사용(&U)" - -msgid "Direct internet connection" -msgstr "직접 인터넷 연결" - -msgid "&Manual proxy configuration" -msgstr "수동 프록시 설정(&M)" - -msgid "HTTP proxy" -msgstr "HTTP 프록시" - -msgid "SOCKS proxy" -msgstr "SOCKS 프록시" - -msgid "Port" -msgstr "포트" - -msgid "Use authentication" -msgstr "인증 사용" - -msgid "Username" -msgstr "사용자 이름" - -msgid "Password" -msgstr "암호" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "모양" - -msgid "Style" -msgstr "" - -msgid "Use system theme icons" -msgstr "시스템 테마 아이콘 사용" - -msgid "Settings require restart." -msgstr "설정을 적용하려면 재시작이 필요합니다." - -msgid "Tabbar colors" -msgstr "탭 표시줄 색상" - -msgid "&Use the system default color" -msgstr "시스템 기본 색 사용(&U)" - -msgid "Use custom color" -msgstr "사용자 정의 색상 사용" - -msgid "Use gradient background" -msgstr "그라디언트 배경 사용" - -msgid "Select tabbar color:" -msgstr "탭 표시줄 색상 선택:" - -msgid "Background image" -msgstr "배경 그림" - -msgid "Default bac&kground image" -msgstr "기본 배경 그림(&K)" - -msgid "&No background image" -msgstr "배경 없음(&N)" - -msgid "The album cover of the currently playing song" -msgstr "재생 중인 음악의 앨범아트" - -msgid "Albu&m cover" -msgstr "앨범아트(&M)" - -msgid "Custom image:" -msgstr "사용자 정의 이미지:" - -msgid "Browse..." -msgstr "찾아보기..." - -msgid "Position" -msgstr "위치" - -msgid "Upper Left" -msgstr "왼쪽 위" - -msgid "Upper Right" -msgstr "오른쪽 위" - -msgid "Middle" -msgstr "중간" - -msgid "Bottom Left" -msgstr "왼쪽 아래" - -msgid "Bottom Right" -msgstr "오른쪽 아래" - -msgid "Max cover size" -msgstr "최대 표지 크기" - -msgid "Stretch image to fill playlist" -msgstr "이미지를 재생 목록 크기로 늘려서 맞춤" - -msgid "Keep aspect ratio" -msgstr "종횡비 유지" - -msgid "Do not cut image" -msgstr "이미지 자르지 않기" - -msgid "Blur amount" -msgstr "블러 정도" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "불투명도" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "아이콘 크기" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "알림" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry에서 재생 중인 곡을 전환할 때 메시지를 표시할 수 있습니다." - -msgid "Notification type" -msgstr "알림 종류" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "사용 안 함" - -msgid "Show a &native desktop notification" -msgstr "네이티브 데스크톱 알림 표시(&N)" - -msgid "Show a pretty OSD" -msgstr "예쁜 OSD 표시" - -msgid "Show a popup fro&m the system tray" -msgstr "시스템 트레이에서 팝업 표시(&M)" - -msgid "General settings" -msgstr "일반 설정" - -msgid "Popup duration" -msgstr "팝업 시간" - -msgid "Disable duration" -msgstr "비활성화 시간" - -msgid "Show a notification when I change the volume" -msgstr "음량을 변경할 때 알림 표시" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "반복/셔플 모드 변경 시 알림 표시" - -msgid "Show a notification when I pause playback" -msgstr "재생을 일시 정지할 때 알림 표시" - -msgid "Show a notification when I resume playback" -msgstr "재생을 다시 시작할 때 알림 표시" - -msgid "Include album art in the notification" -msgstr "알림에 앨범 커버 포함" - -msgid "Custom message settings" -msgstr "사용자 정의 메시지 설정" - -msgid "Use a custom message for notifications" -msgstr "알림에 표시할 사용자 정의 메시지 설정" - -msgid "Body" -msgstr "본문" - -msgid "Pretty OSD options" -msgstr "예쁜 OSD 옵션" - -msgid "Background color" -msgstr "배경 색상" - -msgid "Text options" -msgstr "텍스트 옵션" - -msgid "Choose font..." -msgstr "글꼴 선택..." - -msgid "Choose color..." -msgstr "색상 선택..." - -msgid "Background opacity" -msgstr "배경 불투명도" - -msgid "Basic Blue" -msgstr "기본 파랑" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "사용자 정의..." - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "이퀄라이저" - -msgid "Preset:" -msgstr "사전 설정:" - -msgid "Enable equalizer" -msgstr "이퀄라이저 활성화" - -msgid "Enable stereo balancer" -msgstr "스테레오 균형 맞추기 활성화" - -msgid "Left" -msgstr "왼쪽" - -msgid "Balance" -msgstr "균형" - -msgid "Right" -msgstr "오른쪽" - -msgid "About" -msgstr "" - -msgid "Strawberry Error" -msgstr "Strawberry 오류" - -msgid "Console" -msgstr "콘솔" - -msgid "Run" -msgstr "실행" - -msgid "Edit track information" -msgstr "트랙 정보 편집" - -msgid "Date created" -msgstr "생성한 날짜" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "수정한 날짜" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "마지막 재생" - -msgid "Play count" -msgstr "재생 횟수" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "비트 전송률" - -msgid "Skip count" -msgstr "건너뛴 횟수" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "파일 이름" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "파일 크기" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "재생 횟수 초기화" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "자동으로 태그 완성" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "태그 가져오기" - -msgid "Sorry" -msgstr "죄송합니다" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry에서 이 파일의 결과를 찾을 수 없습니다" - -msgid "Select best possible match" -msgstr "가장 유사한 일치 선택" - -msgid "Add Stream" -msgstr "스트림 추가" - -msgid "Enter the URL of a stream:" -msgstr "스트림 URL 입력" - -msgid "Enter username and password" -msgstr "계정명과 패스워드 입력" - -msgid "Import data from last.fm" -msgstr "last.fm으로부터 데이터 가져오기" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "재생 횟수" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "닫기" - -msgid "Cancel" -msgstr "취소" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "메세지 다시 보지 않기" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "남은 시간과 전체 시간을 전환하려면 클릭하십시오" - -msgid "You are not signed in." -msgstr "로그인하지 않았습니다." - -msgid "Sign out" -msgstr "로그아웃" - -msgid "Signing in..." -msgstr "로그인 중..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "아티스트" - -msgid "Albums" -msgstr "앨범" - -msgid "Songs" -msgstr "노래" - -msgid "Refresh catalogue" -msgstr "카탈로그 새로 고침" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "" - -msgid "albums" -msgstr "" - -msgid "songs" -msgstr "" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "대상" - -msgid "After copying..." -msgstr "복사한 후..." - -msgid "Keep the original files" -msgstr "원본 파일 유지" - -msgid "Delete the original files" -msgstr "원본 파일 삭제" - -msgid "Naming options" -msgstr "이름 짓기 옵션" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

토큰은 %로 시작합니다. 예: %artist %album %title

\n\n" -"

토큰을 포함하는 텍스트를 중괄호로 둘러싸면 토큰이 비어 있을 때 해당 부분은 표시되지 않습니다.

" - -msgid "Insert..." -msgstr "삽입..." - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "FAT 파일 시스템에서 사용할 수 있는 글자로 제한" - -msgid "Restrict characters to ASCII" -msgstr "ASCII로 글자 제한" - -msgid "Allow extended ASCII characters" -msgstr "확장 ASCII 글자 허용" - -msgid "Replace spaces with underscores" -msgstr "공백을 밑줄로 대체" - -msgid "Overwrite existing files" -msgstr "기존 파일 덮어쓰기" - -msgid "Copy album cover artwork" -msgstr "앨범아트 복사" - -msgid "Safely remove the device after copying" -msgstr "복사 후 안전하게 장치 제거" - -msgid "Press a key" -msgstr "키를 누르십시오" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "열기..." - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "시스템 설정을 실행한 다음 Strawberry에서 \"컴퓨터 제어 허용\"을 활성화해야 Strawberry에서 전역 단축키를 사용할 수 있습니다." - -msgid "Shortcut" -msgstr "단축키" - -msgctxt "Category label" -msgid "Action" -msgstr "동작" - -msgid "&None" -msgstr "없음(&N)" - -msgid "&Default" -msgstr "기본값(&D)" - -msgid "&Custom" -msgstr "사용자 정의(&C)" - -msgid "Change shortcut..." -msgstr "단축키 변경..." - -msgid "Device Properties" -msgstr "장치 속성" - -msgid "Icon" -msgstr "아이콘" - -msgid "Hardware information" -msgstr "하드웨어 정보" - -msgid "Hardware information is only available while the device is connected." -msgstr "장치가 연결되어 있는 동안에만 하드웨어 정보를 볼 수 있습니다." - -msgid "Information" -msgstr "정보" - -msgid "Supported formats" -msgstr "지원하는 형식" - -msgid "This device supports the following file formats:" -msgstr "이 장치는 다음 파일 형식을 지원합니다:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry는 장치로 곡을 복사할 때 장치에서 재생 가능한 형식으로 자동 변환할 수 있습니다." - -msgid "Do not convert any music" -msgstr "어떤 곡도 변환하지 않기" - -msgid "Convert any music that the device can't play" -msgstr "장치에서 재생할 수 없는 곡 변환" - -msgid "Convert all music" -msgstr "모든 곡 변환" - -msgid "Preferred format" -msgstr "선호하는 형식" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Strawberry에서 이 장치가 지원하는 파일 형식을 파악하려면 장치를 연결하고 열어야 합니다." - -msgid "Open device" -msgstr "장치 열기" - -msgid "Querying device..." -msgstr "장치 질의 중..." - -msgid "File formats" -msgstr "파일 형식" - -msgid "Transcode Music" -msgstr "음악 변환" - -msgid "Files to transcode" -msgstr "변환할 파일" - -msgid "Directory" -msgstr "디렉터리" - -msgid "Add..." -msgstr "추가..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "디렉터리와 모든 하위 디렉터리의 트랙을 추가합니다" - -msgid "Import..." -msgstr "가져오기..." - -msgid "Output options" -msgstr "저장 옵션" - -msgid "Audio format" -msgstr "오디오 형식" - -msgid "Options..." -msgstr "옵션..." - -msgid "Alongside the originals" -msgstr "원본과 함께" - -msgid "Select..." -msgstr "선택..." - -msgid "Progress" -msgstr "진행" - -msgid "Details..." -msgstr "자세히..." - -msgid "Transcoder Log" -msgstr "변환기 기록" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "프로필" - -msgid "Main profile (MAIN)" -msgstr "메인 프로필(MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "낮은 복잡도 프로필(LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "확장 가능한 샘플링 레이트 프로필(SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "장기 예측 프로필(LTP)" - -msgid "Use temporal noise shaping" -msgstr "시계층 잡음 조절(TNS) 사용" - -msgid "Allow mid/side encoding" -msgstr "미드/사이드 인코딩 적용" - -msgid "Block type" -msgstr "블록 형식" - -msgid "Normal block type" -msgstr "일반 블록 형식" - -msgid "No short blocks" -msgstr "짧은 블록 없음" - -msgid "No long blocks" -msgstr "긴 블록 없음" - -msgid "Transcoding options" -msgstr "변환 옵션" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "음질" - -msgid "Fast" -msgstr "빠름" - -msgid "Best" -msgstr "최고" - -msgid "Use bitrate management engine" -msgstr "비트레이트 관리 엔진 사용" - -msgid "Target bitrate" -msgstr "목표 비트 전송률" - -msgid "Minimum bitrate" -msgstr "최소 비트 전송률" - -msgid "disabled" -msgstr "사용 안 함" - -msgid "Maximum bitrate" -msgstr "최대 비트 전송률" - -msgid "automatic" -msgstr "자동" - -msgid "Average bitrate" -msgstr "평균 비트 전송률" - -msgid "Encoding mode" -msgstr "인코딩 모드" - -msgid "Auto" -msgstr "자동" - -msgid "Ultra wide band (UWB)" -msgstr "초광대역(UWB)" - -msgid "Wide band (WB)" -msgstr "광대역(WB)" - -msgid "Narrow band (NB)" -msgstr "협대역(NB)" - -msgid "Variable bit rate" -msgstr "가변 비트 전송률" - -msgid "Voice activity detection" -msgstr "음성 활동 감지" - -msgid "Discontinuous transmission" -msgstr "불연속적인 전송" - -msgid "Encoding complexity" -msgstr "인코딩 복잡도" - -msgid "Frames per buffer" -msgstr "버퍼당 프레임 수" - -msgid "Optimize for &quality" -msgstr "품질 최적화(&Q)" - -msgid "Opti&mize for bitrate" -msgstr "비트 전송률 최적화(&M)" - -msgid "Constant bitrate" -msgstr "고정 비트 전송률" - -msgid "Encoding engine quality" -msgstr "인코딩 엔진 품질" - -msgid "Standard" -msgstr "표준" - -msgid "High" -msgstr "높음" - -msgid "Force mono encoding" -msgstr "모노 인코딩 강제" - -msgid "Transcoding" -msgstr "변환" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "여기에 있는 설정은 \"음악 변환\" 대화 상자에서 사용되며, 장치에 음악을 복사하기 전에 변환할 때에도 사용됩니다." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "ASF(WMA)" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "서버 URL" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "설정" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "서버 인증서 확인" - -msgid "Download album covers" -msgstr "앨범아트 다운로드 중" - -msgid "Server-side scrobbling" -msgstr "서버 사이드 스크로블링" - -msgid "Test" -msgstr "테스트" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "OAuth 사용" - -msgid "Client ID" -msgstr "클라이언트 ID" - -msgid "API Token" -msgstr "API 토큰" - -msgid "Audio quality" -msgstr "오디오 품질" - -msgid "Search delay" -msgstr "검색 지연 시간" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "아티스트 검색 제한" - -msgid "Albums search limit" -msgstr "앨범 검색 제한" - -msgid "Songs search limit" -msgstr "노래 검색 제한" - -msgid "Fetch entire albums when searching songs" -msgstr "곡을 검색할 때 전체 앨범 가져오기" - -msgid "Album cover size" -msgstr "앨범아트 크기" - -msgid "Stream URL method" -msgstr "스트림 URL 메서드" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "앱 ID" - -msgid "App Secret" -msgstr "앱 비밀 값" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "무드바" - -msgid "Show a moodbar in the track progress bar" -msgstr "트랙 진행 표시줄에 무드바 표시" - -msgid "Save the .mood files directly in the songs folders" -msgstr "노래 폴더에 .mood 파일 직접 저장" - -msgid "Enabled" -msgstr "활성화" - -msgid "Return to Strawberry" -msgstr "Strawberry로 되돌아가기" - -msgid "Success!" -msgstr "성공!" - -msgid "Please close your browser and return to Strawberry." -msgstr "브라우저를 닫고 Strawberry로 돌아오십시오." - diff --git a/src/translations/nb_NO.po b/src/translations/nb_NO.po deleted file mode 100644 index 7bf1dc9c..00000000 --- a/src/translations/nb_NO.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: nb\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Norwegian Bokmal\n" -"Language: nb_NO\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Alle filer (*)" - -msgid "Context" -msgstr "Kontekst" - -msgid "Collection" -msgstr "Samling" - -msgid "Queue" -msgstr "Kø" - -msgid "Playlists" -msgstr "Spillelister" - -msgid "Smart playlists" -msgstr "Smarte spillelister" - -msgid "Files" -msgstr "Filer" - -msgid "Radios" -msgstr "Radioer" - -msgid "Devices" -msgstr "Enheter" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Vis alle sanger" - -msgid "Show only duplicates" -msgstr "Bare vis duplikater" - -msgid "Show only untagged" -msgstr "Bare vis filer uten etiketter" - -msgid "Configure collection..." -msgstr "Sett opp samling…" - -msgid "Play" -msgstr "Spill" - -msgid "Stop after this track" -msgstr "Stopp etter denne sangen" - -msgid "Toggle queue status" -msgstr "Slå av/på køstatus" - -msgid "Queue selected tracks to play next" -msgstr "Legg valgte spor i kø for å spille som neste" - -msgid "Toggle skip status" -msgstr "Slå av/på hopp over status" - -msgid "Rescan song(s)..." -msgstr "Skann sanger på nytt..." - -msgid "Copy URL(s)..." -msgstr "Kopier URL(s)" - -msgid "Show in collection..." -msgstr "Vis i samling…" - -msgid "Show in file browser..." -msgstr "Vis i fil utforsker" - -msgid "Organize files..." -msgstr "Organiser filene..." - -msgid "Copy to collection..." -msgstr "Kopier til samling…" - -msgid "Move to collection..." -msgstr "Flytt til samling…" - -msgid "Copy to device..." -msgstr "Kopier til enhet…" - -msgid "Delete from disk..." -msgstr "Slett fra disk…" - -msgid "Check for updates..." -msgstr "Se etter oppdateringer…" - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "" - -msgid "Dequeue track" -msgstr "Fjern sporet fra avspillingskøen" - -msgid "Dequeue selected tracks" -msgstr "Fjern valgte spor fra avspillingskøen" - -msgid "Queue track" -msgstr "Legg spor i kø" - -msgid "Queue selected tracks" -msgstr "Legg valgte spor i kø" - -msgid "Queue to play next" -msgstr "Legg i kø for å spille som neste" - -msgid "Unskip track" -msgstr "Ikke hopp over sporet" - -msgid "Unskip selected tracks" -msgstr "Ikke hopp over de valgte sporene" - -msgid "Skip track" -msgstr "Hopp over spor" - -msgid "Skip selected tracks" -msgstr "Hopp over valgte spor" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Sett %1 til \"%2\"…" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Rediger etiketten \"%1\"…" - -msgid "Add to another playlist" -msgstr "Legg til i annen spilleliste" - -msgid "New playlist" -msgstr "Ny spilleliste" - -msgid "Add file" -msgstr "Legg til fil" - -msgid "Music" -msgstr "Musikk" - -msgid "Add folder" -msgstr "Legg til mappe" - -msgid "Clear playlist" -msgstr "Tøm spillelisten" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Spilleliste har %1 sanger, for mange for å angre, ønsker du likevel å fjerne sangene fra spillelisten?" - -msgid "Error" -msgstr "Feil" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Kunne ikke kopiere noen av de valgte sangene til en enhet" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Fordi du har oppdatert Strawberry til en nyere versjon, må hele samlingen søkes gjennom på nytt, som følge av disse nye funksjonene:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Vil du søke gjennom hele samlingen på ny nå?" - -msgid "Collection rescan notice" -msgstr "Melding om gjennomsøk av samlingen" - -msgid "Usage" -msgstr "Bruk" - -msgid "options" -msgstr "innstillinger" - -msgid "URL(s)" -msgstr "URL(er)" - -msgid "Player options" -msgstr "Innstillinger for avspiller" - -msgid "Start the playlist currently playing" -msgstr "Begynn på spillelista som spilles nå" - -msgid "Play if stopped, pause if playing" -msgstr "Hvis stoppet: Spill av. Hvis spiller: pause" - -msgid "Pause playback" -msgstr "Sett avspilling på pause" - -msgid "Stop playback" -msgstr "Stopp avspilling" - -msgid "Stop playback after current track" -msgstr "Stopp avspilling etter dette sporet" - -msgid "Skip backwards in playlist" -msgstr "Gå bakover i spillelista" - -msgid "Skip forwards in playlist" -msgstr "Gå fremover i spillelista" - -msgid "Set the volume to percent" -msgstr "Sett lydstyrken til prosent" - -msgid "Increase the volume by 4 percent" -msgstr "Øk lydstyrken med 4 prosent" - -msgid "Decrease the volume by 4 percent" -msgstr "Senk volum med 4 prosent" - -msgid "Increase the volume by percent" -msgstr "Øk lydstyrken prosent" - -msgid "Decrease the volume by percent" -msgstr "Demp lydstyrken med prosent" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Gå til et bestemt tidspunkt i sporet" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Gå frem-/bakover en del av sporlengden" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Start sporet igjen, eller spill forrige spor hvis du er innen de første 8 sekundene av sporet" - -msgid "Playlist options" -msgstr "Innstillinger for spilleliste" - -msgid "Create a new playlist with files" -msgstr "Opprett ny spilleliste med filer" - -msgid "Append files/URLs to the playlist" -msgstr "Tilføy filer/URLer til spillelista" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Åpne filer/URL-er; erstatt gjeldende spilleliste" - -msgid "Play the th track in the playlist" -msgstr "Spill av ende spor i spillelista" - -msgid "Play given playlist" -msgstr "Spill angitt spilleliste" - -msgid "Other options" -msgstr "Andre innstillinger" - -msgid "Display the on-screen-display" -msgstr "Overleggsvisning" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Slå av/på synlighet for det pene skjermbilde overlegget" - -msgid "Change the language" -msgstr "Endre språk" - -msgid "Resize the window" -msgstr "Endre størrelse på vinduet" - -msgid "Equivalent to --log-levels *:1" -msgstr "Tilsvarer --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Tilsvarer --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Komma-separert liste av klasse:level, level er 0-3" - -msgid "Print out version information" -msgstr "Vis versjonsinformasjon" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Integritetskontrol" - -msgid "Database corruption detected." -msgstr "Oppdaget feil i databasen." - -msgid "Backing up database" -msgstr "Tar sikkerhetskopi av databasen" - -msgid "Deleting files" -msgstr "Sletter filer" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Ukjent" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Du trenge gstreamer for denne URLen" - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "Fil %1 eksisterer ikke." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Fil %1 er ikke gjenkjent som en lydfil" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "CD avspilling er kun mulig med gstreamer" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Kunne ikke åpne fil %1 for lesing: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Kunne ikke åpne CUE fil %1 for lesing: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Kunne ikke åpne spilleliste %1 for lesing: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Kunne ikke opprette gstreamer kilde element for %1" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Spilleliste" - -msgid "1 day" -msgstr "1 dag" - -#, qt-format -msgid "%1 days" -msgstr "%1 dager" - -msgid "Today" -msgstr "I dag" - -msgid "Yesterday" -msgstr "I går" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 dager siden" - -msgid "Tomorrow" -msgstr "I morgen" - -#, qt-format -msgid "In %1 days" -msgstr "Om %1 dager" - -msgid "Next week" -msgstr "Neste uke" - -#, qt-format -msgid "In %1 weeks" -msgstr "Om %1 uker" - -msgid "Show in file browser" -msgstr "Vis i fil utforsker" - -msgid "Too many songs selected." -msgstr "For mange sanger er valgt." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "%1 sanger valgt, er du sikker på at du vil åpne dem alle?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Ukjent feil" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Tilgjengelige felt" - -msgid "Framerate" -msgstr "Bildetakt" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Lav (%1 bilder/sekund)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Medium (%1 bilder/sekund)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Høy (%1 bilder/sekund)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Superhøy (%1 bilder/sek)" - -msgid "No analyzer" -msgstr "Ingen analyse" - -msgid "Block analyzer" -msgstr "Blokkanalyse" - -msgid "Boom analyzer" -msgstr "Boomanalysator" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Forforsterker" - -msgid "Custom" -msgstr "Egendefinert" - -msgid "Classical" -msgstr "Klassisk" - -msgid "Club" -msgstr "Klubbmusikk" - -msgid "Dance" -msgstr "Dansemusikk" - -msgid "Full Bass" -msgstr "Full bass" - -msgid "Full Treble" -msgstr "Full diskant" - -msgid "Full Bass + Treble" -msgstr "Full bass + diskant" - -msgid "Laptop/Headphones" -msgstr "Laptop/hodetelefoner" - -msgid "Large Hall" -msgstr "Storsal" - -msgid "Live" -msgstr "" - -msgid "Party" -msgstr "Fest" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "Myk" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "Soft rock" - -msgid "Techno" -msgstr "Tekno" - -msgid "Zero" -msgstr "Null" - -msgid "Save preset" -msgstr "Lagre forhåndsinnstilling" - -msgid "Name" -msgstr "Navn" - -msgid "Delete preset" -msgstr "Slett forhåndsinnstilling" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Er du sikker på at du vil slette \"%1\"-forhåndsinnstillingen?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Filtype" - -msgid "Length" -msgstr "Lengde" - -msgid "Samplerate" -msgstr "Samplingsrate" - -msgid "Bit depth" -msgstr "Bit dybde" - -msgid "Bitrate" -msgstr "" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Vis album kover" - -msgid "Show song technical data" -msgstr "Vis teknisk informasjon om sangen" - -msgid "Show song lyrics" -msgstr "Vis sangtekster" - -msgid "Automatically search for song lyrics" -msgstr "Automatisk søk for sang lyrikk" - -msgid "No song playing" -msgstr "Ingen sang spilles" - -#, qt-format -msgid "%1 song" -msgstr "%1 sang" - -#, qt-format -msgid "%1 songs" -msgstr "%1 sanger" - -#, qt-format -msgid "%1 artist" -msgstr "" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artister" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "%1 albumer" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "Lagrer spilletellere og vurderinger" - -msgid "Various artists" -msgstr "Diverse artister" - -msgid "Loading..." -msgstr "Åpner…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "Oppdaterer %1 database." - -msgid "Updating collection" -msgstr "Oppdaterer samling" - -#, qt-format -msgid "Updating %1" -msgstr "Oppdaterer %1" - -msgid "Your collection is empty!" -msgstr "Samlingen din er tom!" - -msgid "Click here to add some music" -msgstr "Klikk her for å legge til musikk" - -msgid "Append to current playlist" -msgstr "Legg til i gjeldende spilleliste" - -msgid "Replace current playlist" -msgstr "Erstatt gjeldende spilleliste" - -msgid "Open in new playlist" -msgstr "Åpne i ny spilleliste" - -msgid "Search for this" -msgstr "Søk etter dette" - -msgid "Edit track information..." -msgstr "Rediger spor informasjon…" - -msgid "Edit tracks information..." -msgstr "Rediger spor informasjon…" - -msgid "Rescan song(s)" -msgstr "Reskann sang(er)" - -msgid "Show in various artists" -msgstr "Vis under diverse artister" - -msgid "Don't show in various artists" -msgstr "Ikke vis under diverse artister" - -msgid "There are other songs in this album" -msgstr "Det er andre sanger i dette albumet" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Ønsker du å flytte andre sanger på dette albumet til \"Various Artists\" også?" - -msgid "Show" -msgstr "Vis" - -msgid "Group by" -msgstr "Grupper etter" - -msgid "Display options" -msgstr "Visningsalternativ" - -msgid "Group by Album artist/Album" -msgstr "Grupper etter album artist/album" - -msgid "Group by Album artist/Album - Disc" -msgstr "Grupper etter album artist/album - disc" - -msgid "Group by Album artist/Year - Album" -msgstr "Grupper etter album artist/år - album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Grupper etter album artist/år - album - disc" - -msgid "Group by Artist/Album" -msgstr "Grupper etter artist/album" - -msgid "Group by Artist/Album - Disc" -msgstr "Grupper etter artist/album - disc" - -msgid "Group by Artist/Year - Album" -msgstr "Grupper etter artist/år - album" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Grupper etter artist/år - album - disc" - -msgid "Group by Genre/Album artist/Album" -msgstr "Grupper etter sjanger/album artist/album" - -msgid "Group by Genre/Artist/Album" -msgstr "Grupper etter sjanger/artist/album" - -msgid "Group by Album Artist" -msgstr "Grupper etter album artist" - -msgid "Group by Artist" -msgstr "Grupper etter artist" - -msgid "Group by Album" -msgstr "Grupper etter album" - -msgid "Group by Genre/Album" -msgstr "Grupper etter sjanger/album" - -msgid "Advanced grouping..." -msgstr "Avansert gruppering…" - -msgid "Grouping Name" -msgstr "Grupperingsnavn" - -msgid "Grouping name:" -msgstr "Grupperingsnavn:" - -msgid "First level" -msgstr "Første nivå" - -msgid "Second Level" -msgstr "Andre nivå" - -msgid "Third Level" -msgstr "Tredje nivå" - -msgid "None" -msgstr "Ingen" - -msgid "Album artist" -msgstr "" - -msgid "Artist" -msgstr "" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "" - -msgid "Year - Album" -msgstr "År - album" - -msgid "Year - Album - Disc" -msgstr "År - album - disc" - -msgid "Original year - Album" -msgstr "Opprinnelig år - album" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "Disk" - -msgid "Year" -msgstr "År" - -msgid "Original year" -msgstr "Opprinnelig år" - -msgid "Genre" -msgstr "Sjanger" - -msgid "Composer" -msgstr "Komponist" - -msgid "Performer" -msgstr "Utøver" - -msgid "Grouping" -msgstr "Gruppering" - -msgid "File type" -msgstr "Filtype" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "Samplingsrate" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Tittel" - -msgid "Track" -msgstr "Spor" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Kommentar" - -msgid "Source" -msgstr "Kilde" - -msgid "Mood" -msgstr "" - -msgid "Rating" -msgstr "Vurdering" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Åpne spilleliste" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Ingen treff. Visk ut søkefeltet for å vise hele spillelisten igjen." - -msgid "stop" -msgstr "stopp" - -msgid "Never" -msgstr "Aldri" - -msgid "&Hide..." -msgstr "Skjul…" - -msgid "&Stretch columns to fit window" -msgstr "Tilpass &kolonner til vinduet" - -msgid "&Reset columns to default" -msgstr "&Tilbakestill kolonner til standard" - -msgid "&Lock rating" -msgstr "&Lås vurdering" - -msgid "&Align text" -msgstr "&Still opp tekst" - -msgid "&Left" -msgstr "&Venstre" - -msgid "&Center" -msgstr "Sentr&er" - -msgid "&Right" -msgstr "&Høyre" - -#, qt-format -msgid "&Hide %1" -msgstr "Skjul %1" - -msgid "New folder" -msgstr "Ny mappe" - -msgid "Delete" -msgstr "Slett" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Lagre spilleliste" - -msgid "Enter the name of the folder" -msgstr "Skriv inn navn på mappa" - -msgid "Copy to device" -msgstr "Kopier til enhet" - -msgid "Playlist must be open first." -msgstr "Spillelisten må være åpen først." - -msgid "Remove playlists" -msgstr "Fjern spillelister" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Du sletter nå %1 spillelister fra favorittene dine, er du sikker?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Du kan merke en spilleliste som favoritt ved å klikke på stjerneikonet nær listenavnet." - -msgid "Favorited playlists will be saved here" -msgstr "Favoritt-spillelister vil lagres her" - -msgid "Couldn't create playlist" -msgstr "Kunne ikke opprette spilleliste" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Lagre spilleliste" - -msgid "Unknown playlist extension" -msgstr "Ukjent fil type." - -msgid "Unknown file extension for playlist." -msgstr "Ukjent fil type for spilleliste." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 valgte av" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automatisk" - -msgid "Relative" -msgstr "Relativ" - -msgid "Absolute" -msgstr "Absolutt" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Lukk spillelista" - -msgid "Rename playlist..." -msgstr "Gi nytt navn til spillelista…" - -msgid "Save playlist..." -msgstr "Lagre spilleliste…" - -msgid "Rename playlist" -msgstr "Gi nytt navn til spillelista" - -msgid "Enter a new name for this playlist" -msgstr "Gi denne spillelista et nytt navn" - -msgid "Remove playlist" -msgstr "Fjern spilleliste" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Du er i ferd med å slette en spilleliste som ikke er lagret i Favoritter. Denne spillelisten vil bli slettet (og du kan ikke angre). \n" -"Er du sikker?" - -msgid "Warn me when closing a playlist tab" -msgstr "Advarsel når jeg lukker en spilleliste-fane" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Dette valget kan endres under innstillinger for \"Oppførsel\"" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Dobbelklikk her for å favorisere denne spillelisten slik at den blir lagret og tilgjengelig gjennom \"Spillelister\" i panelet på venstre side." - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "legg til %n sanger" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "fjern %n sanger" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "flytt %n sanger" - -msgid "sort songs" -msgstr "sorter sanger" - -msgid "shuffle songs" -msgstr "stokk spor" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Feil ved lasting av CD" - -msgid "Loading tracks" -msgstr "Åpner spor" - -msgid "Loading tracks info" -msgstr "Henter informasjon om spor" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Alle spillelister (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 spillelister (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Laster smart spilleliste" - -msgid "Collection search" -msgstr "Samlingsøk" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Finn sanger i samlingen som svarer til kriteriene du spesifiserer" - -msgid "Search terms" -msgstr "Søkekriterier" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "En sang vil bli inkludert i spillelisten dersom den matcher disse kreteriene" - -msgid "Search options" -msgstr "Søkevalg" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Velg hvordan spillelisten er sortert og hvor mange sanger den skal inneholde" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 sanger funnet (viser %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 sanger funnet" - -msgid "after" -msgstr "etter" - -msgid "before" -msgstr "etter" - -msgid "on" -msgstr "på" - -msgid "not on" -msgstr "ikke på" - -msgid "in the last" -msgstr "som siste" - -msgid "not in the last" -msgstr "ikke som siste" - -msgid "between" -msgstr "mellom" - -msgid "contains" -msgstr "inneholder" - -msgid "does not contain" -msgstr "inneholder ikke" - -msgid "starts with" -msgstr "starter på" - -msgid "ends with" -msgstr "slutter på" - -msgid "greater than" -msgstr "større enn" - -msgid "less than" -msgstr "mindre enn" - -msgid "equals" -msgstr "er lik" - -msgid "not equals" -msgstr "ikke lik" - -msgid "empty" -msgstr "tom" - -msgid "not empty" -msgstr "ikke tom" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "eldre først" - -msgid "newest first" -msgstr "nyeste først" - -msgid "shortest first" -msgstr "korteste først" - -msgid "longest first" -msgstr "lengre først" - -msgid "smallest first" -msgstr "minste først" - -msgid "biggest first" -msgstr "største først" - -msgid "Hours" -msgstr "Timer" - -msgid "Days" -msgstr "Dager" - -msgid "Weeks" -msgstr "Uker" - -msgid "Months" -msgstr "Måneder" - -msgid "Years" -msgstr "År" - -msgid "The second value must be greater than the first one!" -msgstr "Andre verdi må være høyere enne den første!" - -msgid "Add search term" -msgstr "Legg til søkekreterie" - -msgid "Newest tracks" -msgstr "Nyeste spor" - -msgid "50 random tracks" -msgstr "50 tilfeldige spor" - -msgid "Ever played" -msgstr "Aldri spilt" - -msgid "Never played" -msgstr "Aldri spilt" - -msgid "Last played" -msgstr "Sist spilt" - -msgid "Most played" -msgstr "Mest spilte" - -msgid "Favourite tracks" -msgstr "Favorittspor" - -msgid "Least favourite tracks" -msgstr "Minst favoritt spor" - -msgid "All tracks" -msgstr "Alle spor" - -msgid "Dynamic random mix" -msgstr "Dynamisk tilfeldig miks" - -msgid "New smart playlist..." -msgstr "Ny smart spilleliste..." - -msgid "Play next" -msgstr "Spill neste" - -msgid "Edit smart playlist..." -msgstr "Rediger smart spilleliste..." - -msgid "Delete smart playlist" -msgstr "Slett smart spilleliste" - -msgid "Smart playlist" -msgstr "Smart spilleliste" - -msgid "Playlist type" -msgstr "Spilleliste type" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "En smart spilleliste er en dynamisk liste over sanger fra din samling. Det er flere typer smarte spillelister som tilbyr forskjellige veier å velge sanger" - -msgid "Finish" -msgstr "Ferdig" - -msgid "Choose a name for your smart playlist" -msgstr "Velg et navn for din smarte spilleliste" - -msgid "Abort" -msgstr "Avbryt" - -msgid "All albums" -msgstr "Alle album" - -msgid "Albums with covers" -msgstr "Album med omslag" - -msgid "Albums without covers" -msgstr "Album uten omslag" - -msgid "Really cancel?" -msgstr "Vil du virkelig avbryte?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Lukking av dette vinduet vil medføre stopp i søk etter albumomslag." - -msgid "Don't stop!" -msgstr "Ikke stopp!" - -msgid "All artists" -msgstr "Alle artister" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Hentet %1 av %2 omslag (%3 feilet)" - -#, qt-format -msgid "%1 transferred" -msgstr "overført %1" - -msgid "Export finished" -msgstr "Eksport fullført" - -msgid "No covers to export." -msgstr "Ingen omslag å eksportere." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "%1 av %2 omslag eksportert (hoppet over %3)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Omslag fra %1" - -msgid "Search" -msgstr "Søk" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Bilder (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Bilder (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Alle filer (*)" - -msgid "Load cover from disk..." -msgstr "Hent omslag fra disk…" - -msgid "Save cover to disk..." -msgstr "Lagre bilde til disk…" - -msgid "Load cover from URL..." -msgstr "Hent omslag fra URL…" - -msgid "Search for album covers..." -msgstr "Søk etter albumomslag…" - -msgid "Unset cover" -msgstr "Fjern omslagsvalg" - -msgid "Delete cover" -msgstr "Slett kover" - -msgid "Clear cover" -msgstr "Fjern kover" - -msgid "Show fullsize..." -msgstr "Fullskjermvisning…" - -msgid "Search automatically" -msgstr "Automatisk søk" - -msgid "Load cover from disk" -msgstr "Hent omslag fra disk" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Feil ved åpning av kover fil %1 for lesing: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "Kover fil %1 er tom." - -msgid "unknown" -msgstr "ukjent" - -msgid "Save album cover" -msgstr "Lagre albumomslag" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Feil ved åpning av kover fil %1 for skriving: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Feil ved lagring av kover fil %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Feil ved lagring til kover fil %1" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Feil ved sletting av kover fil %1: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Feil ved lagring til kover fil %1: %2" - -msgid "Total network requests made" -msgstr "Antall nettverkforespørsler totalt" - -msgid "Average image size" -msgstr "Gjennomsnittlig bildestørrelse" - -msgid "Total bytes transferred" -msgstr "Antall byte overført totalt" - -msgid "Fetching cover error" -msgstr "Kunne ikke hente albumgrafikk" - -msgid "The site you requested does not exist!" -msgstr "Siden du forespurte finnes ikke!" - -msgid "The site you requested is not an image!" -msgstr "Siden du forespurte er ikke et bilde!" - -msgid "Genius Authentication" -msgstr "Genius autentisering" - -msgid "Please open this URL in your browser" -msgstr "Vennligst åpne denne URLen i din nettleser" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "Mottok ugyldig svar fra nettleseren." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "Generelt" - -msgid "User interface" -msgstr "Brukergrensesnitt" - -msgid "Streaming" -msgstr "Strømming" - -msgid "Add directory..." -msgstr "Legg til mappe…" - -msgid "Write all playcounts and ratings to files" -msgstr "Skriv alle spilletellere og vurdering til filer" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Er du sikker på at du vil skrive spilletellere og vurderinger til alle sangene i samlingen?" - -msgid "Enter your user token from" -msgstr "Tast inn din bruker token fra" - -msgid "Use Tidal settings to authenticate." -msgstr "Bruk TIdal innstillinger for å autentisere" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Bruk Qobuz innstillingene for å autentisere" - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 Scrobbler krever autentisering" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 Scrobbler bruker autentisering" - -msgid "No provider selected." -msgstr "Ingen tilbyder valgt." - -msgid "Authentication failed" -msgstr "Identitetsbekreftelse feilet" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Velg bakgrunnsbilde" - -msgid "OSD Preview" -msgstr "Forhåndsvisning av skjermbildeoverlegg" - -msgid "Drag to reposition" -msgstr "Dra for å endre posisjon" - -msgid "About Strawberry" -msgstr "Om Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Versjon %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "" - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Det er en fork av Clementine utgitt i 2018." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry er fri programvare lisensiert under GPL. Kildekoden er tilgjengelig på %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Du skal å mottatt en kopi av GNU lisensen, hvis ikke, se %1." - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Hvis du liker Strawberry og kan bruke det, vurder om du kan donere eller bli sponsor." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Du kan sponse Strawberry på %1. Du kan også gi en engangsbetaling gjennom %2." - -msgid "Author and maintainer" -msgstr "" - -msgid "Contributors" -msgstr "Bidragsytere" - -msgid "Clementine authors" -msgstr "" - -msgid "Clementine contributors" -msgstr "" - -msgid "Thanks to" -msgstr "Takk til" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Takk til alle andre Amarok og Clementine bidragsytere." - -msgid "(different across multiple songs)" -msgstr "(varierer mellom sanger)" - -msgid "Different art across multiple songs." -msgstr "Forskjellige over for flere sanger." - -msgid "Previous" -msgstr "Forrige" - -msgid "Next" -msgstr "Neste" - -msgid "Saving tracks" -msgstr "Lagrer spor" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 sanger valgt" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Har ikke omslaggrafikk" - -msgid "Album cover editing is only available for collection songs." -msgstr "Album kover redigering er bare tilgjengelig for sanger i samlingen." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Kover endret, vill bli fjernet når du lagrer." - -msgid "Cover changed: Will be unset when saved." -msgstr "Kover endret. Vil bli fjernet når lagret." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Kover endret, vill bli settet når du lagrer." - -msgid "Cover changed: Will set new when saved." -msgstr "Kover er endret. Vil bli satt når lagret." - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Opprinnelige tagger" - -msgid "Suggested tags" -msgstr "Foreslåtte etiketter" - -msgid "Delete files" -msgstr "Slett filer" - -msgid "The following files will be deleted from disk:" -msgstr "Følgende filer vil bli slettet fra disk:" - -msgid "Are you sure you want to continue?" -msgstr "Er du sikker på at du vil fortsette?" - -msgid "Receiving initial data from last.fm..." -msgstr "Mottar data fra last.fm..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Mottar spilleteller for %1 sanger og sist spilt for %2 sanger." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Mottar sist spilt for %1 sanger." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Mottar spilleteller for %1 sanger." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Spilleltellere for %1 sanger og sist spilt for %2 sanger er mottatt." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Sist spilte for %1 sanger mottatt." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Spilleteller for %1 sanger mottatt." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry kjører som en Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "For Ubuntu en offisiell PPA pakkebrønn er tilgjengelig på %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "For en bedre opplevelse bruk en av valgene over." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Kopier din strawberry.conf og strawberry.db fil fra ~/snap mappen for å unngå at du mister innstillingene før du avinstallerer" - -msgid "Uninstall the snap with:" -msgstr "Avinstaller snap med:" - -msgid "Install strawberry through PPA:" -msgstr "Installer Strawberry gjennom PPA:" - -msgid "Select directory for the playlists" -msgstr "Velg mappe for spillelister" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Stort sidefelt" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Lite sidefelt" - -msgid "Plain sidebar" -msgstr "Enkelt sidefelt" - -msgid "Tabs on top" -msgstr "Faner på toppen" - -msgid "Icons on top" -msgstr "Ikoner øverst" - -msgid "Available" -msgstr "Tilgjengelig" - -msgid "New songs" -msgstr "Nye sanger" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Brukt" - -msgid "Clear" -msgstr "Tøm" - -msgid "Reset" -msgstr "Tilbakestill" - -msgid "Small album cover" -msgstr "Lite albumomslag" - -msgid "Large album cover" -msgstr "Stort omslag" - -msgid "Fit cover to width" -msgstr "Tilpass omslag til bredde" - -msgid "Show above status bar" -msgstr "Vis over statuslinja" - -msgid "You are signed in." -msgstr "Du er innlogget" - -#, qt-format -msgid "You are signed in as %1." -msgstr "Du er innlogget som %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Utgår den %1" - -#, qt-format -msgid "disc %1" -msgstr "disk %1" - -#, qt-format -msgid "track %1" -msgstr "spor %1" - -msgid "Paused" -msgstr "På pause" - -msgid "Stopped" -msgstr "Stoppet" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Stopp avspilling etter spor: %1" - -msgid "On" -msgstr "På" - -msgid "Off" -msgstr "Av" - -msgid "Playlist finished" -msgstr "Spillelisten er ferdigspilt" - -#, qt-format -msgid "Volume %1%" -msgstr "Volum %1%" - -msgid "Don't shuffle" -msgstr "Ikke stokk" - -msgid "Shuffle all" -msgstr "Stokk alle" - -msgid "Shuffle tracks in this album" -msgstr "Stokk om dette albumet" - -msgid "Shuffle albums" -msgstr "Stokk om album" - -msgid "Don't repeat" -msgstr "Ikke gjenta" - -msgid "Repeat track" -msgstr "Gjenta spor" - -msgid "Repeat album" -msgstr "Gjenta album" - -msgid "Repeat playlist" -msgstr "Gjenta spilleliste" - -msgid "Stop after every track" -msgstr "Stopp etter hvert spor" - -msgid "Intro tracks" -msgstr "Introspor" - -#, qt-format -msgid "Configure %1..." -msgstr "Sett opp %1…" - -msgid "Add to artists" -msgstr "Legg til artister" - -msgid "Add to albums" -msgstr "Legg til albumer" - -msgid "Add to songs" -msgstr "Legg til sanger" - -msgid "Enter search terms above to find music" -msgstr "Skriv inn søkeord ovenfor for å finne musikk" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Klikk her for å få inn musikk" - -msgid "Remove from favorites" -msgstr "Fjern fra favoritter" - -msgid "Open homepage" -msgstr "Åpne hjemmeside" - -msgid "Donate" -msgstr "Doner" - -msgid "Refresh channels" -msgstr "Oppfrisk kanler" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Mottar %1 kanaler" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 Scrobbler bruker autentisering" - -msgid "Open URL in web browser?" -msgstr "Åpne URL i nettleseren?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Velg \"Lagre\" for å kopiere URL til utklippsbok for å manuelt åpne den i en nettleser." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Kunne ikke åpne URL. Prøv å åpne denne URLen i din nettleser" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Ugyldig svar fra nettleseren. Mangler token." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Scrobbler %1 er ikke autentisert!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Skrobbler %1 error: %2" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz autentisering" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "Mangler brukernavn, vennligst logg inn til last.fm først!" - -msgid "Organizing files" -msgstr "Organiserer filene" - -msgid "Artist's initial" -msgstr "Artistens initialer" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "Fil etternavn" - -msgid "Error copying songs" -msgstr "Kunne ikke kopiere sanger" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Fikk problemer med å kopiere enkelte sanger. Følgende filer kunne ikke kopieres:" - -msgid "Error deleting songs" -msgstr "Kunne ikke slette sanger" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Fikk problemer med å slette enkelte sanger. Følgende filer kunne ikke slettes:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "Stopp" - -msgid "Stop playing after current track" -msgstr "Stopp spilling etter gjeldene spor" - -msgid "Next track" -msgstr "Neste spor" - -msgid "Previous track" -msgstr "Forrige spor" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "Øk volum" - -msgid "Decrease volume" -msgstr "Senk volum" - -msgid "Mute" -msgstr "Demp" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "Vis/Skul" - -msgid "Show OSD" -msgstr "Vis OSD" - -msgid "Toggle Pretty OSD" -msgstr "Slå av/på OSD" - -msgid "Change shuffle mode" -msgstr "Endre shufflemodus" - -msgid "Change repeat mode" -msgstr "Endre gjentagelsemodus" - -msgid "Enable/disable scrobbling" -msgstr "Aktiver/Deaktiver skrobbling" - -msgid "Love" -msgstr "Kjærlighet" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Trykk en tastekombinasjon å bruke til %1…" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Kunne ikke starte kommandoen \"%1\"." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Hurtigtast for %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Hvis du bruker X11 snarveier på %1 kan det oppstå problemer med at tastaturet slutter å fungere!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "Snarveier på %1 er normalt brukt gjennom GSD D-Bus og bør konfigureres i gnome-settings-daemon i stedet" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "Snarveier på %1 er normalt brukt gjennom GSD D-Bus og bør konfigureres i gnome-settings-daemon i stedet" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "Snarveier på %1 er normalt brukt gjennom GSD D-Bus og bør konfigureres i cinnamon-settings-daemon i stedet" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "Snarveier på %1 er normalt brukt gjennom GSD D-Bus og bør konfigureres i gnome-settings-daemon i stedet" - -msgid "Buffering" -msgstr "Mellomlagring" - -msgid "D-Bus path" -msgstr "D-Bus sti" - -msgid "Serial number" -msgstr "Serienummer" - -msgid "Mount points" -msgstr "Monteringspunkter" - -msgid "Partition label" -msgstr "Partisjonsnavn" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Koble til enhet" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Det er første gang du kobler til denne enheten. Strawberry skanner enheten for musikkfiler. Dette kan ta noe tid." - -msgid "This device will not work properly" -msgstr "Enheten vil ikke fungere ordentlig" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Dette er en MTP enhet, men Strawberry ble kompilert uten libmtp-støtte." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Hvis du fortsetter, vil enheten bli treg, og du vil kanskje ikke kunne spille av sanger kopiert til den." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Dette er en iPod enhet, men Strawberry ble kompilert uten libgpod-støtte." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Denne enhetstypen (%1) støttes ikke." - -#, qt-format -msgid "Updating %1%..." -msgstr "Oppdaterer %1% …" - -msgid "Not connected" -msgstr "Ikke tilkoblet" - -msgid "Not mounted - double click to mount" -msgstr "Ikke montert - dobbelklikk for å montere" - -msgid "Double click to open" -msgstr "Dobbelklikk for å åpne" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 sanger" - -msgid "Safely remove device" -msgstr "Trygg fjerning av enhet" - -msgid "Forget device" -msgstr "Glem enhet" - -msgid "Device properties..." -msgstr "Egenskaper for enhet…" - -msgid "Delete from device..." -msgstr "Slett fra enhet…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Hvis du glemmer enheten, forsvinner den fra denne listen, og Strawberry må lete gjennom alle sangene på enheten neste gang du kobler den til." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Filene vil bli slettet fra enheten. Er du sikker?" - -msgid "Model" -msgstr "Modell" - -msgid "Manufacturer" -msgstr "Fabrikant" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Åpner iPod-database" - -msgid "An error occurred loading the iTunes database" -msgstr "En feil oppsto ved innlasting av iTunes-databasen" - -msgid "Mount point" -msgstr "Monteringspunkt" - -msgid "Device" -msgstr "Enhet" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Åpner MTP-enhet" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Feil ved tilkobling til MTP enhet %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Kunne ikke opprette GStreamer-elementet \"%1\" - sørg for at du har alle nødvendige GStreamer-programutvidelser installert" - -#, qt-format -msgid "Successfully written %1" -msgstr "Skrev %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Omkoder %1 filer i %2 tråder" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Kunne ikke behandle %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Starter %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Kunne ikke finne noen koder for %1, kontroller at du har de riktige GStreamer-modulene installert" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Kunne ikke finne multiplekser for %1, sjekk at du har de riktige GStreamer-programutvidelsene installert" - -msgid "Start transcoding" -msgstr "Start omkoding" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n gjenstående" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n ferdige" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n feilet" - -msgid "Add files to transcode" -msgstr "Legg filer til for omkoding" - -msgid "Open a directory to import music from" -msgstr "Importer musikk fra ei mappe" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Feil ved setting av CDDA enhet til klar status" - -msgid "Error while setting CDDA device to pause state." -msgstr "Feil ved setting av CDDA enhet til pause status" - -msgid "Error while querying CDDA tracks." -msgstr "Feil ved henting av CDDA spor" - -msgid "Server URL is invalid." -msgstr "Server URL er ugyldig." - -msgid "Missing username or password." -msgstr "Mangler brukernavn eller passord." - -msgid "Subsonic server URL is invalid." -msgstr "Subsonic server URL er ugyldig." - -msgid "Missing Subsonic username or password." -msgstr "Mangler Subsonic brukernavn eller passord." - -msgid "Retrieving albums..." -msgstr "Mottar albumer..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Mottar sanger for %1 album..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Mottar sanger for %1 albumer..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Mottar album kover for %1 album..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Mottar album kover for %1 albums..." - -msgid "Configuration incomplete" -msgstr "Oppsett ikke komplett" - -msgid "Missing server url, username or password." -msgstr "Mangler server URL, brukernavn eller passord." - -msgid "Configuration incorrect" -msgstr "Uriktig oppsett" - -msgid "Test successful!" -msgstr "" - -msgid "Test failed!" -msgstr "Test feilet!" - -msgid "Reply from Tidal is missing query items." -msgstr "Svar fra Tidal mangler query items." - -msgid "Missing Tidal API token." -msgstr "Mangler Tidal API token." - -msgid "Missing Tidal username." -msgstr "Mangler Tidal brukernavn." - -msgid "Missing Tidal password." -msgstr "Mangler Tidal passord." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Autentisering med Tidal har nådd maksimalt antall påloggingsforsøk." - -msgid "Not authenticated with Tidal." -msgstr "Ikke autentisert med Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Mangler API nøkkel, brukernavn eller passord." - -msgid "Authenticating..." -msgstr "Autentiserer..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "Søker..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "Ingen treff." - -msgid "Cancelled." -msgstr "Avbrutt" - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Mottokk URL med %1 kryptert strøm fra Tidal, Strawberry støtter ikke kryptert strøm." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Mottokk URL med kryptert strøm fra Tidal, Strawberry støtter ikke kryptert strøm." - -msgid "Missing Tidal client ID." -msgstr "Mangler Tidal client ID." - -msgid "Missing API token." -msgstr "Mangler API nøkkel." - -msgid "Missing username." -msgstr "Mangler brukernavn." - -msgid "Missing password." -msgstr "Mangler passord." - -msgid "Spotify Authentication" -msgstr "Spotify Autentisering" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Maks antall påloggingsforsøk nådd." - -msgid "Missing Qobuz app ID." -msgstr "Mangler Qobuz app ID." - -msgid "Missing Qobuz username." -msgstr "Mangler Qobuz brukernavn." - -msgid "Missing Qobuz password." -msgstr "Mangler Qobuz passord." - -msgid "Not authenticated with Qobuz." -msgstr "Ikke autentisert med Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Mangler Qobuz app ID eller secret." - -msgid "Missing app id." -msgstr "Mangler app ID." - -msgid "Show moodbar" -msgstr "Vis moodbar" - -msgid "Moodbar style" -msgstr "Moodbar stil" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "Sint" - -msgid "Frozen" -msgstr "Frossen" - -msgid "Happy" -msgstr "Glad" - -msgid "System colors" -msgstr "Systemfarger" - -msgid "Strawberry Music Player" -msgstr "" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Spill" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Stopp" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Neste spor" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Avslutt" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Slett spilleliste" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Renummerer sporene i denne rekkefølgen…" - -msgid "Set value for all selected tracks..." -msgstr "Sett verdi for alle valgte spor…" - -msgid "Edit tag..." -msgstr "Rediger etikett…" - -msgid "&Settings..." -msgstr "&Innstillinger" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&Om Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "Stokk om spillelista" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Legg til fil" - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Åpne fil" - -msgid "Open audio &CD..." -msgstr "Åpne lyd &CD" - -msgid "&Cover Manager" -msgstr "&Behandling av plateomslag" - -msgid "C&onsole" -msgstr "K&onsoll" - -msgid "&Shuffle mode" -msgstr "&Stokkemodus" - -msgid "&Repeat mode" -msgstr "&Gjentagelsesmodus" - -msgid "Remove from playlist" -msgstr "Fjern fra spillelisten" - -msgid "&Equalizer" -msgstr "" - -msgid "&Transcode Music" -msgstr "&Omkod musikk" - -msgid "Add &folder..." -msgstr "Legg til &mappe..." - -msgid "&Jump to the currently playing track" -msgstr "&Gå til sporet som spilles av nå" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Ny spilleliste" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Lagre &spilleliste..." - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Start spilleliste" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Gå til neste fane på spillelista" - -msgid "Go to previous playlist tab" -msgstr "Gå til forrige fane på spillelista" - -msgid "&Update changed collection folders" -msgstr "Oppdater endrede samling" - -msgid "About &Qt" -msgstr "Om &Qt" - -msgid "&Mute" -msgstr "&Demp" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Utfør fullstendig skann av samling" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Full ut etiketter automatisk…" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Slå av/på deling av lyttevaner" - -msgid "Remove &duplicates from playlist" -msgstr "Fjern &duplikater fra spillelisten" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Fjern &utilgjengelige spor fra spilleliste" - -msgid "Add file(s) to transcoder" -msgstr "Legg fil(er) til omkoder" - -msgid "Add file to transcoder" -msgstr "Legg fil til omkoder" - -msgid "Add stream..." -msgstr "Legg til strøm..." - -msgid "Show sidebar" -msgstr "Vis sidebar" - -msgid "Import data from last.fm..." -msgstr "Importer data fra last.fm..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "Musikk" - -msgid "P&laylist" -msgstr "Spilleliste" - -msgid "Help" -msgstr "Hjelp" - -msgid "&Tools" -msgstr "&Verktøy" - -msgid "Collection advanced grouping" -msgstr "Avansert samlingsgruppering" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Du kan endre måten sanger i samlingen er organisert." - -msgid "Group Collection by..." -msgstr "Grupper samling etter…" - -msgid "Second level" -msgstr "Andre nivå" - -msgid "Third level" -msgstr "Tredje nivå" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "" - -msgid "Entire collection" -msgstr "Hele samlingen" - -msgid "Added today" -msgstr "Lagt til i dag" - -msgid "Added this week" -msgstr "Lagt til denne uken" - -msgid "Added within three months" -msgstr "Lagt til innen tre måneder" - -msgid "Added this year" -msgstr "Lagt til i år" - -msgid "Added this month" -msgstr "Lagt til denne måneden" - -msgid "Save current grouping" -msgstr "Lagre nåværende gruppering" - -msgid "Manage saved groupings" -msgstr "Behandle lagrede grupperinger" - -msgid "Enter search terms here" -msgstr "Skriv inn søkeord her" - -msgid "Form" -msgstr "Skjema" - -msgid "Saved Grouping Manager" -msgstr "Behandler for lagrede grupperinger" - -msgid "Remove" -msgstr "Fjern" - -msgid "Ctrl+Up" -msgstr "Ctrl+Opp" - -msgid "File paths" -msgstr "Filstier" - -msgid "This can be changed later through the preferences" -msgstr "Dette kan endres i innstillingene seinere" - -msgid "Remember my choice" -msgstr "Husk valg" - -msgid "Stop after each track" -msgstr "Stopp etter hvert spor" - -msgid "Repeat" -msgstr "Gjenta" - -msgid "Shuffle" -msgstr "Stokk om" - -msgid "Dynamic mode is on" -msgstr "Dynamisk modus er på" - -msgid "New tracks will be added automatically." -msgstr "Nye spor vil bli lagt til automatisk." - -msgid "Expand" -msgstr "Utvid" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "Slå av" - -msgid "QueueView" -msgstr "Køoversikt" - -msgid "Move down" -msgstr "Flytt nedover" - -msgid "Move up" -msgstr "Flytt oppover" - -msgid "Ctrl+Down" -msgstr "Ctrl+Ned" - -msgid "Search mode" -msgstr "Søkemodus" - -msgid "Match every search term (AND)" -msgstr "Match alle søke valg (AND)" - -msgid "Match one or more search terms (OR)" -msgstr "Match en eller flere søkevalg (OR)" - -msgid "Include all songs" -msgstr "Inkluder alle sanger" - -msgid "Sorting" -msgstr "Sortering" - -msgid "Put songs in a random order" -msgstr "Putt sangene i tilfeldig rekkefølge" - -msgid "Sort songs by" -msgstr "Sorter sanger etter" - -msgid "Limits" -msgstr "Begrensninger" - -msgid "Show all the songs" -msgstr "Vis alle sanger" - -msgid "Only show the first" -msgstr "Bare vis de første" - -msgid " songs" -msgstr " sanger" - -msgid "Preview" -msgstr "Forhåndsvisning" - -msgid "and" -msgstr "og" - -msgid "ago" -msgstr "siden" - -msgid "New smart playlist" -msgstr "Ny smart spilleliste" - -msgid "Edit smart playlist" -msgstr "Rediger smart spilleliste" - -msgid "Use dynamic mode" -msgstr "Bruk dynamisk modus" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "I dynamisk modus nye spor vil bli valgt og lagt til spillelisten hver gang en sang er fullført." - -msgid "Export covers" -msgstr "Eksporter omslag" - -msgid "Output" -msgstr "Utgang" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Skriv inn et filnavn for eksportert albumomslag (uten filendelse):" - -msgid "Export downloaded covers" -msgstr "Eksporter nedlastede omslag" - -msgid "Export embedded covers" -msgstr "Eksporter innebygde omslag" - -msgid "Existing covers" -msgstr "Eksisterende omslag" - -msgid "Do not overwrite" -msgstr "Ikke overskriv" - -msgid "O&verwrite all" -msgstr "O&verskriv alle" - -msgid "Overwrite s&maller ones only" -msgstr "Bare overskriv mindre" - -msgid "Size" -msgstr "Størrelse" - -msgid "Scale size" -msgstr "Skaler størrelse" - -msgid "Size:" -msgstr "Størrelse:" - -msgid "Pixel" -msgstr "Piksel" - -msgid "Cover Manager" -msgstr "Behandling av plateomslag" - -msgid "Fetch automatically" -msgstr "Hent automatisk" - -msgid "Load" -msgstr "Hent" - -msgid "Add to playlist" -msgstr "Legg til i spilleliste" - -msgid "View" -msgstr "Vis" - -msgid "Total albums:" -msgstr "Totalt antall album:" - -msgid "Without cover:" -msgstr "Uten omslag:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Hent manglende omslag" - -msgid "Export Covers" -msgstr "Eksporter omslag" - -msgid "Fetch completed" -msgstr "Innhenting fullført" - -msgid "Load cover from URL" -msgstr "Hent omslag fra URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Skriv inn en URL for å laste ned albumgrafikk fra Internett:" - -msgid "Settings" -msgstr "Innstillinger" - -msgid "Behavior" -msgstr "Adferd" - -msgid "Show system tray icon" -msgstr "Vis systemikon" - -msgid "Keep running in the background when the window is closed" -msgstr "Fortsett i bakgrunnen selv om vinduet lukkes" - -msgid "Show song progress on system tray icon" -msgstr "Vis sang prosess på systemikon" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Gjenoppta avspilling etter oppstart" - -msgid "Show playing widget" -msgstr "Vis spille widget" - -msgid "On startup" -msgstr "Ved oppstart" - -msgid "Remember from &last time" -msgstr "Husk fra siste gang" - -msgid "Show the main window" -msgstr "Vis hovedvinduet" - -msgid "Hide the main window" -msgstr "Skjul hovedvindu" - -msgid "Show the main window maximized" -msgstr "Vis hovedvinduet maksimert" - -msgid "Show the main window minimized" -msgstr "Vis hovedvinduet minimert" - -msgid "Language" -msgstr "Språk" - -msgid "Use the system default" -msgstr "Bruk systemforevalg" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Du må starte Strawberry på nytt for å bytte språk." - -msgid "Using the menu to add a song will..." -msgstr "Bruk av menyen for å legge til et spor vil…" - -msgid "Never start playing" -msgstr "Aldri begynn avspilling" - -msgid "Play if there is nothing already playing" -msgstr "Spill hvis det ikke er noe annet som spilles av for øyeblikket" - -msgid "Always start playing" -msgstr "Alltid start avspilling" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Når du trykker \"Forrige\" i spilleren vil…" - -msgid "Jump to previous song right away" -msgstr "Gå til forrige sang nå" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Omstart av sang eller tilbake til forrige ved ytterligere trykk" - -msgid "Double clicking a song will..." -msgstr "Dobbeltklikking på en sang vil…" - -msgid "Append to the playlist" -msgstr "Legg til i spillelista" - -msgid "Replace the playlist" -msgstr "Erstatt spillelista" - -msgid "Add to the queue" -msgstr "Legg i kø" - -msgid "Double clicking a song in the playlist will..." -msgstr "Dobbeltklikking på vilkårlig sang i spillelisten vil…" - -msgid "Change the currently playing song" -msgstr "Bytt låten som spilles" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Gå frem-/bakover ved bruk av en tastatursnarvei eller musehjulet" - -msgid "Time step" -msgstr "Tidstrinn" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Disse katalogene vil skannes for musikk som kan legges til samlingen ditt" - -msgid "Add new folder..." -msgstr "Legg til mappe…" - -msgid "Remove folder" -msgstr "Fjern mappe" - -msgid "Automatic updating" -msgstr "Automatisk oppdatering" - -msgid "Update the collection when Strawberry starts" -msgstr "Oppdater samlingen når Strawberry starter" - -msgid "Monitor the collection for changes" -msgstr "Overvåk endringer i samlingen" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "Merk tapte sanger utilgjengelige" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "Utløp utilgjengelige sanger etter" - -msgid "days" -msgstr "dager" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Foretrukne filnavn for omslag (inndelt med komma)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Strawberry søker først etter bildefiler som inneholder ett av disse ordene.\n" -"Hvis ingen ord passer, blir det største bildet i mappen brukt." - -msgid "Automatically open single categories in the collection tree" -msgstr "Åpne enkeltkategorier i bibliotektreet automatisk" - -msgid "Show dividers" -msgstr "Vis adskillere" - -msgid "Show album cover art in collection" -msgstr "Vis albumbilder i samlingen" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Album kover pixmap cache" - -msgid "Enable Disk Cache" -msgstr "Aktiver disk cache" - -msgid "Disk Cache Size" -msgstr "" - -msgid "Current disk cache in use:" -msgstr "Nåværende disk cache i bruk:" - -msgid "Clear Disk Cache" -msgstr "Slett disk cache" - -msgid "Song playcounts and ratings" -msgstr "Spilleteller og vurdering" - -msgid "Save playcounts to song tags when possible" -msgstr "Lagre spilletellere til filer når mulig" - -msgid "Save ratings to song tags when possible" -msgstr "Lagre vurderinger til filer når mulig" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Overskriv database spilleteller når sanger er lest på nytt fra disk" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Overskriv database vurdering når sanger er lest på nytt fra disk" - -msgid "Save playcounts and ratings to files now" -msgstr "Lagre spilletellere og vurderinger til filer nå" - -msgid "Enable delete files in the right click context menu" -msgstr "Aktiv slett filer i høyreklikk-meny" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Lyd-utenhet" - -msgid "Engine" -msgstr "Motor" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "Valg" - -msgid "Enable volume control" -msgstr "Aktiver volumkontroll" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "kanaler" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "ms" - -msgid "Buffer duration" -msgstr "Mellomlagringslengde" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "Standard" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "Normalisering" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Bruk normalisering-metadata hvis tilgjengelig" - -msgid "Replay Gain mode" -msgstr "ReplayGain-modus" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (lik lydstyrkeutgjevning for alle spor)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (ideell lydstyrkeutgjevning for alle spor)" - -msgid "Apply compression to prevent clipping" -msgstr "Legg til kompressor, for å unngå klipping" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Ton inn/ut" - -msgid "Fade out when stopping a track" -msgstr "Ton ut når sporet stoppes" - -msgid "Cross-fade when changing tracks manually" -msgstr "Mikse overgang når du skifter spor selv" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Miks overgang når spor skiftes automatisk" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Unntatt mellom spor fra samme album eller CUE-fil" - -msgid "Fading duration" -msgstr "Tonings-varighet" - -msgid "Fade out on pause / fade in on resume" -msgstr "Ton ut/inn ved pause/start" - -msgid "Add song artist tag" -msgstr "Fest artistetikett på sporet" - -msgid "Add song album tag" -msgstr "Fest album-etikett på sporet" - -msgid "Add song title tag" -msgstr "Fest låttittel-etikett til sporet" - -msgid "Add song albumartist tag" -msgstr "Fest albumsartist-etikett på sporet" - -msgid "Add song year tag" -msgstr "Fest etikett for utgivelsesår på sporet" - -msgid "Add song composer tag" -msgstr "Fest komponist-etikett på sporet" - -msgid "Add song performer tag" -msgstr "Fest utøver-etikett på sporet" - -msgid "Add song grouping tag" -msgstr "Fest sanggrupperings-etikett på sporet" - -msgid "Add song disc tag" -msgstr "Fest spor/disk-etikett på sporet" - -msgid "Add song track tag" -msgstr "Fest etikett for låtnummer til sporet" - -msgid "Add song genre tag" -msgstr "Fest sjangeretikett på sporet" - -msgid "Add song length tag" -msgstr "Fest låtlengde på sporet" - -msgid "Add song play count" -msgstr "Fest avspillingsantall på sporet" - -msgid "Add song skip count" -msgstr "Fest antall overhoppninger til sporet" - -msgid "Add a new line if supported by the notification type" -msgstr "Legg til en linje, hvis meddelelsestypen støtter det" - -msgid "%filename%" -msgstr "%filnavn%" - -msgid "Add song filename" -msgstr "Fest låtnavn til sporet" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Legg til sang URL" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Fest poenggivning for låt til sporet" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "Legg til sang orignalt år tagg" - -msgid "Custom text settings" -msgstr "Egendefinert tekst innstilling" - -msgid "Summary" -msgstr "Sammendrag" - -msgid "Enable Items" -msgstr "Aktiver items" - -msgid "Technical Data" -msgstr "Teknisk Data" - -msgid "Song Lyrics" -msgstr "Sangtekst" - -msgid "Automatically search for album cover" -msgstr "Automatisk søk for album kover" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "Font størrelse" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "Font for data og lyrikk" - -msgid "Use alternating row colors" -msgstr "Bruk alternative radfarger" - -msgid "Show bars on the currently playing track" -msgstr "Vis barer på nåværende spilte spor" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Vis en glødende animasjon på gjeldende spilt spor" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Fortsett til neste sang i stillelisten dersom en sang ikke er tilgjengelig" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Merk ikke-eksisterende sanger med grått når de spilles" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Merk ikke-eksisterende sanger med grått på oppstart" - -msgid "Automatically select current playing track" -msgstr "Velg spor automatisk" - -msgid "Enable playlist toolbar" -msgstr "Aktiver spilleliste toolbar" - -msgid "Enable playlist clear button" -msgstr "Aktiver fjern spilleliste knapp" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Automatisk sorter spilleliste når du legger til sanger" - -msgid "When saving a playlist, file paths should be" -msgstr "Når du lagrer spillelisten, skal fil plasseringen" - -msgid "A&utomatic" -msgstr "A&utomatisk" - -msgid "Absolu&te" -msgstr "Absolu&tt" - -msgid "Re&lative" -msgstr "Relativ" - -msgid "As&k when saving" -msgstr "Spør ved lagring" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Skrur på direkte redigering ved å klikke på en sang i spillelisten" - -msgid "Enable song metadata inline edition with click" -msgstr "Slå på direkteredigering med ett klikk" - -msgid "Write metadata when saving playlists" -msgstr "Skrev metadata når spilleliste lagres" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Aktiver" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Sanger blir scrobblet når de har gyldig metadata, er lengre enn 30 seconds, og har blitt spilt for minst halve tiden, eller 30 sekunder (det som skjer tidligst)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Jobb i frakoblet modus (bare cache scrobbler)" - -msgid "Show scrobble button" -msgstr "Vis knappen for rapportering av lyttevaner" - -msgid "Show love button" -msgstr "Vis love knapp" - -msgid "Submit scrobbles every" -msgstr "Send scrobbles hver" - -msgid " seconds" -msgstr " sekunder" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "Tid mellom en sang er scrobbled og når skrobbler er sent til server. Setting av tid til 0 minutter vil sende skrobbler øyeblikkelig" - -msgid "Prefer album artist when sending scrobbles" -msgstr "Foretrekk album artist når scrobbler sendes" - -msgid "Show dialog for errors" -msgstr "Vis dialog for feil" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Aktiver skrobbling for følgende kilder:" - -msgid "Local file" -msgstr "Lokal fil" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Strøm" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Innlogging" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Bruker nøkkel:" - -msgid "Covers" -msgstr "Kover" - -msgid "Cover providers" -msgstr "Kover tilbydere" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Velg tilbydere du vil bruke for å søke etter kover" - -msgid "Authentication" -msgstr "Autentisering" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Lagrer album kover" - -msgid "Save album covers in album directory" -msgstr "Lagre album kover i album mappen" - -msgid "Save album covers in cache directory" -msgstr "Lagre album kober i cache mappen" - -msgid "Save album covers as embedded cover" -msgstr "Lagre album kover som embedded kover" - -msgid "Filename:" -msgstr "Filnavn:" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "Tilfeldig" - -msgid "Overwrite existing file" -msgstr "Overskriv eksisterende fil" - -msgid "Lowercase filename" -msgstr "Små bokstaver filnavn" - -msgid "Replace spaces with dashes" -msgstr "Erstatt mellomrom med streker" - -msgid "Lyrics" -msgstr "Lyrikk" - -msgid "Lyrics providers" -msgstr "Lyrikk tilbyder" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Velg tilbydere du vil bruke for å søke etter lyrikk" - -msgid "Network Proxy" -msgstr "Mellomtjener" - -msgid "&Use the system proxy settings" -msgstr "&Bruk forvalgte mellomtjener-innstillinger" - -msgid "Direct internet connection" -msgstr "Koblet direkte til Internett" - -msgid "&Manual proxy configuration" -msgstr "&Manuell mellomtjener-innstilling" - -msgid "HTTP proxy" -msgstr "Mellomtjener for HTTP" - -msgid "SOCKS proxy" -msgstr "Mellomtjener for SOCKS" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "Bruk autentisering" - -msgid "Username" -msgstr "Brukernavn" - -msgid "Password" -msgstr "Passord" - -msgid "Use proxy settings for streaming" -msgstr "Bruk proxy for strømming" - -msgid "Appearance" -msgstr "Utseende" - -msgid "Style" -msgstr "Stil" - -msgid "Use system theme icons" -msgstr "Bruk ikoner fra system theme" - -msgid "Settings require restart." -msgstr "Innstillinger krever restart." - -msgid "Tabbar colors" -msgstr "Tabbar farger" - -msgid "&Use the system default color" -msgstr "&bruk standard system farger" - -msgid "Use custom color" -msgstr "Bruk egendefinert farge" - -msgid "Use gradient background" -msgstr "Bruk gradient bakgrunn" - -msgid "Select tabbar color:" -msgstr "Velg tabbar farge:" - -msgid "Background image" -msgstr "Bakgrunnsbilde" - -msgid "Default bac&kground image" -msgstr "Forhåndsvalgt bak&grunnsbilde" - -msgid "&No background image" -msgstr "&Ingen bakgrunn" - -msgid "The album cover of the currently playing song" -msgstr "Albumomslaget til sangen som spilles av for øyeblikket" - -msgid "Albu&m cover" -msgstr "Albu&m kover" - -msgid "Custom image:" -msgstr "Egendefinert bilde:" - -msgid "Browse..." -msgstr "Bla gjennom…" - -msgid "Position" -msgstr "Posisjon" - -msgid "Upper Left" -msgstr "Oppe til venstre" - -msgid "Upper Right" -msgstr "Oppe til høyre" - -msgid "Middle" -msgstr "Midten" - -msgid "Bottom Left" -msgstr "Nede til venstre" - -msgid "Bottom Right" -msgstr "Nede til høyre" - -msgid "Max cover size" -msgstr "Maksimal kover størrelse" - -msgid "Stretch image to fill playlist" -msgstr "Utvid bildet til å fylle spilleliste" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "Ikke kutt bildet" - -msgid "Blur amount" -msgstr "Mengde slør" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Dekkevne" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "Ikon størrelser" - -msgid "Playlist buttons" -msgstr "Spilleliste knapper" - -msgid "Tabbar large mode" -msgstr "Tabbar stor modus" - -msgid "Play control buttons" -msgstr "Spillekontrolknapper" - -msgid "Configure buttons" -msgstr "Konfigurere knapper" - -msgid "Files, playlists and queue buttons" -msgstr "Filer, spillelister og kø knapper" - -msgid "Tabbar small mode" -msgstr "Tabbar liten modus" - -msgid "Playlist playing song color" -msgstr "Spilleliste spiller sang farge" - -msgid "System highlight color" -msgstr "System markeringsfarge" - -msgid "Custom color" -msgstr "Kustom farge" - -msgid "Select playlist playing song color:" -msgstr "Velg spilleliste sang farge:" - -msgid "Notifications" -msgstr "Meddelelsetype" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry kan vise en melding ved sporendring." - -msgid "Notification type" -msgstr "Meddelelsetype" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Avskrudd" - -msgid "Show a &native desktop notification" -msgstr "Vis en skrivebordsmedledelse som passer inn i ditt operativsystem" - -msgid "Show a pretty OSD" -msgstr "Vis et pent skjermbildeoverlegg" - -msgid "Show a popup fro&m the system tray" -msgstr "Vis et oppsprettsvindu fra systemskuffa" - -msgid "General settings" -msgstr "Generelle innstillinger" - -msgid "Popup duration" -msgstr "Oppsprettsvinduets varighet" - -msgid "Disable duration" -msgstr "Slå av varighet" - -msgid "Show a notification when I change the volume" -msgstr "Vis en meddelelse når jeg endrer lydstyrke" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Vis en meddelelse når jeg endrer gjentakelse- og stokke -modus" - -msgid "Show a notification when I pause playback" -msgstr "Vis meddelelse når jeg setter avspillingen på pause" - -msgid "Show a notification when I resume playback" -msgstr "Vis a meddelelse når avspillingen fortsetter" - -msgid "Include album art in the notification" -msgstr "Inkluder omslag i meddelelsen" - -msgid "Custom message settings" -msgstr "Egendefinerte melding-innstillinger" - -msgid "Use a custom message for notifications" -msgstr "Bruk egendefinert melding for meddelelser" - -msgid "Body" -msgstr "Brødtekst" - -msgid "Pretty OSD options" -msgstr "Pene skjermbildeoverleggsvalg" - -msgid "Background color" -msgstr "Bakgrunnsfarge" - -msgid "Text options" -msgstr "Tekstinnstillinger" - -msgid "Choose font..." -msgstr "Velg skrifttype…" - -msgid "Choose color..." -msgstr "Velg farge…" - -msgid "Background opacity" -msgstr "Bakgrunnsdekkevne" - -msgid "Basic Blue" -msgstr "Blå" - -msgid "Strawberry Red" -msgstr "Jordbær rød" - -msgid "Custom..." -msgstr "Egendefinert…" - -msgid "Enable fading" -msgstr "Aktiver fading" - -msgid "Equalizer" -msgstr "Tonekontroll" - -msgid "Preset:" -msgstr "Forhåndsinnstilling:" - -msgid "Enable equalizer" -msgstr "Slå på tonekontroll (EQ)" - -msgid "Enable stereo balancer" -msgstr "Aktiver stereo balanse" - -msgid "Left" -msgstr "Venstre" - -msgid "Balance" -msgstr "Balanse" - -msgid "Right" -msgstr "Høyre" - -msgid "About" -msgstr "Om" - -msgid "Strawberry Error" -msgstr "Strawberry Feil" - -msgid "Console" -msgstr "Konsoll" - -msgid "Run" -msgstr "Kjør" - -msgid "Edit track information" -msgstr "Rediger spor informasjon" - -msgid "Date created" -msgstr "Opprettelse dato" - -msgid "Art Automatic" -msgstr "Automatisk kover" - -msgid "Date modified" -msgstr "Endrings dato" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Sist spilt" - -msgid "Play count" -msgstr "Antall avspillinger" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Bitrate" - -msgid "Skip count" -msgstr "Antall ganger hoppet over" - -msgid "Path" -msgstr "Filsti" - -msgid "Filename" -msgstr "Filnavn" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Filstørrelse" - -msgid "Art Manual" -msgstr "Manuelt kover" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Tilbakestill avspillingsteller" - -msgid "Change art" -msgstr "Endre kover" - -msgid "Embedded cover" -msgstr "Embedded kover" - -msgid "Complete tags automatically" -msgstr "Fyll ut etiketter automatisk" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "Tagger" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Etikett-henter" - -msgid "Sorry" -msgstr "Beklager" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry klarte ikke å finne resultater for denne filen" - -msgid "Select best possible match" -msgstr "Velg det beste treffet" - -msgid "Add Stream" -msgstr "Legg til strøm" - -msgid "Enter the URL of a stream:" -msgstr "Skriv inn URL for strøm:" - -msgid "Enter username and password" -msgstr "Skriv inn brukernavn og passord" - -msgid "Import data from last.fm" -msgstr "Importer data fra last.fm." - -msgid "Choose data to import from last.fm" -msgstr "Velg data for å importere fra last.fm" - -msgid "Play counts" -msgstr "Spilletellere" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "Start!" - -msgid "Close" -msgstr "Lukk" - -msgid "Cancel" -msgstr "Avbryt" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "Ikke vis denne meldingen igjen." - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Klikk for å bytte mellom gjenværende og total tid" - -msgid "You are not signed in." -msgstr "Du har ikke logget inn." - -msgid "Sign out" -msgstr "Logg ut" - -msgid "Signing in..." -msgstr "Logger inn…" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Artister" - -msgid "Albums" -msgstr "Albumer" - -msgid "Songs" -msgstr "Sanger" - -msgid "Refresh catalogue" -msgstr "Oppfrisk katalog" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "artister" - -msgid "albums" -msgstr "albumer" - -msgid "songs" -msgstr "sanger" - -msgid "Organize Files" -msgstr "Organiser filene" - -msgid "Destination" -msgstr "Mål" - -msgid "After copying..." -msgstr "Etter kopiering…" - -msgid "Keep the original files" -msgstr "Behold originalfilene" - -msgid "Delete the original files" -msgstr "Slett de originale filene" - -msgid "Naming options" -msgstr "Navnevalg" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Kodene begynner med %, for eksempel: %artist %album %title

\n\n" -"

Hvis du setter klammeparenteser rundt tekst som inneholder en kode, vil teksten skjules om koden er tom.

" - -msgid "Insert..." -msgstr "Sett inn…" - -msgid "Remove problematic characters from filenames" -msgstr "Fjern problematiske tegn fra filnavn" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Begrens til tegn tillat på FAT filsystem" - -msgid "Restrict characters to ASCII" -msgstr "Begrens til tegn i ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Tillat utvidet ASCII tegn" - -msgid "Replace spaces with underscores" -msgstr "Erstatt mellomrom med understrek" - -msgid "Overwrite existing files" -msgstr "Overskriv eksisterende filer" - -msgid "Copy album cover artwork" -msgstr "Kopier album omslaggrafikk" - -msgid "Safely remove the device after copying" -msgstr "Kjør trygg fjerning av enhet etter kopiering" - -msgid "Press a key" -msgstr "Trykk en tast" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Bruk Gnome (GSD) snarveier når tilgjengelige." - -msgid "Open..." -msgstr "Åpne…" - -msgid "Use MATE shortcuts when available" -msgstr "Bruk MATE snarveier når tilgjengelige" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Bruk KDE (KGlobalAccel) snarveier når tilgjengelige" - -msgid "Use X11 shortcuts when available" -msgstr "Bruk X11 snarveier når tilgjengelige" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Du må åpne Systemvalg og gi Strawberry tilgang til \"styre datamaskinen din\" for å bruke globale snarveier i Strawberry." - -msgid "Shortcut" -msgstr "Hurtigtast" - -msgctxt "Category label" -msgid "Action" -msgstr "Handling" - -msgid "&None" -msgstr "&Ingen" - -msgid "&Default" -msgstr "&Standard" - -msgid "&Custom" -msgstr "&Egendefinert" - -msgid "Change shortcut..." -msgstr "Endre snarvei…" - -msgid "Device Properties" -msgstr "Egenskaper for enhet" - -msgid "Icon" -msgstr "Ikon" - -msgid "Hardware information" -msgstr "Maskinvareinformasjon" - -msgid "Hardware information is only available while the device is connected." -msgstr "Informasjon om maskinvaren er bare tilgjengelig når enheten er tilkoblet." - -msgid "Information" -msgstr "Informasjon" - -msgid "Supported formats" -msgstr "Støttede formater" - -msgid "This device supports the following file formats:" -msgstr "Denne enheten støtter følgende filformat:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry kan automatisk konvertere musikken til et format enheten kan spille når musikken kopieres til enheten." - -msgid "Do not convert any music" -msgstr "Ikke konverter musikk" - -msgid "Convert any music that the device can't play" -msgstr "Konverter all musikk som enheten ikke kan spille" - -msgid "Convert all music" -msgstr "Konverter all musikk" - -msgid "Preferred format" -msgstr "Foretrukket format" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Denne enheten må kobles til og åpnes før Strawberry kan se hvilke formater som støttes." - -msgid "Open device" -msgstr "Åpne enhet" - -msgid "Querying device..." -msgstr "Spør enhet…" - -msgid "File formats" -msgstr "Filformat" - -msgid "Transcode Music" -msgstr "Omkod musikk" - -msgid "Files to transcode" -msgstr "Filer som skal omkodes" - -msgid "Directory" -msgstr "Mappe" - -msgid "Add..." -msgstr "Legg til..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Legg til alle filer fra ei mappe og dens undermapper" - -msgid "Import..." -msgstr "Importer..." - -msgid "Output options" -msgstr "Utgangsinnstillinger" - -msgid "Audio format" -msgstr "Lydformat" - -msgid "Options..." -msgstr "Innstillinger…" - -msgid "Alongside the originals" -msgstr "Sammen med originalene" - -msgid "Select..." -msgstr "Velg…" - -msgid "Progress" -msgstr "Framdrift" - -msgid "Details..." -msgstr "Detaljer…" - -msgid "Transcoder Log" -msgstr "Logg for omkoder" - -msgid " kbps" -msgstr "kbps" - -msgid "Profile" -msgstr "Profil" - -msgid "Main profile (MAIN)" -msgstr "Hovedprofil (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Profil for lavkompleksitet (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Skalerbar samplingsrate-profil (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Profil for langtidspredikie (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Bruk midlertidig støyforming" - -msgid "Allow mid/side encoding" -msgstr "Tillat midt/side-koding" - -msgid "Block type" -msgstr "Blokktype" - -msgid "Normal block type" -msgstr "Normal blokktype" - -msgid "No short blocks" -msgstr "Ikke korte blokker" - -msgid "No long blocks" -msgstr "Ingen lange blokker" - -msgid "Transcoding options" -msgstr "Innstillinger for omkoding" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Kvalitet" - -msgid "Fast" -msgstr "Rask" - -msgid "Best" -msgstr "" - -msgid "Use bitrate management engine" -msgstr "Bruk kontrollert bitrate" - -msgid "Target bitrate" -msgstr "Ønsket bitrate" - -msgid "Minimum bitrate" -msgstr "Minimal bitrate" - -msgid "disabled" -msgstr "slått av" - -msgid "Maximum bitrate" -msgstr "Høyeste bitrate" - -msgid "automatic" -msgstr "automatisk" - -msgid "Average bitrate" -msgstr "Gjennomsnittlig bitrate" - -msgid "Encoding mode" -msgstr "Kodingsmodus" - -msgid "Auto" -msgstr "Automatisk" - -msgid "Ultra wide band (UWB)" -msgstr "Ultrabredt bånd (UWB)" - -msgid "Wide band (WB)" -msgstr "Bredbånd (WB)" - -msgid "Narrow band (NB)" -msgstr "Smalbånd (SB)" - -msgid "Variable bit rate" -msgstr "Variabel bitrate" - -msgid "Voice activity detection" -msgstr "Taledeteksjon" - -msgid "Discontinuous transmission" -msgstr "Uregelmessig overføring" - -msgid "Encoding complexity" -msgstr "Koding-kompleksitet" - -msgid "Frames per buffer" -msgstr "Bilder per buffer" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "Optimalisere for bitrate" - -msgid "Constant bitrate" -msgstr "Konstant bitrate" - -msgid "Encoding engine quality" -msgstr "Koding motorens kvalitetsinnstilling" - -msgid "Standard" -msgstr "" - -msgid "High" -msgstr "Høy" - -msgid "Force mono encoding" -msgstr "Tving monolyd-koding" - -msgid "Transcoding" -msgstr "Omkoding" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Disse innstillingene brukes i \"Omkod musikk\"-dialogvinduet, og når musikken omkodes før kopiering til en enhet." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "" - -msgid "Authentication method:" -msgstr "Autentiseringsmetode" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Innstillinger" - -msgid "Use HTTP/2 when possible" -msgstr "Bruk HTTP2 når tilgjengelig" - -msgid "Verify server certificate" -msgstr "Verifiser server sertifikat" - -msgid "Download album covers" -msgstr "Last ned album kover" - -msgid "Server-side scrobbling" -msgstr "Server-siding skrobbling" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "Slett sanger" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Tidal støtte er ikke offisiell og krever en API nøkkel." - -msgid "Use OAuth" -msgstr "Bruk OAuth" - -msgid "Client ID" -msgstr "" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "Lydkvalitet" - -msgid "Search delay" -msgstr "Søke forsinkelse" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Artist søkebegrensning" - -msgid "Albums search limit" -msgstr "Album søke begrensning" - -msgid "Songs search limit" -msgstr "Søkebegrensing for sanger" - -msgid "Fetch entire albums when searching songs" -msgstr "Hent hele album når en søker etter sanger" - -msgid "Album cover size" -msgstr "Plateomslag størrelse" - -msgid "Stream URL method" -msgstr "Strøm URL metode" - -msgid "Append explicit to album title for explicit albums" -msgstr "Legg til explicit i album tittel for explicit albumer" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "QObuz støtte er ikke offisiell og krever en API nøkkel fra en registert applikasjon for å virke." - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "Vis moodbar i spor indikatoren" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Lagre .mood filene direkte i mappen til sangen" - -msgid "Enabled" -msgstr "Aktivert" - -msgid "Return to Strawberry" -msgstr "Gå tilbake til Strawberry" - -msgid "Success!" -msgstr "Suksess!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Lukk nettleseren og gå tilbake til Strawberry." - diff --git a/src/translations/nl_NL.po b/src/translations/nl_NL.po deleted file mode 100644 index cc95948f..00000000 --- a/src/translations/nl_NL.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: nl\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Dutch\n" -"Language: nl_NL\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Alle bestanden (*)" - -msgid "Context" -msgstr "" - -msgid "Collection" -msgstr "Bibliotheek" - -msgid "Queue" -msgstr "Rij" - -msgid "Playlists" -msgstr "" - -msgid "Smart playlists" -msgstr "Slimme afspeellijsten" - -msgid "Files" -msgstr "" - -msgid "Radios" -msgstr "Radio's" - -msgid "Devices" -msgstr "Toestellen" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Alle nummers weergeven" - -msgid "Show only duplicates" -msgstr "Alleen dubbelen tonen" - -msgid "Show only untagged" -msgstr "Nummers zonder labels tonen" - -msgid "Configure collection..." -msgstr "Bibliotheek configureren…" - -msgid "Play" -msgstr "Afspelen" - -msgid "Stop after this track" -msgstr "Na dit nummer stoppen" - -msgid "Toggle queue status" -msgstr "Wachtrijstatus aan/uit" - -msgid "Queue selected tracks to play next" -msgstr "Geselecteerde nummers in de wachtrij zetten om op volgorde af te spelen" - -msgid "Toggle skip status" -msgstr "Schakel status overslaan in" - -msgid "Rescan song(s)..." -msgstr "Nummer(s) opnieuw scannen..." - -msgid "Copy URL(s)..." -msgstr "Kopieer URL(s)..." - -msgid "Show in collection..." -msgstr "Tonen in bibliotheek..." - -msgid "Show in file browser..." -msgstr "In bestandsbeheer tonen…" - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "Naar bibliotheek kopiëren…" - -msgid "Move to collection..." -msgstr "Naar bibliotheek verplaatsen…" - -msgid "Copy to device..." -msgstr "Naar apparaat kopiëren…" - -msgid "Delete from disk..." -msgstr "Van schijf verwijderen…" - -msgid "Check for updates..." -msgstr "Zoeken naar updates..." - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Pauze" - -msgid "Dequeue track" -msgstr "Nummer uit wachtrij verwijderen" - -msgid "Dequeue selected tracks" -msgstr "Geselecteerde nummers uit wachtrij verwijderen" - -msgid "Queue track" -msgstr "Nummer in de wachtrij plaatsen" - -msgid "Queue selected tracks" -msgstr "Geselecteerde nummers in de wachtrij plaatsen" - -msgid "Queue to play next" -msgstr "" - -msgid "Unskip track" -msgstr "Nummer niet overslaan" - -msgid "Unskip selected tracks" -msgstr "Geselecteerde nummers niet overslaan" - -msgid "Skip track" -msgstr "Nummer overslaan" - -msgid "Skip selected tracks" -msgstr "Geselecteerde nummers overslaan" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Stel %1 in op \"%2\"..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Label ‘%1’ bewerken…" - -msgid "Add to another playlist" -msgstr "Aan een andere afspeellijst toevoegen" - -msgid "New playlist" -msgstr "Nieuwe afspeellijst" - -msgid "Add file" -msgstr "Bestand toevoegen" - -msgid "Music" -msgstr "Muziek" - -msgid "Add folder" -msgstr "Map toevoegen" - -msgid "Clear playlist" -msgstr "Afspeellijst wissen" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "" - -msgid "Error" -msgstr "Fout" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Geen van de geselecteerde nummers waren geschikt voor het kopiëren naar een apparaat" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "De versie van Strawberry die u zojuist heeft ge-updated vereist vanwege de nieuwe onderdelen die hieronder staan een volledige herscan van de database:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Wilt u op dit moment een volledige herscan laten uitvoeren?" - -msgid "Collection rescan notice" -msgstr "Database herscan-melding" - -msgid "Usage" -msgstr "Gebruik" - -msgid "options" -msgstr "opties" - -msgid "URL(s)" -msgstr "" - -msgid "Player options" -msgstr "Speler-opties" - -msgid "Start the playlist currently playing" -msgstr "Momenteel spelende afspeellijst starten" - -msgid "Play if stopped, pause if playing" -msgstr "Afspelen indien gestopt, pauzeren indien afgespeeld" - -msgid "Pause playback" -msgstr "Afspelen pauzeren" - -msgid "Stop playback" -msgstr "Afspelen stoppen" - -msgid "Stop playback after current track" -msgstr "Afspelen stoppen na huidige nummer" - -msgid "Skip backwards in playlist" -msgstr "Terug in afspeellijst" - -msgid "Skip forwards in playlist" -msgstr "Vooruit in afspeellijst" - -msgid "Set the volume to percent" -msgstr "Zet het volume op procent" - -msgid "Increase the volume by 4 percent" -msgstr "" - -msgid "Decrease the volume by 4 percent" -msgstr "Volume verminderd met 4%" - -msgid "Increase the volume by percent" -msgstr "Verhoog het volume met procent " - -msgid "Decrease the volume by percent" -msgstr "Verlaag het volume met procent" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Spoel het momenteel spelende nummer naar een absolute positie door" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Spoel momenteel spelende nummer met een relatieve hoeveelheid door" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Herstart het afspelen van track, of speel het vorige nummer af bij 8 seconden van start." - -msgid "Playlist options" -msgstr "Afspeellijst-opties" - -msgid "Create a new playlist with files" -msgstr "" - -msgid "Append files/URLs to the playlist" -msgstr "Bestanden/URLs aan afspeellijst toevoegen" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Bestanden/URLs laden, en vervangt de huidige afspeellijst" - -msgid "Play the th track in the playlist" -msgstr "De de/ste track in de afspeellijst afspelen" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "Overige opties" - -msgid "Display the on-screen-display" -msgstr "Infoschermvenster weergeven" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Zichtbaarheid voor het mooie infoschermvenster aan/uit" - -msgid "Change the language" -msgstr "De taal wijzigen" - -msgid "Resize the window" -msgstr "Formaat van het venster wijzigen" - -msgid "Equivalent to --log-levels *:1" -msgstr "Gelijkwaardig aan --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Gelijkwaardig aan --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Door komma's gescheiden lijst van van klasse:niveau, het niveau is 0-3" - -msgid "Print out version information" -msgstr "Versie-informatie uitprinten" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Integriteits check" - -msgid "Database corruption detected." -msgstr "" - -msgid "Backing up database" -msgstr "Bezig met het maken van een backup van de database" - -msgid "Deleting files" -msgstr "Bestanden worden verwijderd" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Onbekend" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "GStreamer is nodig voor deze URL." - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Kon bestand %1 niet openen voor lezen: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Kon CUE-bestand %1 niet openen voor lezen: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Kon afspeellijstbestand %1 niet openen voor lezen: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Kon geen GStreamer bronbestandelement voor %1 aanmaken" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Afspeellijst" - -msgid "1 day" -msgstr "1 dag" - -#, qt-format -msgid "%1 days" -msgstr "%1 dagen" - -msgid "Today" -msgstr "Vandaag" - -msgid "Yesterday" -msgstr "Gisteren" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 dagen geleden" - -msgid "Tomorrow" -msgstr "Morgen" - -#, qt-format -msgid "In %1 days" -msgstr "In %1 dagen" - -msgid "Next week" -msgstr "Volgende week" - -#, qt-format -msgid "In %1 weeks" -msgstr "In %1 weken" - -msgid "Show in file browser" -msgstr "In bestandsbeheer tonen" - -msgid "Too many songs selected." -msgstr "Te veel nummers geselecteerd." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "%1 nummers in %2 verschillende mappen geselecteerd, weet u zeker dat u ze allemaal wilt openen?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Onbekende fout" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "artiest" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "" - -msgid "Framerate" -msgstr "" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Laag (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Gemiddeld (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Hoog (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Superhoog (%1 fps)" - -msgid "No analyzer" -msgstr "Geen weergave" - -msgid "Block analyzer" -msgstr "Blokweergave" - -msgid "Boom analyzer" -msgstr "Boomweergave" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Voorversterking" - -msgid "Custom" -msgstr "Aangepast" - -msgid "Classical" -msgstr "Klassiek" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Maximale bas" - -msgid "Full Treble" -msgstr "Maximale hoge tonen" - -msgid "Full Bass + Treble" -msgstr "Maximale bas + hoge tonen" - -msgid "Laptop/Headphones" -msgstr "Laptop/koptelefoon" - -msgid "Large Hall" -msgstr "Grote hal" - -msgid "Live" -msgstr "" - -msgid "Party" -msgstr "" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "Nul" - -msgid "Save preset" -msgstr "Voorinstelling opslaan" - -msgid "Name" -msgstr "Naam" - -msgid "Delete preset" -msgstr "Voorinstelling verwijderen" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Weet u zeker dat u voorinstelling ‘%1’ wilt wissen?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "" - -msgid "Length" -msgstr "Duur" - -msgid "Samplerate" -msgstr "" - -msgid "Bit depth" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Toon albumhoes" - -msgid "Show song technical data" -msgstr "Technische gegevens lied weergeven" - -msgid "Show song lyrics" -msgstr "Songteksten weergeven" - -msgid "Automatically search for song lyrics" -msgstr "Automatisch zoeken voor liedjestekst" - -msgid "No song playing" -msgstr "" - -#, qt-format -msgid "%1 song" -msgstr "%1 nummer" - -#, qt-format -msgid "%1 songs" -msgstr "%1 nummers" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artiest" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artiesten" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "Diverse artiesten" - -msgid "Loading..." -msgstr "Laden…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "%1 database bijwerken." - -msgid "Updating collection" -msgstr "Bibliotheek wordt bijgewerkt" - -#, qt-format -msgid "Updating %1" -msgstr "%1 bijwerken" - -msgid "Your collection is empty!" -msgstr "Uw bibliotheek is leeg!" - -msgid "Click here to add some music" -msgstr "Klik hier om muziek toe te voegen" - -msgid "Append to current playlist" -msgstr "Aan huidige afspeellijst toevoegen" - -msgid "Replace current playlist" -msgstr "Huidige afspeellijst vervangen" - -msgid "Open in new playlist" -msgstr "In een nieuwe afspeellijst openen" - -msgid "Search for this" -msgstr "Zoek hier naar" - -msgid "Edit track information..." -msgstr "Nummerinformatie bewerken…" - -msgid "Edit tracks information..." -msgstr "Nummerinformatie bewerken…" - -msgid "Rescan song(s)" -msgstr "Nummer(s) opnieuw scannen" - -msgid "Show in various artists" -msgstr "In diverse artiesten weergeven" - -msgid "Don't show in various artists" -msgstr "Niet in diverse artiesten weergeven" - -msgid "There are other songs in this album" -msgstr "Er zijn andere nummers in dit album" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Wil je de andere nummers op dit album ook verplaatsen naar Diverse Artiesten?" - -msgid "Show" -msgstr "Weergeven" - -msgid "Group by" -msgstr "Groeperen op" - -msgid "Display options" -msgstr "Weergaveopties" - -msgid "Group by Album artist/Album" -msgstr "Groeperen op Album Artiest/Album" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "Groeperen op artiest/album" - -msgid "Group by Artist/Album - Disc" -msgstr "" - -msgid "Group by Artist/Year - Album" -msgstr "Groeperen op artiest/jaar - album" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Genre/Album artist/Album" -msgstr "" - -msgid "Group by Genre/Artist/Album" -msgstr "Groeperen op genre/artiest/album" - -msgid "Group by Album Artist" -msgstr "" - -msgid "Group by Artist" -msgstr "Groeperen op artiest" - -msgid "Group by Album" -msgstr "Groeperen op album" - -msgid "Group by Genre/Album" -msgstr "Groeperen op genre/album" - -msgid "Advanced grouping..." -msgstr "Geavanceerd groeperen…" - -msgid "Grouping Name" -msgstr "Naam Groepering" - -msgid "Grouping name:" -msgstr "Naam groepering:" - -msgid "First level" -msgstr "Eerste niveau" - -msgid "Second Level" -msgstr "Tweede niveau" - -msgid "Third Level" -msgstr "Derde niveau" - -msgid "None" -msgstr "Geen" - -msgid "Album artist" -msgstr "Albumartiest" - -msgid "Artist" -msgstr "Artiest" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "Album - cd" - -msgid "Year - Album" -msgstr "Jaar - Album" - -msgid "Year - Album - Disc" -msgstr "Jaar - Album - Cd" - -msgid "Original year - Album" -msgstr "Oorspronkelijk jaar - Album" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "Schijf" - -msgid "Year" -msgstr "Jaar" - -msgid "Original year" -msgstr "Oorspronkelijk jaar" - -msgid "Genre" -msgstr "" - -msgid "Composer" -msgstr "Componist" - -msgid "Performer" -msgstr "Uitvoerend artiest" - -msgid "Grouping" -msgstr "Groepering" - -msgid "File type" -msgstr "Bestandstype" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "Samplerate" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Titel" - -msgid "Track" -msgstr "Nummer" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Opmerking" - -msgid "Source" -msgstr "Bron" - -msgid "Mood" -msgstr "" - -msgid "Rating" -msgstr "Beoordeling" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Afspeellijst laden" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Geen overeenkomsten gevonden. Maak het zoekveld leeg om de gehele lijst opnieuw weer te geven." - -msgid "stop" -msgstr "stoppen" - -msgid "Never" -msgstr "Nooit" - -msgid "&Hide..." -msgstr "&Verbergen…" - -msgid "&Stretch columns to fit window" -msgstr "Kolommen &uitstrekken totdat ze het venster vullen" - -msgid "&Reset columns to default" -msgstr "&Kolommen opnieuw instellen" - -msgid "&Lock rating" -msgstr "&Waardering vergrendelen" - -msgid "&Align text" -msgstr "&Tekst uitlijnen" - -msgid "&Left" -msgstr "&Links" - -msgid "&Center" -msgstr "&Centreren" - -msgid "&Right" -msgstr "&Rechts" - -#, qt-format -msgid "&Hide %1" -msgstr "%1 &Verbergen" - -msgid "New folder" -msgstr "Nieuwe map" - -msgid "Delete" -msgstr "Verwijderen" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Afspeellijst opslaan" - -msgid "Enter the name of the folder" -msgstr "Geef de naam van de map" - -msgid "Copy to device" -msgstr "Kopieer naar toestel" - -msgid "Playlist must be open first." -msgstr "" - -msgid "Remove playlists" -msgstr "Afspeellijsten verwijderen" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "U staat op het punt om %1 afspeellijsten uit uw favorieten te verwijderen, weet u het zeker?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "U kunt afspeellijsten aan uw favorieten toevoegen door op het stericoon naast de naam van de afspeellijst te klikken." - -msgid "Favorited playlists will be saved here" -msgstr "Favoriete afspeellijsten zullen hier opgeslagen worden." - -msgid "Couldn't create playlist" -msgstr "Kon afspeellijst niet maken" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Afspeellijst opslaan" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "%1 geselecteerd van" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automatisch" - -msgid "Relative" -msgstr "Relatief" - -msgid "Absolute" -msgstr "Absoluut" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Afspeellijst sluiten" - -msgid "Rename playlist..." -msgstr "Afspeellijst hernoemen..." - -msgid "Save playlist..." -msgstr "Afspeellijst opslaan..." - -msgid "Rename playlist" -msgstr "Afspeellijst hernoemen" - -msgid "Enter a new name for this playlist" -msgstr "Voer een nieuwe naam voor deze afspeellijst in" - -msgid "Remove playlist" -msgstr "Afspeellijst verwijderen" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Je staat op het punt een afspeellijst te verwijderen, die geen deel uitmaakt van je favoriete afspeellijsten: de afspeellijst zal worden verwijderd (dit kan niet ongedaan gemaakt worden).\n" -"Weet je zeker dat je verder wilt gaan?" - -msgid "Warn me when closing a playlist tab" -msgstr "Waarschuw mij wanneer een afspeellijst tab wordt gesloten" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Deze optie kan aangepast worden bij de \"Gedrag\" instellingen" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Dubbelklik hier om deze afspeellijst favoriet te maken zodat deze opgeslagen wordt en toegankelijk blijft via het \"Afspeellijst\" paneel in de linkerzijbalk" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "%n nummers toevoegen" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "%n nummers verwijderen" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "Verplaats %n nummers" - -msgid "sort songs" -msgstr "nummers sorteren" - -msgid "shuffle songs" -msgstr "nummers schudden" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "" - -msgid "Loading tracks" -msgstr "Nummers laden" - -msgid "Loading tracks info" -msgstr "Nummerinformatie laden" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Alle afspeellijsten (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 afspeellijsten (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "" - -msgid "Collection search" -msgstr "Zoeken in verzameling" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "Zoektermen" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Er wordt een nummer in de playlist opgenomen als het aan deze voorwaarden voldoet." - -msgid "Search options" -msgstr "zoek opties" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 nummer gevonden (%2 weergegeven)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 nummer gevonden" - -msgid "after" -msgstr "na" - -msgid "before" -msgstr "voor" - -msgid "on" -msgstr "aan" - -msgid "not on" -msgstr "niet aan" - -msgid "in the last" -msgstr "als laatst" - -msgid "not in the last" -msgstr "niet als laatste" - -msgid "between" -msgstr "tussen" - -msgid "contains" -msgstr "bevat" - -msgid "does not contain" -msgstr "bevat niet" - -msgid "starts with" -msgstr "begint met" - -msgid "ends with" -msgstr "eindigt met" - -msgid "greater than" -msgstr "groter dan" - -msgid "less than" -msgstr "kleiner dan" - -msgid "equals" -msgstr "is gelijk aan" - -msgid "not equals" -msgstr "niet gelijk" - -msgid "empty" -msgstr "leeg" - -msgid "not empty" -msgstr "niet leeg" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "oudste eerst" - -msgid "newest first" -msgstr "nieuwste eerst" - -msgid "shortest first" -msgstr "kortste eerst" - -msgid "longest first" -msgstr "langste eerst" - -msgid "smallest first" -msgstr "Kleinste eerst" - -msgid "biggest first" -msgstr "grootste eerst" - -msgid "Hours" -msgstr "" - -msgid "Days" -msgstr "" - -msgid "Weeks" -msgstr "weken" - -msgid "Months" -msgstr "" - -msgid "Years" -msgstr "Jaren" - -msgid "The second value must be greater than the first one!" -msgstr "De tweede waarde moet groter zijn dan de eerste!" - -msgid "Add search term" -msgstr "Zoekterm toevoegen aan lied" - -msgid "Newest tracks" -msgstr "" - -msgid "50 random tracks" -msgstr "50 willekeurige nummers" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "" - -msgid "Last played" -msgstr "Laast afgespeeld" - -msgid "Most played" -msgstr "" - -msgid "Favourite tracks" -msgstr "" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "Alle nummers" - -msgid "Dynamic random mix" -msgstr "Dynamische willekeurige mix" - -msgid "New smart playlist..." -msgstr "" - -msgid "Play next" -msgstr "" - -msgid "Edit smart playlist..." -msgstr "Slimme afspeellijst bewerken..." - -msgid "Delete smart playlist" -msgstr "Slimme afspeellijst verwijderen" - -msgid "Smart playlist" -msgstr "Slimme afspeellijst" - -msgid "Playlist type" -msgstr "" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Een slimme afspeellijst is een dynamische lijst met nummers die uit uw verzameling komen. Er zijn verschillende soorten slimme afspeellijsten die verschillende manieren bieden om nummers te selecteren." - -msgid "Finish" -msgstr "" - -msgid "Choose a name for your smart playlist" -msgstr "" - -msgid "Abort" -msgstr "Afbreken" - -msgid "All albums" -msgstr "Alle albums" - -msgid "Albums with covers" -msgstr "Albums met albumhoes" - -msgid "Albums without covers" -msgstr "Albums zonder albumhoes" - -msgid "Really cancel?" -msgstr "Werkelijk annuleren?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Het zoeken naar albumhoezen wordt afgebroken als u dit venster sluit." - -msgid "Don't stop!" -msgstr "Niet stoppen!" - -msgid "All artists" -msgstr "Alle artiesten" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "%1 van de %2 albumhoezen opgehaald (%3 mislukt)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 overgezet" - -msgid "Export finished" -msgstr "Klaar me exporteren" - -msgid "No covers to export." -msgstr "Geen albumhoezen om te exporteren." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "%1 van %2 albumhoezen geëxporteerd (%3 overgeslagen)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Albumhoes van %1" - -msgid "Search" -msgstr "Zoeken" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Afbeeldingen (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Afbeeldingen (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Alle bestanden (*)" - -msgid "Load cover from disk..." -msgstr "Albumhoes van schijf laden…" - -msgid "Save cover to disk..." -msgstr "Albumhoes op schijf bewaren…" - -msgid "Load cover from URL..." -msgstr "Albumhoes van URL laden…" - -msgid "Search for album covers..." -msgstr "Naar albumhoezen zoeken…" - -msgid "Unset cover" -msgstr "Albumhoes wissen" - -msgid "Delete cover" -msgstr "Hoes wissen" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "Volledig weergeven..." - -msgid "Search automatically" -msgstr "Automatisch zoeken" - -msgid "Load cover from disk" -msgstr "Albumhoes van schijf laden" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Kan hoesbestand %1 niet openen voor lezen: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "onbekend" - -msgid "Save album cover" -msgstr "Albumhoes opslaan" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Kan hoesbestand %1 niet openen voor schrijven: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Kan hoes niet wegschrijven naar bestand %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Kan hoes niet wegschrijven naar bestand %1." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Kan hoesbestand %1 niet verwijderen: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Kan hoes niet schrijven naar bestand %1: %2" - -msgid "Total network requests made" -msgstr "Totaal aantal netwerk-verzoeken" - -msgid "Average image size" -msgstr "Gemiddelde afbeeldinggrootte" - -msgid "Total bytes transferred" -msgstr "Totaal aantal verzonden bytes" - -msgid "Fetching cover error" -msgstr "Fout bij ophalen albumhoes" - -msgid "The site you requested does not exist!" -msgstr "De site die u aanvroeg bestaat niet!" - -msgid "The site you requested is not an image!" -msgstr "De site die u aanvroeg is geen afbeelding!" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "Ongeldig antwoord ontvangen van webbrowser." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "Algemeen" - -msgid "User interface" -msgstr "Gebruikersinterface" - -msgid "Streaming" -msgstr "Streamen" - -msgid "Add directory..." -msgstr "Map toevoegen…" - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Ben je zeker dat je het aantal maal afgespeeld en beoordelingen wilt wegschrijven voor alle liedjes in je verzameling?" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "Gebruik Tidal instellingen om te verifiëren." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Gebruik Qobuz instellingen om te verifiëren." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 heeft authenticatie nodig" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 heeft geen authenticatie nodig" - -msgid "No provider selected." -msgstr "" - -msgid "Authentication failed" -msgstr "Authenticatie mislukt" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Kies achtergrondafbeelding" - -msgid "OSD Preview" -msgstr "Voorbeeld infoschermvenster" - -msgid "Drag to reposition" -msgstr "Sleep om te verplaatsen" - -msgid "About Strawberry" -msgstr "Over Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Versie %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry is een muziekspeler en organisator van muziekcollecties." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry is gratis software vrijgegeven onder GPL. De broncode is beschikbaar op% 1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "U moet bij dit programma een kopie van de GNU General Public License hebben ontvangen. Zo niet, zie %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "" - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Je kan de schrijvers hier sponseren %1 U kunt ook een eenmalige betaling doen via %2" - -msgid "Author and maintainer" -msgstr "Auteur en onderhouder" - -msgid "Contributors" -msgstr "Bijdragers" - -msgid "Clementine authors" -msgstr "Clementine ontwikkelaars" - -msgid "Clementine contributors" -msgstr "Clementine bijdragers" - -msgid "Thanks to" -msgstr "Dankzij" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Dank aan alle andere medewerkers van Amarok en Clementine." - -msgid "(different across multiple songs)" -msgstr "(niet bij alle nummers hetzelfde)" - -msgid "Different art across multiple songs." -msgstr "Verschillende hoesjes over meerdere liedjes." - -msgid "Previous" -msgstr "Vorige" - -msgid "Next" -msgstr "Volgende" - -msgid "Saving tracks" -msgstr "Nummers opslaan" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 nummers geselecteerd." - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Albumhoes niet ingesteld" - -msgid "Album cover editing is only available for collection songs." -msgstr "Het bewerken van de albumhoes is enkel beschikbaar voor verzamelingsliedjes." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Hoes veranderd: Zal gewist worden bij opslaan." - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Originele labels" - -msgid "Suggested tags" -msgstr "Gesuggereerde labels" - -msgid "Delete files" -msgstr "Bestanden verwijderen" - -msgid "The following files will be deleted from disk:" -msgstr "De volgende bestanden worden van schijf verwijderd:" - -msgid "Are you sure you want to continue?" -msgstr "Bent u zeker dat u wilt door gaan ?" - -msgid "Receiving initial data from last.fm..." -msgstr "Initiële gegevens ontvangen van last.fm..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Laatst afgespeeld lied voor %1 ontvangen." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry draait als een Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry is langzamer en heeft beperkingen wanneer het als Snap wordt uitgevoerd.Toegang tot het root bestandssysteem (/) zal niet werken. Er kunnen ook andere beperkingen zijn, zoals toegang tot bepaalde apparaten of netwerkshares." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Kopieer je strawberry.conf en strawberry.db van je ~/snap map om verlies van configuratie te voorkomen eer je de snap de-installeert:" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Grote zijbalk" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Kleine zijbalk" - -msgid "Plain sidebar" -msgstr "Normale zijbalk" - -msgid "Tabs on top" -msgstr "Tabs bovenaan" - -msgid "Icons on top" -msgstr "Pictogrammen bovenaan" - -msgid "Available" -msgstr "Beschikbaar" - -msgid "New songs" -msgstr "Nieuwe nummers" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Gebruikt" - -msgid "Clear" -msgstr "Wissen" - -msgid "Reset" -msgstr "Herstel" - -msgid "Small album cover" -msgstr "Kleine albumhoes" - -msgid "Large album cover" -msgstr "Grote albumhoes" - -msgid "Fit cover to width" -msgstr "Albumhoes aan breedte aanpassen" - -msgid "Show above status bar" -msgstr "Boven statusbalk weergeven" - -msgid "You are signed in." -msgstr "U bent ingelogd." - -#, qt-format -msgid "You are signed in as %1." -msgstr "U bent ingelogd als %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Verloopt op %1" - -#, qt-format -msgid "disc %1" -msgstr "schijf %1" - -#, qt-format -msgid "track %1" -msgstr "nummer %1" - -msgid "Paused" -msgstr "Gepauzeerd" - -msgid "Stopped" -msgstr "Gestopt" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Stoppen met afspelen na nummer: %1" - -msgid "On" -msgstr "Aan" - -msgid "Off" -msgstr "Uit" - -msgid "Playlist finished" -msgstr "Afspeellijst voltooid" - -#, qt-format -msgid "Volume %1%" -msgstr "" - -msgid "Don't shuffle" -msgstr "Niet willekeurig afspelen" - -msgid "Shuffle all" -msgstr "Alles willekeurig" - -msgid "Shuffle tracks in this album" -msgstr "Nummers van dit album willekeurig" - -msgid "Shuffle albums" -msgstr "Albums willekeurig afspelen" - -msgid "Don't repeat" -msgstr "Niet herhalen" - -msgid "Repeat track" -msgstr "Nummer herhalen" - -msgid "Repeat album" -msgstr "Album herhalen" - -msgid "Repeat playlist" -msgstr "Afspeellijst herhalen" - -msgid "Stop after every track" -msgstr "Na ieder nummer stoppen" - -msgid "Intro tracks" -msgstr "Intro nummers" - -#, qt-format -msgid "Configure %1..." -msgstr "Configureren %1" - -msgid "Add to artists" -msgstr "Aan de artiest toevoegen" - -msgid "Add to albums" -msgstr "Aan de albums toevoegen" - -msgid "Add to songs" -msgstr "Aan lied toevoegen" - -msgid "Enter search terms above to find music" -msgstr "" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Klik hier om muziek op te halen" - -msgid "Remove from favorites" -msgstr "Verwijder van favorieten" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "Doneer" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 Scrobbler authenticatie" - -msgid "Open URL in web browser?" -msgstr "" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Druk op \"Opslaan\" om de URL naar het klembord te kopiëren en deze handmatig in een webbrowser te openen." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Kon de URL niet openen. Open de URL in je webbladereaar" - -msgid "Invalid reply from web browser. Missing token." -msgstr "" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Scrobbler %1 is niet geverifieerd!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "" - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "Artiest's initiaal" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "Bestandsextensie" - -msgid "Error copying songs" -msgstr "Fout tijdens het kopiëren van de nummers" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Er waren problemen tijdens het kopiëren van bepaalde nummers. De volgende bestanden konden niet gekopieerd worden:" - -msgid "Error deleting songs" -msgstr "Fout tijdens het verwijderen van de nummers" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Er waren problemen tijdens het verwijderen van bepaalde nummers. De volgende bestanden konden niet verwijderd worden:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "Vorig nummer" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "Volume verminderen" - -msgid "Mute" -msgstr "Dempen" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Druk een toetsencombinatie om voor %1 te gebruiken..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Het commando \"%1\" kon niet worden gestart." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Sneltoets voor %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Het gebruik van X11-snelkoppelingen op %1 wordt niet aanbevolen en kan ervoor zorgen dat het toetsenbord niet meer reageert!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "Snelkoppelingen op %1 worden meestal gebruikt via MPRIS en KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "Snelkoppelingen op %1 worden meestal gebruikt via Gnome Settings Daemon en moeten geconfigureerd worden in gnome-settings-daemon instead." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "Snelkoppelingen op %1 worden meestal gebruikt via Gnome Settings Daemon en moeten geconfigureerd worden in cinnamon-settings-daemon instead." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "Snelkoppelingen op %1 worden meestal gebruikt via MATE Settings Daemon en kunnen daar geconfigureerd worden" - -msgid "Buffering" -msgstr "Bufferen" - -msgid "D-Bus path" -msgstr "DBus-pad" - -msgid "Serial number" -msgstr "Serienummer" - -msgid "Mount points" -msgstr "Koppelpunten" - -msgid "Partition label" -msgstr "Partitielabel" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Apparaat verbinden" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Dit is de eerste keer dat u dit apparaat hebt verbonden. Strawberry zal nu het apparaat op muziekbestanden doorzoeken - dit kan even duren." - -msgid "This device will not work properly" -msgstr "Dit apparaat zal niet correct werken" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Dit is een MTP apparaat maar u hebt Strawberry gecompileerd zonder libmtp ondersteuning." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Als u verder gaat zal dit apparaat traag zijn en de nummers die ernaar gekopieerd werden zullen mogelijk niet meer werken." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Dit is een iPod maar u hebt Strawberry gecompileerd zonder libgpod ondersteuning." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Dit type apparaat wordt niet ondersteund: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Bijwerken, %1%…" - -msgid "Not connected" -msgstr "Niet verbonden" - -msgid "Not mounted - double click to mount" -msgstr "Niet aangekoppeld - dubbelklik om aan te koppelen" - -msgid "Double click to open" -msgstr "Dubbeklik om te openen" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 nummer%2" - -msgid "Safely remove device" -msgstr "Apparaat veilig verwijderen" - -msgid "Forget device" -msgstr "Apparaat vergeten" - -msgid "Device properties..." -msgstr "Apparaateigenschappen…" - -msgid "Delete from device..." -msgstr "Van apparaat verwijderen…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Het vergeten van een apparaat zal het uit deze lijst verwijderen en zodra u het de volgende keer aansluit, zal Strawberry alle nummers opnieuw moeten inlezen." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Deze bestanden zullen definitief van het apparaat verwijderd worden. Weet u zeker dat u door wilt gaan?" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "Fabrikant" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "iPod-database laden" - -msgid "An error occurred loading the iTunes database" -msgstr "Er is een fout opgetreden tijdens het laden van de iTunes-database" - -msgid "Mount point" -msgstr "Koppelpunt" - -msgid "Device" -msgstr "Apparaat" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "MTP-apparaat laden" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Kan GStreamer element ‘%1’ niet aanmaken - zorg ervoor dat u alle vereiste GStreamer plug-ins geïnstalleerd heeft" - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 met succes weggeschreven" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Converteren van %1 bestanden m.b.v. %2 threads" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Fout bij verwerken van %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "%1 wordt gestart" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Kan geen encoder voor %1 vinden, controleer of u de juiste GStreamer plug-ins geïnstalleerd heeft" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Kan muxer voor %1 niet vinden, controleer of u de juiste GStreamer plug-ins geïnstalleerd heeft" - -msgid "Start transcoding" -msgstr "Converteren starten" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n resterend" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n voltooid" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n mislukt" - -msgid "Add files to transcode" -msgstr "Te converteren bestanden toevoegen" - -msgid "Open a directory to import music from" -msgstr "Open een pad om muziek uit te importeren" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -msgid "Server URL is invalid." -msgstr "Server-URL is ongeldig." - -msgid "Missing username or password." -msgstr "" - -msgid "Subsonic server URL is invalid." -msgstr "Subsonic server-URL is ongeldig." - -msgid "Missing Subsonic username or password." -msgstr "" - -msgid "Retrieving albums..." -msgstr "Albums ophalen..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Nummers ophalen voor %1 album..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Liedjes ophalen voor %1 albums..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Albumhoes ophalen voor %1 album..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Albumhoezen ophalen voor %1 album..." - -msgid "Configuration incomplete" -msgstr "Configuratie onvolledig" - -msgid "Missing server url, username or password." -msgstr "" - -msgid "Configuration incorrect" -msgstr "Configuratie verkeerd" - -msgid "Test successful!" -msgstr "Test geslaagd!" - -msgid "Test failed!" -msgstr "Test gefaald!" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "" - -msgid "Missing Tidal username." -msgstr "" - -msgid "Missing Tidal password." -msgstr "" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "" - -msgid "Not authenticated with Tidal." -msgstr "" - -msgid "Missing Tidal API token, username or password." -msgstr "" - -msgid "Authenticating..." -msgstr "Authenticatie" - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "Zoeken..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "" - -msgid "Cancelled." -msgstr "" - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "" - -msgid "Missing API token." -msgstr "" - -msgid "Missing username." -msgstr "" - -msgid "Missing password." -msgstr "" - -msgid "Spotify Authentication" -msgstr "Spotify verificatie" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "" - -msgid "Missing Qobuz app ID." -msgstr "" - -msgid "Missing Qobuz username." -msgstr "" - -msgid "Missing Qobuz password." -msgstr "" - -msgid "Not authenticated with Qobuz." -msgstr "" - -msgid "Missing Qobuz app ID or secret." -msgstr "" - -msgid "Missing app id." -msgstr "" - -msgid "Show moodbar" -msgstr "Toon moodbar" - -msgid "Moodbar style" -msgstr "" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "Kwaad" - -msgid "Frozen" -msgstr "" - -msgid "Happy" -msgstr "" - -msgid "System colors" -msgstr "Systeemkleuren" - -msgid "Strawberry Music Player" -msgstr "Strawberry Muziek Speler" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Afspelen" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Stoppen" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Volgend nummer" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Afsluiten" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Afspeellijst wissen" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Nummers in deze volgorde een nieuw nummer geven…" - -msgid "Set value for all selected tracks..." -msgstr "Waarde voor alle geselecteerde nummers instellen…" - -msgid "Edit tag..." -msgstr "Label bewerken…" - -msgid "&Settings..." -msgstr "&Instellingen..." - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&Over Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Bestand toevoegen..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Bestand openen..." - -msgid "Open audio &CD..." -msgstr "" - -msgid "&Cover Manager" -msgstr "&Albumhoesbeheerder" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "&Willekeurige modus" - -msgid "&Repeat mode" -msgstr "&Herhaalmodus" - -msgid "Remove from playlist" -msgstr "Uit afspeellijst verwijderen" - -msgid "&Equalizer" -msgstr "" - -msgid "&Transcode Music" -msgstr "&Muziek transcoderen" - -msgid "Add &folder..." -msgstr "Map toevoegen..." - -msgid "&Jump to the currently playing track" -msgstr "&Spring naar het nummer dat nu wordt afgespeed" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Nieuwe afspeellijst" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Afspeellijst laden..." - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Ga naar het volgende afspeellijst tabblad" - -msgid "Go to previous playlist tab" -msgstr "Ga naar het vorige afspeellijst tabblad" - -msgid "&Update changed collection folders" -msgstr "&Aangepaste mappen in collectie bijwerken" - -msgid "About &Qt" -msgstr "Over &Qt" - -msgid "&Mute" -msgstr "&Dempen" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Herscan volledige collectie" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Labels automatisch voltooien…" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Zet scrobbling aan/uit" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "Bestand(en) toevoegen voor conversie." - -msgid "Add file to transcoder" -msgstr "Bestand toevoegen voor conversie." - -msgid "Add stream..." -msgstr "Stream... toevoegen" - -msgid "Show sidebar" -msgstr "Toon zijbalk" - -msgid "Import data from last.fm..." -msgstr "" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Muziek" - -msgid "P&laylist" -msgstr "" - -msgid "Help" -msgstr "" - -msgid "&Tools" -msgstr "&Hulpmiddelen" - -msgid "Collection advanced grouping" -msgstr "Bibliotheek geavanceerd groeperen" - -msgid "You can change the way the songs in the collection are organized." -msgstr "U kunt de manier waarop de nummers in de bibliotheek gesorteerd worden aanpassen." - -msgid "Group Collection by..." -msgstr "Bibliotheek groeperen op…" - -msgid "Second level" -msgstr "Tweede niveau" - -msgid "Third level" -msgstr "Derde niveau" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "Verzamelingsfilter" - -msgid "Entire collection" -msgstr "Gehele verzameling" - -msgid "Added today" -msgstr "Vandaag toegevoegd" - -msgid "Added this week" -msgstr "Deze week toegevoegd" - -msgid "Added within three months" -msgstr "Afgelopen drie maanden toegevoegd" - -msgid "Added this year" -msgstr "Dit jaar toegevoegd" - -msgid "Added this month" -msgstr "Deze maand toegevoegd" - -msgid "Save current grouping" -msgstr "Huidige groepering opslaan" - -msgid "Manage saved groupings" -msgstr "Beheer opgeslagen groeperingen" - -msgid "Enter search terms here" -msgstr "Voer hier een zoekterm in" - -msgid "Form" -msgstr "Formulier" - -msgid "Saved Grouping Manager" -msgstr "Opgeslagen groeperingbeheerder" - -msgid "Remove" -msgstr "Verwijderen" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "Bestandspaden" - -msgid "This can be changed later through the preferences" -msgstr "Dit kan aangepast worden in de instellingen" - -msgid "Remember my choice" -msgstr "Onthoud mijn keuze" - -msgid "Stop after each track" -msgstr "Na ieder nummer stoppen" - -msgid "Repeat" -msgstr "Herhalen" - -msgid "Shuffle" -msgstr "Willekeurig" - -msgid "Dynamic mode is on" -msgstr "Dynamische modus staat aan" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "Zet uit" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "Omlaag verplaatsen" - -msgid "Move up" -msgstr "Omhoog verplaatsen" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "Zoek mode" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "Sorteren" - -msgid "Put songs in a random order" -msgstr "Zet nummers in willekeurige volgorde" - -msgid "Sort songs by" -msgstr "Sorteer nummers op" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "Laat alle liedjes zien" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "nummers" - -msgid "Preview" -msgstr "Voorbeeld" - -msgid "and" -msgstr "en" - -msgid "ago" -msgstr "geleden" - -msgid "New smart playlist" -msgstr "" - -msgid "Edit smart playlist" -msgstr "Slimme afspeellijst bewerken" - -msgid "Use dynamic mode" -msgstr "Dynamische modus gebruiken" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "Albumhoezen exporteren" - -msgid "Output" -msgstr "" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Geef een bestandsnaam voor de geëxporteerde albumhoezen (geen extensie)" - -msgid "Export downloaded covers" -msgstr "Exporteer gedownloade albumhoezen" - -msgid "Export embedded covers" -msgstr "Exporteer albumhoezen in mediabestanden" - -msgid "Existing covers" -msgstr "Bestaande albumhoezen" - -msgid "Do not overwrite" -msgstr "Niet overschrijven" - -msgid "O&verwrite all" -msgstr "" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "Groote" - -msgid "Scale size" -msgstr "Groote schalen" - -msgid "Size:" -msgstr "Groote:" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "Albumhoesbeheerder" - -msgid "Fetch automatically" -msgstr "Automatisch ophalen" - -msgid "Load" -msgstr "Laden" - -msgid "Add to playlist" -msgstr "Aan afspeellijst toevoegen" - -msgid "View" -msgstr "Weergave" - -msgid "Total albums:" -msgstr "Totaal aantal albums:" - -msgid "Without cover:" -msgstr "Zonder albumhoes:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Ontbrekende albumhoezen ophalen" - -msgid "Export Covers" -msgstr "Albumhoezen Exporteren" - -msgid "Fetch completed" -msgstr "Ophalen voltooid" - -msgid "Load cover from URL" -msgstr "Albumhoes van URL laden" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Voeg een URL toe om een albumhoes van het internet te downloaden:" - -msgid "Settings" -msgstr "Instellingen" - -msgid "Behavior" -msgstr "Gedrag" - -msgid "Show system tray icon" -msgstr "" - -msgid "Keep running in the background when the window is closed" -msgstr "In de achtergrond laten draaien als het venter gesloten wordt" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Afspelen hervatten bij opstarten" - -msgid "Show playing widget" -msgstr "Speel widget weergeven" - -msgid "On startup" -msgstr "" - -msgid "Remember from &last time" -msgstr "" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "Toon het hoofdvenster gemaximaliseerd" - -msgid "Show the main window minimized" -msgstr "Toon het hoofdvenster geminimaliseerd" - -msgid "Language" -msgstr "Taal" - -msgid "Use the system default" -msgstr "De systeemstandaard gebruiken" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Strawberry moet herstart worden als u de taal veranderd." - -msgid "Using the menu to add a song will..." -msgstr "Het menu gebruiken om een nummer toe te voegen zal…" - -msgid "Never start playing" -msgstr "Nooit afspelen" - -msgid "Play if there is nothing already playing" -msgstr "Afspelen wanneer niets aan het afspelen is" - -msgid "Always start playing" -msgstr "Altijd afspelen" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Op \"Vorige\" drukken in de speler zal..." - -msgid "Jump to previous song right away" -msgstr "Meteen naar vorige nummer springen" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Nummer herstarten, daarna naar vorige springen bij weer indrukken" - -msgid "Double clicking a song will..." -msgstr "Dubbelklikken op een nummer zal…" - -msgid "Append to the playlist" -msgstr "Aan de afspeellijst toevoegen" - -msgid "Replace the playlist" -msgstr "Afspeellijst vervangen" - -msgid "Add to the queue" -msgstr "Aan de wachtrij toevoegen" - -msgid "Double clicking a song in the playlist will..." -msgstr "Dubbelkilikken op een afspeellijst zal..." - -msgid "Change the currently playing song" -msgstr "Verander het huidige nummer" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Zoeken met behulp van een toetsenbordsnelkoppeling of muiswiel" - -msgid "Time step" -msgstr "TIjd stap" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Deze mappen zullen op muziek doorzocht worden om uw bibliotheek te vullen" - -msgid "Add new folder..." -msgstr "Nieuwe map toevoegen…" - -msgid "Remove folder" -msgstr "Map verwijderen" - -msgid "Automatic updating" -msgstr "Automatisch updaten" - -msgid "Update the collection when Strawberry starts" -msgstr "Bibliotheek bijwerken zodra Strawberry gestart wordt" - -msgid "Monitor the collection for changes" -msgstr "De bibliotheek op wijzigingen blijven controleren" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "dagen" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Eerste keuze voor bestandsnamen van albumshoezen (gescheiden door komma's)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Bij het zoeken naar albumhoezen zoekt Strawberry eerst naar bestandsnamen die een van de volgende woorden bevatten.\n" -"Als er geen match is wordt de grootste afbeelding uit de map gebruikt." - -msgid "Automatically open single categories in the collection tree" -msgstr "Automatisch enkelvoudige categorieën in bibliotheekboom openen" - -msgid "Show dividers" -msgstr "Verdelers tonen" - -msgid "Show album cover art in collection" -msgstr "Toon albumhoezen in collectie" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Albumhoes pixmap cache" - -msgid "Enable Disk Cache" -msgstr "Schijfcache inschakelen" - -msgid "Disk Cache Size" -msgstr "Schijfcachegrootte" - -msgid "Current disk cache in use:" -msgstr "" - -msgid "Clear Disk Cache" -msgstr "" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "Bestanden verwijderen via rechterklik contextmenu inschakelen" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Audiouitvoer" - -msgid "Engine" -msgstr "" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "hardware" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "" - -msgid "Upmix / downmix to" -msgstr "Upmix / downmix naar" - -msgid "channels" -msgstr "kanalen" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Buffer duur" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "Standaarden" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Replay Gain-metadata gebruiken, als deze beschikbaar is" - -msgid "Replay Gain mode" -msgstr "Replay Gain modus" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (gelijk volume voor alle nummers)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (ideaal volume voor alle nummers)" - -msgid "Apply compression to prevent clipping" -msgstr "Compressie toepassen om vervorming te voorkomen" - -msgid "Fallback-gain" -msgstr "Terugval-gain" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Uitvagen" - -msgid "Fade out when stopping a track" -msgstr "Uitvagen bij stoppen van een nummer" - -msgid "Cross-fade when changing tracks manually" -msgstr "Cross-fade wanneer handmatig van nummer veranderd wordt" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Cross-fade wanneer automatisch van nummer veranderd wordt" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Behalve tussen nummers van hetzelfde album of in dezelfde CUE-sheet" - -msgid "Fading duration" -msgstr "Uitvaagduur" - -msgid "Fade out on pause / fade in on resume" -msgstr "Uitvagen bij pauze / Invagen bij hervatten" - -msgid "Add song artist tag" -msgstr "Artiest-label toevoegen aan lied" - -msgid "Add song album tag" -msgstr "Album-label toevoegen aan lied" - -msgid "Add song title tag" -msgstr "Titel-label toevoegen aan lied" - -msgid "Add song albumartist tag" -msgstr "Albumartiest-label toevoegen aan lied" - -msgid "Add song year tag" -msgstr "Jaar-label toevoegen aan lied" - -msgid "Add song composer tag" -msgstr "Componist-label toevoegen aan lied" - -msgid "Add song performer tag" -msgstr "Uitvoerend artiest-label toevoegen aan lied" - -msgid "Add song grouping tag" -msgstr "Groepering-label toevoegen aan lied" - -msgid "Add song disc tag" -msgstr "Schijf-label toevoegen aan lied" - -msgid "Add song track tag" -msgstr "Nummer-label toevoegen aan lied" - -msgid "Add song genre tag" -msgstr "Genre-label toevoegen aan lied" - -msgid "Add song length tag" -msgstr "Lengte-label toevoegen aan lied" - -msgid "Add song play count" -msgstr "Aantal maal afgespeeld toevoegen aan lied" - -msgid "Add song skip count" -msgstr "Aantal maal overgeslagen toevoegen aan lied" - -msgid "Add a new line if supported by the notification type" -msgstr "Een nieuwe regel toevoegen, als dit door het notificatie-type ondersteund wordt" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Bestandsnaam toevoegen aan lied" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "URL toevoegen" - -msgid "%rating%" -msgstr "%waardering%" - -msgid "Add song rating" -msgstr "Waardering toevoegen aan lied" - -msgid "%originalyear%" -msgstr "%origineeljaar%" - -msgid "Add song original year tag" -msgstr "origineel jaar-label toevoegen aan lied" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "Samenvatting" - -msgid "Enable Items" -msgstr "Items inschakelen" - -msgid "Technical Data" -msgstr "Technische data" - -msgid "Song Lyrics" -msgstr "Songtekst" - -msgid "Automatically search for album cover" -msgstr "Automatisch zoeken voor albumhoes" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "" - -msgid " pt" -msgstr "pt" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "Gebruik afwisselende rijkleuren" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Ga door naar het volgende item in de afspeellijst als een liedje niet beschikbaar is" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "" - -msgid "Automatically select current playing track" -msgstr "" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "Wanneer een afspeellijst wordt opgeslagen, zijn de paden" - -msgid "A&utomatic" -msgstr "A&utomatisch" - -msgid "Absolu&te" -msgstr "Absoluu&t" - -msgid "Re&lative" -msgstr "" - -msgid "As&k when saving" -msgstr "Vr&aag bij opslaan" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Indien geactiveerd, zal door het aanklikken van een geselecteerd nummer in de afspeellijst je de labelwaarde direct kunnen bewerken." - -msgid "Enable song metadata inline edition with click" -msgstr "Schakel direct bewerken van metadata in bij klik" - -msgid "Write metadata when saving playlists" -msgstr "Schrijf metadata bij het opslaan van afspeellijsten" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Ingeschakeld" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "Toon scrobble-knop" - -msgid "Show love button" -msgstr "" - -msgid "Submit scrobbles every" -msgstr "Dien scrobble in elke" - -msgid " seconds" -msgstr " seconden" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(Dit is de vertraging tussen wanneer een lied gescrobbled is en wanneer scrobbles aan de server aangeboden worden. De tijd op 0 instellen zal scrobbles ogenblikkelijk aanbieden)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Geef de voorkeur aan albumartiest bij het verzenden van scrobbles" - -msgid "Show dialog for errors" -msgstr "Toon dialoogvenster voor fouten" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Inloggen" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Gebruikerstoken:" - -msgid "Covers" -msgstr "" - -msgid "Cover providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "" - -msgid "Authentication" -msgstr "Authenticatie" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Album hoezen weg schrijven" - -msgid "Save album covers in album directory" -msgstr "" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "Willekeurig" - -msgid "Overwrite existing file" -msgstr "" - -msgid "Lowercase filename" -msgstr "" - -msgid "Replace spaces with dashes" -msgstr "Vervang spaties door streepjes" - -msgid "Lyrics" -msgstr "" - -msgid "Lyrics providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "" - -msgid "Network Proxy" -msgstr "Netwerk Proxy" - -msgid "&Use the system proxy settings" -msgstr "&Gebruik de systeemproxyinstellingen" - -msgid "Direct internet connection" -msgstr "Directe internetverbinding" - -msgid "&Manual proxy configuration" -msgstr "&Handmatige configuratie proxy" - -msgid "HTTP proxy" -msgstr "HTTP-proxy" - -msgid "SOCKS proxy" -msgstr "" - -msgid "Port" -msgstr "Poort" - -msgid "Use authentication" -msgstr "Authenticatie gebruiken" - -msgid "Username" -msgstr "Gebruikersnaam" - -msgid "Password" -msgstr "Wachtwoord" - -msgid "Use proxy settings for streaming" -msgstr "Gebruik proxy-instellingen voor streaming" - -msgid "Appearance" -msgstr "Uiterlijk" - -msgid "Style" -msgstr "Stijl" - -msgid "Use system theme icons" -msgstr "Gebruik systeem pictogrammen" - -msgid "Settings require restart." -msgstr "Instellingen vereisen opnieuw opstarten." - -msgid "Tabbar colors" -msgstr "Tabbalkkleuren" - -msgid "&Use the system default color" -msgstr "&Gebruik het standaard systeemkleur" - -msgid "Use custom color" -msgstr "Gebruik een aangepaste kleur" - -msgid "Use gradient background" -msgstr "Achtergrond met kleurovergang gebruiken" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "Achtergrondafbeelding" - -msgid "Default bac&kground image" -msgstr "Standaard achter&grondafbeelding" - -msgid "&No background image" -msgstr "&Geen achtergrondafbeelding" - -msgid "The album cover of the currently playing song" -msgstr "Albumhoes van het momenteel spelende nummer" - -msgid "Albu&m cover" -msgstr "Albu&m Hoes" - -msgid "Custom image:" -msgstr "Aangepaste afbeelding:" - -msgid "Browse..." -msgstr "Bladeren…" - -msgid "Position" -msgstr "Positie" - -msgid "Upper Left" -msgstr "Linksboven" - -msgid "Upper Right" -msgstr "Rechtsboven" - -msgid "Middle" -msgstr "" - -msgid "Bottom Left" -msgstr "" - -msgid "Bottom Right" -msgstr "" - -msgid "Max cover size" -msgstr "" - -msgid "Stretch image to fill playlist" -msgstr "Rek de afbeelding uit om de afspeellijst te vullen" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "Afbeelding niet bijsnijden" - -msgid "Blur amount" -msgstr "Vervagen" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Doorzichtigheid" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "Tabbalk grote modus" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "Configureer knoppen" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "Tabbalk kleine modus" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "Notificaties" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry kan een bericht weergeven zodra het nummer wijzigt." - -msgid "Notification type" -msgstr "Notificatietype" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Uitgeschakeld" - -msgid "Show a &native desktop notification" -msgstr "" - -msgid "Show a pretty OSD" -msgstr "Mooi infoschermvenster weergeven" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "Algemene instellingen" - -msgid "Popup duration" -msgstr "Pop-up duur" - -msgid "Disable duration" -msgstr "Notificatie permanent weergeven" - -msgid "Show a notification when I change the volume" -msgstr "Notificatie weergeven als ik het volume wijzig" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Toon een mededeling als ik de herhaal/shuffle modus wijzig" - -msgid "Show a notification when I pause playback" -msgstr "Notificatie weergeven wanneer ik het afspelen pauzeer" - -msgid "Show a notification when I resume playback" -msgstr "Een melding weergeven wanneer ik het afspelen hervat" - -msgid "Include album art in the notification" -msgstr "Albumhoes in de notificatie weergeven" - -msgid "Custom message settings" -msgstr "Instellingen voor aangepaste berichten" - -msgid "Use a custom message for notifications" -msgstr "Een aangepast bericht voor notificaties gebruiken" - -msgid "Body" -msgstr "" - -msgid "Pretty OSD options" -msgstr "Opties mooi infoschermvenster" - -msgid "Background color" -msgstr "Achtergrondkleur" - -msgid "Text options" -msgstr "Tekstopties" - -msgid "Choose font..." -msgstr "Lettertype kiezen…" - -msgid "Choose color..." -msgstr "Kleur kiezen…" - -msgid "Background opacity" -msgstr "Achtergrond-doorzichtigheid" - -msgid "Basic Blue" -msgstr "" - -msgid "Strawberry Red" -msgstr "Strawberry Rood" - -msgid "Custom..." -msgstr "Aangepast…" - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "" - -msgid "Preset:" -msgstr "Voorinstelling:" - -msgid "Enable equalizer" -msgstr "Equalizer inschakelen" - -msgid "Enable stereo balancer" -msgstr "" - -msgid "Left" -msgstr "Links" - -msgid "Balance" -msgstr "Balans" - -msgid "Right" -msgstr "Rechts" - -msgid "About" -msgstr "Over" - -msgid "Strawberry Error" -msgstr "Strawberry fout" - -msgid "Console" -msgstr "" - -msgid "Run" -msgstr "Uitvoeren" - -msgid "Edit track information" -msgstr "Nummerinformatie bewerken" - -msgid "Date created" -msgstr "Aanmaakdatum" - -msgid "Art Automatic" -msgstr "Hoes automatisch" - -msgid "Date modified" -msgstr "Wijzigingsdatum" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Laast afgespeeld" - -msgid "Play count" -msgstr "Aantal maal afgespeeld" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Bitrate" - -msgid "Skip count" -msgstr "Aantal maal overgeslagen" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "Bestandsnaam" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Bestandsgrootte" - -msgid "Art Manual" -msgstr "Hoes handmatig" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Reset afspeelstatistieken" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "Ingekapseld hoesje" - -msgid "Complete tags automatically" -msgstr "Labels automatisch voltooien" - -msgid "Compilation" -msgstr "Compilatie" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Labels ophalen" - -msgid "Sorry" -msgstr "Helaas" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry heeft geen resultaten voor dit bestand gevonden" - -msgid "Select best possible match" -msgstr "Selecteer best passende match" - -msgid "Add Stream" -msgstr "Stream toevoegen" - -msgid "Enter the URL of a stream:" -msgstr "" - -msgid "Enter username and password" -msgstr "" - -msgid "Import data from last.fm" -msgstr "" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "Sluiten" - -msgid "Cancel" -msgstr "" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "Toon deze boodschap niet meer." - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Klik om te schakelen tussen resterende duur en totale duur" - -msgid "You are not signed in." -msgstr "U bent niet ingelogd." - -msgid "Sign out" -msgstr "Afmelden" - -msgid "Signing in..." -msgstr "Bezig met inloggen...." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Artiesten" - -msgid "Albums" -msgstr "" - -msgid "Songs" -msgstr "Liedjes" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "artiesten" - -msgid "albums" -msgstr "" - -msgid "songs" -msgstr "nummers" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "Bestemming" - -msgid "After copying..." -msgstr "Na het kopiëren…" - -msgid "Keep the original files" -msgstr "De originele bestanden behouden" - -msgid "Delete the original files" -msgstr "Oorspronkelijke bestanden verwijderen" - -msgid "Naming options" -msgstr "Benoemingsopties" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Tokens beginnen met %, Bijvoorbeeld: %artist %album %title

\n\n" -"

Als u tekstgedeelten die tokens bevatten tussen accolades zet, zal dat gedeelte verborgen worden als het token leeg is.

" - -msgid "Insert..." -msgstr "Invoegen…" - -msgid "Remove problematic characters from filenames" -msgstr "Verwijder problematische tekens uit bestandsnamen" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Beperken tot tekens toegestaan ​​op FAT-bestandssystemen" - -msgid "Restrict characters to ASCII" -msgstr "Beperk tekens tot ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Uitgebreide ASCII-tekens toestaan" - -msgid "Replace spaces with underscores" -msgstr "Spaties vervangen door onderstrepingstekens" - -msgid "Overwrite existing files" -msgstr "Overschrijf bestaande bestanden" - -msgid "Copy album cover artwork" -msgstr "Kopieer albumhoes" - -msgid "Safely remove the device after copying" -msgstr "Apparaat veilig verwijderen na het kopiëren" - -msgid "Press a key" -msgstr "Druk een toets" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Gebruik Gnome (GSD) -snelkoppelingen indien beschikbaar" - -msgid "Open..." -msgstr "Openen..." - -msgid "Use MATE shortcuts when available" -msgstr "Gebruik MATE-snelkoppelingen indien beschikbaar" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Gebruik KDE (KGlobalAccel) -snelkoppelingen indien beschikbaar" - -msgid "Use X11 shortcuts when available" -msgstr "Gebruik X11-snelkoppelingen indien beschikbaar" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "U moet Systeemvoorkeuren openen en Strawberry toestaan om \"uw computer te bedienen\" om globale sneltoetsen te gebruiken in Strawberry." - -msgid "Shortcut" -msgstr "Sneltoets" - -msgctxt "Category label" -msgid "Action" -msgstr "Actie" - -msgid "&None" -msgstr "Gee&n" - -msgid "&Default" -msgstr "&Standaard" - -msgid "&Custom" -msgstr "&Op maat" - -msgid "Change shortcut..." -msgstr "Sneltoets wijzigen…" - -msgid "Device Properties" -msgstr "Apparaateigenschappen" - -msgid "Icon" -msgstr "Pictogram" - -msgid "Hardware information" -msgstr "Hardware-informatie" - -msgid "Hardware information is only available while the device is connected." -msgstr "Hardware-informatie is alleen beschikbaar wanneer het apparaat aangesloten is." - -msgid "Information" -msgstr "Informatie" - -msgid "Supported formats" -msgstr "Ondersteunde formaten" - -msgid "This device supports the following file formats:" -msgstr "Dit apparaat ondsteunt de volgende bestandsformaten:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry kan de muziek die u naar dit apparaat kopieert automatisch converteren zodat het apparaat het af kan spelen." - -msgid "Do not convert any music" -msgstr "Geen muziek converteren" - -msgid "Convert any music that the device can't play" -msgstr "Alle muziek die het apparaat niet kan afspelen converteren" - -msgid "Convert all music" -msgstr "Alle muziek converteren" - -msgid "Preferred format" -msgstr "Voorkeursformaat" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Dit apparaat dient verbonden te zijn en geopend vooraleer Strawberry kan zien welke bestandsformaten het ondersteunt." - -msgid "Open device" -msgstr "Apparaat openen" - -msgid "Querying device..." -msgstr "apparaat afzoeken..." - -msgid "File formats" -msgstr "Bestandsformaten" - -msgid "Transcode Music" -msgstr "Muziek converteren" - -msgid "Files to transcode" -msgstr "Te converteren bestanden" - -msgid "Directory" -msgstr "Map" - -msgid "Add..." -msgstr "Toevoegen..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Voeg alle nummers van een pad en alle onderliggende paden toe" - -msgid "Import..." -msgstr "" - -msgid "Output options" -msgstr "Uitvoeropties" - -msgid "Audio format" -msgstr "Audioformaat" - -msgid "Options..." -msgstr "Opties…" - -msgid "Alongside the originals" -msgstr "Bij het origineel" - -msgid "Select..." -msgstr "Selecteer..." - -msgid "Progress" -msgstr "Voortgang" - -msgid "Details..." -msgstr "Details…" - -msgid "Transcoder Log" -msgstr "Conversie-Log" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "Profiel" - -msgid "Main profile (MAIN)" -msgstr "Normaal profiel (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Lage complexiteit profiel (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Schaalbare samplerateprofiel (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Lange termijn voorspellingsprofiel (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Gebruik tijdelijke ruisvervorming" - -msgid "Allow mid/side encoding" -msgstr "Sta mid/side-encoding toe" - -msgid "Block type" -msgstr "Bloktype" - -msgid "Normal block type" -msgstr "Normaal blok type" - -msgid "No short blocks" -msgstr "Geen korte blokken" - -msgid "No long blocks" -msgstr "Geen lange blokken" - -msgid "Transcoding options" -msgstr "Conversieopties" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Kwaliteit" - -msgid "Fast" -msgstr "Snel" - -msgid "Best" -msgstr "Beste" - -msgid "Use bitrate management engine" -msgstr "Bitrate management engine gebruiken" - -msgid "Target bitrate" -msgstr "Doelbitrate" - -msgid "Minimum bitrate" -msgstr "Minimale bitrate" - -msgid "disabled" -msgstr "uitgeschakeld" - -msgid "Maximum bitrate" -msgstr "Maximale bitrate" - -msgid "automatic" -msgstr "automatisch" - -msgid "Average bitrate" -msgstr "Gemiddelde bitrate" - -msgid "Encoding mode" -msgstr "Coderings-modus" - -msgid "Auto" -msgstr "Automatisch" - -msgid "Ultra wide band (UWB)" -msgstr "Zeer snel internet" - -msgid "Wide band (WB)" -msgstr "Snel internet" - -msgid "Narrow band (NB)" -msgstr "Langzaam internet" - -msgid "Variable bit rate" -msgstr "Variabele bitrate" - -msgid "Voice activity detection" -msgstr "" - -msgid "Discontinuous transmission" -msgstr "Overdracht onderbreken" - -msgid "Encoding complexity" -msgstr "Coderingscomplexiteit" - -msgid "Frames per buffer" -msgstr "" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "" - -msgid "Constant bitrate" -msgstr "Constante bitrate" - -msgid "Encoding engine quality" -msgstr "Kwaliteit encoding-engine" - -msgid "Standard" -msgstr "Standaard" - -msgid "High" -msgstr "Hoog" - -msgid "Force mono encoding" -msgstr "Mono-encodering forceren" - -msgid "Transcoding" -msgstr "Converteren" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Deze instellingen worden gebruikt in het dialoogvenster \"Muziek converteren\" en bij het converteren van muziek voor het kopiëren naar een apparaat." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "Server-URL" - -msgid "Authentication method:" -msgstr "Authenticatie metode" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Voorkeuren" - -msgid "Use HTTP/2 when possible" -msgstr "Gebruik HTTP/2 waar nodig" - -msgid "Verify server certificate" -msgstr "Controleer certificaat van de serve" - -msgid "Download album covers" -msgstr "Albumhoezen downloaden" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "Liedjes verwijderen" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Tidal is niet officieel en vereist een API-token van een geregistreerde applicatie om te werken. We kunnen u niet helpen deze te krijgen." - -msgid "Use OAuth" -msgstr "Gebruik OAuth" - -msgid "Client ID" -msgstr "Cliënt ID" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "Audio kwaliteit" - -msgid "Search delay" -msgstr "Zoek vertraging" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Artiest zoek limiet" - -msgid "Albums search limit" -msgstr "Albums zoek limiet" - -msgid "Songs search limit" -msgstr "Zoeklimiet voor nummers" - -msgid "Fetch entire albums when searching songs" -msgstr "" - -msgid "Album cover size" -msgstr "Album hoes grote" - -msgid "Stream URL method" -msgstr "Stream URL-methode" - -msgid "Append explicit to album title for explicit albums" -msgstr "Voeg expliciet toe aan de albumtitel voor expliciete albums" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "App geheim" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "" - -msgid "Enabled" -msgstr "" - -msgid "Return to Strawberry" -msgstr "Keer terug naar Strawberry" - -msgid "Success!" -msgstr "Succes!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Sluit uw browser en keer terug naar Strawberry." - diff --git a/src/translations/pl_PL.po b/src/translations/pl_PL.po deleted file mode 100644 index ebdb4942..00000000 --- a/src/translations/pl_PL.po +++ /dev/null @@ -1,4358 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: pl\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Polish\n" -"Language: pl_PL\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Wszystkie pliki (*)" - -msgid "Context" -msgstr "Kontekst" - -msgid "Collection" -msgstr "Kolekcja" - -msgid "Queue" -msgstr "Kolejka" - -msgid "Playlists" -msgstr "Listy odtw." - -msgid "Smart playlists" -msgstr "Smartlisty" - -msgid "Files" -msgstr "Pliki" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "Urządzenia" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Pokazuj wszystkie utwory" - -msgid "Show only duplicates" -msgstr "Pokazuj tylko duplikaty" - -msgid "Show only untagged" -msgstr "Pokazuj tylko nieoznaczone" - -msgid "Configure collection..." -msgstr "Konfiguruj bibliotekę…" - -msgid "Play" -msgstr "Odtwarzaj" - -msgid "Stop after this track" -msgstr "Zatrzymaj po tej ścieżce" - -msgid "Toggle queue status" -msgstr "Przełącz stan kolejki" - -msgid "Queue selected tracks to play next" -msgstr "Dodaj zaznaczone ścieżki do kolejki, aby odtworzyć w następnej kolejności" - -msgid "Toggle skip status" -msgstr "Przełącz stan pominięcia" - -msgid "Rescan song(s)..." -msgstr "Przeskanuj ponownie utwory…" - -msgid "Copy URL(s)..." -msgstr "Skopiuj adres(y) URL…" - -msgid "Show in collection..." -msgstr "Pokaż w kolekcji…" - -msgid "Show in file browser..." -msgstr "Pokaż w menedżerze plików…" - -msgid "Organize files..." -msgstr "Organizuj pliki…" - -msgid "Copy to collection..." -msgstr "Skopiuj do kolekcji…" - -msgid "Move to collection..." -msgstr "Przenieś do kolekcji…" - -msgid "Copy to device..." -msgstr "Skopiuj na urządzenie…" - -msgid "Delete from disk..." -msgstr "Usuń z dysku…" - -msgid "Check for updates..." -msgstr "Sprawdź dostępność aktualizacji…" - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Wstrzymaj" - -msgid "Dequeue track" -msgstr "Usuń ścieżkę z kolejki" - -msgid "Dequeue selected tracks" -msgstr "Usuń zaznaczone ścieżki z kolejki" - -msgid "Queue track" -msgstr "Dodaj ścieżkę do kolejki" - -msgid "Queue selected tracks" -msgstr "Dodaj zaznaczone ścieżki do kolejki" - -msgid "Queue to play next" -msgstr "Dodaj do kolejki, aby następnie odtworzyć" - -msgid "Unskip track" -msgstr "Nie pomijaj ścieżki" - -msgid "Unskip selected tracks" -msgstr "Nie pomijaj zaznaczonych ścieżek" - -msgid "Skip track" -msgstr "Pomiń ścieżkę" - -msgid "Skip selected tracks" -msgstr "Pomiń zaznaczone ścieżki" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Ustaw %1 na „%2”…" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Edytuj znacznik „%1”…" - -msgid "Add to another playlist" -msgstr "Dodaj do innej listy odtwarzania" - -msgid "New playlist" -msgstr "Nowa lista odtwarzania" - -msgid "Add file" -msgstr "Dodaj plik" - -msgid "Music" -msgstr "Muzyka" - -msgid "Add folder" -msgstr "Dodaj katalog" - -msgid "Clear playlist" -msgstr "Wyczyść listę odtwarzania" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Lista odtwarzania jest za duża (utworów: %1), by cofnąć operację. Na pewno chcesz ją wyczyścić?" - -msgid "Error" -msgstr "Błąd" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Żaden z zaznaczonych utworów nie był odpowiedni do skopiowania na urządzenie" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Wersja, do której właśnie zaktualizowano odtwarzacz Strawberry, wymaga odświeżenia całej biblioteki. Wynika to z wprowadzenia następujących zmian:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Chcesz wykonać pełne skanowanie od nowa teraz?" - -msgid "Collection rescan notice" -msgstr "Konieczność odświeżenia kolekcji" - -msgid "Usage" -msgstr "Użycie" - -msgid "options" -msgstr "opcje" - -msgid "URL(s)" -msgstr "URL(e)" - -msgid "Player options" -msgstr "Opcje odtwarzacza" - -msgid "Start the playlist currently playing" -msgstr "Rozpocznij aktualnie odtwarzaną listę" - -msgid "Play if stopped, pause if playing" -msgstr "Odtwarzaj, gdy zatrzymane; zatrzymaj, gdy odtwarzane" - -msgid "Pause playback" -msgstr "Wstrzymaj odtwarzanie" - -msgid "Stop playback" -msgstr "Zatrzymaj odtwarzanie" - -msgid "Stop playback after current track" -msgstr "Zatrzymaj odtwarzanie po obecnej ścieżce" - -msgid "Skip backwards in playlist" -msgstr "Przeskocz wstecz na liście odtwarzania" - -msgid "Skip forwards in playlist" -msgstr "Przeskocz w przód na liście odtwarzania" - -msgid "Set the volume to percent" -msgstr "Ustaw głośność na n-procent" - -msgid "Increase the volume by 4 percent" -msgstr "Zwiększ głośność o 4 punkty procentowe" - -msgid "Decrease the volume by 4 percent" -msgstr "Zmniejsz głośność o 4 punkty procentowe." - -msgid "Increase the volume by percent" -msgstr "Zwiększ głośność o n-punktów procentowych" - -msgid "Decrease the volume by percent" -msgstr "Zmniejsz głośność o n-punktów procentowych" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Przesuń obecnie odtwarzaną ścieżkę do określonej pozycji" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Przesuń obecnie odtwarzaną ścieżkę o względną wartość" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Odtwarzaj od początku, a jeżeli nie minęło 8 sekund aktualnego utworu - przeskocz do poprzedniego." - -msgid "Playlist options" -msgstr "Opcje listy odtwarzania" - -msgid "Create a new playlist with files" -msgstr "Utwórz nową listę odtwarzania z plikami" - -msgid "Append files/URLs to the playlist" -msgstr "Dodaj pliki/adresy URL do listy odtwarzania" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Wczytuje pliki/adresy URL, zastępując obecną listę odtwarzania" - -msgid "Play the th track in the playlist" -msgstr "Odtwórz n-tą ścieżkę na liście odtwarzania" - -msgid "Play given playlist" -msgstr "Odtwórz listę odtwarzania" - -msgid "Other options" -msgstr "Inne opcje" - -msgid "Display the on-screen-display" -msgstr "Pokaż menu ekranowe (OSD)" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Przełącz wyświetlanie ładnego menu ekranowego (OSD)" - -msgid "Change the language" -msgstr "Zmień język" - -msgid "Resize the window" -msgstr "Zmień rozmiar okna" - -msgid "Equivalent to --log-levels *:1" -msgstr "Równoważne z --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Równoważne z --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Rozdzielona przecinkami lista „klasa:poziom”, gdzie poziom ma wartość od 0 do 3" - -msgid "Print out version information" -msgstr "Wypisz informacje o wersji" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Sprawdzanie spójności" - -msgid "Database corruption detected." -msgstr "Wykryto uszkodzenie bazy danych!" - -msgid "Backing up database" -msgstr "Tworzenie kopii zapasowej bazy danych" - -msgid "Deleting files" -msgstr "Usuwanie plików" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "nieznany" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Ten URL wymaga silnika GStreamer." - -msgid "Preload function was not set for blocking operation." -msgstr "Funkcja ładowania wstępnego nie została ustawiona dla blokującej operacji." - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Plik „%1” nie jest rozpoznany jako plik dźwiękowy." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "Odtwarzanie płyt CD jest możliwe tylko przy użyciu silnika GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Lista odtwarzania" - -msgid "1 day" -msgstr "1 dzień" - -#, qt-format -msgid "%1 days" -msgstr "%1 dni" - -msgid "Today" -msgstr "Dzisiaj" - -msgid "Yesterday" -msgstr "Wczoraj" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 dni temu" - -msgid "Tomorrow" -msgstr "Jutro" - -#, qt-format -msgid "In %1 days" -msgstr "W ciągu %1 dni(a)" - -msgid "Next week" -msgstr "W następnym tygodniu" - -#, qt-format -msgid "In %1 weeks" -msgstr "W ciągu %1 tygodni(a)" - -msgid "Show in file browser" -msgstr "Pokaż w menedżerze plików" - -msgid "Too many songs selected." -msgstr "Zaznaczono za dużo utworów." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "Zaznaczonych utworów: %1, w katalogach: %2. Czy na pewno chcesz je wszystkie otworzyć?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Nieznany błąd" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "artysta" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Dostępne znaczniki" - -msgid "Framerate" -msgstr "Liczba klatek na sekundę" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Mało (%1 kl./s)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Średnio (%1 kl./s)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Dużo (%1 kl./s)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Bardzo dużo (%1 kl./s)" - -msgid "No analyzer" -msgstr "Bez analizatora" - -msgid "Block analyzer" -msgstr "Analizator blokowy" - -msgid "Boom analyzer" -msgstr "Analizator słupkowy 2" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Przedwzmacniacz" - -msgid "Custom" -msgstr "Własne" - -msgid "Classical" -msgstr "Klasyczna" - -msgid "Club" -msgstr "Klubowa" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Pełny bas" - -msgid "Full Treble" -msgstr "Pełne soprany" - -msgid "Full Bass + Treble" -msgstr "Pełny bas + soprany" - -msgid "Laptop/Headphones" -msgstr "Laptop/Słuchawki" - -msgid "Large Hall" -msgstr "Duża sala" - -msgid "Live" -msgstr "Na żywo" - -msgid "Party" -msgstr "Impreza" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "Miękki" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "Zapisz ustawienia korektora" - -msgid "Name" -msgstr "Nazwa" - -msgid "Delete preset" -msgstr "Usuń ustawienie korektora" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Na pewno chcesz usunąć ustawienie „%1”?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "Rodzaj pliku" - -msgid "Length" -msgstr "Długość" - -msgid "Samplerate" -msgstr "Częstotliwość próbkowania" - -msgid "Bit depth" -msgstr "Rozdzielczość bitowa" - -msgid "Bitrate" -msgstr "Przepływność" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Pokazuj okładkę albumu" - -msgid "Show song technical data" -msgstr "Pokazuj dane techniczne utworu" - -msgid "Show song lyrics" -msgstr "Pokazuj tekst utworu" - -msgid "Automatically search for song lyrics" -msgstr "Automatycznie szukaj tekstu utworu" - -msgid "No song playing" -msgstr "Żaden utwór nie jest odtwarzany" - -#, qt-format -msgid "%1 song" -msgstr "%1 utwór" - -#, qt-format -msgid "%1 songs" -msgstr "%1 utwory(ów)" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artysta" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artyści(ów)" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "%1 albumy(ów)" - -msgid "kbps" -msgstr "kb/s" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "Różni artyści" - -msgid "Loading..." -msgstr "Wczytywanie…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "Aktualizowanie kolekcji" - -#, qt-format -msgid "Updating %1" -msgstr "Odświeżanie %1" - -msgid "Your collection is empty!" -msgstr "Twoja kolekcja jest pusta!" - -msgid "Click here to add some music" -msgstr "Kliknij tutaj, aby dodać jakąś muzykę" - -msgid "Append to current playlist" -msgstr "Dołącz do aktualnej listy odtwarzania" - -msgid "Replace current playlist" -msgstr "Zastąp aktualną listę odtwarzania" - -msgid "Open in new playlist" -msgstr "Otwórz w nowej liście odtwarzania" - -msgid "Search for this" -msgstr "Szukaj tego:" - -msgid "Edit track information..." -msgstr "Edytuj informacje o ścieżce…" - -msgid "Edit tracks information..." -msgstr "Edytuj informacje o ścieżkach…" - -msgid "Rescan song(s)" -msgstr "Przeskanuj utwór/utwory ponownie" - -msgid "Show in various artists" -msgstr "Pokaż w „różni artyści”" - -msgid "Don't show in various artists" -msgstr "Nie pokazuj w „różni artyści”" - -msgid "There are other songs in this album" -msgstr "Na tym albumie są inne utwory" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Chcesz przenieść pozostałe utwory z tego albumu do Różnych Wykonawców?" - -msgid "Show" -msgstr "Pokaż" - -msgid "Group by" -msgstr "Grupuj według" - -msgid "Display options" -msgstr "Opcje wyświetlania" - -msgid "Group by Album artist/Album" -msgstr "Artysta albumu/Album" - -msgid "Group by Album artist/Album - Disc" -msgstr "Artysta albumu/Album - Płyta" - -msgid "Group by Album artist/Year - Album" -msgstr "Artysta albumu/Rok - Album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Artysta albumu/Rok - Album - Płyta" - -msgid "Group by Artist/Album" -msgstr "Artysta/Album" - -msgid "Group by Artist/Album - Disc" -msgstr "Artysta/Album - Płyta" - -msgid "Group by Artist/Year - Album" -msgstr "Artysta/Rok - Album" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Artysta/Rok - Album - Płyta" - -msgid "Group by Genre/Album artist/Album" -msgstr "Gatunek/Artysta albumu/Album" - -msgid "Group by Genre/Artist/Album" -msgstr "Gatunek/Artysta/Album" - -msgid "Group by Album Artist" -msgstr "Artysta albumu" - -msgid "Group by Artist" -msgstr "Artysta" - -msgid "Group by Album" -msgstr "Album" - -msgid "Group by Genre/Album" -msgstr "Gatunek/Album" - -msgid "Advanced grouping..." -msgstr "Zaawansowane grupowanie…" - -msgid "Grouping Name" -msgstr "Nazwa grupowania" - -msgid "Grouping name:" -msgstr "Nazwa grupowania:" - -msgid "First level" -msgstr "Pierwszy poziom" - -msgid "Second Level" -msgstr "Drugi Poziom" - -msgid "Third Level" -msgstr "Trzeci poziom" - -msgid "None" -msgstr "Brak" - -msgid "Album artist" -msgstr "Artysta albumu" - -msgid "Artist" -msgstr "Artysta" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "Album - Płyta" - -msgid "Year - Album" -msgstr "Rok - Album" - -msgid "Year - Album - Disc" -msgstr "Rok - Album - Płyta" - -msgid "Original year - Album" -msgstr "Oryginalny rok - Album" - -msgid "Original year - Album - Disc" -msgstr "Oryginalny rok - Album - Płyta" - -msgid "Disc" -msgstr "Płyta" - -msgid "Year" -msgstr "Rok" - -msgid "Original year" -msgstr "Oryginalny rok" - -msgid "Genre" -msgstr "Gatunek" - -msgid "Composer" -msgstr "Kompozytor" - -msgid "Performer" -msgstr "Wykonawca" - -msgid "Grouping" -msgstr "Grupowanie" - -msgid "File type" -msgstr "Rodzaj pliku" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "Częstotliwość próbkowania" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Tytuł" - -msgid "Track" -msgstr "Ścieżka" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Komentarz" - -msgid "Source" -msgstr "Źródło" - -msgid "Mood" -msgstr "Nastrój" - -msgid "Rating" -msgstr "Ocena" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Wczytaj listę odtwarzania" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Nie znaleziono dopasowań. Wyczyść pole wyszukiwania, by wyświetlić listę odtwarzania" - -msgid "stop" -msgstr "zatrzymaj" - -msgid "Never" -msgstr "Nigdy" - -msgid "&Hide..." -msgstr "&Ukryj…" - -msgid "&Stretch columns to fit window" -msgstr "&Rozciągaj kolumny, aby dopasować do okna" - -msgid "&Reset columns to default" -msgstr "&Przywróć kolumny do postaci domyślnej" - -msgid "&Lock rating" -msgstr "Zab&lokuj ocenę" - -msgid "&Align text" -msgstr "&Wyrównaj tekst" - -msgid "&Left" -msgstr "Do &lewej" - -msgid "&Center" -msgstr "Do śr&odka" - -msgid "&Right" -msgstr "Do p&rawej" - -#, qt-format -msgid "&Hide %1" -msgstr "&Ukryj %1" - -msgid "New folder" -msgstr "Nowy katalog" - -msgid "Delete" -msgstr "Usuń" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Zapisz listę odtwarzania" - -msgid "Enter the name of the folder" -msgstr "Wprowadź nazwę katalogu" - -msgid "Copy to device" -msgstr "Skopiuj na urządzenie" - -msgid "Playlist must be open first." -msgstr "Lista odtwarzania musi być najpierw otwarta." - -msgid "Remove playlists" -msgstr "Usuń listy odtwarzania" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Czy na pewno chcesz usunąć listy odtwarzania (%1) z ulubionych??" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Możesz dodać listę odtwarzania do ulubionych poprzez kliknięcie w ikonę gwiazdki obok jej nazwy na zakładce" - -msgid "Favorited playlists will be saved here" -msgstr "Ulubione listy odtwarzania zostaną zapisane tutaj" - -msgid "Couldn't create playlist" -msgstr "Nie można utworzyć listy odtwarzania" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Zapisz listę odtwarzania" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "zaznaczono %1 z" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Ustalane automatycznie" - -msgid "Relative" -msgstr "Względna" - -msgid "Absolute" -msgstr "Absolutne" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Zamknij listę odtwarzania" - -msgid "Rename playlist..." -msgstr "Zmień nazwę listy odtwarzania…" - -msgid "Save playlist..." -msgstr "Zapisz listę odtwarzania…" - -msgid "Rename playlist" -msgstr "Zmień nazwę listy odtwarzania" - -msgid "Enter a new name for this playlist" -msgstr "Wpisz nową nazwę dla tej listy odtwarzania" - -msgid "Remove playlist" -msgstr "Usuń listę odtwrzania" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Zamierzasz usunąć listę odtwarzania spoza listy ulubionych. Zostanie ona skasowana (tej akcji nie da się cofnąć).\n" -"Na pewno chcesz usunąć?" - -msgid "Warn me when closing a playlist tab" -msgstr "Ostrzeż mnie przed zamknięciem zakładki z listą odtwarzania" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Ta opcja może zostać zmieniona w ustawieniach „Zachowanie”" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "dodaj utworów: %n" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "usuń utworów: %n" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "przenieś utworów: %n" - -msgid "sort songs" -msgstr "sortuj utwory" - -msgid "shuffle songs" -msgstr "losuj utwory" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Błąd odczytu płyty audio." - -msgid "Loading tracks" -msgstr "Wczytywanie ścieżek" - -msgid "Loading tracks info" -msgstr "Wczytywanie informacji o utworze" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Wszystkie listy odtwarzania (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 list(y) odtwarzania (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Ładowanie smartlisty" - -msgid "Collection search" -msgstr "Przeszukiwanie kolekcji" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Znajdź w swojej kolekcji utwór spełniający zadane kryteria." - -msgid "Search terms" -msgstr "Warunki wyszukiwania" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Utwór będzie dołączony do listy odtwarzania po spełnieniu tych warunków." - -msgid "Search options" -msgstr "Opcje wyszukiwania" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Ustal sortowanie listy odtwarzania i liczbę zawartych w niej utworów." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "znaleziono utworów: %1 (pokazanych: %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "znaleziono utworów: %1" - -msgid "after" -msgstr "po" - -msgid "before" -msgstr "przed" - -msgid "on" -msgstr "na" - -msgid "not on" -msgstr "nie" - -msgid "in the last" -msgstr "w ciągu ostatnich" - -msgid "not in the last" -msgstr "nie w ciągu ostatnich" - -msgid "between" -msgstr "pomiędzy" - -msgid "contains" -msgstr "zawiera" - -msgid "does not contain" -msgstr "nie zawiera" - -msgid "starts with" -msgstr "zaczyna się od" - -msgid "ends with" -msgstr "kończy się na" - -msgid "greater than" -msgstr ">" - -msgid "less than" -msgstr "<" - -msgid "equals" -msgstr "=" - -msgid "not equals" -msgstr "≠" - -msgid "empty" -msgstr "pusta" - -msgid "not empty" -msgstr "niepuste" - -msgid "A-Z" -msgstr "A-Ż" - -msgid "Z-A" -msgstr "Ż-A" - -msgid "oldest first" -msgstr "najpierw najstarsze" - -msgid "newest first" -msgstr "najpierw najnowsze" - -msgid "shortest first" -msgstr "najpierw najkrótsze" - -msgid "longest first" -msgstr "najpierw najdłuższe" - -msgid "smallest first" -msgstr "najpierw najmniejsze" - -msgid "biggest first" -msgstr "najpierw największe" - -msgid "Hours" -msgstr "Godzin" - -msgid "Days" -msgstr "Dni" - -msgid "Weeks" -msgstr "Tygodni" - -msgid "Months" -msgstr "Miesięcy" - -msgid "Years" -msgstr "Lat" - -msgid "The second value must be greater than the first one!" -msgstr "Druga wartość musi być większa od pierwszej!" - -msgid "Add search term" -msgstr "Dodaj warunek" - -msgid "Newest tracks" -msgstr "Najnowsze ścieżki" - -msgid "50 random tracks" -msgstr "50 losowych utworów" - -msgid "Ever played" -msgstr "Kiedykolwiek odtworzony" - -msgid "Never played" -msgstr "Nigdy nie odtwarzane" - -msgid "Last played" -msgstr "Ostatnio odtwarzane" - -msgid "Most played" -msgstr "Najczęściej odtwarzane" - -msgid "Favourite tracks" -msgstr "Ulubione ścieżki" - -msgid "Least favourite tracks" -msgstr "Najmniej lubiane utwory" - -msgid "All tracks" -msgstr "Wszystkie ścieżki" - -msgid "Dynamic random mix" -msgstr "Dynamiczny losowy mix" - -msgid "New smart playlist..." -msgstr "Nowa smartlista…" - -msgid "Play next" -msgstr "Odtwórz następne" - -msgid "Edit smart playlist..." -msgstr "Edytuj smartlistę…" - -msgid "Delete smart playlist" -msgstr "Usuń smartlistę" - -msgid "Smart playlist" -msgstr "Smartlista" - -msgid "Playlist type" -msgstr "Rodzaj listy odtwarzania" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Smartlista jest dynamiczną listą odtwarzania utworów z Twojej kolekcji. Różne typy smartlist oferują różne sposoby wybierania utworów." - -msgid "Finish" -msgstr "Zakończ" - -msgid "Choose a name for your smart playlist" -msgstr "Wybierz nazwę smartlisty" - -msgid "Abort" -msgstr "Przerwij" - -msgid "All albums" -msgstr "Wszystkie albumy" - -msgid "Albums with covers" -msgstr "Albumy z okładkami" - -msgid "Albums without covers" -msgstr "Albumy bez okładek" - -msgid "Really cancel?" -msgstr "Na pewno anulować?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Zamknięcie tego okna spowoduje zatrzymanie wyszukiwania okładek albumu." - -msgid "Don't stop!" -msgstr "Nie zatrzymuj!" - -msgid "All artists" -msgstr "Wszyscy artyści" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Uzyskano okładek: %1 z %2 (%3 nieudane)" - -#, qt-format -msgid "%1 transferred" -msgstr "pobrano: %1" - -msgid "Export finished" -msgstr "Eksportowanie zakończone" - -msgid "No covers to export." -msgstr "Brak okładek do wyeksportowania." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Wyodrębniono okładek: %1 z %2 (pominięto: %3)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Okładki z %1" - -msgid "Search" -msgstr "Szukaj" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Obrazy (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Obrazy (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Wszystkie pliki (*)" - -msgid "Load cover from disk..." -msgstr "Wczytaj okładkę z dysku…" - -msgid "Save cover to disk..." -msgstr "Zapisz okładkę na dysku…" - -msgid "Load cover from URL..." -msgstr "Wczytaj okładkę z adresu URL…" - -msgid "Search for album covers..." -msgstr "Szukaj okładek…" - -msgid "Unset cover" -msgstr "Odłącz okładkę" - -msgid "Delete cover" -msgstr "Usuń okładkę" - -msgid "Clear cover" -msgstr "Odśwież okładkę" - -msgid "Show fullsize..." -msgstr "Pokaż w pełnym rozmiarze…" - -msgid "Search automatically" -msgstr "Wyszukaj automatycznie" - -msgid "Load cover from disk" -msgstr "Wczytaj okładkę z dysku" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "nieznany" - -msgid "Save album cover" -msgstr "Zapisz okładkę albumu" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "Całkowita liczba wykonanych zapytań sieciowych" - -msgid "Average image size" -msgstr "Przeciętny rozmiar obrazu" - -msgid "Total bytes transferred" -msgstr "Całkowita liczba przesłanych bajtów" - -msgid "Fetching cover error" -msgstr "Błąd podczas pobierania okładki" - -msgid "The site you requested does not exist!" -msgstr "Żądana strona nie istnieje!" - -msgid "The site you requested is not an image!" -msgstr "Żądana strona nie jest obrazem!" - -msgid "Genius Authentication" -msgstr "Uwierzytelnianie Geniusa" - -msgid "Please open this URL in your browser" -msgstr "Proszę otworzyć ten adres URL w przeglądarce internetowej" - -msgid "Redirect missing token code!" -msgstr "Przekieruj brakujący kod tokenu!" - -msgid "Received invalid reply from web browser." -msgstr "Otrzymano niepoprawną odpowiedź z przeglądarki internetowej." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "W przekierowaniu z Geniusa brakuje kodu lub statusu elementów zapytania." - -msgid "General" -msgstr "Ogólne" - -msgid "User interface" -msgstr "Interfejs użytkownika" - -msgid "Streaming" -msgstr "Strumieniowanie" - -msgid "Add directory..." -msgstr "Dodaj katalog…" - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "Wprowadź swój token użytkownika z" - -msgid "Use Tidal settings to authenticate." -msgstr "Używaj ustawień Tidala do uwierzytelniania." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Używaj ustawień Qobuz do autentykacji." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 wymaga uwierzytelniania." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 nie wymaga uwierzytelniania." - -msgid "No provider selected." -msgstr "Nie wybrano żadnego dostawcy." - -msgid "Authentication failed" -msgstr "Błąd uwierzytelniania" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Wybierz obraz tła" - -msgid "OSD Preview" -msgstr "Podgląd menu ekranowego (OSD)" - -msgid "Drag to reposition" -msgstr "Przeciągnij, aby zmienić pozycję" - -msgid "About Strawberry" -msgstr "O Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Wersja %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry to odtwarzacz muzyki i menedżer kolekcji utworów." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "To jest fork Clementine, wydany w 2018 roku z myślą o kolekcjonerach muzyki i audiofilach." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry to wolne oprogramowanie wydane na zasadach GPL. Kod źródłowy dostępny jest na %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Powinieneś otrzymać kopię GNU General Public License wraz z tym programem. Jeśli nie, zobacz %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Jeśli lubisz ten program i uważasz go za użyteczny, możesz rozważyć sponsoring lub donację." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Możesz sponsorować autora na %1. Możesz także dokonać jednorazowej wpłaty poprzez %2." - -msgid "Author and maintainer" -msgstr "Autor i opiekun" - -msgid "Contributors" -msgstr "Współautorzy" - -msgid "Clementine authors" -msgstr "Autorzy Clementine" - -msgid "Clementine contributors" -msgstr "Współautorzy Clementine" - -msgid "Thanks to" -msgstr "Podziękowania" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Podziękowania dla wszystkich innych współautorów Amaroka i Clementine." - -msgid "(different across multiple songs)" -msgstr "(w zależności od utworu)" - -msgid "Different art across multiple songs." -msgstr "Różne okładki utworów albumu." - -msgid "Previous" -msgstr "Wstecz" - -msgid "Next" -msgstr "Dalej" - -msgid "Saving tracks" -msgstr "Zapisywanie ścieżek" - -#, qt-format -msgid "%1 songs selected." -msgstr "Wybrane %1 utwory(ów)." - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Brak okładki" - -msgid "Album cover editing is only available for collection songs." -msgstr "Edycja okładki dostępna jest tylko dla utworów z kolekcji." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Okładka zmieniona: zostanie odświeżona przy zapisie." - -msgid "Cover changed: Will be unset when saved." -msgstr "Okładka zmieniona: zostanie odłączona przy zapisie." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Okładka zmieniona: zostanie usunięta przy zapisie." - -msgid "Cover changed: Will set new when saved." -msgstr "Okładka zmieniona: zostanie ustawiona nowa przy zapisie." - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Oryginalne znaczniki" - -msgid "Suggested tags" -msgstr "Sugerowane znaczniki" - -msgid "Delete files" -msgstr "Usuń pliki" - -msgid "The following files will be deleted from disk:" -msgstr "Następujące pliki zostaną usunięte z dysku:" - -msgid "Are you sure you want to continue?" -msgstr "Na pewno chcesz kontynuować?" - -msgid "Receiving initial data from last.fm..." -msgstr "Pobieranie wstępnych danych z last.fm…" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Pobieranie liczby odtworzeń dla %1 utworu(ów) i „ostatnio odtwarzany” dla %2 utworu(ów)…" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Pobieranie „ostatnio odtwarzany” dla %1 utworu(ów)…" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Pobieranie liczby odtworzeń dla %1 utworu(ów)…" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Pobrano liczbę odtworzeń dla %1 utworu(ów) i „ostatnio odtwarzany” dla %2 utworu(ów)." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Pobrano „ostatnio odtwarzany” dla %1 utworu(ów)." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Pobierano liczbę odtworzeń dla %1 utworu(ów)." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry działa jako snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Wykryto uruchomienie Strawberry jako snap." - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry uruchomione jako snap jest wolniejsze i podlega ograniczeniom. Dostęp do katalogu głównego (/) jest niemożliwy. Mogą również istnieć inne ograniczenia, jak brak dostępu do niektórych urządzeń czy udziałów sieciowych." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Na %1 dostępne jest oficjalne repozytorium PPA dla Ubuntu." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Oficjalne wydania dla Debiana i Ubuntu działają również na większości ich pochodnych. Zobacz %1 dla uzyskania dalszych informacji." - -msgid "For a better experience please consider the other options above." -msgstr "Dla lepszych doświadczeń proszę rozważyć użycie poniższych opcji." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "Odinstaluj snap poprzez:" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Duży pasek boczny" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Mały pasek boczny" - -msgid "Plain sidebar" -msgstr "Pasek boczny bez efektów" - -msgid "Tabs on top" -msgstr "Zakładki na górze" - -msgid "Icons on top" -msgstr "Ikony na górze" - -msgid "Available" -msgstr "Dostępny" - -msgid "New songs" -msgstr "Nowe utwory" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Użyto" - -msgid "Clear" -msgstr "Wyczyść" - -msgid "Reset" -msgstr "Wyzeruj" - -msgid "Small album cover" -msgstr "Mała okładka albumu" - -msgid "Large album cover" -msgstr "Duża okładka albumu" - -msgid "Fit cover to width" -msgstr "Dopasuj okładkę do szerokości" - -msgid "Show above status bar" -msgstr "Pokazuj ponad paskiem stanu" - -msgid "You are signed in." -msgstr "Zalogowano." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Zalogowano jako „%1”." - -#, qt-format -msgid "Expires on %1" -msgstr "Wygasa %1" - -#, qt-format -msgid "disc %1" -msgstr "płyta %1" - -#, qt-format -msgid "track %1" -msgstr "ścieżka %1" - -msgid "Paused" -msgstr "Wstrzymane" - -msgid "Stopped" -msgstr "Zatrzymano" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Zatrzymaj po ścieżce: %1" - -msgid "On" -msgstr "Wł" - -msgid "Off" -msgstr "Wył" - -msgid "Playlist finished" -msgstr "Zakończono odtwarzanie listy" - -#, qt-format -msgid "Volume %1%" -msgstr "Głośność %1%" - -msgid "Don't shuffle" -msgstr "Nie losuj" - -msgid "Shuffle all" -msgstr "Losuj wszystko" - -msgid "Shuffle tracks in this album" -msgstr "Losuj utwory z tego albumu" - -msgid "Shuffle albums" -msgstr "Losuj albumy" - -msgid "Don't repeat" -msgstr "Nie powtarzaj" - -msgid "Repeat track" -msgstr "Powtarzaj utwór" - -msgid "Repeat album" -msgstr "Powtarzaj album" - -msgid "Repeat playlist" -msgstr "Powtarzaj listę odtwarzania" - -msgid "Stop after every track" -msgstr "Zatrzymaj po każdej ścieżce" - -msgid "Intro tracks" -msgstr "Czołówki" - -#, qt-format -msgid "Configure %1..." -msgstr "Skonfiguruj %1…" - -msgid "Add to artists" -msgstr "Dodaj do artystów" - -msgid "Add to albums" -msgstr "Dodaj do albumów" - -msgid "Add to songs" -msgstr "Dodaj do utworów" - -msgid "Enter search terms above to find music" -msgstr "Wprowadź kryteria wyszukiwania, aby znaleźć muzykę" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Kliknij tutaj, aby pobrać muzykę" - -msgid "Remove from favorites" -msgstr "Usuń z ulubionych" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "Uwierzytelnianie w scrobblera %1" - -msgid "Open URL in web browser?" -msgstr "Otworzyć adres URL w przeglądarce internetowej?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Kliknij w „Zapisz”, aby skopiować adres URL do schowka i ręcznie otworzyć go w przeglądarce internetowej." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Nie udało się otworzyć adresu URL. Proszę otworzyć go w przeglądarce internetowej" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Niepoprawna odpowiedź z przeglądarki internetowej. Brakuje tokenu." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Scrobblerowi %1 brakuje uwierzytelnienia." - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Błąd scrobblera %1: %2" - -msgid "ListenBrainz Authentication" -msgstr "Uwierzytelnianie ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "Brakuje nazwy użytkownika. Proszę najpierw zalogować się do last.fm!" - -msgid "Organizing files" -msgstr "Organizuję pliki" - -msgid "Artist's initial" -msgstr "Inicjały artysty" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Przepływność" - -msgid "File extension" -msgstr "Rozszerzenie pliku" - -msgid "Error copying songs" -msgstr "Błąd przy kopiowaniu utworów" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Wystąpiły problemy podczas kopiowania utworów. Nie można było skopiować następujących plików:" - -msgid "Error deleting songs" -msgstr "Błąd przy usuwaniu utworów" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Wystąpiły problemy podczas kasowania utworów. Nie można było usunąć następujących plików:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "Poprzednia ścieżka" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "Wycisz" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "Pokochaj" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Naciśnij kombinację klawiszy dla %1…" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Nie można było uruchomić komendy „%1”." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Skrót do %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Używanie skrótów klawiaturowych X11 w %1 jest niewskazane i może doprowadzić do blokowania klawiatury!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "Skróty do %1 są zwykle używane poprzez MPRIS i KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "Buforowanie" - -msgid "D-Bus path" -msgstr "Ścieżka D-Bus" - -msgid "Serial number" -msgstr "Numer seryjny" - -msgid "Mount points" -msgstr "Punkty montowania" - -msgid "Partition label" -msgstr "Etykieta partycji" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Podłącz urządzenie" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Pierwszy raz podłączyłeś to urządzenie. Strawberry przeskanuje je teraz w poszukiwaniu plików z muzyką - może to zająć trochę czasu." - -msgid "This device will not work properly" -msgstr "To urządzenie nie będzie działać prawidłowo" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "To jest urządzenie MTP, ale skompilowałeś Strawberry bez obsługi libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Jeśli będziesz kontynuował, urządzenie będzie działać wolniej i skopiowane na nie utwory mogą nie działać." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "To jest iPod, ale skompilowałeś Strawberry bez obsługi libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Ten typ urządzenia nie jest obsługiwany: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Odświeżanie %1%…" - -msgid "Not connected" -msgstr "Nie podłączono" - -msgid "Not mounted - double click to mount" -msgstr "Nie zamontowano - kliknij dwukrotnie, aby zamontować" - -msgid "Double click to open" -msgstr "Kliknij podwójnie, by otworzyć" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 utwory(ów)%2" - -msgid "Safely remove device" -msgstr "Bezpiecznie usuń urządzenie" - -msgid "Forget device" -msgstr "Zapomnij urządzenie" - -msgid "Device properties..." -msgstr "Właściwości urządzenia…" - -msgid "Delete from device..." -msgstr "Usuń z urządzenia…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Zapomnienie urządzenia spowoduje usunięcie go z listy. Strawberry będzie musiał ponownie przeskanować wszystkie utwory przy następnym podłączeniu urządzenia." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Te pliki zostaną usunięte z urządzenia. Czy na pewno chcesz kontynuować?" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "Wytwórca" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Wczytywanie bazy danych iPoda" - -msgid "An error occurred loading the iTunes database" -msgstr "Wystąpił błąd podczas ładowania bazy danych iTunes" - -msgid "Mount point" -msgstr "Punkt montowania" - -msgid "Device" -msgstr "Urządzenie" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Wczytywanie urządzenia MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Błąd połączenia z urządzeniem MTP „%1”" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Nie można utworzyć elementu „%1” GStreamera - upewnij się, czy są zainstalowane wszystkie wymagane wtyczki GStreamera" - -#, qt-format -msgid "Successfully written %1" -msgstr "Pomyślnie zapisano %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Transkodowanie plików: %1, za pomocą wątków: %2" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Błąd przetwarzania %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Uruchamianie %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Nie można odnaleźć kodera dla %1. Sprawdź, czy masz zainstalowane właściwe wtyczki GStreamera" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Nie można odnaleźć muksera dla %1. Sprawdź, czy masz zainstalowane właściwe wtyczki GStreamera" - -msgid "Start transcoding" -msgstr "Rozpocznij transkodowanie" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "pozostało %n" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "zakończonych: %n" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "nieudanych: %n" - -msgid "Add files to transcode" -msgstr "Dodaj pliki to transkodowania" - -msgid "Open a directory to import music from" -msgstr "Importuj muzykę z katalogu" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Błąd podczas przełączania urządzenia CDDA w stan gotowości." - -msgid "Error while setting CDDA device to pause state." -msgstr "Błąd podczas przełączania urządzenia CDDA w stan wstrzymania." - -msgid "Error while querying CDDA tracks." -msgstr "Błąd podczas odpytywania o ścieżki CDDA." - -msgid "Server URL is invalid." -msgstr "Adres URL serwera jest niepoprawny." - -msgid "Missing username or password." -msgstr "Brakuje nazwy użytkownika lub hasła." - -msgid "Subsonic server URL is invalid." -msgstr "Adres URL serwera Subsonic jest niepoprawny." - -msgid "Missing Subsonic username or password." -msgstr "Brakuje nazwy użytkownika lub hasła Subsonic." - -msgid "Retrieving albums..." -msgstr "Pobieranie albumów…" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Pobieranie utworów dla albumu „%1”…" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Pobieranie utworów dla %1 albumu(ów)…" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Pobieranie okładki albumu dla „%1”…" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Pobieranie okładek dla %1 albumu(ów)…" - -msgid "Configuration incomplete" -msgstr "Konfiguracja niekompletna" - -msgid "Missing server url, username or password." -msgstr "Brakuje adresu URL serwera, nazwy użytkownika lub hasła." - -msgid "Configuration incorrect" -msgstr "Konfiguracja niepoprawna" - -msgid "Test successful!" -msgstr "Test zakończył się powodzeniem!" - -msgid "Test failed!" -msgstr "Test zakończył się niepowodzeniem!" - -msgid "Reply from Tidal is missing query items." -msgstr "Brakuje elementów zapytania w odpowiedzi z Tidal." - -msgid "Missing Tidal API token." -msgstr "Brakuje tokenu API Tidal." - -msgid "Missing Tidal username." -msgstr "Brakuje nazwy użytkownika Tidal." - -msgid "Missing Tidal password." -msgstr "Brakuje hasła Tidal." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Nie uwierzytelniono w Tidal i osiągnięto maksymalną liczbę prób zalogowania." - -msgid "Not authenticated with Tidal." -msgstr "Nie uwierzytelniono w Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Brakuje tokenu API, nazwy użytkownika lub hasła Tidal." - -msgid "Authenticating..." -msgstr "Uwierzytelnianie…" - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "Wyszukiwanie…" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "Brak dopasowania." - -msgid "Cancelled." -msgstr "Anulowano." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "Brakuje identyfikatora klienta Tidal." - -msgid "Missing API token." -msgstr "Brakuje tokenu API." - -msgid "Missing username." -msgstr "Brakuje nazwy użytkownika." - -msgid "Missing password." -msgstr "Brakuje hasła." - -msgid "Spotify Authentication" -msgstr "Uwierzytelnianie Spotify" - -msgid "Redirect missing token code or state!" -msgstr "W przekierowaniu brakuje kodu lub statusu tokenu." - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Osiągnięto limit prób zalogowania." - -msgid "Missing Qobuz app ID." -msgstr "Brakuje ID aplikacji Qobuz." - -msgid "Missing Qobuz username." -msgstr "Brakuje nazwy użytkownika Qobuz." - -msgid "Missing Qobuz password." -msgstr "Brakuje hasła Qobuz." - -msgid "Not authenticated with Qobuz." -msgstr "Nie zautentyfikowano w Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Brakuje ID aplikacji lub tokenu Qobuz." - -msgid "Missing app id." -msgstr "Brakuje ID aplikacji." - -msgid "Show moodbar" -msgstr "Pokazuj pasek nastroju" - -msgid "Moodbar style" -msgstr "Styl paska nastroju" - -msgid "Normal" -msgstr "Zwykły" - -msgid "Angry" -msgstr "Gniewny" - -msgid "Frozen" -msgstr "Zamrożony" - -msgid "Happy" -msgstr "Szczęśliwy" - -msgid "System colors" -msgstr "Kolory systemowe" - -msgid "Strawberry Music Player" -msgstr "Odtwarzacz muzyki Strawberry" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Odtwarzaj" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Zatrzymaj" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Następna ścieżka" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Zakończ" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Wyczyść listę odtwarzania" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Ponumeruj utwory według tej kolejności…" - -msgid "Set value for all selected tracks..." -msgstr "Ustaw wartość dla wszystkich zaznaczonych utworów…" - -msgid "Edit tag..." -msgstr "Edytuj znacznik…" - -msgid "&Settings..." -msgstr "&Ustawienia…" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&O Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "Losuj z listy odtwarzania" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Dodaj plik…" - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Otwórz plik…" - -msgid "Open audio &CD..." -msgstr "Otwórz pł&ytę audio…" - -msgid "&Cover Manager" -msgstr "M&enedżer okładek" - -msgid "C&onsole" -msgstr "K&onsola" - -msgid "&Shuffle mode" -msgstr "&Tryb losowania" - -msgid "&Repeat mode" -msgstr "Tryb powtarzania" - -msgid "Remove from playlist" -msgstr "Usuń z listy odtwarzania" - -msgid "&Equalizer" -msgstr "&Korektor graficzny" - -msgid "&Transcode Music" -msgstr "&Transkoduj muzykę" - -msgid "Add &folder..." -msgstr "Dodaj &katalog…" - -msgid "&Jump to the currently playing track" -msgstr "&przeskocz do odtwarzanej ścieżki" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Nowa lista odtwarzania" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Zapisz &listę odtwarzania…" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "Wczytaj &listę odtwarzania…" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Przejdź do kolejnej zakładki z listą odtwarzania" - -msgid "Go to previous playlist tab" -msgstr "Przejdź do poprzedniej zakładki z listą odtwarzania" - -msgid "&Update changed collection folders" -msgstr "&Zaktualizuj zmienione katalogi kolekcji" - -msgid "About &Qt" -msgstr "O &Qt" - -msgid "&Mute" -msgstr "&Wycisz" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Przeskanuj całą kolekcję od nowa" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Automatycznie uzupełnij znaczniki…" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Włącz scrobling" - -msgid "Remove &duplicates from playlist" -msgstr "Usuń &duplikaty z listy odtwarzania" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Usuń &niedostępne utwory z listy odtwarzania" - -msgid "Add file(s) to transcoder" -msgstr "Dodaj plik(i) do transkodera" - -msgid "Add file to transcoder" -msgstr "Dodaj plik do transkodera" - -msgid "Add stream..." -msgstr "Dodaj strumień…" - -msgid "Show sidebar" -msgstr "Pokazuj pasek boczny" - -msgid "Import data from last.fm..." -msgstr "Zaimportuj dane z last.fm…" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Muzyka" - -msgid "P&laylist" -msgstr "&Lista odtwarzania" - -msgid "Help" -msgstr "Pomoc" - -msgid "&Tools" -msgstr "Narzędzia" - -msgid "Collection advanced grouping" -msgstr "Zaawansowanie grupowanie kolekcji" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Możesz zmienić sposób organizacji utworów w kolekcji." - -msgid "Group Collection by..." -msgstr "Grupuj kolekcję według…" - -msgid "Second level" -msgstr "Drugi poziom" - -msgid "Third level" -msgstr "Trzeci poziom" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "Filtr kolekcji" - -msgid "Entire collection" -msgstr "Cała kolekcja" - -msgid "Added today" -msgstr "Dodane dzisiaj" - -msgid "Added this week" -msgstr "Dodane w tym tygodniu" - -msgid "Added within three months" -msgstr "Dodane w ciągu ostatnich trzech miesięcy" - -msgid "Added this year" -msgstr "Dodane w tym roku" - -msgid "Added this month" -msgstr "Dodane w tym miesiącu" - -msgid "Save current grouping" -msgstr "Zapisz bieżące grupowanie" - -msgid "Manage saved groupings" -msgstr "Zarządzaj zapisanymi grupowaniami" - -msgid "Enter search terms here" -msgstr "Wpisz szukane wyrażenie tutaj" - -msgid "Form" -msgstr "Forma" - -msgid "Saved Grouping Manager" -msgstr "Menedżer zapisanych grupowań" - -msgid "Remove" -msgstr "Usuń" - -msgid "Ctrl+Up" -msgstr "Ctrl+Góra" - -msgid "File paths" -msgstr "Ścieżki plików" - -msgid "This can be changed later through the preferences" -msgstr "Można to zmienić później w ustawieniach" - -msgid "Remember my choice" -msgstr "Zapamiętaj mój wybór" - -msgid "Stop after each track" -msgstr "Zatrzymaj po każdej ścieżce" - -msgid "Repeat" -msgstr "Powtarzaj" - -msgid "Shuffle" -msgstr "Losuj" - -msgid "Dynamic mode is on" -msgstr "Tryb dynamiczny jest włączony" - -msgid "New tracks will be added automatically." -msgstr "Nowe ścieżki będą dodawane automatycznie." - -msgid "Expand" -msgstr "Rozwiń" - -msgid "Repopulate" -msgstr "Zapełnij od nowa" - -msgid "Turn off" -msgstr "Wyłącz" - -msgid "QueueView" -msgstr "Widok kolejki" - -msgid "Move down" -msgstr "Przesuń w dół" - -msgid "Move up" -msgstr "Przesuń w górę" - -msgid "Ctrl+Down" -msgstr "Ctrl+Dół" - -msgid "Search mode" -msgstr "Tryb wyszukiwania" - -msgid "Match every search term (AND)" -msgstr "Spełnij wszystkie warunki (I)" - -msgid "Match one or more search terms (OR)" -msgstr "Spełnij przynajmniej jeden warunek (LUB)" - -msgid "Include all songs" -msgstr "Uwzględnij wszystkie utwory" - -msgid "Sorting" -msgstr "Sortowanie" - -msgid "Put songs in a random order" -msgstr "Odtwarzaj utwory w losowej kolejności" - -msgid "Sort songs by" -msgstr "Sortuj utwory po" - -msgid "Limits" -msgstr "Ograniczenia" - -msgid "Show all the songs" -msgstr "Pokazuj wszystkie utwory" - -msgid "Only show the first" -msgstr "Pokaż tylko pierwsze" - -msgid " songs" -msgstr "utwory" - -msgid "Preview" -msgstr "Podgląd" - -msgid "and" -msgstr "i" - -msgid "ago" -msgstr "temu" - -msgid "New smart playlist" -msgstr "Nowa smartlista" - -msgid "Edit smart playlist" -msgstr "Edytuj smartlistę" - -msgid "Use dynamic mode" -msgstr "Używaj trybu dynamicznego" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "W trybie dynamicznym nowe ścieżki będą wybierane i dodawane do listy odtwarzania po każdym zakończeniu utworu. " - -msgid "Export covers" -msgstr "Eksportuj okładki" - -msgid "Output" -msgstr "Wyjście" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Wpisz nazwę dla eksportowanych okładek (bez rozszerzenia):" - -msgid "Export downloaded covers" -msgstr "Eksportuj pobrane okładki" - -msgid "Export embedded covers" -msgstr "Eksportuj osadzone okładki" - -msgid "Existing covers" -msgstr "Istniejące okładki" - -msgid "Do not overwrite" -msgstr "Nie nadpisuj" - -msgid "O&verwrite all" -msgstr "Nadp&isz wszystkie" - -msgid "Overwrite s&maller ones only" -msgstr "Nadpisz tylko &mniejsze" - -msgid "Size" -msgstr "Rozmiar" - -msgid "Scale size" -msgstr "Wielkość po przeskalowaniu" - -msgid "Size:" -msgstr "Rozmiar:" - -msgid "Pixel" -msgstr "Piksel" - -msgid "Cover Manager" -msgstr "Menedżer okładek" - -msgid "Fetch automatically" -msgstr "Pobierz automatycznie" - -msgid "Load" -msgstr "Wczytaj" - -msgid "Add to playlist" -msgstr "Dodaj do listy odtwarzania" - -msgid "View" -msgstr "Pokaż" - -msgid "Total albums:" -msgstr "Całkowita liczba albumów:" - -msgid "Without cover:" -msgstr "Bez okładki:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Pobierz brakujące okładki" - -msgid "Export Covers" -msgstr "Eksportuj okładki" - -msgid "Fetch completed" -msgstr "Pobieranie ukończone" - -msgid "Load cover from URL" -msgstr "Wczytaj okładkę z adresu URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Podaj adres URL, aby pobierać okładki albumów z Internetu:" - -msgid "Settings" -msgstr "Ustawienia" - -msgid "Behavior" -msgstr "Zachowanie" - -msgid "Show system tray icon" -msgstr "Pokazuj ikonę tacki systemowej" - -msgid "Keep running in the background when the window is closed" -msgstr "Działaj w tle po zamknięciu okna" - -msgid "Show song progress on system tray icon" -msgstr "Pokazuj postęp utwory na ikonie zasobnika" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Wznawiaj odtwarzanie po uruchomieniu programu" - -msgid "Show playing widget" -msgstr "Pokazuj widżet odtwarzania" - -msgid "On startup" -msgstr "Po uruchomieniu" - -msgid "Remember from &last time" -msgstr "Zapamiętaj z &ostatniego użycia" - -msgid "Show the main window" -msgstr "Pokazuj główne okno" - -msgid "Hide the main window" -msgstr "Ukrywaj główne okno" - -msgid "Show the main window maximized" -msgstr "Maksymalizuj główne okno" - -msgid "Show the main window minimized" -msgstr "Minimalizuj główne okno" - -msgid "Language" -msgstr "Język" - -msgid "Use the system default" -msgstr "Używaj domyślnych ustawień systemowych" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Po zmianie języka należy uruchomić Strawberry ponownie." - -msgid "Using the menu to add a song will..." -msgstr "Po dodaniu utworu z menu kontekstowego..." - -msgid "Never start playing" -msgstr "Nie odtwarzaj automatycznie" - -msgid "Play if there is nothing already playing" -msgstr "Odtwarzaj, jeśli nic nie jest aktualnie odtwarzane" - -msgid "Always start playing" -msgstr "Odtwarzaj automatycznie" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Po wciśnięciu „Wstecz” na odtwarzaczu…" - -msgid "Jump to previous song right away" -msgstr "Natychmiast przeskocz do poprzedniego utworu" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Rozpocznie utwór od nowa, przeskoczy przy kolejnym wciśnięciu" - -msgid "Double clicking a song will..." -msgstr "Po podwójnym kliknięciu utworu…" - -msgid "Append to the playlist" -msgstr "Dołącz do listy odtwarzania" - -msgid "Replace the playlist" -msgstr "Zastąpienie listy odtwarzania" - -msgid "Add to the queue" -msgstr "Dodaj do kolejki" - -msgid "Double clicking a song in the playlist will..." -msgstr "Po podwójnym kliknięciu utworu na liście odtwarzania…" - -msgid "Change the currently playing song" -msgstr "Zmień aktualnie odtwarzany utwór" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Przewijanie za pomocą skrótu klawiaturowego lub rolki w myszce" - -msgid "Time step" -msgstr "Odstęp czasu" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Te katalogi będą skanowane w poszukiwaniu muzyki" - -msgid "Add new folder..." -msgstr "Dodaj nowy katalog…" - -msgid "Remove folder" -msgstr "Usuń katalog" - -msgid "Automatic updating" -msgstr "Aktualizacja automatyczna" - -msgid "Update the collection when Strawberry starts" -msgstr "Odświeżaj kolekcję przy uruchamianiu Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Monitoruj zmiany w kolekcji" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "Oznacz brakujące utwory jako niedostępne" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Preferuj okładki w plikach zawierających w nazwie (oddziel przecinkami):" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Szukając okładki, Strawberry w pierwszej kolejności przeszuka pliki obrazów zawierające któreś z podanych słów.\n" -"W przypadku braku takich plików użyty zostanie największy obraz z danego katalogu." - -msgid "Automatically open single categories in the collection tree" -msgstr "Automatycznie rozwiń pojedyncze kategorie w drzewie kolekcji" - -msgid "Show dividers" -msgstr "Pokazuj separatory" - -msgid "Show album cover art in collection" -msgstr "Pokazuj okładki albumów w kolekcji" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Pamięć podręczna pixmap okładek albumów" - -msgid "Enable Disk Cache" -msgstr "Włącz pamięć podręczną na dysku" - -msgid "Disk Cache Size" -msgstr "Rozmiar pamięci podręcznej na dysku" - -msgid "Current disk cache in use:" -msgstr "Bieżące użycie pamięci podręcznej na dysku:" - -msgid "Clear Disk Cache" -msgstr "Wyczyść pamięć podręczną na dysku" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "Włącz opcję usuwania plików w menu kontekstowym" - -msgid "Backend" -msgstr "Dźwięk" - -msgid "Audio output" -msgstr "Wyjście" - -msgid "Engine" -msgstr "Silnik" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "Włącz sterowanie głośnością" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "Bufor" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Długość bufora" - -msgid "High watermark" -msgstr "Wysoki znak wodny" - -msgid "Low watermark" -msgstr "Niski znak wodny" - -msgid "Defaults" -msgstr "Domyślne" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Używaj metadanych Replay Gain, jeśli są dostępne" - -msgid "Replay Gain mode" -msgstr "Tryb Replay Gain" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (równa głośność wszystkich ścieżek)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Według albumu (najlepsza głośność dla wszystkich ścieżek)" - -msgid "Apply compression to prevent clipping" -msgstr "Skompresuj, aby zapobiec przesterowaniu" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Przejście" - -msgid "Fade out when stopping a track" -msgstr "Przyciszaj ścieżkę, gdy jest zatrzymywana" - -msgid "Cross-fade when changing tracks manually" -msgstr "Płynne przejście przy ręcznej zmianie ścieżek" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Płynne przejście przy automatycznej zmianie ścieżek" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Za wyjątkiem utworów z tego samego albumu lub arkusza CUE" - -msgid "Fading duration" -msgstr "Czas przejścia" - -msgid "Fade out on pause / fade in on resume" -msgstr "Przyciszanie przed pauzą i łagodne podgłośnianie przy wznawianiu" - -msgid "Add song artist tag" -msgstr "Dodaj znacznik artysty" - -msgid "Add song album tag" -msgstr "Dodaj znacznik albumu" - -msgid "Add song title tag" -msgstr "Dodaj znacznik tytułu" - -msgid "Add song albumartist tag" -msgstr "Dodaj znacznik artysty na albumie" - -msgid "Add song year tag" -msgstr "Dodaj znacznik roku" - -msgid "Add song composer tag" -msgstr "Dodaj znacznik kompozytora" - -msgid "Add song performer tag" -msgstr "Dodaj znacznik wykonawcy" - -msgid "Add song grouping tag" -msgstr "Dodaj znacznik grupowania" - -msgid "Add song disc tag" -msgstr "Dodaj znacznik płyty" - -msgid "Add song track tag" -msgstr "Dodaj znacznik numeru" - -msgid "Add song genre tag" -msgstr "Dodaj znacznik gatunku" - -msgid "Add song length tag" -msgstr "Dodaj znacznik długości" - -msgid "Add song play count" -msgstr "Dodaj znacznik liczby odtworzeń" - -msgid "Add song skip count" -msgstr "Dodaj znacznik licznika pominięć" - -msgid "Add a new line if supported by the notification type" -msgstr "Dodaj nową linię (jeśli dany rodzaj powiadomień pozwala)" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Dodaj znacznik nazwy pliku" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Dodaj adres URL utworu" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Dodaj znacznik oceny" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "Dodaj rok utworu" - -msgid "Custom text settings" -msgstr "Własne ustawienia tekstu" - -msgid "Summary" -msgstr "Podsumowanie" - -msgid "Enable Items" -msgstr "Pokazuj" - -msgid "Technical Data" -msgstr "Dane techniczne" - -msgid "Song Lyrics" -msgstr "Tekst utworu" - -msgid "Automatically search for album cover" -msgstr "Automatycznie wyszukuj okładek albumów" - -msgid "Font for headline" -msgstr "Font nagłówka" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "Rozmiar fontu" - -msgid " pt" -msgstr " pkt" - -msgid "Font for data and lyrics" -msgstr "Font danych i tekstu utworu" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Jeśli utwór jest niedostępny, przechodź do następnego" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Wyszarzaj na liście odtwarzania niedostępne utwory przy próbie odtworzenia" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Wyszarzaj na liście odtwarzania niedostępne utwory podczas uruchomienia" - -msgid "Automatically select current playing track" -msgstr "Automatycznie zaznaczaj odtwarzaną ścieżkę" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "Włącz przycisk czyszczenia listwy odtwarzania" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Automatycznie sortuj listę odtwarzania przy wstawianiu utworów" - -msgid "When saving a playlist, file paths should be" -msgstr "Podczas zapisywania listy odtwarzania, ścieżki plików mają być" - -msgid "A&utomatic" -msgstr "Ustalane a&utomatycznie" - -msgid "Absolu&te" -msgstr "Absolu&tne" - -msgid "Re&lative" -msgstr "Wzg&lędne" - -msgid "As&k when saving" -msgstr "&Pytaj przed zapisaniem" - -msgid "Metadata" -msgstr "Metadane" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Jeżeli aktywne, kliknięcie zaznaczonego utworu na liście odtwarzania pozwoli na bezpośrednią edycje znaczników" - -msgid "Enable song metadata inline edition with click" -msgstr "Włącz bezpośrednią edycję metadanych utworu po kliknięciu na liście odtwarzania" - -msgid "Write metadata when saving playlists" -msgstr "Zapisuj medatane podczas zapisywania list odtwarzania" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Włącz" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Utwory są scrobblowane, jeśli mają poprawne metadane, są dłuższe niż 30 sekund oraz były odtwarzane przez przynajmniej połowę swojej długości lub przez 4 minuty." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Pracuj w trybie offline (tylko scrobble z pamięci podręcznej)" - -msgid "Show scrobble button" -msgstr "Pokazuj przycisk scrobblowania" - -msgid "Show love button" -msgstr "Pokazuj przycisk pokochania" - -msgid "Submit scrobbles every" -msgstr "Przesyłaj scrobble co" - -msgid " seconds" -msgstr " sek" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "Preferuj artystę albumu podczas wysyłania scrobbli" - -msgid "Show dialog for errors" -msgstr "Pokazuj okna z błędami" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Włącz scrobblowanie dla następujących źródeł:" - -msgid "Local file" -msgstr "Plik lokalny" - -msgid "CDDA" -msgstr "CD-Audio" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Strumień" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Zaloguj się" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Token użytkownika:" - -msgid "Covers" -msgstr "Okładki" - -msgid "Cover providers" -msgstr "Dostawcy okładek" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Wybierz dostawców używanych do wyszukiwania okładek." - -msgid "Authentication" -msgstr "Uwierzytelnianie" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Zapisywanie okładek albumów" - -msgid "Save album covers in album directory" -msgstr "Zapisuj okładki w katalogach albumów" - -msgid "Save album covers in cache directory" -msgstr "Zapisuj okładki w katalogu podręcznym" - -msgid "Save album covers as embedded cover" -msgstr "Zapisuj okładki w plikach utworów" - -msgid "Filename:" -msgstr "Nazwa pliku:" - -msgid "Pattern" -msgstr "Wzorzec" - -msgid "Random" -msgstr "Losowo" - -msgid "Overwrite existing file" -msgstr "Nadpisz istniejący plik" - -msgid "Lowercase filename" -msgstr "Nazwa pliku małymi literami" - -msgid "Replace spaces with dashes" -msgstr "Zamień znaki odstępu na myślniki" - -msgid "Lyrics" -msgstr "Tekst" - -msgid "Lyrics providers" -msgstr "Dostawcy tekstów" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Wybierz dostawców używanych do wyszukiwania tekstów." - -msgid "Network Proxy" -msgstr "Serwer pośredniczący" - -msgid "&Use the system proxy settings" -msgstr "&Używaj ustawień systemowych" - -msgid "Direct internet connection" -msgstr "Bezpośrednie połączenie z Internetem" - -msgid "&Manual proxy configuration" -msgstr "&Konfiguracja ręczna" - -msgid "HTTP proxy" -msgstr "Serwer pośredniczący HTTP" - -msgid "SOCKS proxy" -msgstr "Serwer pośredniczący SOCKS" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "Używaj uwierzytelniania" - -msgid "Username" -msgstr "Nazwa użytkownika" - -msgid "Password" -msgstr "Hasło" - -msgid "Use proxy settings for streaming" -msgstr "Używaj ustawień proxy do strumieniowania" - -msgid "Appearance" -msgstr "Wygląd" - -msgid "Style" -msgstr "Styl" - -msgid "Use system theme icons" -msgstr "Używaj ikon z motywu systemowego" - -msgid "Settings require restart." -msgstr "Ustawienia wymagają ponownego uruchomienia Strawberry." - -msgid "Tabbar colors" -msgstr "Kolory paska zakładek" - -msgid "&Use the system default color" -msgstr "&Używaj domyślnego koloru systemowego" - -msgid "Use custom color" -msgstr "Używaj własnego koloru" - -msgid "Use gradient background" -msgstr "Używaj gradientu tła" - -msgid "Select tabbar color:" -msgstr "Wybierz kolor paska zakładek:" - -msgid "Background image" -msgstr "Obraz tła" - -msgid "Default bac&kground image" -msgstr "Domyślny ob&raz tła" - -msgid "&No background image" -msgstr "&Bez obrazu tła" - -msgid "The album cover of the currently playing song" -msgstr "Okładka albumu odtwarzanego utworu" - -msgid "Albu&m cover" -msgstr "Okładka albu&mu" - -msgid "Custom image:" -msgstr "Własny obraz:" - -msgid "Browse..." -msgstr "Przeglądaj…" - -msgid "Position" -msgstr "Położenie" - -msgid "Upper Left" -msgstr "U góry po lewej" - -msgid "Upper Right" -msgstr "U góry po prawej" - -msgid "Middle" -msgstr "Po środku" - -msgid "Bottom Left" -msgstr "U dołu z lewej" - -msgid "Bottom Right" -msgstr "U dołu z prawej" - -msgid "Max cover size" -msgstr "Maksymalny rozmiar okładki" - -msgid "Stretch image to fill playlist" -msgstr "Rozciągnij obraz, aby wypełnić listę odtwarzania" - -msgid "Keep aspect ratio" -msgstr "Zachowaj proporcje" - -msgid "Do not cut image" -msgstr "Nie przycinaj obrazu" - -msgid "Blur amount" -msgstr "Stopień rozmycia" - -msgid "0px" -msgstr "0 px" - -msgid "Opacity" -msgstr "Poziom nieprzezroczystości" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "Rozmiary ikon" - -msgid "Playlist buttons" -msgstr "Lista odtwarzania" - -msgid "Tabbar large mode" -msgstr "Duży pasek zakładek" - -msgid "Play control buttons" -msgstr "Odtwarzacz" - -msgid "Configure buttons" -msgstr "Konfiguracja przycisków" - -msgid "Files, playlists and queue buttons" -msgstr "Pliki, listy odtwarzania i kolejka" - -msgid "Tabbar small mode" -msgstr "Mały pasek zakładek" - -msgid "Playlist playing song color" -msgstr "Kolor podświetlenia odtwarzanego utworu" - -msgid "System highlight color" -msgstr "Kolor systemowy" - -msgid "Custom color" -msgstr "Własny kolor" - -msgid "Select playlist playing song color:" -msgstr "Wybierz kolor:" - -msgid "Notifications" -msgstr "Powiadomienia" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry może pokazywać powiadomienia, gdy zmienia się ścieżka." - -msgid "Notification type" -msgstr "Rodzaj powiadomień" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Wyłączone" - -msgid "Show a &native desktop notification" -msgstr "Pokazuj &natywne powiadomienia pulpitu" - -msgid "Show a pretty OSD" -msgstr "Pokazuj ładne menu ekranowe (OSD)" - -msgid "Show a popup fro&m the system tray" -msgstr "Pokazuj powiadomienia z ikony zaso&bnika" - -msgid "General settings" -msgstr "Ustawienia ogólne" - -msgid "Popup duration" -msgstr "Czas powiadomienia" - -msgid "Disable duration" -msgstr "Wyłącz czas" - -msgid "Show a notification when I change the volume" -msgstr "Pokazuj powiadomienia o zmianie poziomu głośności" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Pokazuj powiadomienia o zmianie trybu powtarzania/losowania" - -msgid "Show a notification when I pause playback" -msgstr "Pokazuj powiadomienia o wstrzymaniu odtwarzania" - -msgid "Show a notification when I resume playback" -msgstr "Pokazuj powiadomienia o wznowieniu odtwarzania" - -msgid "Include album art in the notification" -msgstr "Dołącz okładkę albumu" - -msgid "Custom message settings" -msgstr "Własne ustawienia wiadomości" - -msgid "Use a custom message for notifications" -msgstr "Używaj niestandardowej treści powiadomień" - -msgid "Body" -msgstr "Treść" - -msgid "Pretty OSD options" -msgstr "Opcje ładnego menu ekranowego (OSD)" - -msgid "Background color" -msgstr "Kolor tła" - -msgid "Text options" -msgstr "Opcje tekstu" - -msgid "Choose font..." -msgstr "Wybierz font…" - -msgid "Choose color..." -msgstr "Wybierz kolor…" - -msgid "Background opacity" -msgstr "Nieprzezroczystość tła" - -msgid "Basic Blue" -msgstr "Prosty niebieski" - -msgid "Strawberry Red" -msgstr "Czerwony Strawberry" - -msgid "Custom..." -msgstr "Własny…" - -msgid "Enable fading" -msgstr "Włącz zanikanie" - -msgid "Equalizer" -msgstr "Korektor graficzny" - -msgid "Preset:" -msgstr "Ustawienie:" - -msgid "Enable equalizer" -msgstr "Włącz korektor graficzny" - -msgid "Enable stereo balancer" -msgstr "Włącz regulację stereo" - -msgid "Left" -msgstr "Lewy" - -msgid "Balance" -msgstr "Balans" - -msgid "Right" -msgstr "Prawy" - -msgid "About" -msgstr "O programie" - -msgid "Strawberry Error" -msgstr "Błąd Strawberry" - -msgid "Console" -msgstr "Konsola" - -msgid "Run" -msgstr "Uruchom" - -msgid "Edit track information" -msgstr "Edytuj informacje o ścieżce" - -msgid "Date created" -msgstr "Data utworzenia" - -msgid "Art Automatic" -msgstr "Automatycznie" - -msgid "Date modified" -msgstr "Data modyfikacji" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Ostatnio odtwarzane" - -msgid "Play count" -msgstr "Liczba odtworzeń" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Przepływność" - -msgid "Skip count" -msgstr "Liczba pominięć utworu" - -msgid "Path" -msgstr "Ścieżka" - -msgid "Filename" -msgstr "Nazwa pliku" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Wielkość pliku" - -msgid "Art Manual" -msgstr "Manualnie" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Wyzeruj licznik odtworzeń" - -msgid "Change art" -msgstr "Zmień okładkę" - -msgid "Embedded cover" -msgstr "Okładka wbudowana" - -msgid "Complete tags automatically" -msgstr "Automatycznie uzupełnij znaczniki" - -msgid "Compilation" -msgstr "Kompilacja" - -msgid "Tags" -msgstr "Tagi" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Uzupełnianie znaczników" - -msgid "Sorry" -msgstr "Przepraszam" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry nie znalazł wyników dla tego pliku" - -msgid "Select best possible match" -msgstr "Wybierz najlepsze dopasowanie" - -msgid "Add Stream" -msgstr "Dodaj strumień" - -msgid "Enter the URL of a stream:" -msgstr "Podaj adres URL strumienia:" - -msgid "Enter username and password" -msgstr "Podaj nazwę użytkownika i hasło" - -msgid "Import data from last.fm" -msgstr "Zaimportuj dane z last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Wybierz dane do zaimportowania z last.fm" - -msgid "Play counts" -msgstr "Liczba odtworzeń" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Uwaga: Liczba odtworzeń i „ostatnio odtwarzany” z last.fm całkowicie zastąpi bieżące dane dla pasujących utworów. Liczba odtworzeń zastąpi dane oparte na artystach i tytułach utworów dla tych samych albumów! Proszę zrobić kopię zapasową bazy danych przed rozpoczęciem! " - -msgid "Go!" -msgstr "Ruszaj!" - -msgid "Close" -msgstr "Zamknij" - -msgid "Cancel" -msgstr "Anuluj" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "Nie pokazuj tego ponownie." - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Przełącz pomiędzy czasem odtwarzania a czasem pozostałym" - -msgid "You are not signed in." -msgstr "Wylogowano." - -msgid "Sign out" -msgstr "Wyloguj" - -msgid "Signing in..." -msgstr "Logowanie…" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Artyści" - -msgid "Albums" -msgstr "Albumy" - -msgid "Songs" -msgstr "Utwory" - -msgid "Refresh catalogue" -msgstr "Odśwież katalog" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "artyści" - -msgid "albums" -msgstr "albumy" - -msgid "songs" -msgstr "utwory" - -msgid "Organize Files" -msgstr "Organizuj pliki" - -msgid "Destination" -msgstr "Miejsce docelowe" - -msgid "After copying..." -msgstr "Po skopiowaniu…" - -msgid "Keep the original files" -msgstr "Zachowaj oryginalne pliki" - -msgid "Delete the original files" -msgstr "Usuń oryginalne pliki" - -msgid "Naming options" -msgstr "Opcje nazewnictwa" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Znaczniki zaczynają się od %, na przykład: %artist %album %title

\n\n" -"

Fragmenty tekstu zawierające znaczniki można umieścić w nawiasach \n" -"klamrowych. Jeżeli znacznik będzie miał pustą wartość, zamknięty fragment \n" -"tekstu zostanie ukryty.

" - -msgid "Insert..." -msgstr "Wstaw…" - -msgid "Remove problematic characters from filenames" -msgstr "Usuń problematyczne znaki z nazw plików" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Ogranicz do znaków dozwolonych na systemach plików FAT" - -msgid "Restrict characters to ASCII" -msgstr "Ogranicz zestaw znaków do ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Pozwól na rozszerzony zestaw znaków ASCII" - -msgid "Replace spaces with underscores" -msgstr "Zamień znaki odstępu na podkreślniki" - -msgid "Overwrite existing files" -msgstr "Nadpisz istniejące pliki" - -msgid "Copy album cover artwork" -msgstr "Skopiuj okładki albumów" - -msgid "Safely remove the device after copying" -msgstr "Bezpiecznie usuń urządzenie po skopiowaniu" - -msgid "Press a key" -msgstr "Naciśnij klawisz" - -msgid "Global Shortcuts" -msgstr "Skróty globalne" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Używaj skrótów Gnome (GSD) jeśli możliwe" - -msgid "Open..." -msgstr "Otwórz…" - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Używaj skrótów KDE (KGlobalAccel) jeśli możliwe" - -msgid "Use X11 shortcuts when available" -msgstr "Używaj skrótów X11 jeśli możliwe" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Aby używać globalnych skrótów klawiaturowych w Strawberry, musisz uruchomić Preferencje systemowe i pozwolić Strawberry „sterować komputerem”." - -msgid "Shortcut" -msgstr "Skrót" - -msgctxt "Category label" -msgid "Action" -msgstr "Akcja" - -msgid "&None" -msgstr "&Brak" - -msgid "&Default" -msgstr "&Domyślny" - -msgid "&Custom" -msgstr "&Własny" - -msgid "Change shortcut..." -msgstr "Zmień skrót…" - -msgid "Device Properties" -msgstr "Właściwości urządzenia" - -msgid "Icon" -msgstr "Ikona" - -msgid "Hardware information" -msgstr "Informacje sprzętowe" - -msgid "Hardware information is only available while the device is connected." -msgstr "Informacje sprzętowe są widoczne tylko wtedy, gdy urządzenie jest podłączone." - -msgid "Information" -msgstr "Informacje" - -msgid "Supported formats" -msgstr "Obsługiwane formaty" - -msgid "This device supports the following file formats:" -msgstr "To urządzenie obsługuje następujące formaty plików:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry potrafi automatycznie konwertować muzykę kopiowaną na to urządzenie do formatu, który potrafi ono odtwarzać." - -msgid "Do not convert any music" -msgstr "Nic nie konwertuj" - -msgid "Convert any music that the device can't play" -msgstr "Przekonwertuj muzykę, której nie może odtworzyć urządzenie" - -msgid "Convert all music" -msgstr "Przekonwertuj całą muzykę" - -msgid "Preferred format" -msgstr "Preferowany format" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "To urządzenie musi być podłączone i otwarte zanim Strawberry zobaczy, jakie formaty plików ono obsługuje." - -msgid "Open device" -msgstr "Otwórz urządzenie" - -msgid "Querying device..." -msgstr "Odpytywanie urządzenia…" - -msgid "File formats" -msgstr "Formaty plików" - -msgid "Transcode Music" -msgstr "Transkoduj muzykę" - -msgid "Files to transcode" -msgstr "Pliki do transkodowania" - -msgid "Directory" -msgstr "Katalog" - -msgid "Add..." -msgstr "Dodaj…" - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Dodaj wszystkie ścieżki z podanego katalogu i wszystkich jego podkatalogów." - -msgid "Import..." -msgstr "Importuj…" - -msgid "Output options" -msgstr "Opcje wyjścia" - -msgid "Audio format" -msgstr "Format dźwięku" - -msgid "Options..." -msgstr "Opcje…" - -msgid "Alongside the originals" -msgstr "Wraz z oryginałami" - -msgid "Select..." -msgstr "Wybierz…" - -msgid "Progress" -msgstr "Postęp" - -msgid "Details..." -msgstr "Szczegóły…" - -msgid "Transcoder Log" -msgstr "Dziennik transkodera" - -msgid " kbps" -msgstr " kb/s" - -msgid "Profile" -msgstr "Profil" - -msgid "Main profile (MAIN)" -msgstr "Profil główny (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Profil niskiej złożoności (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Profil skalowalnej częstotliwości próbkowania (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Profil przewidywania długoterminowego (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Użyj chwilowego kształtowania szumu" - -msgid "Allow mid/side encoding" -msgstr "Pozwól na kodowanie mid-side" - -msgid "Block type" -msgstr "Rodzaj bloku" - -msgid "Normal block type" -msgstr "Zwykły rodzaj bloku" - -msgid "No short blocks" -msgstr "Bez krótkich bloków" - -msgid "No long blocks" -msgstr "Bez długich bloków" - -msgid "Transcoding options" -msgstr "Opcje transkodowania" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Jakość" - -msgid "Fast" -msgstr "Szybki" - -msgid "Best" -msgstr "Najlepsza" - -msgid "Use bitrate management engine" -msgstr "Używaj silnika zarządzania przepływnością" - -msgid "Target bitrate" -msgstr "Docelowa przepływność" - -msgid "Minimum bitrate" -msgstr "Minimalna przepływność" - -msgid "disabled" -msgstr "wyłączony" - -msgid "Maximum bitrate" -msgstr "Maksymalna przepływność" - -msgid "automatic" -msgstr "automatycznie" - -msgid "Average bitrate" -msgstr "Średnia przepływność" - -msgid "Encoding mode" -msgstr "Tryb kodowania" - -msgid "Auto" -msgstr "Automatycznie" - -msgid "Ultra wide band (UWB)" -msgstr "Ultraszerokie pasmo (UWB)" - -msgid "Wide band (WB)" -msgstr "Szerokie pasmo (WB)" - -msgid "Narrow band (NB)" -msgstr "Wąskie pasmo (NB)" - -msgid "Variable bit rate" -msgstr "Zmienna przepływność (VBR)" - -msgid "Voice activity detection" -msgstr "Wykrywanie aktywności głosowej" - -msgid "Discontinuous transmission" -msgstr "Nieciągła transmisja (DTX)" - -msgid "Encoding complexity" -msgstr "Złożoność kodowania" - -msgid "Frames per buffer" -msgstr "Klatki na bufor" - -msgid "Optimize for &quality" -msgstr "Optymalizuj na rzecz &jakości" - -msgid "Opti&mize for bitrate" -msgstr "Opty&malizuj na rzecz przepływności" - -msgid "Constant bitrate" -msgstr "Stała przepływność (CBR)" - -msgid "Encoding engine quality" -msgstr "Jakość silnika kodowania" - -msgid "Standard" -msgstr "Standardowy" - -msgid "High" -msgstr "Wysoki" - -msgid "Force mono encoding" -msgstr "Wymuś kodowanie mono" - -msgid "Transcoding" -msgstr "Transkodowanie" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Te ustawienia są używane w „Transkodowaniu muzyki” oraz podczas konwertowania muzyki przed kopiowaniem jej na urządzenie." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "Adres URL serwera" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Ustawienia" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "Weryfikuj certyfikat serwera" - -msgid "Download album covers" -msgstr "Pobieraj okładki albumów" - -msgid "Server-side scrobbling" -msgstr "Scrobblowanie po stronie serwera." - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Obsługa Tidal jest nieoficjalna i wymaga do działania tokenu API z zarejestrowanej aplikacji. Nie możemy pomóc Ci w jego zdobyciu." - -msgid "Use OAuth" -msgstr "Używaj OAuth" - -msgid "Client ID" -msgstr "Identyfikator klienta" - -msgid "API Token" -msgstr "Token API" - -msgid "Audio quality" -msgstr "Jakość dźwięku" - -msgid "Search delay" -msgstr "Opóźnienie wyszukiwania" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Limit wyszukiwania artystów" - -msgid "Albums search limit" -msgstr "Limit wyszukiwania albumów" - -msgid "Songs search limit" -msgstr "Limit wyszukiwania utworów" - -msgid "Fetch entire albums when searching songs" -msgstr "Pobieraj całe albumy podczas wyszukiwania utworów" - -msgid "Album cover size" -msgstr "Rozmiar okładki albumu" - -msgid "Stream URL method" -msgstr "Metoda strumieniowania URL" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Obsługa Qobuz nie jest oficjalna i wymaga ID aplikacji i tokenu. Musisz utworzyć je samodzielnie." - -msgid "App ID" -msgstr "ID aplikacji" - -msgid "App Secret" -msgstr "Token aplikacji" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "Pasek nastroju" - -msgid "Show a moodbar in the track progress bar" -msgstr "Pokazuj pasek postępu ścieżki w formie paska nastroju" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Zapisuj pliki .mood bezpośrednio w katalogach utworów" - -msgid "Enabled" -msgstr "Włączony" - -msgid "Return to Strawberry" -msgstr "Powróć do Strawberry" - -msgid "Success!" -msgstr "Sukces!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Proszę zamknąć przeglądarkę i powrócić do Strawberry." - diff --git a/src/translations/pt_BR.po b/src/translations/pt_BR.po deleted file mode 100644 index ffa6b1aa..00000000 --- a/src/translations/pt_BR.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: pt-BR\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Portuguese, Brazilian\n" -"Language: pt_BR\n" -"PO-Revision-Date: 2024-10-01 18:51\n" - -msgid "All Files (*)" -msgstr "Todos os arquivos (*)" - -msgid "Context" -msgstr "Contexto" - -msgid "Collection" -msgstr "Biblioteca" - -msgid "Queue" -msgstr "" - -msgid "Playlists" -msgstr "" - -msgid "Smart playlists" -msgstr "" - -msgid "Files" -msgstr "Arquivos" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "Dispositivos" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Mostrar todas as músicas" - -msgid "Show only duplicates" -msgstr "Mostrar somente os duplicados" - -msgid "Show only untagged" -msgstr "Mostrar somente os sem tag" - -msgid "Configure collection..." -msgstr "Configurar biblioteca..." - -msgid "Play" -msgstr "Reproduzir" - -msgid "Stop after this track" -msgstr "Parar depois desta música" - -msgid "Toggle queue status" -msgstr "Mudar status da fila" - -msgid "Queue selected tracks to play next" -msgstr "" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "" - -msgid "Copy URL(s)..." -msgstr "" - -msgid "Show in collection..." -msgstr "Mostrar na biblioteca..." - -msgid "Show in file browser..." -msgstr "Mostrar no navegador de arquivos..." - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "Copiar para biblioteca..." - -msgid "Move to collection..." -msgstr "Mover para biblioteca..." - -msgid "Copy to device..." -msgstr "Copiar para o dispositivo..." - -msgid "Delete from disk..." -msgstr "Apagar do disco..." - -msgid "Check for updates..." -msgstr "Procurar por atualizações..." - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Pausar" - -msgid "Dequeue track" -msgstr "Retirar faixa da fila" - -msgid "Dequeue selected tracks" -msgstr "Retirar faixas selecionadas da fila" - -msgid "Queue track" -msgstr "Colocar a faixa na fila" - -msgid "Queue selected tracks" -msgstr "Colocar as faixas selecionadas na fila" - -msgid "Queue to play next" -msgstr "" - -msgid "Unskip track" -msgstr "Não pular faixa" - -msgid "Unskip selected tracks" -msgstr "Não pular faixas selecionadas" - -msgid "Skip track" -msgstr "Pular faixa" - -msgid "Skip selected tracks" -msgstr "Pular faixas selecionadas" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Mudar %1 para \"%2\"..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Editar tag \"%1\"..." - -msgid "Add to another playlist" -msgstr "Adicionar a outra lista de reprodução" - -msgid "New playlist" -msgstr "Nova lista de reprodução" - -msgid "Add file" -msgstr "Adicionar arquivo" - -msgid "Music" -msgstr "Música" - -msgid "Add folder" -msgstr "Adicionar pasta" - -msgid "Clear playlist" -msgstr "Limpar lista de reprodução" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "" - -msgid "Error" -msgstr "Erro" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Nenhuma das músicas selecionadas estão adequadas para copiar para um dispositivo" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "A versão do Strawberry para a qual você atualizou requer um reescaneamento completo da biblioteca por causa dos novos recursos listados abaixo:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Gostaria de realizar um reescaneamento completo agora?" - -msgid "Collection rescan notice" -msgstr "Aviso de reescaneamento da biblioteca" - -msgid "Usage" -msgstr "Utilização" - -msgid "options" -msgstr "opções" - -msgid "URL(s)" -msgstr "Site(s)" - -msgid "Player options" -msgstr "Opções do player" - -msgid "Start the playlist currently playing" -msgstr "Iniciar a lista que está em execução" - -msgid "Play if stopped, pause if playing" -msgstr "Reproduzir se estiver parado, pausar se estiver tocando" - -msgid "Pause playback" -msgstr "Pausar reprodução" - -msgid "Stop playback" -msgstr "Parar reprodução" - -msgid "Stop playback after current track" -msgstr "Parar reprodução depois da música atual" - -msgid "Skip backwards in playlist" -msgstr "Pular para a música anterior da lista" - -msgid "Skip forwards in playlist" -msgstr "Pular para a próxima música da lista" - -msgid "Set the volume to percent" -msgstr "Mudar volume para por cento" - -msgid "Increase the volume by 4 percent" -msgstr "" - -msgid "Decrease the volume by 4 percent" -msgstr "" - -msgid "Increase the volume by percent" -msgstr "Aumentar o volume por porcentagem " - -msgid "Decrease the volume by percent" -msgstr "Diminuir o volume por porcentagem " - -msgid "Seek the currently playing track to an absolute position" -msgstr "Avançar na faixa atual para uma posição absoluta" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Avançar na faixa atual por um tempo relativo" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Reiniciar a faixa, ou reproduzir a faixa anterior, se dentro de 8 segundos começar." - -msgid "Playlist options" -msgstr "Opções da lista de reprodução" - -msgid "Create a new playlist with files" -msgstr "" - -msgid "Append files/URLs to the playlist" -msgstr "Acrescentar arquivos/sites para a lista de reprodução" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Carregar arquivos/sites, substiuindo a lista de reprodução atual" - -msgid "Play the th track in the playlist" -msgstr "Tocar a ª faixa da lista" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "Outras opções" - -msgid "Display the on-screen-display" -msgstr "Mostrar na tela" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Ativar/desativar visibilidade das notificações em modo bonito" - -msgid "Change the language" -msgstr "Alterar idioma" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "Equivalente ao --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Equivalente ao --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Lista separada por vírgulas de classe: o nível, o nível é 0-3" - -msgid "Print out version information" -msgstr "Imprimir informação da versão" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Verificar integridade" - -msgid "Database corruption detected." -msgstr "" - -msgid "Backing up database" -msgstr "Cópia do banco de dados" - -msgid "Deleting files" -msgstr "Apagando arquivos" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Desconhecido" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "" - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "A reprodução de CDs só está disponível com o mecanismo GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Lista de Reprodução" - -msgid "1 day" -msgstr "1 dia" - -#, qt-format -msgid "%1 days" -msgstr "%1 dias" - -msgid "Today" -msgstr "Hoje" - -msgid "Yesterday" -msgstr "Ontem" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 dias atrás" - -msgid "Tomorrow" -msgstr "Amanhã" - -#, qt-format -msgid "In %1 days" -msgstr "Em %1 dias" - -msgid "Next week" -msgstr "Próxima semana" - -#, qt-format -msgid "In %1 weeks" -msgstr "Em %1 semanas" - -msgid "Show in file browser" -msgstr "" - -msgid "Too many songs selected." -msgstr "" - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "" - -msgid "Buffering" -msgstr "Armazenando em buffer" - -msgid "Framerate" -msgstr "Quadros por segundo" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Baixo (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Médio (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Alto (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Super alto (%1 fps)" - -msgid "No analyzer" -msgstr "Sem visualização" - -msgid "Block analyzer" -msgstr "Analizador de bloco" - -msgid "Boom analyzer" -msgstr "Explosão" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Pré-amplificação" - -msgid "Custom" -msgstr "Personalizado" - -msgid "Classical" -msgstr "Clássica" - -msgid "Club" -msgstr "Clube" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "Graves" - -msgid "Full Treble" -msgstr "Muito Agudo" - -msgid "Full Bass + Treble" -msgstr "Graves + Agudos" - -msgid "Laptop/Headphones" -msgstr "Notebook / fones de ouvido" - -msgid "Large Hall" -msgstr "Salão Grande" - -msgid "Live" -msgstr "Ao vivo" - -msgid "Party" -msgstr "Festa" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "Suave" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "Salvar pré-regulagem" - -msgid "Name" -msgstr "Nome" - -msgid "Delete preset" -msgstr "Apagar pré-regulagem" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Tem certeza que deseja apagar a pré-regulagem \"%1\" ?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 dB" - -msgid "Filetype" -msgstr "Tipos de arquivos" - -msgid "Length" -msgstr "Duração" - -msgid "Samplerate" -msgstr "Taxa de amostragem" - -msgid "Bit depth" -msgstr "Profundidade de bits" - -msgid "Bitrate" -msgstr "Taxa de Amostragem" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "" - -msgid "Show song technical data" -msgstr "" - -msgid "Show song lyrics" -msgstr "" - -msgid "Automatically search for song lyrics" -msgstr "" - -msgid "No song playing" -msgstr "Nenhuma música tocando" - -#, qt-format -msgid "%1 song" -msgstr "" - -#, qt-format -msgid "%1 songs" -msgstr "" - -#, qt-format -msgid "%1 artist" -msgstr "" - -#, qt-format -msgid "%1 artists" -msgstr "" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "Vários artistas" - -msgid "Loading..." -msgstr "Carregando..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "Atualizando biblioteca" - -#, qt-format -msgid "Updating %1" -msgstr "Atualizando %1" - -msgid "Your collection is empty!" -msgstr "Sua biblioteca está vazia!" - -msgid "Click here to add some music" -msgstr "Clique aqui para adicionar algumas músicas" - -msgid "Append to current playlist" -msgstr "Adicionar à lista de reprodução atual" - -msgid "Replace current playlist" -msgstr "Substituir lista de reprodução atual" - -msgid "Open in new playlist" -msgstr "Abrir em nova lista de reprodução" - -msgid "Search for this" -msgstr "Buscar por isso" - -msgid "Edit track information..." -msgstr "Editar informações da faixa..." - -msgid "Edit tracks information..." -msgstr "Editar informações da faixa..." - -msgid "Rescan song(s)" -msgstr "" - -msgid "Show in various artists" -msgstr "Exibir em vários artistas" - -msgid "Don't show in various artists" -msgstr "Não exibir em vários artistas" - -msgid "There are other songs in this album" -msgstr "Há outras músicas neste álbum" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "Exibir" - -msgid "Group by" -msgstr "Organizar por" - -msgid "Display options" -msgstr "Opções de exibição" - -msgid "Group by Album artist/Album" -msgstr "Organizar por Artista do álbum/Álbum" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "Organizar por Artista/Álbum" - -msgid "Group by Artist/Album - Disc" -msgstr "" - -msgid "Group by Artist/Year - Album" -msgstr "Organizar por Artista/Ano do Álbum" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Genre/Album artist/Album" -msgstr "" - -msgid "Group by Genre/Artist/Album" -msgstr "Organizar por Gênero/Artista/Álbum" - -msgid "Group by Album Artist" -msgstr "" - -msgid "Group by Artist" -msgstr "Organizar por Artista" - -msgid "Group by Album" -msgstr "Organizar por Álbum" - -msgid "Group by Genre/Album" -msgstr "Organizar por Gênero/Álbum" - -msgid "Advanced grouping..." -msgstr "Organização avançada..." - -msgid "Grouping Name" -msgstr "Nome do agrupamento" - -msgid "Grouping name:" -msgstr "Nome do agrupamento:" - -msgid "First level" -msgstr "Primeiro nível" - -msgid "Second Level" -msgstr "Segundo nível" - -msgid "Third Level" -msgstr "Terceiro nível" - -msgid "None" -msgstr "Nenhum" - -msgid "Album artist" -msgstr "Artista do álbum" - -msgid "Artist" -msgstr "Artista" - -msgid "Album" -msgstr "Álbum" - -msgid "Album - Disc" -msgstr "Álbum - Disco" - -msgid "Year - Album" -msgstr "Ano - Álbum" - -msgid "Year - Album - Disc" -msgstr "" - -msgid "Original year - Album" -msgstr "Ano original - álbum" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "Disco" - -msgid "Year" -msgstr "Ano" - -msgid "Original year" -msgstr "Ano original" - -msgid "Genre" -msgstr "Gênero" - -msgid "Composer" -msgstr "Compositor" - -msgid "Performer" -msgstr "Artista" - -msgid "Grouping" -msgstr "Agrupamento" - -msgid "File type" -msgstr "Tipo de arquivo" - -msgid "Format" -msgstr "Formato" - -msgid "Sample rate" -msgstr "Taxa de amostragem" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Tí­tulo" - -msgid "Track" -msgstr "Faixa" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Comentário" - -msgid "Source" -msgstr "Fonte" - -msgid "Mood" -msgstr "" - -msgid "Rating" -msgstr "" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Carregar lista de reprodução" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Nenhum resultado encontrado. Limpe a caixa de busca para ver a lista de reprodução completa novamente." - -msgid "stop" -msgstr "parar" - -msgid "Never" -msgstr "Nunca" - -msgid "&Hide..." -msgstr "&Ocultar..." - -msgid "&Stretch columns to fit window" -msgstr "&Esticar colunas para ajustar a janela" - -msgid "&Reset columns to default" -msgstr "" - -msgid "&Lock rating" -msgstr "" - -msgid "&Align text" -msgstr "&Alinhar texto" - -msgid "&Left" -msgstr "&Esquerda" - -msgid "&Center" -msgstr "&Centro" - -msgid "&Right" -msgstr "&Direita" - -#, qt-format -msgid "&Hide %1" -msgstr "&Ocultar %1" - -msgid "New folder" -msgstr "Nova pasta" - -msgid "Delete" -msgstr "Apagar" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Salvar lista de reprodução" - -msgid "Enter the name of the folder" -msgstr "Digite o nome da pasta" - -msgid "Copy to device" -msgstr "" - -msgid "Playlist must be open first." -msgstr "" - -msgid "Remove playlists" -msgstr "Remover listas de reprodução" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Você está prestes a apagar %1 listas de seus favoritos, tem certeza?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Você pode favoritar playlsts clicando no ícone de estrela, próximo ao nome da playlist" - -msgid "Favorited playlists will be saved here" -msgstr "Playlists favoritas serão salvas aqui" - -msgid "Couldn't create playlist" -msgstr "Não foi possível criar a lista de reprodução" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Salvar lista de reprodução" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "%1 selecionado(s) de" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automático" - -msgid "Relative" -msgstr "Relativo" - -msgid "Absolute" -msgstr "Absoluto" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "Fechar lista de reprodução" - -msgid "Rename playlist..." -msgstr "Renomear lista de reprodução..." - -msgid "Save playlist..." -msgstr "Salvar lista de reprodução..." - -msgid "Rename playlist" -msgstr "Renomear lista de reprodução" - -msgid "Enter a new name for this playlist" -msgstr "Digite um novo nome para esta lista" - -msgid "Remove playlist" -msgstr "Remover lista de reprodução" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Você está prestes a remover uma lista de reprodução que não é parte de suas listas de reproduções favoritas: a lista de reprodução será removida (esta ação não pode ser desfeita).\n" -"Deseja continuar?" - -msgid "Warn me when closing a playlist tab" -msgstr "Avisar-me quando fechar uma guia de lista de reprodução" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Essa opção pode ser alterada nas preferências de \"Comportamento\"" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "Adicionar %n músicas" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "Remover %n músicas" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "mover %n músicas" - -msgid "sort songs" -msgstr "Classificação das músicas" - -msgid "shuffle songs" -msgstr "músicas aleatórias" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Erro ao carregar o CD de áudio." - -msgid "Loading tracks" -msgstr "Carregando faixas" - -msgid "Loading tracks info" -msgstr "Carregando informações da faixa" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Todas as listas de reprodução (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 listas de reprodução (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "" - -msgid "Collection search" -msgstr "" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "" - -msgid "Search options" -msgstr "" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "" - -#, qt-format -msgid "%1 songs found" -msgstr "" - -msgid "after" -msgstr "" - -msgid "before" -msgstr "" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "" - -msgid "contains" -msgstr "" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "" - -msgid "Days" -msgstr "" - -msgid "Weeks" -msgstr "" - -msgid "Months" -msgstr "" - -msgid "Years" -msgstr "" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "" - -msgid "Newest tracks" -msgstr "" - -msgid "50 random tracks" -msgstr "" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "" - -msgid "Last played" -msgstr "Última reprodução" - -msgid "Most played" -msgstr "" - -msgid "Favourite tracks" -msgstr "" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "" - -msgid "Dynamic random mix" -msgstr "" - -msgid "New smart playlist..." -msgstr "" - -msgid "Play next" -msgstr "" - -msgid "Edit smart playlist..." -msgstr "" - -msgid "Delete smart playlist" -msgstr "" - -msgid "Smart playlist" -msgstr "" - -msgid "Playlist type" -msgstr "" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "" - -msgid "Finish" -msgstr "" - -msgid "Choose a name for your smart playlist" -msgstr "" - -msgid "Abort" -msgstr "Abortar" - -msgid "All albums" -msgstr "Todos os álbuns" - -msgid "Albums with covers" -msgstr "Álbuns com capas" - -msgid "Albums without covers" -msgstr "Álbuns sem capas" - -msgid "Really cancel?" -msgstr "Deseja realmente cancelar?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Fechar esta janela irá parar a busca por capas de álbuns" - -msgid "Don't stop!" -msgstr "Não parar!" - -msgid "All artists" -msgstr "Todos os artistas" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Conseguiu %1 capa(s) de %2 (%3 falharam)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 transferido" - -msgid "Export finished" -msgstr "Exportação terminou" - -msgid "No covers to export." -msgstr "Não há capas para exportar." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Exportado %1 capa(s) de %2 (%3 pulado)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Capas do %1" - -msgid "Search" -msgstr "Pesquisar" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Imagens (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Imagens (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Todos os arquivos (*)" - -msgid "Load cover from disk..." -msgstr "Carregar capa do disco..." - -msgid "Save cover to disk..." -msgstr "Gravar capa para o disco..." - -msgid "Load cover from URL..." -msgstr "Carregar capa da URL..." - -msgid "Search for album covers..." -msgstr "Procurar por capas dos álbuns..." - -msgid "Unset cover" -msgstr "Capa não fixada" - -msgid "Delete cover" -msgstr "" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "Exibir em tamanho real..." - -msgid "Search automatically" -msgstr "Buscar automaticamente" - -msgid "Load cover from disk" -msgstr "Carregar capa do disco" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "Desconhecido" - -msgid "Save album cover" -msgstr "Salvar capa do álbum" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "Total de requisições de rede feitas" - -msgid "Average image size" -msgstr "Tamanho médio de imagem" - -msgid "Total bytes transferred" -msgstr "Total de bytes transferido" - -msgid "Fetching cover error" -msgstr "Erro ao buscar a capa" - -msgid "The site you requested does not exist!" -msgstr "O site que você pediu não existe!" - -msgid "The site you requested is not an image!" -msgstr "O site que você pediu não é uma imagem!" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "Geral" - -msgid "User interface" -msgstr "Interface" - -msgid "Streaming" -msgstr "" - -msgid "Add directory..." -msgstr "Adicionar diretório..." - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "" - -msgid "No provider selected." -msgstr "" - -msgid "Authentication failed" -msgstr "Falha na autenticação" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Escolha uma imagem de fundo" - -msgid "OSD Preview" -msgstr "Pré-visualização de informações na tela" - -msgid "Drag to reposition" -msgstr "Arraste para reposicionar" - -msgid "About Strawberry" -msgstr "Sobre o Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "" - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "" - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "" - -msgid "Contributors" -msgstr "" - -msgid "Clementine authors" -msgstr "" - -msgid "Clementine contributors" -msgstr "" - -msgid "Thanks to" -msgstr "" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "" - -msgid "(different across multiple songs)" -msgstr "(diferentes em várias músicas)" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "Anterior" - -msgid "Next" -msgstr "Próximo" - -msgid "Saving tracks" -msgstr "Gravando faixas" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Capa não definida" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Tags originais" - -msgid "Suggested tags" -msgstr "Tags sugeridas" - -msgid "Delete files" -msgstr "Excluir arquivos" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Barra lateral grande" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Barra lateral compacta" - -msgid "Plain sidebar" -msgstr "Barra lateral simples" - -msgid "Tabs on top" -msgstr "Mostrar abas no topo" - -msgid "Icons on top" -msgstr "Ícones acima" - -msgid "Available" -msgstr "Disponível" - -msgid "New songs" -msgstr "Novas músicas" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Usado" - -msgid "Clear" -msgstr "Limpar" - -msgid "Reset" -msgstr "Redefinir" - -msgid "Small album cover" -msgstr "Capa pequena de álbum" - -msgid "Large album cover" -msgstr "Capa grande de álbum" - -msgid "Fit cover to width" -msgstr "Ajustar capa à largura" - -msgid "Show above status bar" -msgstr "Mostrar acima da barra de status" - -msgid "You are signed in." -msgstr "Você está logado." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Você está logado como %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Expira em %1" - -#, qt-format -msgid "disc %1" -msgstr "disco %1" - -#, qt-format -msgid "track %1" -msgstr "faixa %1" - -msgid "Paused" -msgstr "Pausado" - -msgid "Stopped" -msgstr "Parado" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Parar de reproduzir depois desta faixa: %1" - -msgid "On" -msgstr "Ligado" - -msgid "Off" -msgstr "Desligado" - -msgid "Playlist finished" -msgstr "A lista de reprodução terminou" - -#, qt-format -msgid "Volume %1%" -msgstr "" - -msgid "Don't shuffle" -msgstr "Não embaralhar" - -msgid "Shuffle all" -msgstr "Embaralhar tudo" - -msgid "Shuffle tracks in this album" -msgstr "Embaralhar faixas dos albuns" - -msgid "Shuffle albums" -msgstr "Embaralhar albuns" - -msgid "Don't repeat" -msgstr "Não repetir" - -msgid "Repeat track" -msgstr "Repetir uma faixa" - -msgid "Repeat album" -msgstr "Repetir um álbum" - -msgid "Repeat playlist" -msgstr "Repetir lista de reprodução" - -msgid "Stop after every track" -msgstr "Parar depois de todas as faixas" - -msgid "Intro tracks" -msgstr "Introdução das faixas" - -#, qt-format -msgid "Configure %1..." -msgstr "Configurar %1..." - -msgid "Add to artists" -msgstr "Adicionar aos artistas" - -msgid "Add to albums" -msgstr "Adicionar aos álbuns" - -msgid "Add to songs" -msgstr "Adicionar às músicas" - -msgid "Enter search terms above to find music" -msgstr "Insira os termos de busca acima para encontrar as músicas" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "" - -msgid "Remove from favorites" -msgstr "" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "" - -msgid "Open URL in web browser?" -msgstr "" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Resposta inválida do servidor web. Faltando o token. " - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "Autenticação no ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "" - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "Inicial do artista" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "Extensão de arquivo" - -msgid "Error copying songs" -msgstr "Erro ao copiar músicas" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Houve problemas na cópia de algumas músicas. Os seguintes arquivos não puderam ser copiados:" - -msgid "Error deleting songs" -msgstr "Erro ao apagar músicas" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Houve problemas ao deletar algumas músicas. Os seguintes arquivos não puderam ser deletados:" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Incapaz de criar o elemento GStreamer \"%1\" - confira se você possui todos os plugins requeridos pelo GStreamer instalados" - -#, qt-format -msgid "Successfully written %1" -msgstr "%1 gravado com sucesso" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Convertendo %1 arquivos usando %2 núcleos" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Erro processando %1:%2" - -#, qt-format -msgid "Starting %1" -msgstr "Iniciando %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Não foi possível encontrar um codificador para %1, verifique se você tem os plugins corretos do GStreamer instalados" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Não foi possível encontrar um multiplexador para %1, verifique se você tem os plugins corretos do GStreamer instalados" - -msgid "Start transcoding" -msgstr "Começar conversão" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n faltando" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n finalizado" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n falhou" - -msgid "Add files to transcode" -msgstr "Adicionar arquivos para converter" - -msgid "Open a directory to import music from" -msgstr "Abrir uma pasta para importar músicas" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "Mudo" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Pressione uma combinação de teclas para %1..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "O comando \"%1\" não pôde ser iniciado." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Atalho para %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "D-Bus path" -msgstr "Localização do D-Bus" - -msgid "Serial number" -msgstr "Número de série" - -msgid "Mount points" -msgstr "Pontos de montagem" - -msgid "Partition label" -msgstr "Nome da partição" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Conectar dispositivo" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Esta é a primeira vez que você conecta este dispositivo. O Strawberry vai escaneá-lo agora para achar músicas - isso pode levar algum tempo." - -msgid "This device will not work properly" -msgstr "Este dispositivo não funcionará corretamente" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Este é um dispositivo MTP, mas você compilou o Strawberry sem suporte a libmtp" - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Se você continar, este dispositivo funcionará lentamente e as músicas copiadas para ele podem não funcionar." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Este é um iPod, mas você compilou o Strawberry sem suporte a libgpod" - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Este tipo de dispositivo não é suportado: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Atualizando %1%..." - -msgid "Not connected" -msgstr "Desconectado" - -msgid "Not mounted - double click to mount" -msgstr "Não montado - clique duas vezes para montar" - -msgid "Double click to open" -msgstr "Clique duplo para abrir" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 música%2" - -msgid "Safely remove device" -msgstr "Remover o dispositivo com segurança" - -msgid "Forget device" -msgstr "Esquecer dispositivo" - -msgid "Device properties..." -msgstr "Propriedades do dispositivo..." - -msgid "Delete from device..." -msgstr "Apagar do dispositivo..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Esquecer um dispositivo irá removê-lo desta lista e o Strawberry terá que examinar todas as músicas de novo, da próxima vez que você conectá-lo." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Estes arquivos serão deletados do dispositivo, tem certeza que deseja continuar?" - -msgid "Model" -msgstr "Modelo" - -msgid "Manufacturer" -msgstr "Fabricante" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Carregando banco de dados do iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Ocorreu um erro no carregamento do banco de dados do iTunes" - -msgid "Mount point" -msgstr "Ponto de montagem" - -msgid "Device" -msgstr "Dispositivo" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Carregando dispositivo MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Erro ao conectar ao dispositivo MTP %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -msgid "Server URL is invalid." -msgstr "" - -msgid "Missing username or password." -msgstr "" - -msgid "Subsonic server URL is invalid." -msgstr "" - -msgid "Missing Subsonic username or password." -msgstr "" - -msgid "Retrieving albums..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "" - -msgid "Configuration incomplete" -msgstr "Configuração incompleta" - -msgid "Missing server url, username or password." -msgstr "" - -msgid "Configuration incorrect" -msgstr "Configuração incorreta" - -msgid "Test successful!" -msgstr "" - -msgid "Test failed!" -msgstr "" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "" - -msgid "Missing Tidal username." -msgstr "" - -msgid "Missing Tidal password." -msgstr "" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Não autenticado no Tidal e atingido o limite de tentativas de login." - -msgid "Not authenticated with Tidal." -msgstr "Não autenticado no Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "" - -msgid "Authenticating..." -msgstr "Autenticando..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "Nenhuma correspondência." - -msgid "Cancelled." -msgstr "Cancelado." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "" - -msgid "Missing API token." -msgstr "" - -msgid "Missing username." -msgstr "" - -msgid "Missing password." -msgstr "" - -msgid "Spotify Authentication" -msgstr "" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Atingido o número máximo de tentativas de login." - -msgid "Missing Qobuz app ID." -msgstr "" - -msgid "Missing Qobuz username." -msgstr "" - -msgid "Missing Qobuz password." -msgstr "" - -msgid "Not authenticated with Qobuz." -msgstr "Não autenticado no Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "" - -msgid "Missing app id." -msgstr "" - -msgid "Show moodbar" -msgstr "" - -msgid "Moodbar style" -msgstr "" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "" - -msgid "Frozen" -msgstr "" - -msgid "Happy" -msgstr "" - -msgid "System colors" -msgstr "" - -msgid "Strawberry Music Player" -msgstr "" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Reproduzir" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Parar" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Próxima faixa" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Sair" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Limpar lista de reprodução" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Renumerar faixas nesta ordem..." - -msgid "Set value for all selected tracks..." -msgstr "Mudar o valor para todas as faixas selecionadas..." - -msgid "Edit tag..." -msgstr "Editar tag..." - -msgid "&Settings..." -msgstr "&Configurações..." - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&Sobre o Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Adicionar arquivo..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Abrir arquivo..." - -msgid "Open audio &CD..." -msgstr "" - -msgid "&Cover Manager" -msgstr "&Gerenciador de capas" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "Modo aleatório" - -msgid "&Repeat mode" -msgstr "&Mode de Repetição" - -msgid "Remove from playlist" -msgstr "Remover da lista de reprodução" - -msgid "&Equalizer" -msgstr "&Equalizador" - -msgid "&Transcode Music" -msgstr "" - -msgid "Add &folder..." -msgstr "" - -msgid "&Jump to the currently playing track" -msgstr "" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Nova lista de reprodução" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Carregar lista de reprodução..." - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "Ir até a aba do próximo playlist" - -msgid "Go to previous playlist tab" -msgstr "Ir até a aba lista de reprodução anterior" - -msgid "&Update changed collection folders" -msgstr "" - -msgid "About &Qt" -msgstr "" - -msgid "&Mute" -msgstr "&Mudo" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Fazer uma varredura completa da coleção" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Preencher tags automaticamente..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Ativar/desativar scrobbling" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "Adicionar arquivo(s) para conversor" - -msgid "Add file to transcoder" -msgstr "Adicionar arquivo para conversor" - -msgid "Add stream..." -msgstr "" - -msgid "Show sidebar" -msgstr "" - -msgid "Import data from last.fm..." -msgstr "" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "Música" - -msgid "P&laylist" -msgstr "" - -msgid "Help" -msgstr "Ajuda" - -msgid "&Tools" -msgstr "&Ferramentas" - -msgid "Collection advanced grouping" -msgstr "Organização avançada de biblioteca" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "Organizar Biblioteca por..." - -msgid "Second level" -msgstr "Segundo nível" - -msgid "Third level" -msgstr "Terceiro nível" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "" - -msgid "Entire collection" -msgstr "Toda a coletânia" - -msgid "Added today" -msgstr "Adicionado(s) hoje" - -msgid "Added this week" -msgstr "Adicionado(s) esta semana" - -msgid "Added within three months" -msgstr "Adicionado(s) há três meses" - -msgid "Added this year" -msgstr "Adicionado(s) este ano" - -msgid "Added this month" -msgstr "Adicionado(s) este mês" - -msgid "Save current grouping" -msgstr "Salvar agrupamento atual" - -msgid "Manage saved groupings" -msgstr "Gerenciar agrupamentos salvos" - -msgid "Enter search terms here" -msgstr "Digite os termos da pesquisa aqui" - -msgid "Form" -msgstr "Formulário" - -msgid "Saved Grouping Manager" -msgstr "Gerenciador de agrupamentos salvos" - -msgid "Remove" -msgstr "Remover" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "Endereços dos arquivos" - -msgid "This can be changed later through the preferences" -msgstr "Isso pode ser alterado posteriormente nas configurações" - -msgid "Remember my choice" -msgstr "Lembrar-se da minha escolha" - -msgid "Stop after each track" -msgstr "Parar depois de cada faixa" - -msgid "Repeat" -msgstr "Repetir" - -msgid "Shuffle" -msgstr "Aleatória" - -msgid "Dynamic mode is on" -msgstr "" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "Para baixo" - -msgid "Move up" -msgstr "Para cima" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "" - -msgid "Preview" -msgstr "Pré-visualização" - -msgid "and" -msgstr "" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "" - -msgid "Edit smart playlist" -msgstr "" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "Exportar capas" - -msgid "Output" -msgstr "Saída" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Digite um nome de arquivo para capas exportadas (sem extensão):" - -msgid "Export downloaded covers" -msgstr "Exportar capas baixadas" - -msgid "Export embedded covers" -msgstr "Exportar capas embutidas" - -msgid "Existing covers" -msgstr "Capas existentes" - -msgid "Do not overwrite" -msgstr "Não substituir" - -msgid "O&verwrite all" -msgstr "" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "Tamanho" - -msgid "Scale size" -msgstr "Tamanho de escala" - -msgid "Size:" -msgstr "Tamanho:" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "Gerenciador de capas" - -msgid "Fetch automatically" -msgstr "Buscar automaticamente" - -msgid "Load" -msgstr "Carregar" - -msgid "Add to playlist" -msgstr "Adicionar à lista de reprodução" - -msgid "View" -msgstr "Exibir" - -msgid "Total albums:" -msgstr "Total de albuns:" - -msgid "Without cover:" -msgstr "Sem capas:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Buscar as capas que faltam" - -msgid "Export Covers" -msgstr "Exportar Capas" - -msgid "Fetch completed" -msgstr "Atualização concluída" - -msgid "Load cover from URL" -msgstr "Carregar capa da URL" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Insira uma URL para fazer baixar uma capa da Internet:" - -msgid "Settings" -msgstr "Configurações" - -msgid "Behavior" -msgstr "Comportamento" - -msgid "Show system tray icon" -msgstr "" - -msgid "Keep running in the background when the window is closed" -msgstr "Continuar executando quando a janela é fechada" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Retomar a reprodução ao iniciar" - -msgid "Show playing widget" -msgstr "" - -msgid "On startup" -msgstr "Na inicialização" - -msgid "Remember from &last time" -msgstr "Lembrar da ú<ima vez" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "Idioma" - -msgid "Use the system default" -msgstr "Usar padrão do sistema" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Você precisará reiniciar o Strawberry se mudar o idioma." - -msgid "Using the menu to add a song will..." -msgstr "Usar o menu para adicionar uma música irá..." - -msgid "Never start playing" -msgstr "Nunca iniciar tocando" - -msgid "Play if there is nothing already playing" -msgstr "Tocar se não houver nada tocando" - -msgid "Always start playing" -msgstr "Sempre começar tocando" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Pressionar \"Anterior\" no reprodutor irá..." - -msgid "Jump to previous song right away" -msgstr "Pular imediatamente para a faixa anterior" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Reiniciar a faixa e só pular para a faixa anterior caso seja pressionado novamente" - -msgid "Double clicking a song will..." -msgstr "Clique duplo em uma música irá..." - -msgid "Append to the playlist" -msgstr "Anexar ao fim da lista de reprodução" - -msgid "Replace the playlist" -msgstr "Substituir a lista de reprodução" - -msgid "Add to the queue" -msgstr "Adicionar à fila" - -msgid "Double clicking a song in the playlist will..." -msgstr "Clique duplo numa música da lista de reprodução irá..." - -msgid "Change the currently playing song" -msgstr "Trocar a música em reprodução" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Buscar usando um atalho de teclado ou roda do mouse" - -msgid "Time step" -msgstr "Intervalo de tempo" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "As pastas serão escaneadas em busca de músicas para montar sua biblioteca" - -msgid "Add new folder..." -msgstr "Adicionar nova pasta..." - -msgid "Remove folder" -msgstr "Remover pasta" - -msgid "Automatic updating" -msgstr "Atualização automática" - -msgid "Update the collection when Strawberry starts" -msgstr "Atualizar a biblioteca quando o Strawberry iniciar" - -msgid "Monitor the collection for changes" -msgstr "Vigiar mudanças na biblioteca" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Nomenclatura para arquivos de capa (separado por vírgulas)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Ao procurar por capas de discos, o Strawberry primeiro procurará por arquivos que contenham uma destas palavras.\n" -"Se não houver resultados, ele usará a maior imagem no diretório." - -msgid "Automatically open single categories in the collection tree" -msgstr "Abrir categorias únicas da árvore da biblioteca automaticamente" - -msgid "Show dividers" -msgstr "Mostrar divisores" - -msgid "Show album cover art in collection" -msgstr "" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "" - -msgid "Enable Disk Cache" -msgstr "" - -msgid "Disk Cache Size" -msgstr "" - -msgid "Current disk cache in use:" -msgstr "" - -msgid "Clear Disk Cache" -msgstr "" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Saída de áudio" - -msgid "Engine" -msgstr "Mecanismo" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "Habilitar o controle de volume" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Duração do buffer" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Usar metadados Replay Gain, se estiver disponível" - -msgid "Replay Gain mode" -msgstr "Modo ReplayGain" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Rádio (volume igual para todas as faixas)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Álbum (volume ideal para todas as faixas)" - -msgid "Apply compression to prevent clipping" -msgstr "Aplicar compressão para prevenir picos" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Diminuindo" - -msgid "Fade out when stopping a track" -msgstr "Diminuir o som gradativamente quando terminar uma faixa" - -msgid "Cross-fade when changing tracks manually" -msgstr "Transição suave quando mudar de faixa manualmente" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Transição suave quando mudar de faixa automaticamente" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Exceto entre as faixas do mesmo álbum ou lista CUE" - -msgid "Fading duration" -msgstr "Duração da dimunuição" - -msgid "Fade out on pause / fade in on resume" -msgstr "Desvanecer ao pausar / Voltar gradualmente ao retomar" - -msgid "Add song artist tag" -msgstr "Adicionar a tag artista da música" - -msgid "Add song album tag" -msgstr "Adicionar tag álbum da música" - -msgid "Add song title tag" -msgstr "Adicionar a tag título da música" - -msgid "Add song albumartist tag" -msgstr "Adicionar à música a tag artista do álbum" - -msgid "Add song year tag" -msgstr "Adicionar a tag ano da música" - -msgid "Add song composer tag" -msgstr "Adicionar a tag compositor da música" - -msgid "Add song performer tag" -msgstr "Adicionar músicas por tag do artista" - -msgid "Add song grouping tag" -msgstr "Adicionar músicas por agrupamento da tag" - -msgid "Add song disc tag" -msgstr "Adicionar a tag disco da música" - -msgid "Add song track tag" -msgstr "Adicionar a tag faixa da música" - -msgid "Add song genre tag" -msgstr "Adicionar a tag gênero da música" - -msgid "Add song length tag" -msgstr "Adicionar a tag duração da música" - -msgid "Add song play count" -msgstr "Adicionar contagem a reprodução da música" - -msgid "Add song skip count" -msgstr "Adicionar contador de pular música" - -msgid "Add a new line if supported by the notification type" -msgstr "Adicionar uma nova linha se suportado pelo tipo de notificação" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Adicionar o nome do arquivo da música" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Adicionar avaliar faixa " - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "Resumo" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "" - -msgid "Song Lyrics" -msgstr "" - -msgid "Automatically search for album cover" -msgstr "" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Continue para o próximo item na playlist se a música não estiver disponível" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Desabilitar músicas não disponíveis nas playlists durante a reprodução" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Desabilitar músicas não disponíveis na playlist durante a inicialização" - -msgid "Automatically select current playing track" -msgstr "" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "Ao salvar uma lista de reprodução, os endereços dos arquivos devem ser" - -msgid "A&utomatic" -msgstr "A&utomático" - -msgid "Absolu&te" -msgstr "" - -msgid "Re&lative" -msgstr "" - -msgid "As&k when saving" -msgstr "Per&guntar ao salvar" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Caso ativado, ao clicar numa música na lista de reprodução, você poderá editar diretamente os valores de sua etiqueta." - -msgid "Enable song metadata inline edition with click" -msgstr "Habilitar edição dos metadados da música com um clique" - -msgid "Write metadata when saving playlists" -msgstr "" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "Habilitar" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "" - -msgid "Show love button" -msgstr "" - -msgid "Submit scrobbles every" -msgstr "" - -msgid " seconds" -msgstr " segundos" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Transmissão" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "" - -msgid "Covers" -msgstr "" - -msgid "Cover providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "" - -msgid "Authentication" -msgstr "Autenticação" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "" - -msgid "Save album covers in album directory" -msgstr "" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "Nome do arquivo:" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "" - -msgid "Lowercase filename" -msgstr "Nome de arquivo em minúsculas" - -msgid "Replace spaces with dashes" -msgstr "" - -msgid "Lyrics" -msgstr "Letras" - -msgid "Lyrics providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "" - -msgid "Network Proxy" -msgstr "Proxy da Rede" - -msgid "&Use the system proxy settings" -msgstr "" - -msgid "Direct internet connection" -msgstr "Conexão direta à Internet" - -msgid "&Manual proxy configuration" -msgstr "" - -msgid "HTTP proxy" -msgstr "Proxy HTTP" - -msgid "SOCKS proxy" -msgstr "Proxy SOCKS" - -msgid "Port" -msgstr "Porta" - -msgid "Use authentication" -msgstr "Usar autenticação" - -msgid "Username" -msgstr "Nome de usuário" - -msgid "Password" -msgstr "Senha" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "Aparência" - -msgid "Style" -msgstr "" - -msgid "Use system theme icons" -msgstr "" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "" - -msgid "&Use the system default color" -msgstr "" - -msgid "Use custom color" -msgstr "" - -msgid "Use gradient background" -msgstr "" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "Imagem de fundo" - -msgid "Default bac&kground image" -msgstr "" - -msgid "&No background image" -msgstr "" - -msgid "The album cover of the currently playing song" -msgstr "A capa do álbum da música atual" - -msgid "Albu&m cover" -msgstr "" - -msgid "Custom image:" -msgstr "Imagem personalizada:" - -msgid "Browse..." -msgstr "Procurar..." - -msgid "Position" -msgstr "" - -msgid "Upper Left" -msgstr "" - -msgid "Upper Right" -msgstr "" - -msgid "Middle" -msgstr "" - -msgid "Bottom Left" -msgstr "Inferior esquerdo" - -msgid "Bottom Right" -msgstr "Inferior direito" - -msgid "Max cover size" -msgstr "" - -msgid "Stretch image to fill playlist" -msgstr "" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "" - -msgid "Blur amount" -msgstr "Quantidade borrão" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Opacidade" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "Notificações" - -msgid "Strawberry can show a message when the track changes." -msgstr "O Strawberry pode exibir uma mensagem quando a faixa mudar." - -msgid "Notification type" -msgstr "Tipo de notificação" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Desativado" - -msgid "Show a &native desktop notification" -msgstr "" - -msgid "Show a pretty OSD" -msgstr "Mostrar aviso estilizado na tela" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "Configurações gerais" - -msgid "Popup duration" -msgstr "Duração do aviso" - -msgid "Disable duration" -msgstr "Desativar duração" - -msgid "Show a notification when I change the volume" -msgstr "Mostrar notificação quando mudar o volume" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Mostrar uma notificação quando eu mudar o modo repetir/aleatório" - -msgid "Show a notification when I pause playback" -msgstr "Exibir uma notificação ao pausar a reprodução" - -msgid "Show a notification when I resume playback" -msgstr "" - -msgid "Include album art in the notification" -msgstr "Incluir capa do álbum na notificação" - -msgid "Custom message settings" -msgstr "Configurações de mensagem personalizada" - -msgid "Use a custom message for notifications" -msgstr "Usar uma mensagem personalizada para notificações" - -msgid "Body" -msgstr "Conteúdo" - -msgid "Pretty OSD options" -msgstr "Opções de aviso estilizado" - -msgid "Background color" -msgstr "Cor de fundo" - -msgid "Text options" -msgstr "Opções de texto" - -msgid "Choose font..." -msgstr "Escolher fonte..." - -msgid "Choose color..." -msgstr "Escolher cor..." - -msgid "Background opacity" -msgstr "Opacidade de fundo" - -msgid "Basic Blue" -msgstr "Azul básico" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "Personalizado..." - -msgid "Enable fading" -msgstr "" - -msgid "Transcoding" -msgstr "Conversão" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Essas configurações são usadas na \"Conversão de Músicas\" e, ao converter a música antes de copiar para um dispositivo." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Equalizer" -msgstr "Equalizador" - -msgid "Preset:" -msgstr "Pré-regulagem:" - -msgid "Enable equalizer" -msgstr "Habilitar equalizador" - -msgid "Enable stereo balancer" -msgstr "" - -msgid "Left" -msgstr "Esquerda" - -msgid "Balance" -msgstr "Balanço" - -msgid "Right" -msgstr "Direita" - -msgid "About" -msgstr "" - -msgid "Strawberry Error" -msgstr "Erro no Strawberry" - -msgid "Console" -msgstr "Painel" - -msgid "Run" -msgstr "Executar" - -msgid "Edit track information" -msgstr "Editar informações da faixa" - -msgid "Date created" -msgstr "Data de criação" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "Data de modificação" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Reproduzida por último" - -msgid "Play count" -msgstr "Número de reproduções" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Taxa de bits" - -msgid "Skip count" -msgstr "Número de pulos" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "Nome do arquivo" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Tamanho do arquivo" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Limpar contador de reprodução" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "Completar tags automaticamente" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Buscador de tag" - -msgid "Sorry" -msgstr "Desculpe" - -msgid "Strawberry was unable to find results for this file" -msgstr "O Strawberry não conseguiu encontrar resultados para este arquivo" - -msgid "Select best possible match" -msgstr "Selecionar o melhor resultado possível" - -msgid "Add Stream" -msgstr "" - -msgid "Enter the URL of a stream:" -msgstr "" - -msgid "Enter username and password" -msgstr "" - -msgid "Import data from last.fm" -msgstr "" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "Fechar" - -msgid "Cancel" -msgstr "" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Clique para alternar entre tempo restante e tempo total" - -msgid "You are not signed in." -msgstr "Você não está logado." - -msgid "Sign out" -msgstr "Sair" - -msgid "Signing in..." -msgstr "Conectando..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Artistas" - -msgid "Albums" -msgstr "Álbuns" - -msgid "Songs" -msgstr "" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "" - -msgid "albums" -msgstr "" - -msgid "songs" -msgstr "" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "Destino" - -msgid "After copying..." -msgstr "Depois de copiar..." - -msgid "Keep the original files" -msgstr "Manter arquivos originais" - -msgid "Delete the original files" -msgstr "Apagar os arquivos originais" - -msgid "Naming options" -msgstr "Opções de nomes" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Símbolos iniciam com %, por exemplo: %artist %album %title

\n\n" -"

Se você inserir trechos do texto que contem um símbolo com chaves, esta seção será oculta se o símbolo estiver vazio.

" - -msgid "Insert..." -msgstr "Inserir..." - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "" - -msgid "Restrict characters to ASCII" -msgstr "" - -msgid "Allow extended ASCII characters" -msgstr "Permitir caracteres ASCII estendidos" - -msgid "Replace spaces with underscores" -msgstr "" - -msgid "Overwrite existing files" -msgstr "Sobrescrever arquivos existentes" - -msgid "Copy album cover artwork" -msgstr "Copiar a arte da capa do álbum" - -msgid "Safely remove the device after copying" -msgstr "Remover o dispositivo com segurança após copiar" - -msgid "Transcode Music" -msgstr "Converter Música" - -msgid "Files to transcode" -msgstr "Arquivos para converter" - -msgid "Directory" -msgstr "Diretório" - -msgid "Add..." -msgstr "Adicionar..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Adicionar todas as faixas de uma pasta e de suas subpastas" - -msgid "Import..." -msgstr "Importar..." - -msgid "Output options" -msgstr "Opções de Saída" - -msgid "Audio format" -msgstr "Formato de áudio" - -msgid "Options..." -msgstr "Opções..." - -msgid "Alongside the originals" -msgstr "Juntamente com os originais" - -msgid "Select..." -msgstr "Selecionar..." - -msgid "Progress" -msgstr "Andamento" - -msgid "Details..." -msgstr "Detalhes..." - -msgid "Transcoder Log" -msgstr "Log do conversor" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "Perfil" - -msgid "Main profile (MAIN)" -msgstr "Menu perfil (PRINCIPAL)" - -msgid "Low complexity profile (LC)" -msgstr "Perfil de baixa complexidade (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Perfil evolutivo taxa de amostragem (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Perfil de previsão a longo prazo (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Usar padronização de ruídos temporais" - -msgid "Allow mid/side encoding" -msgstr "Permitir codificação mid/side" - -msgid "Block type" -msgstr "Tipo de bloco" - -msgid "Normal block type" -msgstr "Tipo de blocos normal" - -msgid "No short blocks" -msgstr "Sem blocos curtos" - -msgid "No long blocks" -msgstr "Sem blocos longos" - -msgid "Transcoding options" -msgstr "Opção de conversão" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Qualidade" - -msgid "Fast" -msgstr "Rápida" - -msgid "Best" -msgstr "Melhor" - -msgid "Use bitrate management engine" -msgstr "Configurar taxa de bits" - -msgid "Target bitrate" -msgstr "Taxa de bits alvo" - -msgid "Minimum bitrate" -msgstr "Taxa de bits mínima" - -msgid "disabled" -msgstr "desabilitado" - -msgid "Maximum bitrate" -msgstr "Taxa de bits máxima" - -msgid "automatic" -msgstr "automático" - -msgid "Average bitrate" -msgstr "Taxa de bits média" - -msgid "Encoding mode" -msgstr "Modo de codificação" - -msgid "Auto" -msgstr "Automático" - -msgid "Ultra wide band (UWB)" -msgstr "Banda ultralarga (UWB)" - -msgid "Wide band (WB)" -msgstr "Banda larga (WB)" - -msgid "Narrow band (NB)" -msgstr "Banda baixa (NB)" - -msgid "Variable bit rate" -msgstr "Taxa de bits variável" - -msgid "Voice activity detection" -msgstr "Detecção de atividade de voz" - -msgid "Discontinuous transmission" -msgstr "Transmissão descontínua" - -msgid "Encoding complexity" -msgstr "Complexidade de codificação" - -msgid "Frames per buffer" -msgstr "Quadros por buffer" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "" - -msgid "Constant bitrate" -msgstr "Taxa de bits constante" - -msgid "Encoding engine quality" -msgstr "Qualidade da codificação" - -msgid "Standard" -msgstr "Padrão" - -msgid "High" -msgstr "Alta" - -msgid "Force mono encoding" -msgstr "Forçar codificação em mono" - -msgid "Press a key" -msgstr "Pressione uma tecla" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "Abrir..." - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Você deve iniciar as Preferências do Sistema e permitir que o Strawberry \"controle o seu computador\" para poder usar atalhos globais no Strawberry." - -msgid "Shortcut" -msgstr "Atalho" - -msgctxt "Category label" -msgid "Action" -msgstr "Ação" - -msgid "&None" -msgstr "&Nenhum" - -msgid "&Default" -msgstr "" - -msgid "&Custom" -msgstr "&Personalizado" - -msgid "Change shortcut..." -msgstr "Mudar atalho..." - -msgid "Device Properties" -msgstr "Propriedades do dispositivo" - -msgid "Icon" -msgstr "Ícone" - -msgid "Hardware information" -msgstr "Informação de hardware" - -msgid "Hardware information is only available while the device is connected." -msgstr "Informação do hardware só está disponível quando o dispositivo está conectado." - -msgid "Information" -msgstr "Informação" - -msgid "Supported formats" -msgstr "Formatos suportados" - -msgid "This device supports the following file formats:" -msgstr "Este dispositivo suporta os seguintes formatos de arquivo:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "O Strawberry pode converter automaticamente a música que você copiar para o dispositivo no formato que pode ser executado." - -msgid "Do not convert any music" -msgstr "Não converter nenhuma música" - -msgid "Convert any music that the device can't play" -msgstr "Converter qualquer música que o dispositivo não puder tocar" - -msgid "Convert all music" -msgstr "Converter todas as músicas" - -msgid "Preferred format" -msgstr "Formato preferido" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "O dispositivo deve estar conectado e aberto antes que o Strawberry possa ver que formatos de arquivo ele suporta." - -msgid "Open device" -msgstr "Abrir dispositivo" - -msgid "Querying device..." -msgstr "Consultando dispositivo..." - -msgid "File formats" -msgstr "Formatos de arquivo" - -msgid "Server URL" -msgstr "" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Preferências" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "" - -msgid "Download album covers" -msgstr "" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "" - -msgid "Client ID" -msgstr "" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "Qualidade de áudio" - -msgid "Search delay" -msgstr "" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "" - -msgid "Albums search limit" -msgstr "Limite de busca por álbuns" - -msgid "Songs search limit" -msgstr "" - -msgid "Fetch entire albums when searching songs" -msgstr "Buscar álbuns inteiros ao pesquisar músicas" - -msgid "Album cover size" -msgstr "Dimensões da capa do álbum" - -msgid "Stream URL method" -msgstr "" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "" - -msgid "Enabled" -msgstr "Habilitado" - -msgid "Return to Strawberry" -msgstr "Voltar ao Strawberry" - -msgid "Success!" -msgstr "Êxito!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Por favor, feche seu navegador e volte ao Strawberry" - diff --git a/src/translations/ru_RU.po b/src/translations/ru_RU.po deleted file mode 100644 index 118d6c8d..00000000 --- a/src/translations/ru_RU.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: ru\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Russian\n" -"Language: ru_RU\n" -"PO-Revision-Date: 2024-09-28 19:06\n" - -msgid "All Files (*)" -msgstr "Все файлы (*)" - -msgid "Context" -msgstr "Эфир" - -msgid "Collection" -msgstr "Фонотека" - -msgid "Queue" -msgstr "Очередь" - -msgid "Playlists" -msgstr "Списки" - -msgid "Smart playlists" -msgstr "Умные списки" - -msgid "Files" -msgstr "Файлы" - -msgid "Radios" -msgstr "Радио" - -msgid "Devices" -msgstr "Носители" - -msgid "Subsonic" -msgstr "Subsonic" - -msgid "Tidal" -msgstr "Tidal" - -msgid "Spotify" -msgstr "Spotify" - -msgid "Qobuz" -msgstr "Qobuz" - -msgid "Show all songs" -msgstr "Показывать все композиции" - -msgid "Show only duplicates" -msgstr "Показывать только повторяющиеся" - -msgid "Show only untagged" -msgstr "Показывать только без тегов" - -msgid "Configure collection..." -msgstr "Настроить фонотеку…" - -msgid "Play" -msgstr "Играть" - -msgid "Stop after this track" -msgstr "Стоп после этого трека" - -msgid "Toggle queue status" -msgstr "Переключить состояние очереди" - -msgid "Queue selected tracks to play next" -msgstr "Очередь выбранных треков для последующего воспроизведения" - -msgid "Toggle skip status" -msgstr "Переключить статус пропуска" - -msgid "Rescan song(s)..." -msgstr "Пересканировать песни…" - -msgid "Copy URL(s)..." -msgstr "Копировать адрес(а)…" - -msgid "Show in collection..." -msgstr "Показать в фонотеке…" - -msgid "Show in file browser..." -msgstr "Показать в проводнике…" - -msgid "Organize files..." -msgstr "Организовать файлы…" - -msgid "Copy to collection..." -msgstr "Копировать в фонотеку…" - -msgid "Move to collection..." -msgstr "Перенести в фонотеку…" - -msgid "Copy to device..." -msgstr "Копировать на устройство…" - -msgid "Delete from disk..." -msgstr "Удалить с диска…" - -msgid "Check for updates..." -msgstr "Проверить обновления…" - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry запущен под управлением Rosetta" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "Вы запустили Strawberry под управлением Rosetta. Работа проигрывателя в Rosetta не поддерживается и вызывает проблемы. Вам следует скачать Strawberry для нужной архитектуры ЦП из %1" - -msgid "Sponsoring Strawberry" -msgstr "Поддержать Strawberry" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry — это бесплатное и открытое программное обеспечение. Если вам приглянулось оно, пожалуйста, рассмотрите возможность пожертвования. Для подробностей о спонсорстве посетите наш сайт %1" - -msgid "Pause" -msgstr "Пауза" - -msgid "Dequeue track" -msgstr "Убрать трек из очереди" - -msgid "Dequeue selected tracks" -msgstr "Убрать выбранные треки из очереди" - -msgid "Queue track" -msgstr "Добавить трек в очередь" - -msgid "Queue selected tracks" -msgstr "Выбранные треки в очередь" - -msgid "Queue to play next" -msgstr "Добавить в начало очереди" - -msgid "Unskip track" -msgstr "Не пропускать трек" - -msgid "Unskip selected tracks" -msgstr "Не пропускать выбранные треки" - -msgid "Skip track" -msgstr "Пропустить трек" - -msgid "Skip selected tracks" -msgstr "Пропустить выбранные треки" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Установить %1 в «%2»…" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Править тег «%1»…" - -msgid "Add to another playlist" -msgstr "Добавить в другой плейлист" - -msgid "New playlist" -msgstr "Новый плейлист" - -msgid "Add file" -msgstr "Добавить файл" - -msgid "Music" -msgstr "Музыка" - -msgid "Add folder" -msgstr "Добавление папки" - -msgid "Clear playlist" -msgstr "Очистить плейлист" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Плейлист содержит %1 песен, что слишком много для отмены. Уверены, что хотите очистить плейлист?" - -msgid "Error" -msgstr "Ошибка" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Ни одна из выбранных песен не подходит для копирования на устройство" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Обновлённая версия Strawberry требует повторного сканирования фонотеки из-за следующих новых возможностей:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Хотите выполнить полное пересканирование сейчас?" - -msgid "Collection rescan notice" -msgstr "Уведомление о пересканировании фонотеки" - -msgid "Usage" -msgstr "Использование" - -msgid "options" -msgstr "параметры" - -msgid "URL(s)" -msgstr "Ссылки" - -msgid "Player options" -msgstr "Настройки проигрывателя" - -msgid "Start the playlist currently playing" -msgstr "Запустить проигрываемый сейчас плейлист" - -msgid "Play if stopped, pause if playing" -msgstr "Играть если остановлено, пауза если воспроизводится" - -msgid "Pause playback" -msgstr "Приостановить воспроизведение" - -msgid "Stop playback" -msgstr "Остановить воспроизведение" - -msgid "Stop playback after current track" -msgstr "Остановить после текущего трека" - -msgid "Skip backwards in playlist" -msgstr "Переместить назад в плейлисте" - -msgid "Skip forwards in playlist" -msgstr "Переместить вперёд в плейлисте" - -msgid "Set the volume to percent" -msgstr "Установить громкость в процентов" - -msgid "Increase the volume by 4 percent" -msgstr "Увеличить громкость на 4 процента" - -msgid "Decrease the volume by 4 percent" -msgstr "Уменьшить громкость на 4 процента" - -msgid "Increase the volume by percent" -msgstr "Увеличить громкость на процентов" - -msgid "Decrease the volume by percent" -msgstr "Уменьшить громкость на процентов" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Перемотать активный трек на абсолютную позицию" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Перемотать активный трек на относительную позицию" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Перезапустить трек или проиграть предыдущий, если не прошло 8 секунд от начала." - -msgid "Playlist options" -msgstr "Настройки плейлиста" - -msgid "Create a new playlist with files" -msgstr "Создать новый плейлист с файлами" - -msgid "Append files/URLs to the playlist" -msgstr "Добавить файлы/адреса в плейлист" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Загрузка файлов/ссылок с заменой текущего плейлиста" - -msgid "Play the th track in the playlist" -msgstr "Играть трек в плейлисте" - -msgid "Play given playlist" -msgstr "Проиграть данный плейлист" - -msgid "Other options" -msgstr "Прочие настройки" - -msgid "Display the on-screen-display" -msgstr "Показывать экранное уведомление" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Переключить видимость модного экранного меню" - -msgid "Change the language" -msgstr "Сменить язык" - -msgid "Resize the window" -msgstr "Изменить размер окна" - -msgid "Equivalent to --log-levels *:1" -msgstr "Аналогично --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Аналогично --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Разделённый запятыми список «класс:уровень», где уровень от 0 до 3" - -msgid "Print out version information" -msgstr "Вывести информацию о версии" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "Невозможно выполнить запрос SQL: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Ошибка запроса SQL: %1" - -msgid "Integrity check" -msgstr "Проверка целостности" - -msgid "Database corruption detected." -msgstr "Обнаружено повреждение базы данных." - -msgid "Backing up database" -msgstr "Резервное копирование базы данных" - -msgid "Deleting files" -msgstr "Удаление файлов" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "Не удалось создать каталог %1." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "Файл назначения %1 уже существует, но его перезапись не разрешена." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "Файл назначения %1 уже существует, но его перезапись не разрешена" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "Не удалось скопировать файл %1 в %2." - -msgid "Unknown" -msgstr "Неизвестный" - -msgid "LUFS" -msgstr "Единица громкости относительно полной шкалы (LUFS)" - -msgid "LU" -msgstr "Eдиница громкости (LU)" - -msgid "You need GStreamer for this URL." -msgstr "Вам нужен GStreamer для этого адреса." - -msgid "Preload function was not set for blocking operation." -msgstr "Функция предварительной нагрузки не была установлена ​​для операции блокировки." - -#, qt-format -msgid "File %1 does not exist." -msgstr "Файл %1 не существует." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Файл %1 не распознан как допустимый аудиофайл." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "Воспроизведение CD доступно только с движком GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Не удалось открыть файл %1 для чтения: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Не удалось открыть CUE-файл %1 для чтения: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Не удалось открыть файл плейлиста %1 для чтения: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Не удалось создать объект источника GStreamer для %1" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "Не удалось создать элемент GStreamer typefind для %1" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "Не удалось создать элемент GStreamer fakesink для %1" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "Не удалось связать элементы GStreamer источник, typefind и fakesink для %1" - -msgid "Playlist" -msgstr "Плейлист" - -msgid "1 day" -msgstr "1 день" - -#, qt-format -msgid "%1 days" -msgstr "%1 дн." - -msgid "Today" -msgstr "Сегодня" - -msgid "Yesterday" -msgstr "Вчера" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 дн. назад" - -msgid "Tomorrow" -msgstr "Завтра" - -#, qt-format -msgid "In %1 days" -msgstr "В течение %1 дн." - -msgid "Next week" -msgstr "На следующей неделе" - -#, qt-format -msgid "In %1 weeks" -msgstr "В течение %1 недель" - -msgid "Show in file browser" -msgstr "Показать в проводнике" - -msgid "Too many songs selected." -msgstr "Слишком много песен выбрано." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "Выбрано %1 песен из %2 разных каталогов. Уверены, что хотите открыть их все?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "Не удалось загрузить изображение из данных для %1" - -msgid "Success" -msgstr "Успешно" - -msgid "File is unsupported" -msgstr "Файл не поддерживается" - -msgid "Filename is missing" -msgstr "Отсутствует имя файла" - -msgid "File does not exist" -msgstr "Файл не существует" - -msgid "File could not be opened" -msgstr "Не удалось открыть файл" - -msgid "Could not parse file" -msgstr "Не удалось разобрать файл" - -msgid "Could save file" -msgstr "Не удалось сохранить файл" - -msgid "Unknown error" -msgstr "Неизвестная ошибка" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "Приставка имени поля в поисковом термине позволяет ограничить поиск этим полем, например:" - -msgid "artist" -msgstr "артист" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "выполняет поиск всех артистов со словом %1. " - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "Для уточнения поиска в числовых полях можно использовать приставки %1 или %2, например:" - -msgid "rating" -msgstr "оценка" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "Несколько поисковых терминов можно объединить с помощью символов «%1» (по умолчанию) и «%2», а сгруппировать с помощью круглых скобок." - -msgid "Available fields" -msgstr "Доступные поля" - -msgid "Buffering" -msgstr "Буферизация" - -msgid "Framerate" -msgstr "Частота кадров" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Низкая (%1 к/с)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Средняя (%1 к/с)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Высокая (%1 к/с)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Очень высокая (%1 к/с)" - -msgid "No analyzer" -msgstr "Без анализатора" - -msgid "Block analyzer" -msgstr "Блоковый анализатор" - -msgid "Boom analyzer" -msgstr "Подъёмный анализатор" - -msgid "Turbine" -msgstr "Turbine" - -msgid "Sonogram" -msgstr "Сонограмма" - -msgid "WaveRubber" -msgstr "WaveRubber" - -msgid "Pre-amp" -msgstr "Предусиление" - -msgid "Custom" -msgstr "Пользовательская" - -msgid "Classical" -msgstr "Классика" - -msgid "Club" -msgstr "Клуб" - -msgid "Dance" -msgstr "Танец" - -msgid "Full Bass" -msgstr "Бас" - -msgid "Full Treble" -msgstr "Высокие частоты" - -msgid "Full Bass + Treble" -msgstr "Бас + высокие частоты" - -msgid "Laptop/Headphones" -msgstr "Наушники/ноутбук" - -msgid "Large Hall" -msgstr "Большой зал" - -msgid "Live" -msgstr "Лайв" - -msgid "Party" -msgstr "Вечеринка" - -msgid "Pop" -msgstr "Поп" - -msgid "Reggae" -msgstr "Регги" - -msgid "Rock" -msgstr "Рок" - -msgid "Soft" -msgstr "Лёгкая" - -msgid "Ska" -msgstr "Ска" - -msgid "Soft Rock" -msgstr "Софт-рок" - -msgid "Techno" -msgstr "Техно" - -msgid "Zero" -msgstr "Стандартная" - -msgid "Save preset" -msgstr "Сохранить предустановку" - -msgid "Name" -msgstr "Имя" - -msgid "Delete preset" -msgstr "Удалить предустановку" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Вы действительно хотите удалить предустановку «%1»?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 дБ" - -msgid "Filetype" -msgstr "Тип файла" - -msgid "Length" -msgstr "Длина" - -msgid "Samplerate" -msgstr "Частота" - -msgid "Bit depth" -msgstr "Разрядность" - -msgid "Bitrate" -msgstr "Битрейт" - -msgid "EBU R 128 Integrated Loudness" -msgstr "Встроенная громкость EBU R 128" - -msgid "EBU R 128 Loudness Range" -msgstr "Диапазон громкости EBU R 128" - -msgid "Show album cover" -msgstr "Показать обложку альбома" - -msgid "Show song technical data" -msgstr "Показать технические данные песни" - -msgid "Show song lyrics" -msgstr "Показать текст песни" - -msgid "Automatically search for song lyrics" -msgstr "Автоматический поиск текста песни" - -msgid "No song playing" -msgstr "Ничего не играет" - -#, qt-format -msgid "%1 song" -msgstr "%1 песня" - -#, qt-format -msgid "%1 songs" -msgstr "%1 композиций" - -#, qt-format -msgid "%1 artist" -msgstr "%1 артист" - -#, qt-format -msgid "%1 artists" -msgstr "%1 артистов" - -#, qt-format -msgid "%1 album" -msgstr "%1 альбом" - -#, qt-format -msgid "%1 albums" -msgstr "%1 альбомов" - -msgid "kbps" -msgstr "кбит/с" - -msgid "Saving playcounts and ratings" -msgstr "Сохранение счётчиков прослушивания и оценок" - -msgid "Various artists" -msgstr "Различные артисты" - -msgid "Loading..." -msgstr "Загрузка…" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "Невозможно выполнить запрос SQL к фонотеке: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "Идёт обновление базы данных %1." - -msgid "Updating collection" -msgstr "Обновляется фонотека" - -#, qt-format -msgid "Updating %1" -msgstr "Идёт обновление %1" - -msgid "Your collection is empty!" -msgstr "Ваша фонотека пуста!" - -msgid "Click here to add some music" -msgstr "Нажмите сюда для добавления музыки" - -msgid "Append to current playlist" -msgstr "Добавить в текущий плейлист" - -msgid "Replace current playlist" -msgstr "Заменить текущий плейлист" - -msgid "Open in new playlist" -msgstr "Открыть в новом плейлисте" - -msgid "Search for this" -msgstr "Поиск этого" - -msgid "Edit track information..." -msgstr "Править сведения о треке…" - -msgid "Edit tracks information..." -msgstr "Править сведения о треках…" - -msgid "Rescan song(s)" -msgstr "Пересканировать песню(и)" - -msgid "Show in various artists" -msgstr "Показывать в «Различных артистах»" - -msgid "Don't show in various artists" -msgstr "Не показывать в «Различных артистах»" - -msgid "There are other songs in this album" -msgstr "В альбоме присутствуют другие композиции" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Хотите ли вы переместить и другие песни из этого альбома в «Различные артисты»?" - -msgid "Show" -msgstr "Показать" - -msgid "Group by" -msgstr "Группировать по" - -msgid "Display options" -msgstr "Настройки вида" - -msgid "Group by Album artist/Album" -msgstr "Группировать по артисту альбома/альбому" - -msgid "Group by Album artist/Album - Disc" -msgstr "Группировать по артисту альбома/альбому - диску" - -msgid "Group by Album artist/Year - Album" -msgstr "Группировать по артисту альбома/году - альбому" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Группировать по артисту альбома/году - альбому - диску" - -msgid "Group by Artist/Album" -msgstr "Группировать по артисту/альбому" - -msgid "Group by Artist/Album - Disc" -msgstr "Группировать по артисту/альбому - диску" - -msgid "Group by Artist/Year - Album" -msgstr "Группировать по артисту/году - альбому" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Группировать по артисту/году - альбому - диску" - -msgid "Group by Genre/Album artist/Album" -msgstr "Группировать по жанру/артисту альбома/альбому" - -msgid "Group by Genre/Artist/Album" -msgstr "Группировать по жанру/артисту/альбому" - -msgid "Group by Album Artist" -msgstr "Группировать по артисту альбома" - -msgid "Group by Artist" -msgstr "Группировать по артисту" - -msgid "Group by Album" -msgstr "Группировать по альбомам" - -msgid "Group by Genre/Album" -msgstr "Группировать по жанру/альбому" - -msgid "Advanced grouping..." -msgstr "Расширенная группировка…" - -msgid "Grouping Name" -msgstr "Имя группы" - -msgid "Grouping name:" -msgstr "Имя группы:" - -msgid "First level" -msgstr "Первый уровень" - -msgid "Second Level" -msgstr "Второй уровень" - -msgid "Third Level" -msgstr "Третий уровень" - -msgid "None" -msgstr "Нет" - -msgid "Album artist" -msgstr "Артист альбома" - -msgid "Artist" -msgstr "Артист" - -msgid "Album" -msgstr "Альбом" - -msgid "Album - Disc" -msgstr "Альбом - Диск" - -msgid "Year - Album" -msgstr "Год - Альбом" - -msgid "Year - Album - Disc" -msgstr "Год - Альбом - Диск" - -msgid "Original year - Album" -msgstr "Год оригинала - Альбом" - -msgid "Original year - Album - Disc" -msgstr "Год оригинала - Альбом - Диск" - -msgid "Disc" -msgstr "Диск" - -msgid "Year" -msgstr "Год" - -msgid "Original year" -msgstr "Год оригинала" - -msgid "Genre" -msgstr "Жанр" - -msgid "Composer" -msgstr "Композитор" - -msgid "Performer" -msgstr "Исполнитель" - -msgid "Grouping" -msgstr "Группа" - -msgid "File type" -msgstr "Тип файла" - -msgid "Format" -msgstr "Формат" - -msgid "Sample rate" -msgstr "Частота" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "Не удалось записать метаданные в %1" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "Не удалось записать метаданные в %1: %2" - -msgid "Title" -msgstr "Название" - -msgid "Track" -msgstr "Трек" - -msgid "Original Year" -msgstr "Год оригинала" - -msgid "Album Artist" -msgstr "Артист альбома" - -msgid "Play Count" -msgstr "Разы" - -msgid "Skip Count" -msgstr "Пропуски" - -msgid "Last Played" -msgstr "Последний раз" - -msgid "Sample Rate" -msgstr "Частота" - -msgid "Bit Depth" -msgstr "Разрядность" - -msgid "File Name" -msgstr "Имя файла" - -msgid "File Name (without path)" -msgstr "Имя файла (без пути)" - -msgid "File Size" -msgstr "Размер файла" - -msgid "File Type" -msgstr "Тип файла" - -msgid "Date Modified" -msgstr "Дата изменения" - -msgid "Date Created" -msgstr "Дата создания" - -msgid "Comment" -msgstr "Комментарий" - -msgid "Source" -msgstr "Источник" - -msgid "Mood" -msgstr "Тон" - -msgid "Rating" -msgstr "Оценка" - -msgid "CUE" -msgstr "CUE-файл" - -msgid "Integrated Loudness" -msgstr "Встроенная громкость" - -msgid "Loudness Range" -msgstr "Диапазон громкости" - -msgid "Undo" -msgstr "Отменить" - -msgid "Redo" -msgstr "Вернуть" - -msgid "Load playlist" -msgstr "Загрузить плейлист" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Совпадения не найдены. Очистите строку поиска, чтобы увидеть плейлист снова." - -msgid "stop" -msgstr "стоп" - -msgid "Never" -msgstr "Никогда" - -msgid "&Hide..." -msgstr "&Скрыть…" - -msgid "&Stretch columns to fit window" -msgstr "&Подгонять к размеру окна" - -msgid "&Reset columns to default" -msgstr "С&бросить вид столбцов" - -msgid "&Lock rating" -msgstr "&Заблокировать оценку" - -msgid "&Align text" -msgstr "Выровнять &текст" - -msgid "&Left" -msgstr "С&лева" - -msgid "&Center" -msgstr "По &центру" - -msgid "&Right" -msgstr "С&права" - -#, qt-format -msgid "&Hide %1" -msgstr "&Скрыть «%1»" - -msgid "New folder" -msgstr "Новая папка" - -msgid "Delete" -msgstr "Удалить" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Сохранить плейлист" - -msgid "Enter the name of the folder" -msgstr "Введите имя папки" - -msgid "Copy to device" -msgstr "Копировать на устройство" - -msgid "Playlist must be open first." -msgstr "Сначала надо открыть плейлист." - -msgid "Remove playlists" -msgstr "Удалить плейлисты" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Вы хотите удалить %1 плейлистов из избранных, уверены?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Вы можете занести плейлист в избранные двойным щелчком по звезде возле имени списка" - -msgid "Favorited playlists will be saved here" -msgstr "Избранные плейлисты будут храниться здесь" - -msgid "Couldn't create playlist" -msgstr "Невозможно создать плейлист" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Сохранить плейлист" - -msgid "Unknown playlist extension" -msgstr "Неизвестное расширение плейлиста" - -msgid "Unknown file extension for playlist." -msgstr "Неизвестное расширение файла плейлиста." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 выбрано из" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "%n трек(ов)" - -msgid "Automatic" -msgstr "Автоматические" - -msgid "Relative" -msgstr "Относительные" - -msgid "Absolute" -msgstr "Абсолютные" - -msgid "Star playlist" -msgstr "Убрать/добавить в избранное" - -msgid "Close playlist" -msgstr "Закрыть плейлист" - -msgid "Rename playlist..." -msgstr "Переименовать плейлист…" - -msgid "Save playlist..." -msgstr "Сохранить плейлист…" - -msgid "Rename playlist" -msgstr "Переименовать плейлист" - -msgid "Enter a new name for this playlist" -msgstr "Введите новое имя для этого плейлиста" - -msgid "Remove playlist" -msgstr "Удалить плейлист" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Вы хотите убрать плейлист, не являющийся избранным: список удалится полностью (действие необратимо).\n" -"Продолжить?" - -msgid "Warn me when closing a playlist tab" -msgstr "Спрашивать при закрытии вкладки плейлиста" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Этот параметр можно изменить в настройках раздела «Поведение»" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Щёлкните сюда дважды для добавления плейлиста в избранное, он будет сохранён в разделе «Списки» левой боковой панели" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "добавку %n песен" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "удаление %n песен" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "перемещение %n песен" - -msgid "sort songs" -msgstr "сортировку песен" - -msgid "shuffle songs" -msgstr "перемешивание песен" - -msgid "Hz" -msgstr "Гц" - -msgid "Bit" -msgstr "Бит" - -msgid "Error while loading audio CD." -msgstr "Ошибка при загрузке аудио-CD." - -msgid "Loading tracks" -msgstr "Загрузка композиций" - -msgid "Loading tracks info" -msgstr "Загрузка сведений о треках" - -msgid "Saving CUE files is not supported." -msgstr "Сохранение файлов CUE не поддерживается." - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "Неизвестно, как обработать %1" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Все плейлисты (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 плейлистов (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "Неизвестный тип файла: %1" - -#, qt-format -msgid "Could not open file %1" -msgstr "Не удалось открыть файл %1" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "Каталог %1 не существует." - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "Не удалось открыть %1 для записи." - -msgid "Loading smart playlist" -msgstr "Загрузка умного плейлиста" - -msgid "Collection search" -msgstr "Поиск фонотеки" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Найти композиции в фонотеке по указанным вами критериям." - -msgid "Search terms" -msgstr "Условия поиска" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Композиция будет добавлена в плейлист, если соответствует этим условиям." - -msgid "Search options" -msgstr "Параметры поиска" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Настройка сортировки плейлиста и числа песен в нём." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "Найдено %1 песен (отображается %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "Найдено %1 песен" - -msgid "after" -msgstr "после" - -msgid "before" -msgstr "до" - -msgid "on" -msgstr "на" - -msgid "not on" -msgstr "не на" - -msgid "in the last" -msgstr "в последние" - -msgid "not in the last" -msgstr "не в последние" - -msgid "between" -msgstr "между" - -msgid "contains" -msgstr "содержит" - -msgid "does not contain" -msgstr "не содержит" - -msgid "starts with" -msgstr "начинается с" - -msgid "ends with" -msgstr "оканчивается на" - -msgid "greater than" -msgstr "больше чем" - -msgid "less than" -msgstr "меньше чем" - -msgid "equals" -msgstr "совпадает с" - -msgid "not equals" -msgstr "не совпадает с" - -msgid "empty" -msgstr "пусто" - -msgid "not empty" -msgstr "не пусто" - -msgid "A-Z" -msgstr "А-Я (A-Z)" - -msgid "Z-A" -msgstr "Я-А (Z-A)" - -msgid "oldest first" -msgstr "сначала самые старые" - -msgid "newest first" -msgstr "сначала самые новые" - -msgid "shortest first" -msgstr "сначала короткий" - -msgid "longest first" -msgstr "сначала самые длинные" - -msgid "smallest first" -msgstr "сначала наименьший" - -msgid "biggest first" -msgstr "наибольшие сначала" - -msgid "Hours" -msgstr "Часы" - -msgid "Days" -msgstr "Дни" - -msgid "Weeks" -msgstr "Недели" - -msgid "Months" -msgstr "Месяцы" - -msgid "Years" -msgstr "Годы" - -msgid "The second value must be greater than the first one!" -msgstr "Второе значение должно быть выше первого!" - -msgid "Add search term" -msgstr "Добавить условие поиска" - -msgid "Newest tracks" -msgstr "Свежие треки" - -msgid "50 random tracks" -msgstr "50 случайных треков" - -msgid "Ever played" -msgstr "Любые прослушанные" - -msgid "Never played" -msgstr "Никогда не прослушивались" - -msgid "Last played" -msgstr "Последний раз" - -msgid "Most played" -msgstr "Часто прослушиваемые" - -msgid "Favourite tracks" -msgstr "Любимые треки" - -msgid "Least favourite tracks" -msgstr "Нелюбимые треки" - -msgid "All tracks" -msgstr "Все треки" - -msgid "Dynamic random mix" -msgstr "Динамичный случайный микс" - -msgid "New smart playlist..." -msgstr "Новый умный плейлист…" - -msgid "Play next" -msgstr "Играть следующий" - -msgid "Edit smart playlist..." -msgstr "Править умный плейлист…" - -msgid "Delete smart playlist" -msgstr "Удалить умный плейлист" - -msgid "Smart playlist" -msgstr "Умный плейлист" - -msgid "Playlist type" -msgstr "Тип плейлиста" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Умный плейлист — это динамический список композиций из вашей фонотеки. Существуют разные типы умных плейлистов с различными способами подбора треков." - -msgid "Finish" -msgstr "Готово" - -msgid "Choose a name for your smart playlist" -msgstr "Выберите название вашего умного плейлиста" - -msgid "Abort" -msgstr "Прервать" - -msgid "All albums" -msgstr "Все альбомы" - -msgid "Albums with covers" -msgstr "Альбомы с обложками" - -msgid "Albums without covers" -msgstr "Альбомы без обложек" - -msgid "Really cancel?" -msgstr "Действительно отменить?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Закрытие этого окна остановит поиск обложек для альбомов." - -msgid "Don't stop!" -msgstr "Не останавливать!" - -msgid "All artists" -msgstr "Все артисты" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Получено %1 обложек из %2 (%3 загрузить не удалось)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 передано" - -msgid "Export finished" -msgstr "Экспорт завершён" - -msgid "No covers to export." -msgstr "Нет обложек для экспорта." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Экспортировано %1 обложек из %2 (%3 пропущено)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "Не удалось сохранить обложку в файл %1." - -#, qt-format -msgid "Covers from %1" -msgstr "Обложки из %1" - -msgid "Search" -msgstr "Поиск" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Изображения (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Изображения (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Все файлы (*)" - -msgid "Load cover from disk..." -msgstr "Загрузить обложку с диска…" - -msgid "Save cover to disk..." -msgstr "Сохранить обложку на диск…" - -msgid "Load cover from URL..." -msgstr "Загрузить обложку из адреса…" - -msgid "Search for album covers..." -msgstr "Поиск обложек альбомов…" - -msgid "Unset cover" -msgstr "Удалить обложку" - -msgid "Delete cover" -msgstr "Удалить обложку" - -msgid "Clear cover" -msgstr "Очистить обложку" - -msgid "Show fullsize..." -msgstr "Открыть в полный размер…" - -msgid "Search automatically" -msgstr "Искать автоматически" - -msgid "Load cover from disk" -msgstr "Загрузка обложки с диска" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Не удалось открыть файл обложки %1 для чтения: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "Файл обложки %1 пуст." - -msgid "unknown" -msgstr "неизвестно" - -msgid "Save album cover" -msgstr "Сохранить обложку альбома" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Не удалось открыть файл обложки %1 для записи: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Не удалось записать обложку в файл %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Не удалось записать обложку в файл %1." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Не удалось удалить файл обложки %1: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Не удалось записать обложку в файл %1: %2" - -msgid "Total network requests made" -msgstr "Всего выполнено сетевых запросов" - -msgid "Average image size" -msgstr "Средний размер изображений" - -msgid "Total bytes transferred" -msgstr "Всего передано байт" - -msgid "Fetching cover error" -msgstr "Ошибка получения обложки" - -msgid "The site you requested does not exist!" -msgstr "Запрошенный сайт не существует!" - -msgid "The site you requested is not an image!" -msgstr "Запрошенная ссылка не является изображением!" - -msgid "Genius Authentication" -msgstr "Аутентификация Genius" - -msgid "Please open this URL in your browser" -msgstr "Пожалуйста, откройте эту ссылку в вашем браузере" - -msgid "Redirect missing token code!" -msgstr "В перенаправлении отсутствует код токена!" - -msgid "Received invalid reply from web browser." -msgstr "Получен неверный ответ от веб-браузера." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "В перенаправлении с Genius отсутствует код или состояние элементов запроса." - -msgid "General" -msgstr "Общие" - -msgid "User interface" -msgstr "Интерфейс" - -msgid "Streaming" -msgstr "Проигрывание потоков" - -msgid "Add directory..." -msgstr "Добавить каталог…" - -msgid "Write all playcounts and ratings to files" -msgstr "Записать счётчики прослушивания и оценки в файлы" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Вы действительно хотите записать счётчики прослушивания и оценки во все файлы песен вашей фонотеки?" - -msgid "Enter your user token from" -msgstr "Укажите ваш пользовательский токен из" - -msgid "Use Tidal settings to authenticate." -msgstr "Использовать настройки Tidal для аутентификации." - -msgid "Use Spotify settings to authenticate." -msgstr "Использовать настройки Spotify для аутентификации." - -msgid "Use Qobuz settings to authenticate." -msgstr "Использовать настройки Qobuz для аутентификации." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 требует аутентификации." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 не требует аутентификации." - -msgid "No provider selected." -msgstr "Поставщик не выбран." - -msgid "Authentication failed" -msgstr "Ошибка аутентификации" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "Вручную не задана (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "Задать с помощью поиска обложек альбомов (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "Автовыбранная из каталога с альбомом (%1)" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "Вложенная обложка альбома (%1)" - -msgid "Select background image" -msgstr "Выбрать фоновое изображение" - -msgid "OSD Preview" -msgstr "Предпросмотр экранного меню" - -msgid "Drag to reposition" -msgstr "Перетащите для размещения" - -msgid "About Strawberry" -msgstr "О Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Версия %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry — музыкальный проигрыватель и органайзер фонотеки." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Это форк Clementine, выпущенный в 2018 году, специально для коллекционеров музыки и меломанов." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry — бесплатное программное обеспечение, выпущенное под лицензией GPL. Исходный код доступен на %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Вы должны были получить копию GNU General Public License вместе с этой программой. Если нет, смотрите раздел %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Если вам приглянулся Strawberry, пожалуйста, рассмотрите возможность спонсорства или пожертвования." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Вы можете материально поддержать автора на %1. Также можно произвести единовременный платёж на %2." - -msgid "Author and maintainer" -msgstr "Автор и куратор" - -msgid "Contributors" -msgstr "Участники" - -msgid "Clementine authors" -msgstr "Авторы Clementine" - -msgid "Clementine contributors" -msgstr "Разработчики Clementine" - -msgid "Thanks to" -msgstr "Благодарности" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Спасибо всем прочим разработчикам Amarok и Clementine." - -msgid "(different across multiple songs)" -msgstr "(различный через несколько композиций)" - -msgid "Different art across multiple songs." -msgstr "Разные обложки для нескольких песен." - -msgid "Previous" -msgstr "Предыдущий" - -msgid "Next" -msgstr "Следующий" - -msgid "Saving tracks" -msgstr "Сохранение треков" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 песен выбрано." - -msgid "Yes" -msgstr "Да" - -msgid "No" -msgstr "Нет" - -msgid "Cover is unset." -msgstr "Обложка не задана." - -msgid "Cover from embedded image." -msgstr "Обложка из вложенного изображения." - -#, qt-format -msgid "Cover from %1" -msgstr "Обложка из %1" - -msgid "Cover art not set" -msgstr "Обложка не задана" - -msgid "Album cover editing is only available for collection songs." -msgstr "Правка обложки альбома доступна только для песен из фонотеки." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Смена обложки: будет очищена при сохранении." - -msgid "Cover changed: Will be unset when saved." -msgstr "Смена обложки: будет снята при сохранении." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Смена обложки: будет удалена при сохранении." - -msgid "Cover changed: Will set new when saved." -msgstr "Смена обложки: будет обновлена при сохранении." - -msgid "Reset song play statistics" -msgstr "Сбросить статистику воспроизведения песни" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "Уверены, что хотите сбросить статистику воспроизведения этой песни?" - -msgid "loading..." -msgstr "загружается…" - -msgid "Not found." -msgstr "Не найдено." - -msgid "Original tags" -msgstr "Исходные теги" - -msgid "Suggested tags" -msgstr "Предлагаемые теги" - -msgid "Delete files" -msgstr "Удалить файлы" - -msgid "The following files will be deleted from disk:" -msgstr "Следующие файлы будут удалены с диска:" - -msgid "Are you sure you want to continue?" -msgstr "Уверены, что хотите продолжить?" - -msgid "Receiving initial data from last.fm..." -msgstr "Получение исходных данных от Last.fm…" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Получение счётчиков прослушивания для %1 песен и последнее прослушивание для %2 песен." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Получение последнего прослушивание для %1 песен." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Получение счётчиков прослушивания для %1 песен." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Получены счётчики прослушивания для %1 песен и последнее прослушивание для %2 песен." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Последнее прослушивание для %1 песен получено." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Получены счётчики прослушивания для %1 песен." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry работает через Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Обнаружено, что Strawberry работает через Snap" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry работает медленно и ограниченно при запуске через Snap. Доступ к корневой файловой системе (/) не будет работать. Также могут существовать другие ограничения, связанные с доступом к определённым устройствам или общим сетевым ресурсам." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Для Ubuntu доступен официальный репозиторий PPA в %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Официальные выпуски доступны для Debian и Ubuntu, они также работают с большинством их производных. См. подробности на %1." - -msgid "For a better experience please consider the other options above." -msgstr "Для лучшего опыта, пожалуйста, рассмотрите другие варианты выше." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Скопируйте ваши strawberry.conf и strawberry.db из вашего каталога ~/snap, чтобы избежать потери настроек, перед удалением snap:" - -msgid "Uninstall the snap with:" -msgstr "Удалить Snap с помощью:" - -msgid "Install strawberry through PPA:" -msgstr "Установить Strawberry через PPA:" - -msgid "Select directory for the playlists" -msgstr "Выбрать каталог для плейлистов" - -msgid "Directory does not exist." -msgstr "Каталог не существует." - -msgid "Large sidebar" -msgstr "Широкая боковая панель" - -msgid "Icons sidebar" -msgstr "Боковая панель значков" - -msgid "Small sidebar" -msgstr "Узкая боковая панель" - -msgid "Plain sidebar" -msgstr "Обычная боковая панель" - -msgid "Tabs on top" -msgstr "Вкладки сверху" - -msgid "Icons on top" -msgstr "Значки сверху" - -msgid "Available" -msgstr "Доступно" - -msgid "New songs" -msgstr "Новые композиции" - -msgid "Exceeded by" -msgstr "Превышено" - -msgid "Used" -msgstr "Использовано" - -msgid "Clear" -msgstr "Очистить" - -msgid "Reset" -msgstr "Сброс" - -msgid "Small album cover" -msgstr "Маленькая обложка альбома" - -msgid "Large album cover" -msgstr "Крупная обложка альбома" - -msgid "Fit cover to width" -msgstr "Подогнать обложку по ширине" - -msgid "Show above status bar" -msgstr "Показать над строкой состояния" - -msgid "You are signed in." -msgstr "Вы вошли в систему." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Вы вошли в систему как %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Истекает %1" - -#, qt-format -msgid "disc %1" -msgstr "диск %1" - -#, qt-format -msgid "track %1" -msgstr "трек %1" - -msgid "Paused" -msgstr "Приостановлен" - -msgid "Stopped" -msgstr "Остановлено" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Остановить воспроизведение после трека: %1" - -msgid "On" -msgstr "Вкл." - -msgid "Off" -msgstr "Откл." - -msgid "Playlist finished" -msgstr "Плейлист закончился" - -#, qt-format -msgid "Volume %1%" -msgstr "Громкость %1%" - -msgid "Don't shuffle" -msgstr "Не перемешивать" - -msgid "Shuffle all" -msgstr "Перемешать все" - -msgid "Shuffle tracks in this album" -msgstr "Перемешать треки в этом альбоме" - -msgid "Shuffle albums" -msgstr "Перемешать альбомы" - -msgid "Don't repeat" -msgstr "Не повторять" - -msgid "Repeat track" -msgstr "Повторять трек" - -msgid "Repeat album" -msgstr "Повторять альбом" - -msgid "Repeat playlist" -msgstr "Повторять плейлист" - -msgid "Stop after every track" -msgstr "Стоп после каждого трека" - -msgid "Intro tracks" -msgstr "Вступительные треки" - -#, qt-format -msgid "Configure %1..." -msgstr "Настроить %1…" - -msgid "Add to artists" -msgstr "Добавить в артисты" - -msgid "Add to albums" -msgstr "Добавить в альбомы" - -msgid "Add to songs" -msgstr "Добавить в песни" - -msgid "Enter search terms above to find music" -msgstr "Введите условия поиска выше, чтобы найти музыку" - -msgid "The streaming collection is empty!" -msgstr "Фонотека потоков пуста!" - -msgid "Click here to retrieve music" -msgstr "Щёлкните сюда, чтобы получить музыку" - -msgid "Remove from favorites" -msgstr "Удалить из избранного" - -msgid "Open homepage" -msgstr "Открыть домашнюю страницу" - -msgid "Donate" -msgstr "Пожертвовать" - -msgid "Refresh channels" -msgstr "Обновить каналы" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Получение %1 каналов" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "Аутентификация скробблера %1" - -msgid "Open URL in web browser?" -msgstr "Открыть адрес в веб-браузере?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Нажмите «Сохранить», чтобы скопировать адрес в буфер обмена и вручную открыть его в веб-браузере." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Не удалось открыть адрес. Пожалуйста, откройте эту ссылку в вашем браузере" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Неверный ответ от веб-браузера. Отсутствует токен." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "Получен неверный ответ от веб-браузера. Попробуйте другой браузер." - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Скробблер %1 не аутентифицирован!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Ошибка %1 скробблера: %2" - -msgid "ListenBrainz Authentication" -msgstr "Аутентификация ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "Не удаётся заскробблить %1 — %2 из-за ошибки: %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "Отсутствует идентификатор записи MusicBrainz для %1 %2 %3" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "Ошибка ListenBrainz: %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Отсутствует имя пользователя, пожалуйста, сперва авторизируйтесь в Last.fm!" - -msgid "Organizing files" -msgstr "Организация файлов" - -msgid "Artist's initial" -msgstr "Инициалы артиста" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Битрейт" - -msgid "File extension" -msgstr "Расширение файла" - -msgid "Error copying songs" -msgstr "Ошибка копирования композиций" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "В процессе копирования некоторых композиций возникли проблемы. Следующие файлы не могут быть скопированы:" - -msgid "Error deleting songs" -msgstr "Ошибка удаления композиций" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "В процессе удаления некоторых композиций возникли проблемы. Следующие файлы не могут быть удалены:" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Не удалось создать элемент GStreamer «%1» — убедитесь, что у вас установлены все необходимые модули GStreamer" - -#, qt-format -msgid "Successfully written %1" -msgstr "Успешно записано %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Конвертировано %1 файлов в %2 потока" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Ошибка при обработке %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Запуск %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Не удалось найти кодировщик для %1, проверьте, что у вас установлены все необходимые модули GStreamer" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Не удалось найти мультиплексор для %1. Убедитесь, что у вас установлены необходимые модули GStreamer" - -msgid "Start transcoding" -msgstr "Конвертировать" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n осталось" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n завершено" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n с ошибкой" - -msgid "Add files to transcode" -msgstr "Добавить файлы для конвертирования" - -msgid "Open a directory to import music from" -msgstr "Открыть папку для импорта музыки" - -msgid "Play/Pause" -msgstr "Играть/пауза" - -msgid "Stop" -msgstr "Стоп" - -msgid "Stop playing after current track" -msgstr "Остановить после текущего трека" - -msgid "Next track" -msgstr "Следующий трек" - -msgid "Previous track" -msgstr "Предыдущий трек" - -msgid "Restart or previous track" -msgstr "Перезапустить или предыдущий трек" - -msgid "Increase volume" -msgstr "Увеличить громкость" - -msgid "Decrease volume" -msgstr "Уменьшить громкость" - -msgid "Mute" -msgstr "Приглушить звук" - -msgid "Seek forward" -msgstr "Перемотка вперёд" - -msgid "Seek backward" -msgstr "Перемотка назад" - -msgid "Show/Hide" -msgstr "Показать/скрыть" - -msgid "Show OSD" -msgstr "Показать экранное меню" - -msgid "Toggle Pretty OSD" -msgstr "Показать/скрыть модное экранное меню" - -msgid "Change shuffle mode" -msgstr "Сменить режим перемешивания" - -msgid "Change repeat mode" -msgstr "Сменить режим повторения" - -msgid "Enable/disable scrobbling" -msgstr "Включить/отключить скробблинг" - -msgid "Love" -msgstr "В любимые" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Нажмите сочетание клавиш для: «%1»…" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Команда «%1» не может быть выполнена." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Сочетание клавиш «%1»" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Использование сочетаний клавиш X11 на %1 не рекомендуется и может привести к тому, что клавиатура перестанет отвечать!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr " Горячие клавиши на %1 обычно работают через MPRIS и KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr " Горячие клавиши на %1 обычно работают через Gnome Settings Daemon и должны быть настроены в gnome-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr " Горячие клавиши на %1 обычно работают через Gnome Settings Daemon и должны быть настроены в cinnamon-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr " Горячие клавиши на %1 обычно работают через MATE Settings Daemon и должны быть настроены в нём." - -msgid "D-Bus path" -msgstr "Путь D-Bus" - -msgid "Serial number" -msgstr "Серийный номер" - -msgid "Mount points" -msgstr "Точки монтирования" - -msgid "Partition label" -msgstr "Метка раздела" - -msgid "UUID" -msgstr "UUID" - -msgid "Connect device" -msgstr "Подключить устройство" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Это устройство подключено впервые. Strawberry выполнит поиск музыкальных файлов на устройстве. Это может занять некоторое время." - -msgid "This device will not work properly" -msgstr "Это устройство не будет работать правильно" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Это устройство MTP, а вы собрали Strawberry без поддержки libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "При продолжении, устройство будет работать медленно и скопированные песни не будут работать." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Это iPod, а вы собрали Strawberry без поддержки libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Не поддерживаемый тип устройства: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Идёт обновление %1%…" - -msgid "Not connected" -msgstr "Не подключено" - -msgid "Not mounted - double click to mount" -msgstr "Не подключено — щёлкните дважды для подключения" - -msgid "Double click to open" -msgstr "Щёлкните дважды для открытия" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 песня%2" - -msgid "Safely remove device" -msgstr "Безопасно извлечь устройство" - -msgid "Forget device" -msgstr "Забыть устройство" - -msgid "Device properties..." -msgstr "Свойства носителя…" - -msgid "Delete from device..." -msgstr "Удалить с носителя…" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Команда «Забыть устройство» удалит его из этого списка и заставит Strawberry пересканировать все песни на нём при следующем подключении." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Эти файлы будут удалены с устройства. Вы действительно хотите продолжить?" - -msgid "Model" -msgstr "Модель" - -msgid "Manufacturer" -msgstr "Производитель" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "Не удалось скопировать %1 в %2: %3" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "Запись базы данных не удалась: %1" - -msgid "Writing database failed." -msgstr "Запись базы данных не удалась." - -msgid "Loading iPod database" -msgstr "Загружается база данных iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Произошла ошибка при загрузке базы данных iTunes" - -msgid "Mount point" -msgstr "Точка монтирования" - -msgid "Device" -msgstr "Устройство" - -msgid "URI" -msgstr "Ссылка" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "Недопустимое устройство MTP: %1" - -msgid "Could not open MTP device." -msgstr "Не удалось открыть устройство MTP." - -#, qt-format -msgid "MTP error: %1" -msgstr "Ошибка MTP: %1" - -msgid "MTP device not found." -msgstr "Устройство MTP не найдено." - -msgid "Loading MTP device" -msgstr "Загрузка устройства MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Ошибка подключения устройства MTP %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "Ошибка подключения устройства MTP %1: %2" - -msgid "Identifying song" -msgstr "Определяется песня" - -msgid "Fingerprinting song" -msgstr "Получается отпечаток песни" - -msgid "Downloading metadata" -msgstr "Загружаются метаданные" - -msgid "Error while setting CDDA device to ready state." -msgstr "Ошибка при установке устройства CDDA в состояние готовности." - -msgid "Error while setting CDDA device to pause state." -msgstr "Ошибка при установке устройства CDDA в состояние паузы." - -msgid "Error while querying CDDA tracks." -msgstr "Ошибка при запросе треков CDDA." - -msgid "Server URL is invalid." -msgstr "Адрес сервера недействителен." - -msgid "Missing username or password." -msgstr "Отсутствует имя пользователя или пароль." - -msgid "Subsonic server URL is invalid." -msgstr "Адрес сервера Subsonic неверен." - -msgid "Missing Subsonic username or password." -msgstr "Отсутствует имя пользователя или пароль Subsonic." - -msgid "Retrieving albums..." -msgstr "Получение альбомов…" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Получение песен для альбома %1…" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Получение песен для альбомов %1…" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Получение обложки альбома для %1…" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Получение обложек альбомов для %1…" - -msgid "Configuration incomplete" -msgstr "Конфигурация не завершена" - -msgid "Missing server url, username or password." -msgstr "Отсутствует адрес сервера, имя пользователя или пароль." - -msgid "Configuration incorrect" -msgstr "Некорректная конфигурация" - -msgid "Test successful!" -msgstr "Проверка прошла успешно!" - -msgid "Test failed!" -msgstr "Проверка не пройдена!" - -msgid "Reply from Tidal is missing query items." -msgstr "В ответе от Tidal отсутствуют элементы запроса." - -msgid "Missing Tidal API token." -msgstr "Отсутствует токен API Tidal." - -msgid "Missing Tidal username." -msgstr "Отсутствует имя пользователя Tidal." - -msgid "Missing Tidal password." -msgstr "Отсутствует Tidal пароль." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Не аутентифицировано с Tidal и достигнуто максимум попыток входа в систему." - -msgid "Not authenticated with Tidal." -msgstr "Не аутентифицировано с Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Отсутствуют токен API, имя пользователя или пароль." - -msgid "Authenticating..." -msgstr "Аутентификация…" - -msgid "Receiving artists..." -msgstr "Получение артистов…" - -msgid "Receiving albums..." -msgstr "Получение альбомов…" - -msgid "Receiving songs..." -msgstr "Получение песен…" - -msgid "Searching..." -msgstr "Поиск…" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "Получение альбомов для %1 артиста…" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "Получение альбомов для %1 артиста…" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "Получение песен для %1 альбома…" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "Получение песен для %1 альбомов…" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "Получение обложки для %1 альбома…" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "Получение обложек для %1 альбомов…" - -msgid "No match." -msgstr "Не совпадает." - -msgid "Cancelled." -msgstr "Отменено." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Получен адрес с шифрованным потоком %1 от Tidal. Strawberry в настоящее время не поддерживает шифрованные потоки." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Получен адрес с шифрованным потоком от Tidal. Strawberry в настоящее время не поддерживает шифрованные потоки." - -msgid "Missing Tidal client ID." -msgstr "Отсутствует идентификатор клиента Tidal." - -msgid "Missing API token." -msgstr "Отсутствует токен API." - -msgid "Missing username." -msgstr "Отсутствует имя пользователя." - -msgid "Missing password." -msgstr "Отсутствует пароль." - -msgid "Spotify Authentication" -msgstr "Аутентификация Spotify" - -msgid "Redirect missing token code or state!" -msgstr "В перенаправлении отсутствует код или состояние токена!" - -msgid "Not authenticated with Spotify." -msgstr "Не аутентифицировано со Spotify." - -msgid "Data missing error" -msgstr "Ошибка отсутствия данных" - -msgid "Maximum number of login attempts reached." -msgstr "Достигнут максимум попыток входа в систему." - -msgid "Missing Qobuz app ID." -msgstr "Отсутствует идентификатор приложения Qobuz." - -msgid "Missing Qobuz username." -msgstr "Отсутствует имя пользователя Qobuz." - -msgid "Missing Qobuz password." -msgstr "Отсутствует пароль Qobuz." - -msgid "Not authenticated with Qobuz." -msgstr "Не аутентифицирован с помощью Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Отсутствует идентификатор приложения Qobuz или секрет." - -msgid "Missing app id." -msgstr "Отсутствуют ИД приложения." - -msgid "Show moodbar" -msgstr "Показывать индикатор тона" - -msgid "Moodbar style" -msgstr "Стиль индикатора тона" - -msgid "Normal" -msgstr "Спокойный" - -msgid "Angry" -msgstr "Сердитый" - -msgid "Frozen" -msgstr "Холодный" - -msgid "Happy" -msgstr "Счастливый" - -msgid "System colors" -msgstr "Системные цвета" - -msgid "Strawberry Music Player" -msgstr "Музыкальный проигрыватель Strawberry" - -msgid "F5" -msgstr "F5" - -msgid "&Play" -msgstr "&Играть" - -msgid "F6" -msgstr "F6" - -msgid "&Stop" -msgstr "&Стоп" - -msgid "F7" -msgstr "F7" - -msgid "&Next track" -msgstr "С&ледующий трек" - -msgid "F8" -msgstr "F8" - -msgid "&Quit" -msgstr "&Выход" - -msgid "Ctrl+Q" -msgstr "Ctrl+Q" - -msgid "Ctrl+Alt+V" -msgstr "Ctrl+Alt+V" - -msgid "&Clear playlist" -msgstr "&Очистить плейлист" - -msgid "Ctrl+K" -msgstr "Ctrl+K" - -msgid "Ctrl+E" -msgstr "Ctrl+E" - -msgid "Renumber tracks in this order..." -msgstr "Перенумеровать треки в данном порядке…" - -msgid "Set value for all selected tracks..." -msgstr "Установить значение для всех выделенных треков…" - -msgid "Edit tag..." -msgstr "Править тег…" - -msgid "&Settings..." -msgstr "&Настройки…" - -msgid "Ctrl+P" -msgstr "Ctrl+P" - -msgid "&About Strawberry" -msgstr "&О Strawberry" - -msgid "F1" -msgstr "F1" - -msgid "S&huffle playlist" -msgstr "Пере&мешать плейлист" - -msgid "Ctrl+H" -msgstr "Ctrl+H" - -msgid "&Add file..." -msgstr "&Добавить файл…" - -msgid "Ctrl+Shift+A" -msgstr "Ctrl+Shift+A" - -msgid "&Open file..." -msgstr "&Открыть файл…" - -msgid "Open audio &CD..." -msgstr "Открыть &аудио-CD…" - -msgid "&Cover Manager" -msgstr "&Менеджер обложек" - -msgid "C&onsole" -msgstr "&Консоль" - -msgid "&Shuffle mode" -msgstr "&Режим перемешивания" - -msgid "&Repeat mode" -msgstr "Ре&жим повторения" - -msgid "Remove from playlist" -msgstr "Убрать из плейлиста" - -msgid "&Equalizer" -msgstr "&Эквалайзер" - -msgid "&Transcode Music" -msgstr "&Конвертер музыки" - -msgid "Add &folder..." -msgstr "Добавить &папку…" - -msgid "&Jump to the currently playing track" -msgstr "Перейти к &активному треку" - -msgid "Ctrl+J" -msgstr "Ctrl+J" - -msgid "&New playlist" -msgstr "&Новый плейлист" - -msgid "Ctrl+N" -msgstr "Ctrl+N" - -msgid "Save &playlist..." -msgstr "&Сохранить плейлист…" - -msgid "Ctrl+S" -msgstr "Ctrl+S" - -msgid "&Load playlist..." -msgstr "&Загрузить плейлист…" - -msgid "Ctrl+Shift+O" -msgstr "Ctrl+Shift+O" - -msgid "&Save all playlists..." -msgstr "Сохранить все плейлист&ы…" - -msgid "Go to next playlist tab" -msgstr "Перейти к следующему плейлисту" - -msgid "Go to previous playlist tab" -msgstr "Перейти к предыдущему плейлисту" - -msgid "&Update changed collection folders" -msgstr "&Обновить изменения папок фонотеки" - -msgid "About &Qt" -msgstr "О &фреймворке Qt" - -msgid "&Mute" -msgstr "&Приглушить звук" - -msgid "Ctrl+M" -msgstr "Ctrl+M" - -msgid "&Do a full collection rescan" -msgstr "&Полное пересканирование фонотеки" - -msgid "Stop collection scan" -msgstr "Остановить сканирование фонотеки" - -msgid "Complete tags automatically..." -msgstr "Автозаполнение тегов…" - -msgid "Ctrl+T" -msgstr "Ctrl+T" - -msgid "Toggle scrobbling" -msgstr "Вкл./откл. скробблинг" - -msgid "Remove &duplicates from playlist" -msgstr "Убрать по&вторы из плейлиста" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Уб&рать недоступные треки" - -msgid "Add file(s) to transcoder" -msgstr "Конвертировать файлы" - -msgid "Add file to transcoder" -msgstr "Добавить в конвертер" - -msgid "Add stream..." -msgstr "Добавить поток…" - -msgid "Show sidebar" -msgstr "Показывать боковую панель" - -msgid "Import data from last.fm..." -msgstr "Импорт данных из Last.fm…" - -msgid "MenuPopupToolButton" -msgstr "MenuPopupToolButton" - -msgid "&Music" -msgstr "&Музыка" - -msgid "P&laylist" -msgstr "&Плейлист" - -msgid "Help" -msgstr "&Справка" - -msgid "&Tools" -msgstr "С&ервис" - -msgid "Collection advanced grouping" -msgstr "Расширенная группировка фонотеки" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Вы можете изменить способ организации композиций в фонотеке." - -msgid "Group Collection by..." -msgstr "Группировать фонотеку по…" - -msgid "Second level" -msgstr "Второй уровень" - -msgid "Third level" -msgstr "Третий уровень" - -msgid "Separate albums by grouping tag" -msgstr "Разделять альбому по тегу группировки" - -msgid "Collection Filter" -msgstr "Фильтр фонотеки" - -msgid "Entire collection" -msgstr "Вся фонотека" - -msgid "Added today" -msgstr "Добавлено сегодня" - -msgid "Added this week" -msgstr "Добавлено за неделю" - -msgid "Added within three months" -msgstr "Добавлено за три месяца" - -msgid "Added this year" -msgstr "Добавлено за год" - -msgid "Added this month" -msgstr "Добавлено за месяц" - -msgid "Save current grouping" -msgstr "Сохранить текущую группу" - -msgid "Manage saved groupings" -msgstr "Менеджер сохранённых групп" - -msgid "Enter search terms here" -msgstr "Введите критерии поиска" - -msgid "Form" -msgstr "Форма" - -msgid "Saved Grouping Manager" -msgstr "Менеджер сохранённых групп" - -msgid "Remove" -msgstr "Удалить" - -msgid "Ctrl+Up" -msgstr "Ctrl+Вверх" - -msgid "File paths" -msgstr "Пути файлов" - -msgid "This can be changed later through the preferences" -msgstr "В дальнейшем это может быть изменено в настройках" - -msgid "Remember my choice" -msgstr "Запомнить мой выбор" - -msgid "Stop after each track" -msgstr "Стоп после каждого трека" - -msgid "Repeat" -msgstr "Повторять" - -msgid "Shuffle" -msgstr "Перемешать" - -msgid "Dynamic mode is on" -msgstr "Динамический режим включён" - -msgid "New tracks will be added automatically." -msgstr "Новые треки добавляются автоматически." - -msgid "Expand" -msgstr "Расширить" - -msgid "Repopulate" -msgstr "Пересоздать" - -msgid "Turn off" -msgstr "Отключить" - -msgid "QueueView" -msgstr "Обзор очереди" - -msgid "Move down" -msgstr "Вниз" - -msgid "Move up" -msgstr "Вверх" - -msgid "Ctrl+Down" -msgstr "Ctrl+Вниз" - -msgid "Search mode" -msgstr "Режим поиска" - -msgid "Match every search term (AND)" -msgstr "Совпадает с каждым условием поиска (И)" - -msgid "Match one or more search terms (OR)" -msgstr "Совпадает с одним или несколькими условиями (ИЛИ)" - -msgid "Include all songs" -msgstr "Включить все песни" - -msgid "Sorting" -msgstr "Сортировка" - -msgid "Put songs in a random order" -msgstr "Перемешать порядок песен" - -msgid "Sort songs by" -msgstr "Сортировать песни по" - -msgid "Limits" -msgstr "Ограничения" - -msgid "Show all the songs" -msgstr "Показать все песни" - -msgid "Only show the first" -msgstr "Показывать только первый" - -msgid " songs" -msgstr " песен" - -msgid "Preview" -msgstr "Предпросмотр" - -msgid "and" -msgstr "и" - -msgid "ago" -msgstr "тому назад" - -msgid "New smart playlist" -msgstr "Новый умный плейлист" - -msgid "Edit smart playlist" -msgstr "Править умный плейлист" - -msgid "Use dynamic mode" -msgstr "Использовать динамический режим" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "В динамическом режиме новые треки подбираются и добавляются в плейлист каждый раз, когда заканчивается очередная песня." - -msgid "Export covers" -msgstr "Экспорт обложек" - -msgid "Output" -msgstr "Вывод" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Введите имя файла для экспортируемых обложек (без расширения):" - -msgid "Export downloaded covers" -msgstr "Экспорт загруженных обложек" - -msgid "Export embedded covers" -msgstr "Экспорт вложенных обложек" - -msgid "Existing covers" -msgstr "Существующие обложки" - -msgid "Do not overwrite" -msgstr "Не перезаписывать" - -msgid "O&verwrite all" -msgstr "&Перезаписать все" - -msgid "Overwrite s&maller ones only" -msgstr "Перезаписать только более маленькие" - -msgid "Size" -msgstr "Размер" - -msgid "Scale size" -msgstr "Размер масштабирования" - -msgid "Size:" -msgstr "Размер:" - -msgid "Pixel" -msgstr "Пиксель" - -msgid "Cover Manager" -msgstr "Менеджер обложек" - -msgid "Fetch automatically" -msgstr "Получать автоматически" - -msgid "Load" -msgstr "Загрузить" - -msgid "Add to playlist" -msgstr "Добавить в плейлист" - -msgid "View" -msgstr "Просмотр" - -msgid "Total albums:" -msgstr "Всего альбомов:" - -msgid "Without cover:" -msgstr "Без обложек:" - -msgid "0" -msgstr "0" - -msgid "Fetch Missing Covers" -msgstr "Получить недостающие обложки" - -msgid "Export Covers" -msgstr "Экспорт обложек" - -msgid "Fetch completed" -msgstr "Получение завершено" - -msgid "Load cover from URL" -msgstr "Загрузка обложки из адреса" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Введите адрес для скачивания обложки из Интернета:" - -msgid "Settings" -msgstr "Настройки" - -msgid "Behavior" -msgstr "Поведение" - -msgid "Show system tray icon" -msgstr "Показывать значок в трее" - -msgid "Keep running in the background when the window is closed" -msgstr "Продолжать работу в фоне по закрытии окна" - -msgid "Show song progress on system tray icon" -msgstr "Показывать ход проигрывания песни на значке в трее" - -msgid "Show song progress on taskbar" -msgstr "Показывать ход прослушивания песни на панели задач" - -msgid "Resume playback on start" -msgstr "Продолжить воспроизведение при запуске" - -msgid "Show playing widget" -msgstr "Показывать виджет воспроизведения" - -msgid "On startup" -msgstr "При запуске" - -msgid "Remember from &last time" -msgstr "Вернуть преды&дущее состояние" - -msgid "Show the main window" -msgstr "Показать главное окно" - -msgid "Hide the main window" -msgstr "Скрыть главное окно" - -msgid "Show the main window maximized" -msgstr "Показать главное окно развёрнутым" - -msgid "Show the main window minimized" -msgstr "Показать главное окно свёрнутым" - -msgid "Language" -msgstr "Язык" - -msgid "Use the system default" -msgstr "Использовать язык системы" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Для применения языка потребуется перезапуск Strawberry." - -msgid "Using the menu to add a song will..." -msgstr "После добавления песни через меню…" - -msgid "Never start playing" -msgstr "Никогда не начинать воспроизведение" - -msgid "Play if there is nothing already playing" -msgstr "Проиграть, если ничего не играет" - -msgid "Always start playing" -msgstr "Всегда начинать воспроизведение" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Нажатие кнопки «Предыдущий» осуществит…" - -msgid "Jump to previous song right away" -msgstr "Немедленный переход к предыдущей песне" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Перезапуск песни, при повторном нажатии — переход к предыдущей" - -msgid "Double clicking a song will..." -msgstr "Двойной щелчок по песне…" - -msgid "Append to the playlist" -msgstr "Добавить в плейлист" - -msgid "Replace the playlist" -msgstr "Заменить плейлист" - -msgid "Add to the queue" -msgstr "Добавить в очередь" - -msgid "Double clicking a song in the playlist will..." -msgstr "Двойной щелчок по песне в плейлисте…" - -msgid "Change the currently playing song" -msgstr "Сменить активный трек" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Перемотка с помощью горячих клавиш клавиатуры или колеса мыши" - -msgid "Time step" -msgstr "Шаг времени" - -msgid " s" -msgstr " с" - -msgid "Volume Increment" -msgstr "Шаг громкости" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "В этих папках происходит поиск музыки для создания вашей фонотеки" - -msgid "Add new folder..." -msgstr "Добавить новую папку…" - -msgid "Remove folder" -msgstr "Удалить папку" - -msgid "Automatic updating" -msgstr "Автоматическое обновление" - -msgid "Update the collection when Strawberry starts" -msgstr "Обновлять фонотеку при запуске Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Следить за изменениями фонотеки" - -msgid "Song fingerprinting and tracking" -msgstr "Отпечаток и отслеживание песни" - -msgid "Mark disappeared songs unavailable" -msgstr "Помечать пропавшие песни недоступными" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "Выполнить анализ композиции EBU R 128 (требуется для нормализации громкости EBU R 128)" - -msgid "Expire unavailable songs after" -msgstr "Забывать недоступные песни после" - -msgid "days" -msgstr "дн." - -msgid "Preferred album art filenames (comma separated)" -msgstr "Приоритетные имена файлов обложек (через запятую)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "При поиске обложек альбомов Strawberry будет искать файлы изображений с одним из этих слов.\n" -"При отсутствии совпадений будет использовано наибольшее изображение в каталоге." - -msgid "Automatically open single categories in the collection tree" -msgstr "Автоматически раскрывать одиночные категории в дереве фонотеки" - -msgid "Show dividers" -msgstr "Показывать разделители" - -msgid "Show album cover art in collection" -msgstr "Показывать обложку альбома в фонотеке" - -msgid "Use various artists for compilation albums" -msgstr "Использовать разных артистов для альбомов-компиляций" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "Пропускать начальные артикли («the», «a», «an») при сортировке имён артистов" - -msgid "Album cover pixmap cache" -msgstr "Кэш обложек альбомов в формате Pixmap" - -msgid "Enable Disk Cache" -msgstr "Включить дисковый кэш" - -msgid "Disk Cache Size" -msgstr "Размер кэша диска" - -msgid "Current disk cache in use:" -msgstr "Используемый сейчас дисковый кэш:" - -msgid "Clear Disk Cache" -msgstr "Очистить дисковый кэш" - -msgid "Song playcounts and ratings" -msgstr "Счётчики прослушивания и оценки песни" - -msgid "Save playcounts to song tags when possible" -msgstr "Записывать счётчики прослушивания и оценки в теги песен по возможности" - -msgid "Save ratings to song tags when possible" -msgstr "Записывать оценки в теги песен по возможности" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Обновлять счётчик прослушивания базы данных при повторном чтении песен с диска" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Перезаписывать оценки в базе данных при повторном чтении песен с диска" - -msgid "Save playcounts and ratings to files now" -msgstr "Записать счётчики прослушивания и оценки в файлы сейчас" - -msgid "Enable delete files in the right click context menu" -msgstr "Включить удаление файлов в контекстное меню правого щелчка" - -msgid "Backend" -msgstr "Звук" - -msgid "Audio output" -msgstr "Вывод звука" - -msgid "Engine" -msgstr "Движок" - -msgid "ALSA plugin:" -msgstr "Модуль ALSA:" - -msgid "hw" -msgstr "hw" - -msgid "p&lughw" -msgstr "p&lughw" - -msgid "pcm" -msgstr "pcm" - -msgid "Exclusive mode (Experimental)" -msgstr "Исключительный режим (экспериментально)" - -msgid "Options" -msgstr "Параметры" - -msgid "Enable volume control" -msgstr "Включить управление громкостью" - -msgid "Upmix / downmix to" -msgstr "Преобразовать до" - -msgid "channels" -msgstr "каналов" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "Улучшить прослушивание стереозаписей через наушники (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "Включить HTTP/2 для потокового вещания" - -msgid "Use strict SSL mode" -msgstr "Использовать строгий режим SSL" - -msgid "Buffer" -msgstr "Буфер" - -msgid " ms" -msgstr " мс" - -msgid "Buffer duration" -msgstr "Размер буфера" - -msgid "High watermark" -msgstr "Верхний уровень" - -msgid "Low watermark" -msgstr "Нижний уровень" - -msgid "Defaults" -msgstr "По умолчанию" - -msgid "Audio normalization" -msgstr "Нормализация звука" - -msgid "No audio normalization" -msgstr "Без нормализации звука" - -msgid "Replay Gain" -msgstr "Нормализация громкости" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Использовать метаданные нормализации по возможности" - -msgid "Replay Gain mode" -msgstr "Режим нормализации" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Радио (равная громкость для всех треков)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Альбом (идеальная громкость всех треков)" - -msgid "Apply compression to prevent clipping" -msgstr "Применять сжатие для предотвращения искажений" - -msgid "Fallback-gain" -msgstr "Стандартное усиление" - -msgid "EBU R 128 Loudness Normalization" -msgstr "Нормализация громкости EBU R 128" - -msgid "Perform track loudness normalization" -msgstr "Выполнять нормализацию громкости дорожки" - -msgid "Target Level" -msgstr "Целевой уровень" - -msgid "Fading" -msgstr "Затухание звука" - -msgid "Fade out when stopping a track" -msgstr "Затухание при остановке трека" - -msgid "Cross-fade when changing tracks manually" -msgstr "Перекрёстное затухание при ручной смене трека" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Перекрёстное затухание при автоматической смене трека" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Кроме треков с одного и того же альбома или CUE-файла" - -msgid "Fading duration" -msgstr "Длительность затухания" - -msgid "Fade out on pause / fade in on resume" -msgstr "Затухание при паузе / нарастание при продолжении воспроизведения" - -msgid "Add song artist tag" -msgstr "Добавить тег «Артист»" - -msgid "Add song album tag" -msgstr "Добавить тег «Альбом»" - -msgid "Add song title tag" -msgstr "Добавить тег «Название»" - -msgid "Add song albumartist tag" -msgstr "Добавить тег «Артист альбома»" - -msgid "Add song year tag" -msgstr "Добавить тег «Год»" - -msgid "Add song composer tag" -msgstr "Добавить тег «Композитор»" - -msgid "Add song performer tag" -msgstr "Добавить тег «Исполнитель»" - -msgid "Add song grouping tag" -msgstr "Добавить тег «Группа»" - -msgid "Add song disc tag" -msgstr "Добавить тег «Диск»" - -msgid "Add song track tag" -msgstr "Добавить тег «Трек» песни" - -msgid "Add song genre tag" -msgstr "Добавить тег «Жанр»" - -msgid "Add song length tag" -msgstr "Добавить тег «Длина»" - -msgid "Add song play count" -msgstr "Добавить число прослушиваний песни" - -msgid "Add song skip count" -msgstr "Добавить число пропусков песни" - -msgid "Add a new line if supported by the notification type" -msgstr "Добавить новую строку, если поддерживается типом уведомления" - -msgid "%filename%" -msgstr "%filename%" - -msgid "Add song filename" -msgstr "Добавить имя файла для песни" - -msgid "%url%" -msgstr "%url%" - -msgid "Add song URL" -msgstr "Добавить адрес песни" - -msgid "%rating%" -msgstr "%rating%" - -msgid "Add song rating" -msgstr "Оценить песню" - -msgid "%originalyear%" -msgstr "%originalyear%" - -msgid "Add song original year tag" -msgstr "Добавить тег «Год оригинала»" - -msgid "Custom text settings" -msgstr "Собственные настройки текста" - -msgid "Summary" -msgstr "Сводка" - -msgid "Enable Items" -msgstr "Задействовать элементы" - -msgid "Technical Data" -msgstr "Технические данные" - -msgid "Song Lyrics" -msgstr "Тексты песен" - -msgid "Automatically search for album cover" -msgstr "Автоматический поиск обложки альбома" - -msgid "Font for headline" -msgstr "Шрифт заголовка" - -msgid "Font" -msgstr "Шрифт" - -msgid "Font size" -msgstr "Размер шрифта" - -msgid " pt" -msgstr " пт" - -msgid "Font for data and lyrics" -msgstr "Шрифт данных и текста песни" - -msgid "Use alternating row colors" -msgstr "Чередовать цвета строк" - -msgid "Show bars on the currently playing track" -msgstr "Показывать полоски на активном треке" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Подсвечивать активный трек анимацией" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Переходить к следующей позиции плейлиста, если песня недоступна" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Помечать серым недоступные песни в плейлистах при воспроизведении" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Помечать недоступные песни в плейлистах при запуске" - -msgid "Automatically select current playing track" -msgstr "Автоматически выбирать текущий проигрываемый трек" - -msgid "Enable playlist toolbar" -msgstr "Включить панель управления плейлиста" - -msgid "Enable playlist clear button" -msgstr "Включить кнопку очистки плейлиста" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Автоматически сортировать плейлист при добавлении песен" - -msgid "When saving a playlist, file paths should be" -msgstr "При сохранении плейлистов пути файлов должны быть" - -msgid "A&utomatic" -msgstr "А&втоматические" - -msgid "Absolu&te" -msgstr "Абсолю&тные" - -msgid "Re&lative" -msgstr "&Относительные" - -msgid "As&k when saving" -msgstr "Сп&рашивать при сохранении" - -msgid "Metadata" -msgstr "Метаданные" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Если включить, то щелчок по выбранной песне в плейлисте позволит править тег напрямую" - -msgid "Enable song metadata inline edition with click" -msgstr "Включить встроенную правку метаданных песни по щелчку" - -msgid "Write metadata when saving playlists" -msgstr "Записывать метаданные при сохранении плейлистов" - -msgid "Scrobbler" -msgstr "Скробблер" - -msgid "Enable" -msgstr "Включить" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Песни скробблятся, если они содержат допустимые метаданные, длятся более 30 секунд и воспроизводятся не менее половины своей длительности или в течение 4 минут (в зависимости от того, что произойдёт раньше)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Работать в автономном режиме (только кэшировать скробблы)" - -msgid "Show scrobble button" -msgstr "Показывать кнопку скробблинга" - -msgid "Show love button" -msgstr "Показывать кнопку «В любимые»" - -msgid "Submit scrobbles every" -msgstr "Отправлять скробблы каждые" - -msgid " seconds" -msgstr " секунд" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(Это задержка между моментами, когда песня заскробблится и когда скроббл отправится на сервер. Установка времени в 0 секунд сделает отправку скроббла мгновенной)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Предпочитать артиста альбома при отправке скробблов" - -msgid "Show dialog for errors" -msgstr "Показывать окно ошибок" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "Вырезать «ремастеринг» и прочее из альбома и имени" - -msgid "Enable scrobbling for the following sources:" -msgstr "Включить скробблинг для следующих источников:" - -msgid "Local file" -msgstr "Локальный файл" - -msgid "CDDA" -msgstr "CDDA" - -msgid "SomaFM" -msgstr "SomaFM" - -msgid "Stream" -msgstr "Поток" - -msgid "Radio Paradise" -msgstr "Радио Paradise" - -msgid "Last.fm" -msgstr "Last.fm" - -msgid "Login" -msgstr "Вход" - -msgid "Libre.fm" -msgstr "Libre.fm" - -msgid "Listenbrainz" -msgstr "Listenbrainz" - -msgid "User token:" -msgstr "Пользовательский токен:" - -msgid "Covers" -msgstr "Обложки" - -msgid "Cover providers" -msgstr "Поставщики обложек" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Выберите поставщиков для поиска обложек." - -msgid "Authentication" -msgstr "Аутентификация" - -msgid "Album cover types" -msgstr "Типы обложек альбомов" - -msgid "Saving album covers" -msgstr "Сохранение обложек альбомов" - -msgid "Save album covers in album directory" -msgstr "Сохранять обложки альбомов в каталоге альбомов" - -msgid "Save album covers in cache directory" -msgstr "Сохранять обложки альбомов в каталоге кэша" - -msgid "Save album covers as embedded cover" -msgstr "Сохранять обложки альбомов в качестве вложенных" - -msgid "Filename:" -msgstr "Имя файла:" - -msgid "Pattern" -msgstr "Шаблон" - -msgid "Random" -msgstr "Случайное" - -msgid "Overwrite existing file" -msgstr "Перезаписать существующий файл" - -msgid "Lowercase filename" -msgstr "Строчные имена файлов" - -msgid "Replace spaces with dashes" -msgstr "Заменить пробелы на тире" - -msgid "Lyrics" -msgstr "Текст песни" - -msgid "Lyrics providers" -msgstr "Поставщики текста песен" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Выберите поставщиков для поиска текста песен." - -msgid "Network Proxy" -msgstr "Прокси-сервер" - -msgid "&Use the system proxy settings" -msgstr "&Использовать системные настройки прокси" - -msgid "Direct internet connection" -msgstr "Прямое интернет-подключение" - -msgid "&Manual proxy configuration" -msgstr "&Ручная настройка прокси" - -msgid "HTTP proxy" -msgstr "HTTP-прокси" - -msgid "SOCKS proxy" -msgstr "Прокси SOCKS" - -msgid "Port" -msgstr "Порт" - -msgid "Use authentication" -msgstr "Использовать аутентификацию" - -msgid "Username" -msgstr "Имя пользователя" - -msgid "Password" -msgstr "Пароль" - -msgid "Use proxy settings for streaming" -msgstr "Использовать настройки прокси для потокового прослушивания" - -msgid "Appearance" -msgstr "Внешний вид" - -msgid "Style" -msgstr "Стиль" - -msgid "Use system theme icons" -msgstr "Использовать системную тему значков" - -msgid "Settings require restart." -msgstr "Применение настроек требует перезапуска." - -msgid "Tabbar colors" -msgstr "Цвета вкладок" - -msgid "&Use the system default color" -msgstr "&Использовать стандартный цвет системы" - -msgid "Use custom color" -msgstr "Использовать собственный цвет" - -msgid "Use gradient background" -msgstr "Использовать градиентный фон" - -msgid "Select tabbar color:" -msgstr "Выбрать цвет панели вкладок:" - -msgid "Background image" -msgstr "Фоновое изображение" - -msgid "Default bac&kground image" -msgstr "&Стандартное фоновое изображение" - -msgid "&No background image" -msgstr "&Без фонового изображения" - -msgid "The album cover of the currently playing song" -msgstr "Обложка альбома активной композиции" - -msgid "Albu&m cover" -msgstr "О&бложка альбома" - -msgid "Custom image:" -msgstr "Своё изображение:" - -msgid "Browse..." -msgstr "Обзор…" - -msgid "Position" -msgstr "Позиция" - -msgid "Upper Left" -msgstr "Сверху слева" - -msgid "Upper Right" -msgstr "Сверху справа" - -msgid "Middle" -msgstr "Середина" - -msgid "Bottom Left" -msgstr "Слева внизу" - -msgid "Bottom Right" -msgstr "Справа внизу" - -msgid "Max cover size" -msgstr "Максимальный размер обложки" - -msgid "Stretch image to fill playlist" -msgstr "Подгонять к размеру плейлиста" - -msgid "Keep aspect ratio" -msgstr "Сохранять пропорции" - -msgid "Do not cut image" -msgstr "Не обрезать изображение" - -msgid "Blur amount" -msgstr "Степень размытия" - -msgid "0px" -msgstr "0 пикс" - -msgid "Opacity" -msgstr "Непрозрачность" - -msgid "40%" -msgstr "40%" - -msgid "Icon sizes" -msgstr "Размер значков" - -msgid "Playlist buttons" -msgstr "Кнопки плейлиста" - -msgid "Tabbar large mode" -msgstr "Режим широкой боковой панели" - -msgid "Play control buttons" -msgstr "Кнопки управления проигрыванием" - -msgid "Configure buttons" -msgstr "Настройка кнопок" - -msgid "Files, playlists and queue buttons" -msgstr "Кнопки файлов, плейлистов и очереди" - -msgid "Tabbar small mode" -msgstr "Режим узкой боковой панели" - -msgid "Playlist playing song color" -msgstr "Цвет текущей песни в плейлисте" - -msgid "System highlight color" -msgstr "Системный цвет подсвечивания" - -msgid "Custom color" -msgstr "Собственный цвет" - -msgid "Select playlist playing song color:" -msgstr "Выбрать цвет активной песни в плейлисте:" - -msgid "Notifications" -msgstr "Уведомления" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry может показывать уведомление при смене трека." - -msgid "Notification type" -msgstr "Тип уведомления" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Отключено" - -msgid "Show a &native desktop notification" -msgstr "Показыва&ть встроенные уведомления рабочего стола" - -msgid "Show a pretty OSD" -msgstr "Показывать модное экранное меню" - -msgid "Show a popup fro&m the system tray" -msgstr "&Показывать всплывающее окно из трея" - -msgid "General settings" -msgstr "Общие настройки" - -msgid "Popup duration" -msgstr "Длительность отображения" - -msgid "Disable duration" -msgstr "Отключить длительность" - -msgid "Show a notification when I change the volume" -msgstr "Уведомлять о смене громкости" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Уведомлять о смене режимов повторения/перемешивания" - -msgid "Show a notification when I pause playback" -msgstr "Уведомлять о приостановке проигрывания" - -msgid "Show a notification when I resume playback" -msgstr "Уведомлять о возобновлении воспроизведения" - -msgid "Include album art in the notification" -msgstr "Показывать обложку альбома в уведомлении" - -msgid "Custom message settings" -msgstr "Настройки сообщения" - -msgid "Use a custom message for notifications" -msgstr "Использовать собственное сообщение для уведомлений" - -msgid "Body" -msgstr "Содержимое" - -msgid "Pretty OSD options" -msgstr "Параметры модного экранного меню" - -msgid "Background color" -msgstr "Цвет фона" - -msgid "Text options" -msgstr "Свойства текста" - -msgid "Choose font..." -msgstr "Выбрать шрифт…" - -msgid "Choose color..." -msgstr "Выбрать цвет…" - -msgid "Background opacity" -msgstr "Прозрачность фона" - -msgid "Basic Blue" -msgstr "Стандартный голубой" - -msgid "Strawberry Red" -msgstr "Клубничный красный" - -msgid "Custom..." -msgstr "Пользовательский…" - -msgid "Enable fading" -msgstr "Включить исчезание" - -msgid "Transcoding" -msgstr "Конвертер" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Эти настройки используются в окне «Конвертация музыки» и при конвертировании музыки перед копированием на устройство." - -msgid "FLAC" -msgstr "FLAC" - -msgid "WavPack" -msgstr "WavPack" - -msgid "Vorbis" -msgstr "Vorbis" - -msgid "Opus" -msgstr "Opus" - -msgid "Speex" -msgstr "Speex" - -msgid "AAC" -msgstr "AAC" - -msgid "ASF (WMA)" -msgstr "ASF (WMA)" - -msgid "MP3" -msgstr "MP3" - -msgid "Equalizer" -msgstr "Эквалайзер" - -msgid "Preset:" -msgstr "Предустановка:" - -msgid "Enable equalizer" -msgstr "Включить эквалайзер" - -msgid "Enable stereo balancer" -msgstr "Включить баланс стерео" - -msgid "Left" -msgstr "Левый канал" - -msgid "Balance" -msgstr "Баланс" - -msgid "Right" -msgstr "Правый канал" - -msgid "About" -msgstr "О программе" - -msgid "Strawberry Error" -msgstr "Ошибка Strawberry" - -msgid "Console" -msgstr "Консоль" - -msgid "Run" -msgstr "Выполнить" - -msgid "Edit track information" -msgstr "Правка сведений о треке" - -msgid "Date created" -msgstr "Дата создания" - -msgid "Art Automatic" -msgstr "Обложка автоматическая" - -msgid "Date modified" -msgstr "Дата изменения" - -msgid "Art Embedded" -msgstr "Вложенная обложка" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Последний раз" - -msgid "Play count" -msgstr "Разы" - -msgid "EBU R 128 integrated loudness" -msgstr "Встроенная громкость EBU R 128" - -msgid "Bit rate" -msgstr "Битрейт" - -msgid "Skip count" -msgstr "Пропуски" - -msgid "Path" -msgstr "Путь" - -msgid "Filename" -msgstr "Имя файла" - -msgid "Art Unset" -msgstr "Обложка не задана" - -msgid "File size" -msgstr "Размер файла" - -msgid "Art Manual" -msgstr "Обложка ручная" - -msgid "EBU R 128 loudness range" -msgstr "Диапазон громкости EBU R 128" - -msgid "Reset play counts" -msgstr "Сбросить счётчики прослушивания" - -msgid "Change art" -msgstr "Сменить обложку" - -msgid "Embedded cover" -msgstr "Вложенная обложка" - -msgid "Complete tags automatically" -msgstr "Автозаполнение тегов" - -msgid "Compilation" -msgstr "Сборник" - -msgid "Tags" -msgstr "Теги" - -msgid "Complete lyrics automatically" -msgstr "Заполнять тексты песен автоматически" - -msgid "Tag fetcher" -msgstr "Сборщик тегов" - -msgid "Sorry" -msgstr "Извините" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry не смог найти результаты по запросу для этого файла" - -msgid "Select best possible match" -msgstr "Выберите наиболее подходящее совпадение" - -msgid "Add Stream" -msgstr "Добавить поток" - -msgid "Enter the URL of a stream:" -msgstr "Введите адрес потока:" - -msgid "Enter username and password" -msgstr "Укажите имя пользователя и пароль" - -msgid "Import data from last.fm" -msgstr "Импорт данных из Last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Выберите данные для импорта из Last.fm" - -msgid "Play counts" -msgstr "Счётчики прослушивания" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Предупреждение: Счётчики прослушиваний и последнее проигрывание с Last.fm полностью заменят те же данные в соответствующих песнях. Счётчики прослушиваний заменят данные, основанные на артисте и названии песни для тех же альбомов! Пожалуйста, сделайте резервную копию вашей базы данных перед началом работы." - -msgid "Go!" -msgstr "Пуск!" - -msgid "Close" -msgstr "Закрыть" - -msgid "Cancel" -msgstr "Отмена" - -msgid "Message Dialog" -msgstr "Диалог сообщения" - -msgid "Do not show this message again." -msgstr "Не показывать это сообщение снова." - -msgid "Select directory for saving playlists" -msgstr "Выберите каталог для сохранения плейлистов" - -msgid "Type" -msgstr "Тип" - -msgid "0:00:00" -msgstr "0:00:00" - -msgid "Click to toggle between remaining time and total time" -msgstr "Щёлкните для переключения между оставшимся и полным временем" - -msgid "You are not signed in." -msgstr "Вход не выполнен." - -msgid "Sign out" -msgstr "Выйти" - -msgid "Signing in..." -msgstr "Выполняется вход…" - -msgid "Streaming Tabs View" -msgstr "Вид вкладок потоков" - -msgid "Artists" -msgstr "Артисты" - -msgid "Albums" -msgstr "Альбомы" - -msgid "Songs" -msgstr "Песни" - -msgid "Refresh catalogue" -msgstr "Обновить каталог" - -msgid "Streaming Search View" -msgstr "Вид поиска потоков" - -msgid "artists" -msgstr "артисты" - -msgid "albums" -msgstr "альбомы" - -msgid "songs" -msgstr "песен" - -msgid "Organize Files" -msgstr "Организовать файлы" - -msgid "Destination" -msgstr "Назначение" - -msgid "After copying..." -msgstr "После копирования…" - -msgid "Keep the original files" -msgstr "Сохранять исходные файлы" - -msgid "Delete the original files" -msgstr "Удалять исходные файлы" - -msgid "Naming options" -msgstr "Параметры именования" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Токены начинаются со знака %, например: %artist %album %title

\n\n" -"

Если вы окружили часть текста фигурными скобками, то эта часть текста не будет видна при пустом токене

" - -msgid "Insert..." -msgstr "Вставить…" - -msgid "Remove problematic characters from filenames" -msgstr "Удалить проблемные символы из имён файлов" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Ограничить разрешёнными символами в файловых системах FAT" - -msgid "Restrict characters to ASCII" -msgstr "Ограничить символы до ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Разрешить расширенные символы ASCII" - -msgid "Replace spaces with underscores" -msgstr "Заменять пробелы на нижнее подчёркивание" - -msgid "Overwrite existing files" -msgstr "Перезаписать существующие файлы" - -msgid "Copy album cover artwork" -msgstr "Копировать обложку альбома" - -msgid "Safely remove the device after copying" -msgstr "Безопасно извлечь устройство после копирования" - -msgid "Transcode Music" -msgstr "Конвертер музыки" - -msgid "Files to transcode" -msgstr "Файлы для конвертации" - -msgid "Directory" -msgstr "Каталог" - -msgid "Add..." -msgstr "Добавить…" - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Добавить все треки из каталога и всех его подкаталогов" - -msgid "Import..." -msgstr "Импорт…" - -msgid "Output options" -msgstr "Выходные параметры" - -msgid "Audio format" -msgstr "Формат аудио" - -msgid "Options..." -msgstr "Настройки…" - -msgid "Alongside the originals" -msgstr "Рядом с исходными" - -msgid "Select..." -msgstr "Выбрать…" - -msgid "Progress" -msgstr "Ход выполнения" - -msgid "Details..." -msgstr "Подробнее…" - -msgid "Transcoder Log" -msgstr "Журнал конвертера" - -msgid " kbps" -msgstr " кбит/с" - -msgid "Profile" -msgstr "Профиль" - -msgid "Main profile (MAIN)" -msgstr "Основной профиль (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Профиль низкой сложности (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Профиль Scalable sampling rate (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Профиль Long term prediction (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Использовать временнóе сглаживание шумов" - -msgid "Allow mid/side encoding" -msgstr "Разрешить кодирование в виде суммы и разности двух каналов" - -msgid "Block type" -msgstr "Тип блока" - -msgid "Normal block type" -msgstr "Обычный тип блоков" - -msgid "No short blocks" -msgstr "Без коротких блоков" - -msgid "No long blocks" -msgstr "Без длинных блоков" - -msgid "Transcoding options" -msgstr "Настройки конвертации" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Качество" - -msgid "Fast" -msgstr "Быстрое" - -msgid "Best" -msgstr "Лучшее" - -msgid "Use bitrate management engine" -msgstr "Использовать движок управления битрейтом" - -msgid "Target bitrate" -msgstr "Целевой битрейт" - -msgid "Minimum bitrate" -msgstr "Минимальный битрейт" - -msgid "disabled" -msgstr "отключён" - -msgid "Maximum bitrate" -msgstr "Максимальный битрейт" - -msgid "automatic" -msgstr "автоматически" - -msgid "Average bitrate" -msgstr "Средний битрейт" - -msgid "Encoding mode" -msgstr "Режим кодирования" - -msgid "Auto" -msgstr "Авто" - -msgid "Ultra wide band (UWB)" -msgstr "Сверхширокая полоса пропускания (UWB)" - -msgid "Wide band (WB)" -msgstr "Шировая полоса пропускания (WB)" - -msgid "Narrow band (NB)" -msgstr "Узкая полоса пропускания (NB)" - -msgid "Variable bit rate" -msgstr "Переменный битрейт" - -msgid "Voice activity detection" -msgstr "Обнаружение голосовой активности" - -msgid "Discontinuous transmission" -msgstr "Непрерывная передача" - -msgid "Encoding complexity" -msgstr "Сложность кодирования" - -msgid "Frames per buffer" -msgstr "Фреймов на буфер" - -msgid "Optimize for &quality" -msgstr "Оптимизировать по &качеству" - -msgid "Opti&mize for bitrate" -msgstr "Опти&мизировать по битрейту" - -msgid "Constant bitrate" -msgstr "Постоянный битрейт" - -msgid "Encoding engine quality" -msgstr "Качество кодирования" - -msgid "Standard" -msgstr "Стандартное" - -msgid "High" -msgstr "Высокое" - -msgid "Force mono encoding" -msgstr "Принудительно кодировать в моно" - -msgid "Press a key" -msgstr "Нажмите клавиши" - -msgid "Global Shortcuts" -msgstr "Глобальные клавиши" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Использовать сочетания клавиш Gnome (GSD) по возможности" - -msgid "Open..." -msgstr "Открыть…" - -msgid "Use MATE shortcuts when available" -msgstr "Использовать сочетания клавиш MATE по возможности" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Использовать сочетания клавиш KDE (KGlobalAccel) по возможности" - -msgid "Use X11 shortcuts when available" -msgstr "Использовать сочетания клавиш X11 по возможности" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Вы должны запустить «Параметры системы» и позволить Clemetine «управлять вашим компьютером» для использования глобальных горячих клавиш в Strawberry." - -msgid "Shortcut" -msgstr "Сочетание клавиш" - -msgctxt "Category label" -msgid "Action" -msgstr "Действие" - -msgid "&None" -msgstr "&Нет" - -msgid "&Default" -msgstr "&По умолчанию" - -msgid "&Custom" -msgstr "&Другое" - -msgid "Change shortcut..." -msgstr "Изменить сочетание…" - -msgid "Device Properties" -msgstr "Свойства носителя" - -msgid "Icon" -msgstr "Значок" - -msgid "Hardware information" -msgstr "Сведения об оборудовании" - -msgid "Hardware information is only available while the device is connected." -msgstr "Сведения об оборудовании доступны только при подключении устройства." - -msgid "Information" -msgstr "Информация" - -msgid "Supported formats" -msgstr "Поддерживаемые форматы" - -msgid "This device supports the following file formats:" -msgstr "Это устройство поддерживает следующие форматы:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry может автоматически конвертировать музыку при копировании на это устройство в формат, который оно поддерживает." - -msgid "Do not convert any music" -msgstr "Не конвертировать какую-либо музыку" - -msgid "Convert any music that the device can't play" -msgstr "Конвертировать всю музыку, которую не может проигрывать устройство" - -msgid "Convert all music" -msgstr "Конвертировать всю музыку" - -msgid "Preferred format" -msgstr "Предпочитаемый формат" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Устройство должно быть подключено и открыто перед тем, как Strawberry определит, какой формат оно поддерживает." - -msgid "Open device" -msgstr "Открыть устройство" - -msgid "Querying device..." -msgstr "Производится опрос носителя…" - -msgid "File formats" -msgstr "Форматы файлов" - -msgid "Server URL" -msgstr "Адрес сервера" - -msgid "Authentication method:" -msgstr "Метод аутентификации:" - -msgid "Hex" -msgstr "Шестнадцатеричный" - -msgid "MD5 token (Recommended)" -msgstr "Токен MD5 (рекомендуется)" - -msgid "Preferences" -msgstr "Настройки" - -msgid "Use HTTP/2 when possible" -msgstr "Использовать HTTP/2 по возможности" - -msgid "Verify server certificate" -msgstr "Проверять сертификат сервера" - -msgid "Download album covers" -msgstr "Скачивать обложки альбомов" - -msgid "Server-side scrobbling" -msgstr "Скробблинг на стороне сервера" - -msgid "Test" -msgstr "Проверить" - -msgid "Delete songs" -msgstr "Удалить песни" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Поддержка Tidal не является официальной и для работы требует токен API из зарегистрированного приложения. Мы не можем помочь вам в его получении." - -msgid "Use OAuth" -msgstr "Использовать OAuth" - -msgid "Client ID" -msgstr "ИД клиента" - -msgid "API Token" -msgstr "Токен API" - -msgid "Audio quality" -msgstr "Качество звука" - -msgid "Search delay" -msgstr "Задержка поиска" - -msgid "ms" -msgstr " мс" - -msgid "Artists search limit" -msgstr "Предел поиска артистов" - -msgid "Albums search limit" -msgstr "Предел поиска по альбомам" - -msgid "Songs search limit" -msgstr "Предел поиска песен" - -msgid "Fetch entire albums when searching songs" -msgstr "Получать весь альбом при поиске песен" - -msgid "Album cover size" -msgstr "Размер обложки альбома" - -msgid "Stream URL method" -msgstr "Метод адреса потока" - -msgid "Append explicit to album title for explicit albums" -msgstr "Добавлять «Explicit» в имена альбомов с нецензурной лексикой" - -msgid "Basic authentication" -msgstr "Основная аутентификация" - -msgid "Authenticate" -msgstr "Аутентификация" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "

Плагин GStreamer для Spotify не обнаружен, вы не сможете транслировать песни из Spotify без него. См. Вики, чтобы узнать как установить плагин.

" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Поддержка Qobuz не является официальной, для работы требуется идентификатор приложения API и секретный ключ зарегистрированного приложения. Мы не можем помочь вам в их получении." - -msgid "App ID" -msgstr "ИД приложения" - -msgid "App Secret" -msgstr "Секретный ключ приложения" - -msgid "Base64 encoded secret" -msgstr "Секретный ключ в кодировке Base64" - -msgid "Moodbar" -msgstr "Индикатор тона" - -msgid "Show a moodbar in the track progress bar" -msgstr "Показывать индикатор тона в полосе прогресса" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Сохранять файлы тона .mood в папках песен" - -msgid "Enabled" -msgstr "Включено" - -msgid "Return to Strawberry" -msgstr "Вернитесь в Strawberry" - -msgid "Success!" -msgstr "Успешно!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Пожалуйста, закройте браузер и вернитесь в Strawberry." - diff --git a/src/translations/strawberry_ca_ES.ts b/src/translations/strawberry_ca_ES.ts new file mode 100644 index 00000000..0a212244 --- /dev/null +++ b/src/translations/strawberry_ca_ES.ts @@ -0,0 +1,7569 @@ + + + + + About + + About + Quant a + + + About Strawberry + Quant a l’Strawberry + + + Version %1 + Versió %1 + + + Strawberry is a music player and music collection organizer. + L’Strawberry és un reproductor de música i un organitzador de col·leccions musicals. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + + + + Contributors + + + + Clementine authors + + + + Clementine contributors + + + + Thanks to + + + + Thanks to all the other Amarok and Clementine contributors. + + + + + AddStreamDialog + + Add Stream + + + + Enter the URL of a stream: + + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Imatges (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Imatges (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Tots els fitxers (*) + + + Load cover from disk... + Carrega la coberta des d’un disc… + + + Save cover to disk... + Desa la coberta al disc dur… + + + Load cover from URL... + Carrega la coberta des d’un URL… + + + Search for album covers... + Cerca cobertes dels àlbums… + + + Unset cover + Esborra’n la coberta + + + Delete cover + Suprimeix la coberta + + + Clear cover + + + + Show fullsize... + Mostra a mida completa... + + + Search automatically + Cerca automàticament + + + Load cover from disk + Carrega la portada des del disc dur + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + desconegut + + + Save album cover + Desa la coberta de l’àlbum + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Exporta les caràtules + + + Output + Sortida + + + Enter a filename for exported covers (no extension): + Introduïu un nom de fitxer per les caràtules exportades (sense extensió): + + + Export downloaded covers + Exporta les caràtules baixades + + + Export embedded covers + Exporta les caràtules incrustades + + + Existing covers + Caràtules existents + + + Do not overwrite + No ho sobreescriguis + + + O&verwrite all + + + + Overwrite s&maller ones only + + + + Size + Mida + + + Scale size + Mida de l’escala + + + Size: + Mida: + + + Pixel + Píxel + + + + AlbumCoverManager + + Abort + Interromp + + + All albums + Tots els àlbums + + + Albums with covers + Àlbums amb caràtules + + + Albums without covers + Àlbums sense caràtules + + + Really cancel? + Realment voleu cancel·lar? + + + Closing this window will stop searching for album covers. + En tancar aquesta finestra es detindrà la cerca de les caràtules dels àlbums. + + + Don't stop! + No aturar! + + + All artists + Tots els artistes + + + Various artists + Artistes diversos + + + Got %1 covers out of %2 (%3 failed) + S’han trobat %1 caràtules de %2 (%3 han fallat) + + + %1 transferred + %1 transferit + + + Export finished + Ha finalitzat l’exportació + + + No covers to export. + No hi ha cap coberta que exportar. + + + Exported %1 covers out of %2 (%3 skipped) + S’han exportat %1 caràtules de %2 (s’han omès %3) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Gestor de caràtules + + + Artist + Artista + + + Album + Àlbum + + + Search + Cerca + + + Covers from %1 + Caràtules de %1 + + + Abort + Interromp + + + + AnalyzerContainer + + Framerate + Taxa de mostreig + + + Low (%1 fps) + Baixa (%1 fps) + + + Medium (%1 fps) + Mitja (%1 fps) + + + High (%1 fps) + Alta (%1 fps) + + + Super high (%1 fps) + Molt alta (%1 fps) + + + No analyzer + Sense analitzador + + + Block analyzer + Analitzador de blocs + + + Boom analyzer + Analitzador de ressonància + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Aparença + + + Style + Estil + + + Use system theme icons + + + + Settings require restart. + + + + Tabbar colors + Colors de la barra de pestanyes + + + &Use the system default color + + + + Use custom color + + + + Use gradient background + + + + Select tabbar color: + + + + Background image + Imatge de fons + + + Default bac&kground image + + + + &No background image + + + + The album cover of the currently playing song + La coberta de l’àlbum de la cançó en reproducció + + + Albu&m cover + + + + Custom image: + Imatge personalitzada: + + + Browse... + Explora… + + + Position + Posició + + + Upper Left + + + + Upper Right + + + + Middle + + + + Bottom Left + + + + Bottom Right + + + + Max cover size + + + + Stretch image to fill playlist + + + + Keep aspect ratio + + + + Do not cut image + + + + Blur amount + Quantitat de difuminació + + + 0px + + + + Opacity + Opacitat + + + 40% + 40 % + + + Icon sizes + + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + Color de realçament del sistema + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + Seleccioneu la imatge de fons + + + + BackendSettingsPage + + Backend + + + + Audio output + Sortida d’àudio + + + Device + Dispositiu + + + Output + Sortida + + + Engine + Motor + + + ALSA plugin: + Connector de l’ALSA: + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + + + + Upmix / downmix to + + + + channels + canals + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + + + + Buffer duration + Durada de la memòria intermèdia + + + High watermark + + + + Low watermark + + + + Defaults + + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + Utilitza les metadades Replay Gain si estan disponibles + + + Replay Gain mode + Mode de l’Replay Gain + + + Radio (equal loudness for all tracks) + Ràdio (mateix volum per a totes les peces) + + + Album (ideal loudness for all tracks) + Àlbum (volum ideal per a totes les peces) + + + Pre-amp + Preamplificador + + + Apply compression to prevent clipping + Aplica compressió per evitar el «clipping» + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Esvaïment + + + Fade out when stopping a track + Esvaeix el so en parar una peça + + + Cross-fade when changing tracks manually + Fusiona el so quan es canviï la peça manualment + + + Cross-fade when changing tracks automatically + Fusiona el so quan es canviï la peça automàticament + + + Except between tracks on the same album or in the same CUE sheet + Excepte entre peces del mateix àlbum o del mateix full CUE + + + Fading duration + Durada de l’esvaïment + + + Fade out on pause / fade in on resume + Atenua el volum en pausar i en reprendre + + + + BehaviourSettingsPage + + Behavior + Comportament + + + Show system tray icon + + + + Keep running in the background when the window is closed + Conserva l’aplicació executant-se en segon pla quan tanqueu la finestra + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + Reprèn la reproducció en l’inici + + + Show playing widget + + + + On startup + + + + Remember from &last time + Recorda de l'últim cop + + + Show the main window + + + + Hide the main window + + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + Llengua + + + Use the system default + Utilitza el valor per defecte del sistema + + + You will need to restart Strawberry if you change the language. + Si canvieu la llengua haureu de reiniciar l’Strawberry. + + + Using the menu to add a song will... + En emprar el menú per a afegir una cançó… + + + Never start playing + Mai no comencis a reproduir + + + Play if there is nothing already playing + Reprodueix si encara no hi ha res reproduint-se + + + Always start playing + Comença sempre la reproducció + + + Pressing "Previous" in player will... + En fer clic al botó «Anterior» del reproductor… + + + Jump to previous song right away + Vés a la peça anterior + + + Restart song, then jump to previous if pressed again + Reinicia la peça i salta a l’anterior en fer clic un altre cop + + + Double clicking a song will... + En fer doble clic a una cançó... + + + Append to the playlist + Afegeix a la llista de reproducció + + + Replace the playlist + Substitueix la llista de reproducció + + + Open in new playlist + Obre en una llista de reproducció nova + + + Add to the queue + Afegeix a la cua + + + Double clicking a song in the playlist will... + En fer doble clic a una cançó de la llista… + + + Change the currently playing song + Canvia la cançó que s’està reproduint ara + + + Seeking using a keyboard shortcut or mouse wheel + Moure's dins la peça amb una tecla de drecera o la roda del ratolí + + + Time step + Salt en el temps + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + + + + Enter search terms here + Introduïu els termes de la cerca + + + MenuPopupToolButton + + + + Entire collection + Tota la col·lecció + + + Added today + Afegides avui + + + Added this week + Afegides aquesta setmana + + + Added within three months + Afegides els últims tres mesos + + + Added this year + Afegides aquest any + + + Added this month + Afegides aquest mes + + + Save current grouping + Desa l'agrupació actual + + + Manage saved groupings + Gestiona agrupacions guardades + + + Show + Mostrar + + + Group by + Agrupa per + + + Display options + Opcions de visualització + + + Group by Album artist/Album + Agrupa per artista de l'àlbum/àlbum + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + Agrupa per artista/àlbum + + + Group by Artist/Album - Disc + + + + Group by Artist/Year - Album + Agrupa per artista/any–àlbum + + + Group by Artist/Year - Album - Disc + + + + Group by Genre/Album artist/Album + + + + Group by Genre/Artist/Album + Agrupa per gènere/artista/àlbum + + + Group by Album Artist + + + + Group by Artist + Agrupa per artista + + + Group by Album + Agrupa per àlbum + + + Group by Genre/Album + Agrupa per gènere/àlbum + + + Advanced grouping... + Agrupament avançat… + + + Grouping Name + Nom d’agrupació + + + Grouping name: + Nom d’agrupació: + + + + CollectionModel + + Various artists + Artistes diversos + + + Loading... + S’està carregant… + + + Unknown + Desconegut + + + + CollectionSettingsPage + + Collection + Col·lecció + + + These folders will be scanned for music to make up your collection + S’analitzaran aquestes carpetes a la recerca de música per confeccionar la vostra col·lecció + + + Add new folder... + Afegeix una carpeta nova… + + + Remove folder + Suprimeix carpeta + + + Automatic updating + Actualització automàtica + + + Update the collection when Strawberry starts + Actualitza la col·lecció quan l’Strawberry s’iniciï + + + Monitor the collection for changes + Monitoritza els canvis a la col·lecció + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + Noms de fitxer preferits per a les caràtules dels àlbums (separats per comes) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + En la cerca de caràtules d’àlbum, Strawberry primer cercarà imatges que contenen una d’aquestes paraules. +Si no hi ha resultats, s’usarà la imatge més gran en el directori. + + + Display options + Opcions de visualització + + + Automatically open single categories in the collection tree + Expandeix automàticament les categories úniques en l’arbre de la col·lecció + + + Show dividers + Mostra els separadors + + + Show album cover art in collection + + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + + + + Size + Mida + + + Enable Disk Cache + + + + Disk Cache Size + Mida de la memòria cau al disc + + + Current disk cache in use: + + + + Clear Disk Cache + + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + + + + Add directory... + Afegeix un directori… + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + La vostra col·lecció està buida. + + + Click here to add some music + Feu clic aquí per afegir música + + + Append to current playlist + Afegeix a la llista de reproducció actual + + + Replace current playlist + Substitueix la llista de reproducció actual + + + Open in new playlist + Obre en una llista de reproducció nova + + + Queue track + Afegeix la peça a la cua + + + Queue to play next + + + + Search for this + Cerca-ho + + + Organize files... + + + + Copy to device... + Copia al dispositiu… + + + Delete from disk... + Suprimeix del disc… + + + Edit track information... + Edita la informació de la peça… + + + Edit tracks information... + Edita la informació de les peces... + + + Show in file browser... + Mostra al gestor de fitxers + + + Rescan song(s) + + + + Show in various artists + Mostra en Artistes diversos + + + Don't show in various artists + No ho mostris a Artistes diversos + + + There are other songs in this album + Hi ha altres cançons en aquest àlbum + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + + + + None of the selected songs were suitable for copying to a device + Cap de les cançons seleccionades són adequades per copiar-les a un dispositiu + + + + CollectionViewContainer + + Form + Formulari + + + + CollectionWatcher + + Updating collection + S’està actualitzant la col·lecció + + + Updating %1 + S’està actualitzant %1 + + + + Console + + Console + Terminal + + + Run + Executa + + + + ContextSettingsPage + + Context + + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + Títol + + + Summary + Resum + + + Enable Items + + + + Album + Àlbum + + + Technical Data + + + + Song Lyrics + + + + Automatically search for album cover + + + + Automatically search for song lyrics + + + + Font for headline + + + + Font + Lletra tipogràfica + + + Font size + + + + pt + pt + + + Preview + Previsualitza + + + Font for data and lyrics + + + + Add song artist tag + Afegeix l’etiqueta d’artista a la cançó + + + Add song album tag + Afegeix l’etiqueta d’àlbum a la cançó + + + Add song title tag + Afegeix l’etiqueta de títol a la cançó + + + Add song albumartist tag + Afegeix l’etiqueta «albumartist» a la cançó + + + Add song year tag + Afegeix l’etiqueta d’any a la cançó + + + Add song composer tag + Afegeix l’etiqueta de compositor a la cançó + + + Add song performer tag + Afegeix etiqueta d’intèrpret de la cançó + + + Add song grouping tag + Afegeix etiqueta d’agrupació de la cançó + + + Add song disc tag + Afegeix l’etiqueta de disc a la cançó + + + Add song track tag + Afegeix l’etiqueta de número de peça a la cançó + + + Add song genre tag + Afegeix l’etiqueta de gènere a la cançó + + + Add song length tag + Afegeix l’etiqueta de durada a la cançó + + + Add song play count + Afegeix el nombre de reproduccions + + + Add song skip count + Afegeix comptador de passades de cançó + + + Add a new line if supported by the notification type + Afegeix una línia nova si és compatible amb el tipus de notificació + + + %filename% + + + + Add song filename + Afegeix el nom de fitxer de la cançó + + + %url% + + + + Add song URL + + + + %rating% + + + + Add song rating + Afegeix una valoració a la cançó + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + Tipus de fitxer + + + Length + Durada + + + Samplerate + Freqüència de mostreig + + + Bit depth + + + + Bitrate + Taxa de bits + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + + + + Show song technical data + + + + Show song lyrics + + + + Automatically search for song lyrics + + + + No song playing + + + + %1 song + %1 cançó + + + %1 songs + %1 cançons + + + %1 artist + %1 artista + + + %1 artists + %1 artistes + + + %1 album + %1 àlbum + + + %1 albums + %1 àlbums + + + kbps + kb/s + + + + CoverFromURLDialog + + Load cover from URL + Carrega la coberta des d’un URL + + + Enter a URL to download a cover from the Internet: + Introduïu un URL per a baixar una coberta de la Internet: + + + Fetching cover error + S’ha produït un error en obtenir la coberta + + + The site you requested does not exist! + L’adreça que heu sol·licitat no existeix. + + + The site you requested is not an image! + L’adreça que heu sol·licitat no conté cap imatge. + + + + CoverManager + + Cover Manager + Gestor de caràtules + + + Enter search terms here + Introduïu els termes de la cerca + + + MenuPopupToolButton + + + + View + Vista + + + Total albums: + Total d’àlbums: + + + Without cover: + Sense coberta: + + + 0 + + + + Fetch Missing Covers + Recull les caràtules que falten + + + Export Covers + Exporta les caràtules + + + Fetch automatically + Recull automàticament + + + Load + Carregar + + + Add to playlist + Afegeix a la llista de reproducció + + + + CoverSearchStatisticsDialog + + Fetch completed + S'han acabat d'obtenir les dades + + + Got %1 covers out of %2 (%3 failed) + S’han trobat %1 caràtules de %2 (%3 han fallat) + + + Covers from %1 + Caràtules de %1 + + + Total network requests made + Total de sol·licituds de xarxa fetes + + + Average image size + Mida d’imatge mitjana + + + Total bytes transferred + Bytes totals transferits + + + + CoversSettingsPage + + Covers + + + + Cover providers + + + + Choose the providers you want to use when searching for covers. + + + + Move up + Mou cap amunt + + + Move down + Mou cap avall + + + Authentication + Autenticació + + + Login + Entra + + + Album cover types + + + + Saving album covers + + + + Save album covers in album directory + + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + + + + Pattern + + + + Random + + + + Overwrite existing file + + + + Lowercase filename + + + + Replace spaces with dashes + + + + Use Tidal settings to authenticate. + + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + %1 necessita autenticació. + + + %1 does not need authentication. + %1 no necessita autenticació. + + + No provider selected. + + + + Authentication failed + Ha fallat l’autenticació + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Comprovació d’integritat + + + Database corruption detected. + + + + Backing up database + S’està fent una còpia de seguretat de la base de dades + + + + DeleteConfirmationDialog + + Delete files + Suprimeix els fitxers + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + + + + + DeleteFiles + + Deleting files + S’estan suprimint els fitxers + + + + DeviceItemDelegate + + Updating %1%... + S’està actualitzant %1%… + + + Not connected + No connectat + + + Not mounted - double click to mount + No s’ha muntat. Feu doble clic per muntar-ho + + + Double click to open + Feu doble clic per obrir + + + %1 song%2 + %1 cançó%2 + + + + DeviceManager + + Connect device + Connecta el dispositiu + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Aquest es el primer cop que connecteu aquest dispositiu. L’Strawberry analitzarà el dispositiu per a trobar música. Això pot trigar un mica. + + + This device will not work properly + Aquest dispositiu no funcionarà correctament + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Aquest és un dispositiu MTP, però s’ha compilat l’Strawberry sense compatibilitat amb libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Si continueu, aquest dispositiu funcionarà lentament i les cançons que hi copieu podrien no reproduïr-se. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Aquest dispositiu és un iPod, però s’ha compilat l’Strawberry sense compatibilitat amb libgpod. + + + This type of device is not supported: %1 + Aquest tipus de dispositiu no és compatible: %1 + + + + DeviceProperties + + Device Properties + Propietats del dispositiu + + + Information + Informació + + + Name + Nom + + + Icon + Icona + + + Hardware information + Informació del maquinari + + + Hardware information is only available while the device is connected. + La informació del maquinari només està disponible mentre el dispositiu està endollat. + + + File formats + Format dels fitxers + + + Supported formats + Formats compatibles + + + This device supports the following file formats: + Aquest dispositiu és compatible amb els següents formats de fitxers: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + L’Strawberry pot convertir automàticament la música que copieu en aquest dispositiu a un format que pugui reproduir. + + + Do not convert any music + No converteixis cap musica + + + Convert any music that the device can't play + Convertir qualsevol música que el dispositiu no pugui reproduir + + + Convert all music + Converteix tota la música + + + Preferred format + Format preferit + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Aquest dispositiu ha de connectar-se i obrir-se abans que l’Strawberry pugui veure quins formats de fitxers admet. + + + Open device + Obrir dispositiu + + + Querying device... + S’està consultant el dispositiu… + + + Model + + + + Manufacturer + Fabricant + + + + DeviceView + + Safely remove device + Treure el dispositiu amb seguretat + + + Forget device + Oblida el dispositiu + + + Device properties... + Propietats del dispositiu… + + + Append to current playlist + Afegeix a la llista de reproducció actual + + + Replace current playlist + Substitueix la llista de reproducció actual + + + Open in new playlist + Obre en una llista de reproducció nova + + + Copy to collection... + Copia a la col·lecció… + + + Delete from device... + Suprimeix del dispositiu… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Oblidar un dispositiu l'eliminarà de la llista i Strawberry haurà de tornar a examinar totes les cançons el proper cop que el connecti. + + + Delete files + Suprimeix els fitxers + + + These files will be deleted from the device, are you sure you want to continue? + Se suprimiran aquests fitxers del dispositiu, esteu segur que voleu continuar? + + + + DeviceViewContainer + + Form + Formulari + + + + DynamicPlaylistControls + + Dynamic mode is on + + + + New tracks will be added automatically. + + + + Expand + + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + Edita la informació de la peça + + + Summary + Resum + + + Date created + Data de creació + + + Art Automatic + + + + Date modified + Data de modificació + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + Tipus de fitxer + + + Length + Durada + + + Play count + Comptador de reproduccions + + + Bit depth + + + + EBU R 128 integrated loudness + + + + Bit rate + Taxa de bits + + + Skip count + Comptador d’omissions + + + Sample rate + Freqüència de mostreig + + + Path + + + + Filename + Nom de fitxer + + + Art Unset + + + + File size + Mida del fitxer + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + Posa a zero el comptador de reproduccions + + + Tags + + + + MenuPopupToolButton + + + + Change art + Canvia la coberta + + + Embedded cover + + + + Disc + + + + Grouping + Agrupació + + + Album artist + Artista de l’àlbum + + + Album + Àlbum + + + Year + Any + + + Title + Títol + + + Artist + Artista + + + Composer + Compositor + + + Complete tags automatically + Completa les etiquetes automàticament + + + Genre + Estil + + + Comment + Comentari + + + Performer + Intèrpret + + + Compilation + Compilació + + + Track + Peça + + + Rating + + + + Lyrics + + + + Complete lyrics automatically + + + + Previous + Anterior + + + Next + Següent + + + Saving tracks + S’estan desant les peces + + + Loading tracks + S’estan carregant les peces + + + %1 songs selected. + %1 cançons seleccionades. + + + kbps + kb/s + + + Unknown + Desconegut + + + Yes + + + + No + + + + None + Cap + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + No s’ha definit la coberta + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + Mai + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Equalitzador + + + Preset: + Predefinició: + + + Save preset + Desa els valors + + + Delete preset + Elimina la predefinició + + + Enable equalizer + Habilita l’equalitzador + + + Enable stereo balancer + Activa l’equilibrador estèreo + + + Left + Esquerra + + + Balance + Balanç + + + Right + Dreta + + + Pre-amp + Preamplificador + + + Custom + Personalitzat + + + Classical + Clàssica + + + Club + + + + Dance + + + + Full Bass + Baixos complets + + + Full Treble + Aguts complets + + + Full Bass + Treble + Baixos i aguts complets + + + Laptop/Headphones + Portàtil/auriculars + + + Large Hall + Saló gran + + + Live + En directe + + + Party + Festa + + + Pop + + + + Reggae + + + + Rock + + + + Soft + Suau + + + Ska + + + + Soft Rock + Rock suau + + + Techno + + + + Zero + + + + Name + Nom + + + Are you sure you want to delete the "%1" preset? + Esteu segur que voleu suprimir la predefinició «%1»? + + + + EqualizerSlider + + Equalizer + Equalitzador + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Error de l’Strawberry + + + + FancyTabWidget + + Large sidebar + Barra lateral gran + + + Icons sidebar + + + + Small sidebar + Barra lateral petita + + + Plain sidebar + Barra lateral senzilla + + + Tabs on top + Pestanyes a dalt de tot + + + Icons on top + Icones a la part superior + + + + FileTypeItemDelegate + + Unknown + Desconegut + + + + FileView + + Form + Formulari + + + + FileViewList + + Append to current playlist + Afegeix a la llista de reproducció actual + + + Replace current playlist + Substitueix la llista de reproducció actual + + + Open in new playlist + Obre en una llista de reproducció nova + + + Copy to collection... + Copia a la col·lecció… + + + Move to collection... + Mou a la col·lecció… + + + Copy to device... + Copia al dispositiu… + + + Delete from disk... + Suprimeix del disc… + + + Edit track information... + Edita la informació de la peça… + + + Show in file browser... + Mostra al gestor de fitxers + + + + FreeSpaceBar + + Available + Disponible + + + New songs + Cançons noves: + + + Exceeded by + + + + Used + Usat + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + S’està carregant la base de dades de l’iPod + + + An error occurred loading the iTunes database + S’ha produït un error en carregar la base de dades de l’iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Autenticació amb el Genius + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + Punt de muntatge + + + Device + Dispositiu + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Premeu una tecla + + + Press a key combination to use for %1... + Premeu una combinació de tecles per utilitzar amb %1… + + + + GlobalShortcutsManager + + Play + Reprodueix + + + Pause + Pausa + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + Peça anterior + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + Silenci + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Dreceres globals + + + Use Gnome (GSD) shortcuts when available + + + + Open... + Obre… + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Obriu Preferències del sistema i permeteu que l’Strawberry «<span style="font-style:italic">controli l’ordinador</span>» per a utilitzar les dreceres globals a l’Strawberry. + + + Action + Category label + Acció + + + Shortcut + Drecera + + + Shortcut for %1 + Drecera per a «%1» + + + &None + &Cap + + + &Default + Per &defecte + + + &Custom + &Personalitzades + + + Change shortcut... + Canvia la drecera… + + + The "%1" command could not be started. + No s’ha pogut iniciar l’ordre «%1». + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + Agrupació avançada de la col·lecció + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + Agrupa la col·lecció per… + + + First level + Primer nivell + + + None + Cap + + + Artist + Artista + + + Album artist + Artista de l’àlbum + + + Album + Àlbum + + + Album - Disc + + + + Disc + + + + Format + + + + Genre + Estil + + + Year + Any + + + Year - Album + Any - Àlbum + + + Year - Album - Disc + + + + Original year + Any original + + + Original year - Album + Any original - àlbum + + + Composer + Compositor + + + Performer + Intèrpret + + + Grouping + Agrupació + + + File type + Tipus de fitxer + + + Sample rate + Freqüència de mostreig + + + Bit depth + + + + Bitrate + Taxa de bits + + + Second level + Segon nivell + + + Third level + Tercer nivell + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Emplenant la memòria intermèdia + + + + LastFMImport + + Missing username, please login to last.fm first! + + + + + LastFMImportDialog + + Import data from last.fm + + + + Choose data to import from last.fm + + + + Last played + + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + Vés-hi + + + Close + Tanca + + + Cancel + Cancel·la + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + Mai + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Formulari + + + You are not signed in. + No heu iniciat la sessió. + + + Sign out + Finalitza la sessió + + + Signing in... + S’està iniciant la sessió… + + + You are signed in. + Heu iniciat la sessió. + + + You are signed in as %1. + Heu iniciat la sessió com a %1. + + + Expires on %1 + Caduca el %1 + + + + LyricsSettingsPage + + Lyrics + + + + Lyrics providers + + + + Choose the providers you want to use when searching for lyrics. + + + + Move up + Mou cap amunt + + + Move down + Mou cap avall + + + Authentication + Autenticació + + + Login + Entra + + + No provider selected. + + + + Authentication failed + Ha fallat l’autenticació + + + + MainWindow + + Strawberry Music Player + Reproductor de música Strawberry + + + MenuPopupToolButton + + + + &Music + &Música + + + P&laylist + + + + Help + + + + &Tools + &Eines + + + Previous track + Peça anterior + + + F5 + + + + &Play + &Reprodueix + + + F6 + + + + &Stop + + + + F7 + + + + &Next track + + + + F8 + + + + &Quit + &Surt + + + Ctrl+Q + + + + Stop after this track + Atura després d’aquesta peça + + + Ctrl+Alt+V + + + + Love + + + + &Clear playlist + &Neteja la llista de reproducció + + + Clear playlist + Neteja la llista de reproducció + + + Ctrl+K + + + + Edit track information... + Edita la informació de la peça… + + + Ctrl+E + + + + Renumber tracks in this order... + Posa els números de les peces en aquest ordre... + + + Set value for all selected tracks... + Estableix valor per a totes les peces seleccionades… + + + Edit tag... + Edita l’etiqueta… + + + &Settings... + &Paràmetres… + + + Ctrl+P + + + + &About Strawberry + &Quant a l’Strawberry + + + F1 + + + + S&huffle playlist + + + + Ctrl+H + + + + &Add file... + &Afegeix un fitxer... + + + Ctrl+Shift+A + + + + &Open file... + &Obre un fitxer… + + + Open audio &CD... + + + + &Cover Manager + Gestor de &cobertes + + + C&onsole + + + + &Shuffle mode + Mode de me&scla + + + &Repeat mode + Mode de repetició + + + Remove from playlist + Suprimeix de la llista de reproducció + + + &Equalizer + &Equalitzador + + + &Transcode Music + + + + Add &folder... + + + + &Jump to the currently playing track + + + + Ctrl+J + + + + &New playlist + + + + Ctrl+N + + + + Save &playlist... + + + + Ctrl+S + + + + &Load playlist... + + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Vés a la pestanya de la següent llista de reproducció + + + Go to previous playlist tab + Vés a la pestanya de l'anterior llista de reproducció + + + &Update changed collection folders + + + + About &Qt + Quant al &Qt + + + &Mute + + + + Ctrl+M + + + + &Do a full collection rescan + + + + Stop collection scan + + + + Complete tags automatically... + Completa les etiquetes automàticament… + + + Ctrl+T + + + + Toggle scrobbling + Commuta l’«scrobbling» + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + Afegeix fitxer(s) al convertidor + + + Add file to transcoder + Afegeix un fitxer al convertidor + + + Add stream... + + + + Show sidebar + + + + Import data from last.fm... + + + + All Files (*) + Tots els fitxers (*) + + + Context + + + + Collection + Col·lecció + + + Queue + + + + Playlists + + + + Smart playlists + + + + Files + + + + Radios + + + + Devices + Dispositius + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Mostra totes les cançons + + + Show only duplicates + Mostra només els duplicats + + + Show only untagged + Mostra només les peces sense etiquetar + + + Configure collection... + Configura la col·lecció… + + + Play + Reprodueix + + + Toggle queue status + Commuta l’estat de la cua + + + Queue selected tracks to play next + + + + Toggle skip status + + + + Rescan song(s)... + + + + Copy URL(s)... + + + + Show in collection... + Mostra a la col·lecció… + + + Show in file browser... + Mostra al gestor de fitxers + + + Organize files... + + + + Copy to collection... + Copia a la col·lecció… + + + Move to collection... + Mou a la col·lecció… + + + Copy to device... + Copia al dispositiu… + + + Delete from disk... + Suprimeix del disc… + + + Check for updates... + Comprova si hi ha actualitzacions… + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Pausa + + + Dequeue track + Treu de la cua la peça + + + Dequeue selected tracks + Treu de la cua les peces seleccionades + + + Queue track + Afegeix la peça a la cua + + + Queue selected tracks + Afegeix les peces seleccionades a la cua + + + Queue to play next + + + + Unskip track + No ometis la peça + + + Unskip selected tracks + No ometis les peces seleccionades + + + Skip track + Omet la peça + + + Skip selected tracks + Omet les peces seleccionades + + + Set %1 to "%2"... + Estableix %1 a «%2»… + + + Edit tag "%1"... + Edita l’etiqueta «%1»… + + + Add to another playlist + Afegeix a una altra llista de reproducció + + + New playlist + Llista de reproducció nova + + + Add file + Afegeix un fitxer + + + Music + Música + + + Add folder + Afegeix una carpeta + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + + + + None of the selected songs were suitable for copying to a device + Cap de les cançons seleccionades són adequades per copiar-les a un dispositiu + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + La versió de Strawberry a la que us acabeu d’actualitzar necessita tornar a analitzar tota la col·lecció perquè incorpora les següents funcions noves: + + + Would you like to run a full rescan right now? + Voleu fer de nou un escaneig complet ara? + + + Collection rescan notice + Avís de reescaneig de la col·lecció + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + + + + + MimeData + + Playlist + Llista de reproducció + + + + MoodbarProxyStyle + + Show moodbar + + + + Moodbar style + + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + + + + Moodbar style + + + + Save the .mood files directly in the songs folders + + + + Enabled + + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + S’està carregant el dispositiu MTP + + + Error connecting MTP device %1 + + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Servidor intermediari de xarxa + + + &Use the system proxy settings + + + + Direct internet connection + Connexió directa a Internet + + + &Manual proxy configuration + + + + HTTP proxy + Servidor intermediari per a l’HTTP + + + SOCKS proxy + Servidor intermediari per al SOCKS + + + Port + + + + Use authentication + Empra autentificació + + + Username + Nom d’usuari + + + Password + Contrasenya + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + Notificacions + + + Strawberry can show a message when the track changes. + L’Strawberry pot mostrar un missatge quan la peça canviï. + + + Notification type + Tipus de notificació + + + Disabled + Refers to a disabled notification type in Notification settings. + Inhabilitat + + + Show a &native desktop notification + + + + Show a pretty OSD + Mostra un OSD bonic + + + Show a popup fro&m the system tray + + + + General settings + Configuració general + + + Popup duration + Duració de la finestra emergent + + + seconds + segons + + + Disable duration + Inhabilita la durada + + + Show a notification when I change the volume + Mostra una notificació quan canvia el volum + + + Show a notification when I change the repeat/shuffle mode + Mostra una notificació quan canviï entre el modes de repetició i de mescla aleatòria + + + Show a notification when I pause playback + Mostra una notificació en aturar la reproducció + + + Show a notification when I resume playback + + + + Include album art in the notification + Inclou la coberta a la notificació + + + Custom message settings + Configuració personalitzada dels missatges + + + Use a custom message for notifications + Utilitza un missatge personalitzat per les notificacions + + + Preview + Previsualitza + + + MenuPopupToolButton + + + + Summary + Resum + + + Body + Cos + + + Pretty OSD options + Opcions de l'OSD bonic + + + Background color + Color de fons + + + Text options + Opcions del text + + + Choose font... + Tria el tipus de lletra… + + + Choose color... + Tria el color… + + + Background opacity + Opacitat del fons + + + Basic Blue + Blau bàsic + + + Strawberry Red + Vermell maduixa + + + Custom... + Personalitza... + + + Enable fading + + + + Add song artist tag + Afegeix l’etiqueta d’artista a la cançó + + + Add song album tag + Afegeix l’etiqueta d’àlbum a la cançó + + + Add song title tag + Afegeix l’etiqueta de títol a la cançó + + + Add song albumartist tag + Afegeix l’etiqueta «albumartist» a la cançó + + + Add song year tag + Afegeix l’etiqueta d’any a la cançó + + + Add song composer tag + Afegeix l’etiqueta de compositor a la cançó + + + Add song performer tag + Afegeix etiqueta d’intèrpret de la cançó + + + Add song grouping tag + Afegeix etiqueta d’agrupació de la cançó + + + Add song disc tag + Afegeix l’etiqueta de disc a la cançó + + + Add song track tag + Afegeix l’etiqueta de número de peça a la cançó + + + Add song genre tag + Afegeix l’etiqueta de gènere a la cançó + + + Add song length tag + Afegeix l’etiqueta de durada a la cançó + + + Add song play count + Afegeix el nombre de reproduccions + + + Add song skip count + Afegeix comptador de passades de cançó + + + Add song rating + Afegeix una valoració a la cançó + + + Add a new line if supported by the notification type + Afegeix una línia nova si és compatible amb el tipus de notificació + + + %filename% + + + + Add song filename + Afegeix el nom de fitxer de la cançó + + + %url% + + + + Add song URL + + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + Vista prèvia OSD + + + Drag to reposition + Arrossegueu per canviar de posició + + + + OSDBase + + disc %1 + + + + track %1 + peça %1 + + + Paused + En pausa + + + Stopped + Aturat + + + Stop playing after track: %1 + Atura la reproducció després de: %1 + + + On + Actiu + + + Off + Inactiu + + + Playlist finished + Llista de reproducció finalitzada + + + Volume %1% + Volumen %1% + + + Don't shuffle + Sense mesclar + + + Shuffle all + Mescla-ho tot + + + Shuffle tracks in this album + Mescla les peces d’aquest àlbum + + + Shuffle albums + Mescla els àlbums + + + Don't repeat + Sense repetició + + + Repeat track + Repeteix la peça + + + Repeat album + Repeteix l'àlbum + + + Repeat playlist + Repeteix la llista de reproducció + + + Stop after every track + Atura després de cada peça + + + Intro tracks + Peces d’introducció + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + Destí + + + After copying... + Després de copiar… + + + Keep the original files + Conserva els fitxers originals + + + Delete the original files + Suprimeix els fitxers originals + + + Naming options + Opcions d’anomenament + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album %title </p> + +<p>Si demarqueu entre claus una secció de text que contingui una fitxa de remplaçament, aquesta secció no es mostrarà si la fitxa de remplaçament es troba buida.</p> + + + Insert... + Insereix… + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + + + + Restrict characters to ASCII + + + + Allow extended ASCII characters + + + + Replace spaces with underscores + + + + Overwrite existing files + Sobreescriu els fitxers existents + + + Copy album cover artwork + + + + Preview + Previsualitza + + + Loading... + S’està carregant… + + + Safely remove the device after copying + Treure el dispositiu amb seguretat després de copiar + + + Title + Títol + + + Album + Àlbum + + + Artist + Artista + + + Artist's initial + Inicials de l’artista + + + Album artist + Artista de l’àlbum + + + Composer + Compositor + + + Performer + Intèrpret + + + Grouping + Agrupació + + + Track + Peça + + + Disc + + + + Year + Any + + + Original year + Any original + + + Genre + Estil + + + Comment + Comentari + + + Length + Durada + + + Bitrate + Refers to bitrate in file organize dialog. + Taxa de bits + + + Sample rate + Freqüència de mostreig + + + Bit depth + + + + File extension + Extensió del fitxer + + + + OrganizeErrorDialog + + Error copying songs + S’ha produït un error en copiar les cançons + + + There were problems copying some songs. The following files could not be copied: + Hi ha hagut problemes en copiar algunes cançons. Els fitxers següents no s’han pogut copiar: + + + Error deleting songs + S’ha produït un error en suprimir les cançons + + + There were problems deleting some songs. The following files could not be deleted: + S’han produït problemes en suprimir algunes cançons. No s’han pogut suprimir els fitxers següents: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Coberta d’àlbum petita + + + Large album cover + Coberta d’àlbum gran + + + Fit cover to width + Ajusta la coberta a l’amplada + + + Show above status bar + Mostra sota la barra d'estat + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Títol + + + Artist + Artista + + + Album + Àlbum + + + Track + Peça + + + Disc + + + + Length + Durada + + + Year + Any + + + Original Year + + + + Genre + Estil + + + Album Artist + + + + Composer + Compositor + + + Performer + Intèrpret + + + Grouping + Agrupació + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Taxa de bits + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Comentari + + + Source + Font + + + Mood + + + + Rating + + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Formulari + + + Undo + + + + Redo + + + + Playlist + Llista de reproducció + + + Load playlist + Carrega la llista de reproducció + + + No matches found. Clear the search box to show the whole playlist again. + No s’han trobat coincidències. Netegeu el quadre de cerca per mostrar de nou la llista de reproducció completa. + + + + PlaylistDelegateBase + + stop + atura + + + + PlaylistGeneratorInserter + + Loading smart playlist + + + + + PlaylistHeader + + &Hide... + &Amaga… + + + &Stretch columns to fit window + &Encabeix les columnes a la finestra + + + &Reset columns to default + + + + &Lock rating + + + + &Align text + &Alinea el text + + + &Left + &Esquerra + + + &Center + &Centre + + + &Right + &Dreta + + + &Hide %1 + &Amaga «%1» + + + + PlaylistListContainer + + Form + Formulari + + + New folder + Carpeta nova + + + Delete + Eliminar + + + Save playlist + Save playlist menu action. + Desa la llista de reproducció + + + Copy to device... + Copia al dispositiu… + + + Enter the name of the folder + Introduïu el nom de la carpeta + + + Playlist + Llista de reproducció + + + Copy to device + + + + Playlist must be open first. + + + + Remove playlists + Suprimeix llistes de reproducció + + + You are about to remove %1 playlists from your favorites, are you sure? + Esteu segur que voleu suprimir %1 llistes de reproducció de les vostres llistes favorites? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Podeu marcar llistes de reproducció com a preferides fent clic a la icona de l’estrella al costat del nom de la llista corresponent. + + + Favorited playlists will be saved here + Les vostres llistes preferides es desaran aquí + + + + PlaylistManager + + Playlist + Llista de reproducció + + + Couldn't create playlist + No s’ha pogut crear la llista de reproducció + + + Save playlist + Title of the playlist save dialog. + Desa la llista de reproducció + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + %1 seleccionades de + + + %n track(s) + + + + + + + Unknown + Desconegut + + + Various artists + Artistes diversos + + + + PlaylistParser + + All playlists (%1) + Totes les llistes de reproducció (%1) + + + %1 playlists (%2) + %1 llistes de reproducció (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Opcions de la llista de reproducció + + + File paths + Camins dels fitxers + + + This can be changed later through the preferences + Aquesta opció es pot modificar més tard a Preferències + + + Remember my choice + Recorda la meva elecció + + + Automatic + Automàtic + + + Relative + Relatius + + + Absolute + Absoluts + + + + PlaylistSequence + + Repeat + Repeteix + + + Shuffle + Mescla + + + Don't repeat + Sense repetició + + + Repeat track + Repeteix la peça + + + Repeat album + Repeteix l'àlbum + + + Repeat playlist + Repeteix la llista de reproducció + + + Stop after each track + Atura després de cada peça + + + Intro tracks + Peces d’introducció + + + Don't shuffle + Sense mesclar + + + Shuffle tracks in this album + Mescla les peces d’aquest àlbum + + + Shuffle all + Mescla-ho tot + + + Shuffle albums + Mescla els àlbums + + + + PlaylistSettingsPage + + Playlist + Llista de reproducció + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Avisa’m abans de tancar una pestanya de llista de reproducció + + + Continue to the next item in the playlist if a song is unavailable + + + + Grey out unavailable songs in playlists on playback + + + + Grey out unavailable songs in playlists on startup + + + + Automatically select current playing track + + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + En desar una llista de reproducció, els camins dels fitxers han de ser + + + A&utomatic + Automàtic + + + Absolu&te + + + + Re&lative + + + + As&k when saving + &Pregunta en desar + + + Metadata + Metadades + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + En habilitar aquesta opció, podreu fer clic en la cançó seleccionada de la llista de reproducció i editar els valors directament + + + Enable song metadata inline edition with click + Edita les metadades d’una cançó amb un clic + + + Write metadata when saving playlists + + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Tanca la llista de reproducció + + + Rename playlist... + Renombra de la llista de reproducció... + + + Save playlist... + Desa la llista de reproducció... + + + Rename playlist + Renombra de la llista de reproducció + + + Enter a new name for this playlist + Introduïu un nom per aquesta llista de reproducció + + + Remove playlist + Esborra la llista de reproducció + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Sou a punt de suprimir una llista de reproducció que no heu desat com a favorita: la llista de reproducció se suprimirà (aquesta acció és irreversible). +Esteu segur que voleu continuar? + + + Warn me when closing a playlist tab + Avisa’m abans de tancar una pestanya de llista de reproducció + + + This option can be changed in the "Behavior" preferences + Podeu modificar aquesta opció a la pestanya «Comportament» a Preferències + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + Llista de reproducció + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + afegeix %n cançons + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + mou %n cançons + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + elimina %n cançons + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + mescla les cançons + + + + PlaylistUndoCommands::SortItems + + sort songs + ordena les cançons + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + kb/s + + + + QObject + + Usage + Ús + + + options + opcions + + + URL(s) + + + + Player options + Opcions del reproductor + + + Start the playlist currently playing + Inicia la llista de reproducció que s'està reproduint + + + Play if stopped, pause if playing + Reprodueix si esta parat, pausa si esta reproduïnt + + + Pause playback + Pausa la reproducció + + + Stop playback + Atura la reproducció + + + Stop playback after current track + Atura la reproducció després de la peça actual + + + Skip backwards in playlist + Salta enrere en la llista de reproducció + + + Skip forwards in playlist + Salta endavant en la llista de reproducció + + + Set the volume to <value> percent + Estableix el volum al <value> percent + + + Increase the volume by 4 percent + + + + Decrease the volume by 4 percent + + + + Increase the volume by <value> percent + Augmenta el volum <value> per cent + + + Decrease the volume by <value> percent + Redueix el volum <value> per cent + + + Seek the currently playing track to an absolute position + Mou-te per la peça en reproducció a una posició absoluta + + + Seek the currently playing track by a relative amount + Mou-te per la peça en reproducció a una posició relativa + + + Restart the track, or play the previous track if within 8 seconds of start. + Reinicia la peça, o canvia a l’anterior si no han transcorregut 8 segons des de l’inici. + + + Playlist options + Opcions de la llista de reproducció + + + Create a new playlist with files + + + + Append files/URLs to the playlist + Afegeix fitxers/URL a la llista de reproducció + + + Loads files/URLs, replacing current playlist + Carregar fitxers/URLs, substituïnt l'actual llista de reproducció + + + Play the <n>th track in the playlist + Reprodueix la <n>a cançó de la llista de reproducció + + + Play given playlist + + + + Other options + Altres opcions + + + Display the on-screen-display + Mostra la indicació a pantalla + + + Toggle visibility for the pretty on-screen-display + Canvia la visibilitat del OSD estètic + + + Change the language + Canvia la llengua + + + Resize the window + + + + Equivalent to --log-levels *:1 + Equivalent a --log-levels *:1 + + + Equivalent to --log-levels *:3 + Equivalent a --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Llista separada per comes de classe:nivell, el nivell és 0-3 + + + Print out version information + Mostra la informació de la versió + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Desconegut + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + + + + 1 day + 1 dia + + + %1 days + %1 dies + + + Today + Avui + + + Yesterday + Ahir + + + %1 days ago + fa %1 dies + + + Tomorrow + Demà + + + In %1 days + D’aquí a %1 dies + + + Next week + La setmana vinent + + + In %1 weeks + D’aquí a %1 setmanes + + + Show in file browser + + + + Too many songs selected. + + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + artista + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + + + + after + + + + before + abans + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + entre + + + contains + conté + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + buit + + + not empty + + + + Comment + Comentari + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + + + + Days + Dies + + + Weeks + + + + Months + Mesos + + + Years + Anys + + + Normal + + + + Angry + + + + Frozen + + + + Happy + + + + System colors + Colors del sistema + + + + QWidget + + Clear + Neteja + + + Reset + Posa a zero + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + S’està cercant… + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Unknown error + + + + + QobuzService + + Authenticating... + S’està autenticant… + + + Maximum number of login attempts reached. + + + + Missing Qobuz app ID. + + + + Missing Qobuz username. + + + + Missing Qobuz password. + + + + Not authenticated with Qobuz. + + + + Missing Qobuz app ID or secret. + + + + + QobuzSettingsPage + + Qobuz + + + + Enable + + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + Autenticació + + + App ID + Id. de l’aplicació + + + Username + Nom d’usuari + + + Password + Contrasenya + + + App Secret + Secret de l’aplicació + + + Login + Entra + + + Preferences + Preferències + + + Audio format + Format d’àudio + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Base64 encoded secret + + + + Configuration incomplete + + + + Missing app id. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Ha fallat l’autenticació + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + + + + Cancelled. + S’ha cancel·lat. + + + + Queue + + %n track(s) + + + + + + + + QueueView + + QueueView + + + + Move down + Mou cap avall + + + Ctrl+Up + Ctrl+Amunt + + + Move up + Mou cap amunt + + + Ctrl+Down + + + + Remove + Suprimeix + + + Clear + Neteja + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Afegeix a la llista de reproducció actual + + + Replace current playlist + Substitueix la llista de reproducció actual + + + Open in new playlist + Obre en una llista de reproducció nova + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + Formulari + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Gestor d'agrupacions desades + + + Remove + Suprimeix + + + Ctrl+Up + Ctrl+Amunt + + + Name + Nom + + + First level + Primer nivell + + + Second Level + Segon nivell + + + Third Level + Tercer nivell + + + None + Cap + + + Album artist + Artista de l’àlbum + + + Artist + Artista + + + Album + Àlbum + + + Album - Disc + + + + Year - Album + Any - Àlbum + + + Year - Album - Disc + + + + Original year - Album + Any original - àlbum + + + Original year - Album - Disc + + + + Disc + + + + Year + Any + + + Original year + Any original + + + Genre + Estil + + + Composer + Compositor + + + Performer + Intèrpret + + + Grouping + Agrupació + + + File type + Tipus de fitxer + + + Format + + + + Sample rate + Freqüència de mostreig + + + Bit depth + + + + Bitrate + Taxa de bits + + + Unknown + Desconegut + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + + + + Show love button + + + + Submit scrobbles every + + + + seconds + segons + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + Col·lecció + + + Subsonic + + + + Local file + + + + Tidal + + + + Device + Dispositiu + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Flux de dades + + + Radio Paradise + + + + Unknown + Desconegut + + + Last.fm + + + + Login + Entra + + + Libre.fm + + + + Listenbrainz + + + + User token: + Testimoni d’usuari: + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 Autenticació d'Scrobbler + + + Open URL in web browser? + + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Feu clic a «Desa» per a copiar l’URL al porta-retalls i obriu-lo manualment amb un navegador web. + + + Could not open URL. Please open this URL in your browser + + + + Invalid reply from web browser. Missing token. + + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + Paràmetres + + + General + + + + User interface + Interfície d’usuari + + + Streaming + + + + + SmartPlaylistQuerySearchPage + + Form + Formulari + + + Search mode + Mode de cerca + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + Termes de cerca + + + + SmartPlaylistQuerySortPage + + Form + Formulari + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + + + + Show all the songs + + + + Only show the first + + + + songs + cançons + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Cerca a la col·lecció + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + Termes de cerca + + + A song will be included in the playlist if it matches these conditions. + + + + Search options + Opcions de cerca + + + Choose how the playlist is sorted and how many songs it will contain. + + + + + SmartPlaylistSearchPreview + + Form + Formulari + + + Preview + Previsualitza + + + Loading... + S’està carregant… + + + %1 songs found (showing %2) + S’han trobat %1 cançons (se’n mostren %2) + + + %1 songs found + S’han trobat %1 cançons + + + + SmartPlaylistSearchTermWidget + + Form + Formulari + + + and + i + + + ago + + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + + + + + SmartPlaylistWizard + + Smart playlist + + + + Playlist type + + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + + + + Finish + Finalitza + + + Choose a name for your smart playlist + Trieu un nom per a la llista intel·ligent + + + + SmartPlaylistWizardFinishPage + + Form + Formulari + + + Name + Nom + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + + + + 50 random tracks + 50 peces a l’atzar + + + Ever played + + + + Never played + + + + Last played + + + + Most played + + + + Favourite tracks + + + + All tracks + Totes les peces + + + Dynamic random mix + + + + + SmartPlaylistsViewContainer + + New smart playlist + + + + Edit smart playlist + + + + Delete smart playlist + Suprimeix la llista intel·ligent + + + New smart playlist... + + + + Append to current playlist + Afegeix a la llista de reproducció actual + + + Replace current playlist + Substitueix la llista de reproducció actual + + + Open in new playlist + Obre en una llista de reproducció nova + + + Queue track + Afegeix la peça a la cua + + + Play next + + + + Edit smart playlist... + + + + + SnapDialog + + Strawberry is running as a Snap + L’Strawberry s’executa com a «snap» + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + Us cal el GStreamer per a aquest URL. + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + + + + Loading tracks + S’estan carregant les peces + + + Loading tracks info + S’està carregant la informació de les peces + + + + SpotifyRequest + + Authenticating... + S’està autenticant… + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + S’està cercant… + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Preferències + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Authentication failed + Ha fallat l’autenticació + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + + + + Append to current playlist + Afegeix a la llista de reproducció actual + + + Replace current playlist + Substitueix la llista de reproducció actual + + + Open in new playlist + Obre en una llista de reproducció nova + + + Queue track + Afegeix la peça a la cua + + + Queue to play next + + + + Remove from favorites + + + + + StreamingCollectionViewContainer + + Form + Formulari + + + Close + Tanca + + + Abort + Interromp + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + Artistes diversos + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + artistes + + + albums + àlbums + + + songs + cançons + + + Enter search terms above to find music + + + + Configure %1... + Configura %1… + + + Append to current playlist + Afegeix a la llista de reproducció actual + + + Replace current playlist + Substitueix la llista de reproducció actual + + + Open in new playlist + Obre en una llista de reproducció nova + + + Queue track + Afegeix la peça a la cua + + + Add to artists + + + + Add to albums + + + + Add to songs + + + + Search for this + Cerca-ho + + + Group by + Agrupa per + + + + StreamingSongsView + + Configure %1... + Configura %1… + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + + + + Albums + Àlbums + + + Songs + + + + Search + Cerca + + + Configure %1... + Configura %1… + + + + SubsonicRequest + + Retrieving albums... + + + + Retrieving songs for %1 album... + + + + Retrieving songs for %1 albums... + + + + Retrieving album cover for %1 album... + + + + Retrieving album covers for %1 albums... + + + + Unknown error + + + + + SubsonicService + + Server URL is invalid. + + + + Missing username or password. + + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + + + + Server URL + + + + Authentication + Autenticació + + + Username + Nom d’usuari + + + Password + Contrasenya + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Preferències + + + Use HTTP/2 when possible + + + + Verify server certificate + Verifica el certificat del servidor + + + Download album covers + + + + Server-side scrobbling + + + + Test + + + + Delete songs + + + + Configuration incomplete + + + + Missing server url, username or password. + + + + Configuration incorrect + + + + Server URL is invalid. + + + + Test successful! + + + + Test failed! + + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + L’URL del servidor Subsonic no és vàlid. + + + Missing Subsonic username or password. + + + + + SystemTrayIcon + + Pause + Pausa + + + Play + Reprodueix + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + S’està autenticant… + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + S’està cercant… + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + + + + Missing Tidal username. + + + + Missing Tidal password. + + + + Not authenticated with Tidal and reached maximum number of login attempts. + + + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + + TidalSettingsPage + + Tidal + + + + Enable + + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + Autenticació + + + Use OAuth + + + + Client ID + Id. del client + + + API Token + Testimoni de l’API + + + Username + Nom d’usuari + + + Password + Contrasenya + + + Login + Entra + + + Preferences + Preferències + + + Audio quality + Qualitat d’àudio + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Album cover size + + + + Stream URL method + + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + + + + Missing Tidal client ID. + + + + Missing API token. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Ha fallat l’autenticació + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + Cancelled. + S’ha cancel·lat. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + Recolector d'etiquetes + + + Sorry + Ho lamentem + + + Strawberry was unable to find results for this file + L’Strawberry no ha trobat resultats per a aquest fitxer + + + Select best possible match + Selecciona la millor coincidència possible + + + Track + Peça + + + Year + Any + + + Title + Títol + + + Artist + Artista + + + Album + Àlbum + + + Previous + Anterior + + + Next + Següent + + + Original tags + Etiquetes originals + + + Suggested tags + Etiquetes suggerides + + + Saving tracks + S’estan desant les peces + + + + TrackSlider + + Form + Formulari + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Feu-hi clic per a alternar entre el temps de reproducció restant i el total + + + + TranscodeDialog + + Transcode Music + Converteix música + + + Files to transcode + Fitxers per convertir + + + Filename + Nom de fitxer + + + Directory + Directori + + + Add... + Afegeix... + + + Remove + Suprimeix + + + Add all tracks from a directory and all its subdirectories + Afegeix totes les peces des d’una carpeta y las seves subcarpetes + + + Import... + Importa... + + + Output options + Opcions de sortida + + + Audio format + Format d’àudio + + + Options... + Opcions… + + + Destination + Destí + + + Alongside the originals + Al costat dels originals + + + Select... + Navega… + + + Progress + Progrés + + + Details... + Detalls… + + + Clear + Neteja + + + Start transcoding + Inicia la conversió + + + %n remaining + + %n restants + + + + + %n finished + + %n han acabat + + + + + %n failed + + %n han fallat + + + + + Add files to transcode + Afegeix fitxers per a convertir-los + + + Music + Música + + + Open a directory to import music from + Obriu una carpeta des d’on s’importarà la música + + + Add folder + Afegeix una carpeta + + + + TranscodeLogDialog + + Transcoder Log + Registre del convertidor + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + No s’ha pogut crear l’element «%1» de GStreamer. Comproveu que teniu tots els connectors requerits de GStramer instal·lats + + + Successfully written %1 + Escrit satisfactòriament %1 + + + Transcoding %1 files using %2 threads + S’estan convertint %1 fitxers emprant %2 fils + + + Error processing %1: %2 + S’ha produït un error en processar %1: %2 + + + Starting %1 + S’està començant %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + No s’ha pogut trobar un codificador per %1. Comproveu que teniu els connectors adequats de GStreamer instal·lats + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + No s’ha pogut trobar un muxer per %1. Comproveu que teniu els connectors adequats de GStreamer instal·lats + + + + TranscoderOptionsAAC + + Form + Formulari + + + Bitrate + Taxa de bits + + + kbps + kb/s + + + Profile + Perfil + + + Main profile (MAIN) + Perfil principal (MAIN) + + + Low complexity profile (LC) + Perfil de baixa complexitat (LC) + + + Scalable sampling rate profile (SSR) + Perfil de freqüència de mostreig escalable (SSR) + + + Long term prediction profile (LTP) + Perfil de predicció a llarg termini (LTP) + + + Use temporal noise shaping + Usa el modelatge de soroll temporal + + + Allow mid/side encoding + Permet la codificació centre/costats + + + Block type + Tipus de bloc + + + Normal block type + Tipus de bloc normal + + + No short blocks + No utilitzis blocs curs + + + No long blocks + No utilitzis blocs llargs + + + + TranscoderOptionsASF + + Form + Formulari + + + Bitrate + Taxa de bits + + + kbps + kb/s + + + + TranscoderOptionsDialog + + Transcoding options + Opcions de conversió + + + + TranscoderOptionsFLAC + + Form + Formulari + + + Quality + Sound quality + Qualitat + + + Fast + Ràpid + + + Best + Millor + + + + TranscoderOptionsMP3 + + Form + Formulari + + + Optimize for &quality + + + + Quality + Sound quality + Qualitat + + + Opti&mize for bitrate + + + + Bitrate + Taxa de bits + + + kbps + kb/s + + + Constant bitrate + Taxa de bits constant + + + Encoding engine quality + Qualitat del motor de codificació + + + Fast + Ràpid + + + Standard + Estàndard + + + High + Alt + + + Force mono encoding + Força la codificació mono + + + + TranscoderOptionsOpus + + Form + Formulari + + + Bitrate + Taxa de bits + + + kbps + kb/s + + + + TranscoderOptionsSpeex + + Form + Formulari + + + Quality + Sound quality + Qualitat + + + Bitrate + Taxa de bits + + + automatic + automàtic + + + kbps + kb/s + + + Average bitrate + Taxa de bits mitjana + + + disabled + deshabilitat + + + Encoding mode + Mode de codificació + + + Auto + + + + Ultra wide band (UWB) + Banda ultra ampla (UWB) + + + Wide band (WB) + Banda ampla (WB) + + + Narrow band (NB) + Banda estreta (BE) + + + Variable bit rate + Taxa de bits variable + + + Voice activity detection + Detecció de veu + + + Discontinuous transmission + Transmissió discontínua + + + Encoding complexity + Complexitat de la codificació + + + Frames per buffer + Trames per espai de memòria intermèdia + + + + TranscoderOptionsVorbis + + Form + Formulari + + + Quality + Sound quality + Qualitat + + + Use bitrate management engine + Usa el motor de gestió de flux de bits + + + Target bitrate + Taxa de bits desitjada + + + kbps + kb/s + + + Minimum bitrate + Taxa de bits mínima + + + disabled + deshabilitat + + + Maximum bitrate + Màxima taxa de bits + + + + TranscoderOptionsWavPack + + Form + Formulari + + + + TranscoderSettingsPage + + Transcoding + Conversió + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Aquesta configuració s’usa en el diàleg «Converteix música», i quan es converteix la música abans de copiar-la a un dispositiu. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + Camí del D-Bus + + + Serial number + Número de sèrie + + + Mount points + Punts de muntatge + + + Partition label + Etiqueta de la partició + + + UUID + + + + + UserPassDialog + + Enter username and password + + + + Username + Nom d’usuari + + + Password + Contrasenya + + + diff --git a/src/translations/strawberry_cs_CZ.ts b/src/translations/strawberry_cs_CZ.ts new file mode 100644 index 00000000..83499c0b --- /dev/null +++ b/src/translations/strawberry_cs_CZ.ts @@ -0,0 +1,7577 @@ + + + + + About + + About + O programu + + + About Strawberry + O Strawberry + + + Version %1 + Verze %1 + + + Strawberry is a music player and music collection organizer. + Strawberry je hudební přehrávač a organizér hudební kolekce. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Je to větev přehrávače Clementine z roku 2018 zaměřený na sběratele hudby a audiofily. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry je svobodný software vydávaný pod licencí GPL. Zdrojový kód je dostupný na %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + S tímto programem jste měli obdržet kopii licence GNU GPL. Pokud ne, navštivte %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Líbí se a vyhovuje vám-li Strawberry, zvažte příspěvek. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Můžete podpořit autora na %1. Také můžete jednorázově přispět pomocí %2. + + + Author and maintainer + Autor a vedoucí + + + Contributors + Přispěvatelé + + + Clementine authors + Autoři Clementine + + + Clementine contributors + Přispěvatelé Clementine + + + Thanks to + Díky + + + Thanks to all the other Amarok and Clementine contributors. + Díky všem ostatním přispěvatelům Amaroku a Clementine. + + + + AddStreamDialog + + Add Stream + Přidat přenos + + + Enter the URL of a stream: + Zadejte URL streamu: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Obrázky (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Obrázky (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Všechny soubory (*) + + + Load cover from disk... + Nahrát obal na disku... + + + Save cover to disk... + Uložit obal na disk... + + + Load cover from URL... + Nahrát obal z adresy (URL)... + + + Search for album covers... + Hledat obaly alb... + + + Unset cover + Odebrat obal + + + Delete cover + + + + Clear cover + + + + Show fullsize... + Ukázat v plné velikosti... + + + Search automatically + Hledat automaticky + + + Load cover from disk + Nahrát obal z disku + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + neznámý + + + Save album cover + Uložit obal alba + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Uložit obaly + + + Output + Výstup + + + Enter a filename for exported covers (no extension): + Zadejte souborový název pro uložené obaly (bez přípony): + + + Export downloaded covers + Uložit stažené obaly + + + Export embedded covers + Uložit vložené obaly + + + Existing covers + Stávající obaly + + + Do not overwrite + Nepřepisovat + + + O&verwrite all + Přeps&at vše + + + Overwrite s&maller ones only + Přepsat pouze menší + + + Size + Velikost + + + Scale size + Velikost měřítka + + + Size: + Velikost: + + + Pixel + + + + + AlbumCoverManager + + Abort + Přerušit + + + All albums + Všechna alba + + + Albums with covers + Alba s obaly + + + Albums without covers + Alba bez obalů + + + Really cancel? + Opravdu zrušit? + + + Closing this window will stop searching for album covers. + Zavření tohoto okna zastaví hledání obalů alb. + + + Don't stop! + Nezastavovat! + + + All artists + Všichni umělci + + + Various artists + Různí umělci + + + Got %1 covers out of %2 (%3 failed) + Získáno %1 obalů z %2 (%3 nezískáno) + + + %1 transferred + %1 přeneseno + + + Export finished + Uložení dokončeno + + + No covers to export. + Žádné obaly k uložení + + + Exported %1 covers out of %2 (%3 skipped) + Uloženo %1 obalů z %2 (%3 přeskočeno) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Správce obalů + + + Artist + Umělec + + + Album + + + + Search + Hledat + + + Covers from %1 + Obaly od %1 + + + Abort + Přerušit + + + + AnalyzerContainer + + Framerate + Počet snímků + + + Low (%1 fps) + Nízký (%1 fps) + + + Medium (%1 fps) + Střední (%1 fps) + + + High (%1 fps) + Vysoký (%1 fps) + + + Super high (%1 fps) + Nadmíru vysoké (%1 fps) + + + No analyzer + Žádný analyzátor + + + Block analyzer + Blokový analyzátor + + + Boom analyzer + Růstový analyzátor + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Vzhled + + + Style + + + + Use system theme icons + Použít ikony ze systémového motivu + + + Settings require restart. + + + + Tabbar colors + + + + &Use the system default color + &Použít nastavení barvu systému + + + Use custom color + Použít vlastní barvy + + + Use gradient background + Použít gradientu + + + Select tabbar color: + + + + Background image + Obrázek na pozadí + + + Default bac&kground image + Výchozí obrázek poza&dí + + + &No background image + &Chybějící obrázek na pozadí + + + The album cover of the currently playing song + Obal alba nyní přehrávané písně + + + Albu&m cover + Obal alb&a + + + Custom image: + Vlastní obrázek: + + + Browse... + Procházet… + + + Position + Pozice + + + Upper Left + Vlevo nahoře + + + Upper Right + Vpravo nahoře + + + Middle + Střed + + + Bottom Left + Vlevo dole + + + Bottom Right + Vpravo dole + + + Max cover size + Maximální velikost obalu alba + + + Stretch image to fill playlist + Roztáhnout obrázek aby vyplnil seznam skladeb + + + Keep aspect ratio + Zachovat poměr stran + + + Do not cut image + Neořezávat obrázek + + + Blur amount + Velikost rozmazání + + + 0px + 0 px + + + Opacity + Neprůhlednost + + + 40% + + + + Icon sizes + Velikosti ikon + + + Playlist buttons + Tlačítka playlistů + + + Tabbar large mode + + + + Play control buttons + Tlačítka pro ovládání přehrávání + + + Configure buttons + Nastavit tlačítka + + + Files, playlists and queue buttons + Soubory, playlisty a tlačítka fronty + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + Vybrat obrázek na pozadí + + + + BackendSettingsPage + + Backend + + + + Audio output + Zvukový výstup + + + Device + Zařízení + + + Output + Výstup + + + Engine + + + + ALSA plugin: + + + + hw + hardware + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + Povolit ovládání hlasitosti + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + Mezipaměť + + + ms + + + + Buffer duration + Délka vyrovnávací paměti + + + High watermark + + + + Low watermark + + + + Defaults + Výchozí nastavení + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + Zesílení přehrávaných skladeb + + + Use Replay Gain metadata if it is available + Používat metadata pro zesílení přehrávaných skladeb, jsou-li dostupná + + + Replay Gain mode + Režim zesílení přehrávaných skladeb + + + Radio (equal loudness for all tracks) + Rádio (shodná hlasitost pro všechny skladby) + + + Album (ideal loudness for all tracks) + Album (ideální hlasitost pro všechny skladby) + + + Pre-amp + Předzesílení + + + Apply compression to prevent clipping + Použít kompresi, aby se zabránilo ořezávání zvuku (clippingu) + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Slábnutí + + + Fade out when stopping a track + Zeslabit při zastavování skladby + + + Cross-fade when changing tracks manually + Prolínání při ruční změně skladby + + + Cross-fade when changing tracks automatically + Prolínání při automatické změně skladby + + + Except between tracks on the same album or in the same CUE sheet + Kromě mezistop na tom samém albu nebo v tom samém listu CUE + + + Fading duration + Doba slábnutí + + + Fade out on pause / fade in on resume + Zeslabení při pozastavení/Zesílení při obnovení přehrávání + + + + BehaviourSettingsPage + + Behavior + Chování + + + Show system tray icon + Zobrazovat ikonu v systémové oblasti + + + Keep running in the background when the window is closed + Při zavření okna nechat běžet na pozadí + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + Obnovit přehrávání při spuštění + + + Show playing widget + Zobrazit widget s přehráváním + + + On startup + Při startu + + + Remember from &last time + &Obnovit předchozí stav + + + Show the main window + + + + Hide the main window + Skrýt hlavní okno + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + Jazyk + + + Use the system default + Použít výchozí nastavení systému + + + You will need to restart Strawberry if you change the language. + Pokud změníte jazyk, budete muset Strawberry spustit znovu. + + + Using the menu to add a song will... + Použití nabídky pro přidání písně... + + + Never start playing + Nikdy nezačít přehrávání + + + Play if there is nothing already playing + Hrát, pokud se již něco nepřehrává + + + Always start playing + Vždy začít přehrávat + + + Pressing "Previous" in player will... + Po stisknutí Předchozí v přehrávači nastane... + + + Jump to previous song right away + Skočit ihned na předchozí píseň + + + Restart song, then jump to previous if pressed again + Spustit píseň znovu, potom, v případě že je tlačítko opět stisknuto, skočit na předchozí + + + Double clicking a song will... + Dvojité klepnutí na píseň... + + + Append to the playlist + Přidat do seznamu skladeb + + + Replace the playlist + Nahradit seznam skladeb + + + Open in new playlist + Otevřít v novém seznamu skladeb + + + Add to the queue + Přidat do řady + + + Double clicking a song in the playlist will... + Dvojité klepnutí na píseň v seznamu skladeb způsobí... + + + Change the currently playing song + Změnit nyní přehrávanou píseň + + + Seeking using a keyboard shortcut or mouse wheel + Posunování pomocí klávesové zkratky nebo kolečka myši + + + Time step + Časový krok + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Chyba při přenastavování CCDA zařízení do připraveného stavu. + + + Error while setting CDDA device to pause state. + Chyba při přenastavování CCDA zařízení do pozastaveného stavu. + + + Error while querying CDDA tracks. + Chyba při dotazování na CDDA stopy. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + Filtr Kolekce + + + Enter search terms here + Zde zadejte hledané výrazy + + + MenuPopupToolButton + + + + Entire collection + Celá sbírka + + + Added today + Přidána dnes + + + Added this week + Přidána tento týden + + + Added within three months + Přidána během tří měsíců + + + Added this year + Přidána tento rok + + + Added this month + Přidána tento měsíc + + + Save current grouping + Uložit nynější seskupení + + + Manage saved groupings + Spravovat uložená seskupení + + + Show + Ukázat + + + Group by + Seskupovat podle + + + Display options + Volby zobrazení + + + Group by Album artist/Album + Seskupovat podle umělce alba/alba + + + Group by Album artist/Album - Disc + Seskupit jako Autor alba/Album - Disk + + + Group by Album artist/Year - Album + Seskupit jako Autor alba/Rok - Album + + + Group by Album artist/Year - Album - Disc + Seskupit jako Autor alba/Rok - Album - Disk + + + Group by Artist/Album + Seskupovat podle umělce/alba + + + Group by Artist/Album - Disc + Seskupit jako Umělec/Album - Disk + + + Group by Artist/Year - Album + Seskupovat podle umělce/roku - alba + + + Group by Artist/Year - Album - Disc + Seskupit jako Umělec/Rok - Album - Disk + + + Group by Genre/Album artist/Album + Seskupit jako Žánr/Autor alba/Album + + + Group by Genre/Artist/Album + Seskupovat podle žánru/umělce/alba + + + Group by Album Artist + Seskupit dle Autora alba + + + Group by Artist + Seskupovat podle umělce + + + Group by Album + Seskupovat podle alba + + + Group by Genre/Album + Seskupovat podle žánru/alba + + + Advanced grouping... + Pokročilé seskupování... + + + Grouping Name + Název seskupení + + + Grouping name: + Název seskupení: + + + + CollectionModel + + Various artists + Různí umělci + + + Loading... + Nahrává se... + + + Unknown + Neznámý + + + + CollectionSettingsPage + + Collection + Sbírka + + + These folders will be scanned for music to make up your collection + Strawberry bude novou hudbu pro vaši sbírku hledat v těchto složkách + + + Add new folder... + Přidat novou složku... + + + Remove folder + Odstranit složku + + + Automatic updating + Automatická aktualizace + + + Update the collection when Strawberry starts + Při spuštění Strawberry obnovit hudební sbírku + + + Monitor the collection for changes + Sledovat změny ve sbírce + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + Označit zmizelé skladby jako nedostupné + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + Upřednostňované názvy souborů s obaly alb (oddělené čárkou) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Při hledání obalu alba se Strawberry nejprve podívá po obrázkových souborech, jež obsahují jedno z těchto slov. +Pokud nenajde žádné, které by se shodovaly, potom použije největší obrázek v adresáři. + + + Display options + Volby zobrazení + + + Automatically open single categories in the collection tree + Automaticky otevřít jednotlivé skupiny ve stromu sbírky + + + Show dividers + Ukazovat oddělovače + + + Show album cover art in collection + Ukazovat obaly alb v kolekci + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Mezipaměť obalů alb + + + Size + Velikost + + + Enable Disk Cache + Povolit mezipaměť na disku + + + Disk Cache Size + Velikost mezipaměti na disku + + + Current disk cache in use: + Využití mezipaměti na disku: + + + Clear Disk Cache + Vyčistit mezipaměť na disku + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + Povolit mazání souborů v kontextové nabídce pravého kliknutí + + + Add directory... + Přidat složku... + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + Vaše hudební sbírka je prázdná! + + + Click here to add some music + Klepněte sem pro přidání nějaké hudby + + + Append to current playlist + Přidat do současného seznamu skladeb + + + Replace current playlist + Nahradit současný seznam skladeb + + + Open in new playlist + Otevřít v novém seznamu skladeb + + + Queue track + Přidat skladbu do řady + + + Queue to play next + Do fronty jako další + + + Search for this + Hledat toto + + + Organize files... + Uspořádat soubory... + + + Copy to device... + Zkopírovat do zařízení... + + + Delete from disk... + Smazat z disku... + + + Edit track information... + Upravit informace o skladbě... + + + Edit tracks information... + Upravit informace o skladbách... + + + Show in file browser... + Ukázat v prohlížeči souborů... + + + Rescan song(s) + Prohledat skladbu + + + Show in various artists + Ukázat pod různými umělci + + + Don't show in various artists + Nezobrazovat pod různými umělci + + + There are other songs in this album + Na tomto albu jsou další písně + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + Chyba + + + None of the selected songs were suitable for copying to a device + Žádná z vybraných písní nebyla vhodná ke zkopírování do zařízení + + + + CollectionViewContainer + + Form + Formulář + + + + CollectionWatcher + + Updating collection + Obnovuje se hudební sbírka + + + Updating %1 + Obnovuje se %1 + + + + Console + + Console + Konzole + + + Run + Spustit + + + + ContextSettingsPage + + Context + Kontext + + + Custom text settings + Vlastní nastavení textu + + + MenuPopupToolButton + + + + Title + Název + + + Summary + Shrnutí + + + Enable Items + Povolit Položky + + + Album + + + + Technical Data + Technická data + + + Song Lyrics + Texty skladeb + + + Automatically search for album cover + Automaticky vyhledat obal alba + + + Automatically search for song lyrics + Automaticky najít texty skladeb + + + Font for headline + Font nadpisu + + + Font + + + + Font size + Velikost fontu + + + pt + bodů + + + Preview + Náhled + + + Font for data and lyrics + Font pro data a texty skladeb + + + Add song artist tag + Přidat značku umělec písně + + + Add song album tag + Přidat značku album písně + + + Add song title tag + Přidat značku název písně + + + Add song albumartist tag + Přidat značku umělec alba písně + + + Add song year tag + Přidat značku rok písně + + + Add song composer tag + Přidat značku skladatel písně + + + Add song performer tag + Přidat značku účinkující písně + + + Add song grouping tag + Přidat značku seskupení písně + + + Add song disc tag + Přidat značku disk písně + + + Add song track tag + Přidat značku pořadí písně + + + Add song genre tag + Přidat značku žánr písně + + + Add song length tag + Přidat značku délka písně + + + Add song play count + Přidat počet přehrání písně + + + Add song skip count + Přidat počet přeskočení písně + + + Add a new line if supported by the notification type + Přidat nový řádek, je-li to podporováno typem oznámení + + + %filename% + + + + Add song filename + Přidat název souboru písně + + + %url% + %adresa% + + + Add song URL + Přidat URL skladby + + + %rating% + %hodnocení% + + + Add song rating + Přidat hodnocení písně + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + Typ souboru + + + Length + Délka + + + Samplerate + Vzorkovací frekvence + + + Bit depth + Bitová hloubka + + + Bitrate + Datový tok + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Ukazovat obal alba + + + Show song technical data + Zobrazovat technická data + + + Show song lyrics + Zobrazovat texty skladeb + + + Automatically search for song lyrics + Automaticky najít texty skladeb + + + No song playing + Žádná skladba se nepřehrává + + + %1 song + %1 skladba + + + %1 songs + %1 skladby + + + %1 artist + %1 umělec + + + %1 artists + %1 umělci + + + %1 album + + + + %1 albums + %1 alba + + + kbps + kb/s + + + + CoverFromURLDialog + + Load cover from URL + Nahrát obal z adresy (URL) + + + Enter a URL to download a cover from the Internet: + Zadejte adresu (URL) ke stažení obalu z internetu: + + + Fetching cover error + Chyba při stahování obalu + + + The site you requested does not exist! + Požadovaná stránka neexistuje! + + + The site you requested is not an image! + Požadovaná stránka není obrázek! + + + + CoverManager + + Cover Manager + Správce obalů + + + Enter search terms here + Zde zadejte hledané výrazy + + + MenuPopupToolButton + + + + View + Pohled + + + Total albums: + Alb celkem: + + + Without cover: + Bez obalu: + + + 0 + + + + Fetch Missing Covers + Stáhnout chybějící obaly + + + Export Covers + Uložit obaly + + + Fetch automatically + Stáhnout automaticky + + + Load + Načíst + + + Add to playlist + Přidat do seznamu skladeb + + + + CoverSearchStatisticsDialog + + Fetch completed + Stahování dokončeno + + + Got %1 covers out of %2 (%3 failed) + Získáno %1 obalů z %2 (%3 nezískáno) + + + Covers from %1 + Obaly od %1 + + + Total network requests made + Celkem uskutečněno síťových požadavků + + + Average image size + Průměrná velikost obrázku + + + Total bytes transferred + Celkem přeneseno bajtů + + + + CoversSettingsPage + + Covers + Obaly alb + + + Cover providers + Poskytovatel obalů alb + + + Choose the providers you want to use when searching for covers. + Vyberte poskytovatele vyhledávání obalů alb. + + + Move up + Posunout nahoru + + + Move down + Posunout dolů + + + Authentication + Ověření + + + Login + Přihlášení + + + Album cover types + + + + Saving album covers + Ukládání obalů alb + + + Save album covers in album directory + Ukládat obaly alb ve složce alba + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + Název souboru: + + + Pattern + + + + Random + + + + Overwrite existing file + Přepsat existující soubor + + + Lowercase filename + Název souboru malými písmeny + + + Replace spaces with dashes + Nahradit mezery pomlčkami + + + Use Tidal settings to authenticate. + Použijte nastavení Tidal pro přihlášení. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + %1 vyžaduje ověření. + + + %1 does not need authentication. + %1 nevyžaduje ověření. + + + No provider selected. + Žádný poskytovatel nebyl zvolen. + + + Authentication failed + Ověření selhalo + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Ověření celistvosti + + + Database corruption detected. + Databáze je poškozená. + + + Backing up database + Záloha databáze + + + + DeleteConfirmationDialog + + Delete files + Smazat soubory + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + Opravdu chcete pokračovat? + + + + DeleteFiles + + Deleting files + Probíhá mazání souborů + + + + DeviceItemDelegate + + Updating %1%... + Obnovuje se %1%... + + + Not connected + Nepřipojeno + + + Not mounted - double click to mount + Nepřipojeno - dvojitým klepnutím připojíte + + + Double click to open + Klepnout dvakrát pro otevření + + + %1 song%2 + %1 skladba%2 + + + + DeviceManager + + Connect device + Připojit zařízení + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Toto zařízení bylo připojeno poprvé. Strawberry na něm nyní hledá hudební soubory - může to chvíli trvat. + + + This device will not work properly + Toto zařízení nebude pracovat správně + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Toto je zařízení MTP, ale Strawberry byl sestaven bez podpory pro libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Budete-li pokračovat, toto zařízení bude pracovat pomalu a písně na něj kopírované nemusí fungovat. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Toto je zařízení iPod, ale Strawberry byl sestaven bez podpory pro libgpod. + + + This type of device is not supported: %1 + Tento typ zařízení není podporován: %1 + + + + DeviceProperties + + Device Properties + Vlastnosti zařízení + + + Information + Informace + + + Name + Název + + + Icon + Ikona + + + Hardware information + Informace o vybavení + + + Hardware information is only available while the device is connected. + Informace o vybavení jsou dostupné pouze tehdy, když je zařízení připojeno. + + + File formats + Formáty souborů + + + Supported formats + Podporované formáty + + + This device supports the following file formats: + Toto zařízení podporuje následující formáty souborů: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry může automaticky převést hudbu kopírovanou do tohoto zařízení do formátu, který dokáže přehrát. + + + Do not convert any music + Nepřevádět žádnou hudbu + + + Convert any music that the device can't play + Převést veškerou hudbu, kterou zařízení nedokáže přehrát + + + Convert all music + Převést všechnu hudbu + + + Preferred format + Upřednostňovaný formát + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Pro zjištění podporovaných formátů souborů je zařízení nejdřív nutno připojit a otevřít. + + + Open device + Otevřít zařízení + + + Querying device... + Dotazování se zařízení... + + + Model + + + + Manufacturer + Výrobce + + + + DeviceView + + Safely remove device + Bezpečně odebrat zařízení + + + Forget device + Zapomenout zařízení + + + Device properties... + Vlastnosti zařízení... + + + Append to current playlist + Přidat do současného seznamu skladeb + + + Replace current playlist + Nahradit současný seznam skladeb + + + Open in new playlist + Otevřít v novém seznamu skladeb + + + Copy to collection... + Zkopírovat do sbírky... + + + Delete from device... + Smazat ze zařízení... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Zařízení bude odstraněno z tohoto seznamu. Po opětovném připojení je Strawberry bude muset znovu celé prohledat. + + + Delete files + Smazat soubory + + + These files will be deleted from the device, are you sure you want to continue? + Tyto soubory budou smazány ze zařízení. Opravdu chcete pokračovat? + + + + DeviceViewContainer + + Form + Formulář + + + + DynamicPlaylistControls + + Dynamic mode is on + Dynamický režim je zapnutý + + + New tracks will be added automatically. + Nové skladby budou přidány automaticky. + + + Expand + Rozbalit + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + Upravit informace o skladbě + + + Summary + Shrnutí + + + Date created + Datum vytvoření + + + Art Automatic + + + + Date modified + Datum změny + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + Typ souboru + + + Length + Délka + + + Play count + Počet přehrání + + + Bit depth + Bitová hloubka + + + EBU R 128 integrated loudness + + + + Bit rate + Datový tok + + + Skip count + Počet přeskočení + + + Sample rate + Vzorkovací kmitočet + + + Path + + + + Filename + Název souboru + + + Art Unset + + + + File size + Velikost souboru + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + Vynulovat počty přehrání + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + Disk + + + Grouping + Seskupení + + + Album artist + Umělec alba + + + Album + + + + Year + Rok + + + Title + Název + + + Artist + Umělec + + + Composer + Skladatel + + + Complete tags automatically + Doplnit značky automaticky + + + Genre + Žánr + + + Comment + Poznámka + + + Performer + Účinkující + + + Compilation + Kompilace + + + Track + Skladba + + + Rating + Hodnocení + + + Lyrics + Texty + + + Complete lyrics automatically + + + + Previous + Předchozí + + + Next + Další + + + Saving tracks + Ukládají se skladby + + + Loading tracks + Nahrávají se skladby + + + %1 songs selected. + + + + kbps + kb/s + + + Unknown + Neznámý + + + Yes + + + + No + + + + None + Žádná + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Obal nenastaven + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + Nikdy + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Ekvalizér + + + Preset: + Předvolba: + + + Save preset + Uložit předvolbu + + + Delete preset + Smazat předvolbu + + + Enable equalizer + Povolit ekvalizér + + + Enable stereo balancer + Zapnout vyrovnávání sterea + + + Left + Vlevo + + + Balance + Vyvážení + + + Right + Vpravo + + + Pre-amp + Předzesílení + + + Custom + Vlastní + + + Classical + Klasická + + + Club + Klub + + + Dance + Taneční hudba + + + Full Bass + Plné basy + + + Full Treble + Plné výšky + + + Full Bass + Treble + Plné basy + výšky + + + Laptop/Headphones + Přenosný počítač/Sluchátka + + + Large Hall + Velký sál + + + Live + Živě + + + Party + Oslava + + + Pop + + + + Reggae + + + + Rock + + + + Soft + Měkké + + + Ska + + + + Soft Rock + Soft rock + + + Techno + + + + Zero + Vynulovat + + + Name + Název + + + Are you sure you want to delete the "%1" preset? + Opravdu chcete smazat nastavení "%1"? + + + + EqualizerSlider + + Equalizer + Ekvalizér + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Chyba Clemetine + + + + FancyTabWidget + + Large sidebar + Velký postranní panel + + + Icons sidebar + + + + Small sidebar + Malý postranní panel + + + Plain sidebar + Prostý postranní panel + + + Tabs on top + Karty nahoře + + + Icons on top + Ikony nahoře + + + + FileTypeItemDelegate + + Unknown + Neznámý + + + + FileView + + Form + Formulář + + + + FileViewList + + Append to current playlist + Přidat do současného seznamu skladeb + + + Replace current playlist + Nahradit současný seznam skladeb + + + Open in new playlist + Otevřít v novém seznamu skladeb + + + Copy to collection... + Zkopírovat do sbírky... + + + Move to collection... + Přesunout do sbírky... + + + Copy to device... + Zkopírovat do zařízení... + + + Delete from disk... + Smazat z disku... + + + Edit track information... + Upravit informace o skladbě... + + + Show in file browser... + Ukázat v prohlížeči souborů... + + + + FreeSpaceBar + + Available + Dostupné + + + New songs + Nové písně + + + Exceeded by + + + + Used + Použito + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Nahrává se databáze iPod + + + An error occurred loading the iTunes database + Při nahrávání databáze iTunes nastala chyba + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + Prosím navštivte tuto adresu URL ve vašem prohlížeči. + + + Redirect missing token code! + Přesměrování chybí kód tokenu! + + + Received invalid reply from web browser. + Obdržena špatná odpověď od prohlížeče. + + + Redirect from Genius is missing query items code or state. + Přesměrování z Genius chybí kód položek dotazu nebo stav. + + + + GioLister + + Mount point + Přípojný bod + + + Device + Zařízení + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Stiskněte klávesu + + + Press a key combination to use for %1... + Stiskněte klávesovou zkratku, která se použije pro %1... + + + + GlobalShortcutsManager + + Play + Přehrát + + + Pause + Pozastavit + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + Předchozí skladba + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + Ztlumit + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + To Miluju! + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + Otevřít... + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Aby bylo možné v Strawberry používat globální klávesové zkratky, je nutné spustit Nastavení Systému a povolit Strawberry "<span style="font-style:italic">ovládat váš počítač</span>". + + + Action + Category label + Činnost + + + Shortcut + Klávesová zkratka + + + Shortcut for %1 + Klávesová zkratka pro %1 + + + &None + Žád&né + + + &Default + &Výchozí + + + &Custom + Vl&astní + + + Change shortcut... + Změnit klávesovou zkratku... + + + The "%1" command could not be started. + Příkaz "%1" se nepodařilo provést. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Použití klávesových zkratek X11 na %1 není doporučeno a může zapříčinit nereagující klávesnici! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Zkratky na %1 jsou většinou používány přes MPRIS a KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + Pokročilé seskupování sbírky + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + Seskupovat v hudební sbírce podle... + + + First level + První úroveň + + + None + Žádná + + + Artist + Umělec + + + Album artist + Umělec alba + + + Album + + + + Album - Disc + Album - Disk + + + Disc + Disk + + + Format + Formát + + + Genre + Žánr + + + Year + Rok + + + Year - Album + Rok - Album + + + Year - Album - Disc + Rok - Album - Disk + + + Original year + Původní rok + + + Original year - Album + Původní rok - Album + + + Composer + Skladatel + + + Performer + Účinkující + + + Grouping + Seskupení + + + File type + Typ souboru + + + Sample rate + Vzorkovací kmitočet + + + Bit depth + Bitová hloubka + + + Bitrate + Datový tok + + + Second level + Druhá úroveň + + + Third level + Třetí úroveň + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Ukládá se do vyrovnávací paměti + + + + LastFMImport + + Missing username, please login to last.fm first! + Chybějící jméno, prosím, nejdříve se přihlašte k last.fm! + + + + LastFMImportDialog + + Import data from last.fm + Importovat data z last.fm + + + Choose data to import from last.fm + Zvolte data pro import z last.fm + + + Last played + + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + Importovat! + + + Close + Zavřít + + + Cancel + Zrušit + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + Hodnota "Naposledy přehráno" pro %1 skladeb bylo přijato. + + + Playcounts for %1 songs received. + Hodnota "Počet přehrání" pro %1 skladeb byla přijata. + + + + LastPlayedItemDelegate + + Never + Nikdy + + + + Library + + Least favourite tracks + Nejméně oblíbené skladby + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Přihlášení na ListenBrainz + + + Please open this URL in your browser + Prosím navštivte tuto adresu URL ve vašem prohlížeči. + + + Redirect missing token code! + Přesměrování chybí kód tokenu! + + + Received invalid reply from web browser. + Obdržena špatná odpověď od prohlížeče. + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Formulář + + + You are not signed in. + Nejste přihlášen. + + + Sign out + Odhlásit + + + Signing in... + Přihlašuje se... + + + You are signed in. + Jste přihlášen. + + + You are signed in as %1. + Jste přihlášen jako %1. + + + Expires on %1 + Vyprší %1 + + + + LyricsSettingsPage + + Lyrics + Texty + + + Lyrics providers + Poskytovatelé textů + + + Choose the providers you want to use when searching for lyrics. + Vyberte poskytovatele vyhledávání textů skladeb. + + + Move up + Posunout nahoru + + + Move down + Posunout dolů + + + Authentication + Ověření + + + Login + Přihlášení + + + No provider selected. + Žádný poskytovatel nebyl zvolen. + + + Authentication failed + Ověření selhalo + + + + MainWindow + + Strawberry Music Player + Přehrávač hudby Strawberry + + + MenuPopupToolButton + + + + &Music + Hudba + + + P&laylist + Seznam sklad&eb + + + Help + Pomoc + + + &Tools + Nástroje + + + Previous track + Předchozí skladba + + + F5 + + + + &Play + &Přehrát + + + F6 + + + + &Stop + &Zastavit + + + F7 + + + + &Next track + &Další skladba + + + F8 + + + + &Quit + &Ukončit + + + Ctrl+Q + + + + Stop after this track + Zastavit po této skladbě + + + Ctrl+Alt+V + + + + Love + To Miluju! + + + &Clear playlist + &Vyčistit seznam skladeb + + + Clear playlist + Vyprázdnit seznam skladeb + + + Ctrl+K + + + + Edit track information... + Upravit informace o skladbě... + + + Ctrl+E + + + + Renumber tracks in this order... + Přečíslovat skladby v tomto pořadí... + + + Set value for all selected tracks... + Nastavit hodnotu pro vybrané skladby... + + + Edit tag... + Upravit značku... + + + &Settings... + &Nastavení + + + Ctrl+P + + + + &About Strawberry + &O Strawberry + + + F1 + + + + S&huffle playlist + Z&amíchat seznam skladeb + + + Ctrl+H + + + + &Add file... + &Přidat soubor... + + + Ctrl+Shift+A + + + + &Open file... + &Otevřít soubor + + + Open audio &CD... + Otevřít zvukové CD + + + &Cover Manager + &Správce obalů + + + C&onsole + + + + &Shuffle mode + Režim míchání + + + &Repeat mode + Režim opakování + + + Remove from playlist + Odstranit ze seznamu skladeb + + + &Equalizer + &Ekvalizér + + + &Transcode Music + &Převést hudbu + + + Add &folder... + Přidat &složku + + + &Jump to the currently playing track + &Skočit na aktuálně přehrávanou skladbu + + + Ctrl+J + + + + &New playlist + &Nový seznam skladeb + + + Ctrl+N + + + + Save &playlist... + Uložit seznam skladeb... + + + Ctrl+S + + + + &Load playlist... + &Načíst seznam skladeb + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Jít na další kartu seznamu skladeb + + + Go to previous playlist tab + Jít na předchozí kartu seznamu skladeb + + + &Update changed collection folders + &Aktualizovat změny ve složkách kolekce + + + About &Qt + O &Qt + + + &Mute + &Ztlumit + + + Ctrl+M + + + + &Do a full collection rescan + &Provést úplné nové prohledání sbírky + + + Stop collection scan + + + + Complete tags automatically... + Doplnit značky automaticky... + + + Ctrl+T + + + + Toggle scrobbling + Přepnout odesílání informací o přehrávání + + + Remove &duplicates from playlist + Odstranit &duplikáty ze seznamu skladeb + + + Remove &unavailable tracks from playlist + Odstranit &nedostupné skladby ze seznamu skladeb + + + Add file(s) to transcoder + Přidat soubor(y) k překódování + + + Add file to transcoder + Přidat soubor k překódování + + + Add stream... + Přidat přenos... + + + Show sidebar + Zobrazovat boční panel + + + Import data from last.fm... + Importovat data z last.fm... + + + All Files (*) + Všechny soubory (*) + + + Context + Kontext + + + Collection + Sbírka + + + Queue + Fronta + + + Playlists + Seznamy skladeb + + + Smart playlists + + + + Files + Soubory + + + Radios + + + + Devices + Zařízení + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Ukázat všechny písně + + + Show only duplicates + Ukázat pouze zdvojené + + + Show only untagged + Ukázat pouze neoznačené + + + Configure collection... + Nastavit sbírku... + + + Play + Přehrát + + + Toggle queue status + Přepnout stav řady + + + Queue selected tracks to play next + Přidat vybrané skladby do fronty + + + Toggle skip status + Přepnout stav přeskakování + + + Rescan song(s)... + + + + Copy URL(s)... + Kopírovat odkaz(y)... + + + Show in collection... + Ukazovat ve sbírce... + + + Show in file browser... + Ukázat v prohlížeči souborů... + + + Organize files... + Uspořádat soubory... + + + Copy to collection... + Zkopírovat do sbírky... + + + Move to collection... + Přesunout do sbírky... + + + Copy to device... + Zkopírovat do zařízení... + + + Delete from disk... + Smazat z disku... + + + Check for updates... + Zkontrolovat aktualizace + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Pozastavit + + + Dequeue track + Odstranit skladbu z řady + + + Dequeue selected tracks + Odstranit vybrané skladby z řady + + + Queue track + Přidat skladbu do řady + + + Queue selected tracks + Přidat vybrané skladby do řady + + + Queue to play next + Do fronty jako další + + + Unskip track + Zrušit přeskočení skladby + + + Unskip selected tracks + Zrušit přeskočení vybraných skladeb + + + Skip track + Přeskočit skladbu + + + Skip selected tracks + Přeskočit vybrané skladby + + + Set %1 to "%2"... + Nastavit %1 na "%2"... + + + Edit tag "%1"... + Upravit značku "%1"... + + + Add to another playlist + Přidat do jiného seznamu skladeb + + + New playlist + Nový seznam skladeb + + + Add file + Přidat soubor + + + Music + Hudba + + + Add folder + Přidat složku + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Seznam skladeb obsahuje %1 skladeb. Jste si jisti že chcete seznam vyčistit? Nelze to vrátit zpátky! + + + Error + Chyba + + + None of the selected songs were suitable for copying to a device + Žádná z vybraných písní nebyla vhodná ke zkopírování do zařízení + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Verze Strawberry, na kterou jste právě povýšili, vyžaduje z důvodu nových vlastností vypsaných níže úplné nové prohledání sbírky: + + + Would you like to run a full rescan right now? + Chcete spustit toto úplné nové prohledání hned teď? + + + Collection rescan notice + Zpráva o prohledání sbírky + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + Tuto zprávu již nezobrazovat. + + + + MimeData + + Playlist + Seznam skladeb + + + + MoodbarProxyStyle + + Show moodbar + Zobrazit ukazatel nálady + + + Moodbar style + Styl Ukazatele nálady + + + + MoodbarSettingsPage + + Moodbar + Ukazatel nálady + + + Show a moodbar in the track progress bar + + + + Moodbar style + Styl Ukazatele nálady + + + Save the .mood files directly in the songs folders + Ukládat .mood soubory přímo ve složkách skladeb + + + Enabled + Povoleno + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Nahrává se zařízení MTP + + + Error connecting MTP device %1 + Chyba při připojování k MTP zařízení %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Síťová proxy + + + &Use the system proxy settings + &Použít nastavení systému + + + Direct internet connection + Přímé připojení k internetu + + + &Manual proxy configuration + &Ruční nastavení proxy + + + HTTP proxy + Proxy HTTP + + + SOCKS proxy + Proxy SOCKS + + + Port + + + + Use authentication + Použít ověření + + + Username + Uživatelské jméno + + + Password + Heslo + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + Oznámení + + + Strawberry can show a message when the track changes. + Strawberry může při změně skladby ukázat zprávu. + + + Notification type + Druh oznámení + + + Disabled + Refers to a disabled notification type in Notification settings. + Zakázáno + + + Show a &native desktop notification + Zobrazit &nativní upozornění na ploše + + + Show a pretty OSD + Ukazovat OSD + + + Show a popup fro&m the system tray + + + + General settings + Obecná nastavení + + + Popup duration + Doba zobrazení oznámení + + + seconds + sekund + + + Disable duration + Zakázat délku + + + Show a notification when I change the volume + Zobrazovat oznámení při změně hlasitosti + + + Show a notification when I change the repeat/shuffle mode + Ukazovat oznámení při změně režimu opakování/míchání + + + Show a notification when I pause playback + Ukazovat oznámení při pozastavení přehrávání + + + Show a notification when I resume playback + Zobrazit oznámení při pokračování v přehrávání + + + Include album art in the notification + Zahrnout obal alba do oznámení + + + Custom message settings + Nastavení vlastní zprávy + + + Use a custom message for notifications + Použít vlastní zprávu pro oznámení + + + Preview + Náhled + + + MenuPopupToolButton + + + + Summary + Shrnutí + + + Body + Tělo + + + Pretty OSD options + Možnosti vzhledu OSD + + + Background color + Barva pozadí + + + Text options + Volby pro text + + + Choose font... + Vybrat písmo... + + + Choose color... + Vybrat barvu... + + + Background opacity + Neprůhlednost pozadí + + + Basic Blue + Jednoduchá modrá + + + Strawberry Red + Jahodově Červená + + + Custom... + Vlastní... + + + Enable fading + + + + Add song artist tag + Přidat značku umělec písně + + + Add song album tag + Přidat značku album písně + + + Add song title tag + Přidat značku název písně + + + Add song albumartist tag + Přidat značku umělec alba písně + + + Add song year tag + Přidat značku rok písně + + + Add song composer tag + Přidat značku skladatel písně + + + Add song performer tag + Přidat značku účinkující písně + + + Add song grouping tag + Přidat značku seskupení písně + + + Add song disc tag + Přidat značku disk písně + + + Add song track tag + Přidat značku pořadí písně + + + Add song genre tag + Přidat značku žánr písně + + + Add song length tag + Přidat značku délka písně + + + Add song play count + Přidat počet přehrání písně + + + Add song skip count + Přidat počet přeskočení písně + + + Add song rating + Přidat hodnocení písně + + + Add a new line if supported by the notification type + Přidat nový řádek, je-li to podporováno typem oznámení + + + %filename% + + + + Add song filename + Přidat název souboru písně + + + %url% + %adresa% + + + Add song URL + Přidat URL skladby + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + Náhled OSD + + + Drag to reposition + Tažením přemístěte + + + + OSDBase + + disc %1 + disk %1 + + + track %1 + skladba %1 + + + Paused + Pozastaveno + + + Stopped + Zastaveno + + + Stop playing after track: %1 + Zastavit přehrávání po skladbě: %1 + + + On + Zapnuto + + + Off + Vypnuto + + + Playlist finished + Seznam skladeb dokončen + + + Volume %1% + Hlasitost %1 % + + + Don't shuffle + Nemíchat + + + Shuffle all + Zamíchat vše + + + Shuffle tracks in this album + Zamíchat skladby na tomto albu + + + Shuffle albums + Zamíchat alba + + + Don't repeat + Neopakovat + + + Repeat track + Opakovat skladbu + + + Repeat album + Opakovat album + + + Repeat playlist + Opakovat seznam skladeb + + + Stop after every track + Zastavit po každé skladbě + + + Intro tracks + Skladby úvodu + + + + Organize + + Organizing files + Organizace souborů + + + + OrganizeDialog + + Organize Files + Uspořádat Soubory + + + Destination + Cíl + + + After copying... + Po zkopírování... + + + Keep the original files + Zachovat původní soubory + + + Delete the original files + Smazat původní soubory + + + Naming options + Volby pro pojmenování + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Symboly začínají %, například: %artist %album %title </p> + +<p>Pokud obklopíte části textu obsahující symbol složenými závorkami, tato část bude skryta, je-li symbol prázdný.</p> + + + Insert... + Vložit... + + + Remove problematic characters from filenames + Odstranit problémové znaky z názvů souborů + + + Restrict to characters allowed on FAT filesystems + Omezit na znaky dostupné na FAT systémech souborů + + + Restrict characters to ASCII + Omezit na ASCII znaky + + + Allow extended ASCII characters + Povolit rozšířené ASCII znaky + + + Replace spaces with underscores + Nahradit mezery podtržítky + + + Overwrite existing files + Přepsat existující soubory + + + Copy album cover artwork + Kopírovat obrázek alba + + + Preview + Náhled + + + Loading... + Nahrává se... + + + Safely remove the device after copying + Po dokončení kopírování bezpečně odebrat zařízení + + + Title + Název + + + Album + + + + Artist + Umělec + + + Artist's initial + Začáteční písmena umělce + + + Album artist + Umělec alba + + + Composer + Skladatel + + + Performer + Účinkující + + + Grouping + Seskupení + + + Track + Skladba + + + Disc + Disk + + + Year + Rok + + + Original year + Původní rok + + + Genre + Žánr + + + Comment + Poznámka + + + Length + Délka + + + Bitrate + Refers to bitrate in file organize dialog. + Datový tok + + + Sample rate + Vzorkovací kmitočet + + + Bit depth + Bitová hloubka + + + File extension + Přípona souboru + + + + OrganizeErrorDialog + + Error copying songs + Chyba při kopírování písní + + + There were problems copying some songs. The following files could not be copied: + Při kopírování některých písní nastaly potíže. Nepodařilo se zkopírovat následující soubory: + + + Error deleting songs + Chyba při mazání písní + + + There were problems deleting some songs. The following files could not be deleted: + Při mazání některých písní nastaly potíže. Nepodařilo se smazat následující soubory: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Malý obal alba + + + Large album cover + Velký obal alba + + + Fit cover to width + Přizpůsobit obal šířce + + + Show above status bar + Ukazovat nad stavovým řádkem + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Název + + + Artist + Umělec + + + Album + + + + Track + Skladba + + + Disc + Disk + + + Length + Délka + + + Year + Rok + + + Original Year + + + + Genre + Žánr + + + Album Artist + + + + Composer + Skladatel + + + Performer + Účinkující + + + Grouping + Seskupení + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Datový tok + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Poznámka + + + Source + Zdroj + + + Mood + Nálada + + + Rating + Hodnocení + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Formulář + + + Undo + + + + Redo + + + + Playlist + Seznam skladeb + + + Load playlist + Nahrát seznam skladeb + + + No matches found. Clear the search box to show the whole playlist again. + Nebyly nalezeny žádné shody. Smažte obsah vyhledávacího pole, aby se znovu zobrazil celý seznam skladeb. + + + + PlaylistDelegateBase + + stop + zastavit + + + + PlaylistGeneratorInserter + + Loading smart playlist + Nahrávání chytrého playlistu + + + + PlaylistHeader + + &Hide... + Skrýt... + + + &Stretch columns to fit window + Roztáhnout sloupce tak, aby se vešly do okna + + + &Reset columns to default + &Původní nastavení sloupců + + + &Lock rating + + + + &Align text + &Zarovnat text + + + &Left + &Vlevo + + + &Center + &Na střed + + + &Right + &Vpravo + + + &Hide %1 + Skrýt %1 + + + + PlaylistListContainer + + Form + Formulář + + + New folder + Nová složka + + + Delete + Smazat + + + Save playlist + Save playlist menu action. + Uložit seznam skladeb + + + Copy to device... + Zkopírovat do zařízení... + + + Enter the name of the folder + Zadejte název složky + + + Playlist + Seznam skladeb + + + Copy to device + Zkopírovat na zařízení + + + Playlist must be open first. + Seznam skladeb musí být nejdřív otevřen. + + + Remove playlists + Odstranit seznamy skladeb + + + You are about to remove %1 playlists from your favorites, are you sure? + Chystáte se odstranit %1 seznamů skladeb z vašich oblíbených. Jste si jisti? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Seznamy skladeb můžete označit jako oblíbený klepnutím na hvězdičku vedle názvu seznamu skladeb + + + Favorited playlists will be saved here + Oblíbené seznamy skladeb budou uloženy zde + + + + PlaylistManager + + Playlist + Seznam skladeb + + + Couldn't create playlist + Nepodařilo se vytvořit seznam skladeb + + + Save playlist + Title of the playlist save dialog. + Uložit seznam skladeb + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + %1 vybráno z + + + %n track(s) + + + + + + + + Unknown + Neznámý + + + Various artists + Různí umělci + + + + PlaylistParser + + All playlists (%1) + Všechny seznamy skladeb (%1) + + + %1 playlists (%2) + %1 seznamů skladeb (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Nastavení seznamu skladeb + + + File paths + Souborové cesty + + + This can be changed later through the preferences + Toto lze změnit později v nastavení + + + Remember my choice + Zapamatovat si moji volbu + + + Automatic + Automaticky + + + Relative + Relativní + + + Absolute + Absolutní + + + + PlaylistSequence + + Repeat + Opakovat + + + Shuffle + Zamíchat + + + Don't repeat + Neopakovat + + + Repeat track + Opakovat skladbu + + + Repeat album + Opakovat album + + + Repeat playlist + Opakovat seznam skladeb + + + Stop after each track + Zastavit po každé skladbě + + + Intro tracks + Skladby úvodu + + + Don't shuffle + Nemíchat + + + Shuffle tracks in this album + Zamíchat skladby na tomto albu + + + Shuffle all + Zamíchat vše + + + Shuffle albums + Zamíchat alba + + + + PlaylistSettingsPage + + Playlist + Seznam skladeb + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Varovat při zavření karty se seznamem skladeb + + + Continue to the next item in the playlist if a song is unavailable + Pokračovat na další položku když skladba v seznamu není dostupná + + + Grey out unavailable songs in playlists on playback + Zšednout nedostupné skladby v seznamu skladeb při jejich přehrání + + + Grey out unavailable songs in playlists on startup + Zšednout nedostupné skladby v seznamu skladeb při startu + + + Automatically select current playing track + Automaticky vybrat aktuálně přehrávanou skladbu + + + Enable playlist toolbar + + + + Enable playlist clear button + Zobrazit tlačítko pro vyčištění seznamu skladeb + + + Enable delete files in the right click context menu + Povolit mazání souborů v kontextové nabídce pravého kliknutí + + + Automatically sort playlist when inserting songs + Automaticky seřadit seznam skladeb po vložení nových skladeb + + + When saving a playlist, file paths should be + Při ukládání seznamu skladeb mají být cesty k souborům + + + A&utomatic + A&utomaticky + + + Absolu&te + Absolut&ní + + + Re&lative + Re&lativní + + + As&k when saving + Ze&ptat se při ukládání + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Pokud je zapnuto, po klepnutí na vybranou píseň v seznamu skladeb můžete upravit hodnotu značky přímo + + + Enable song metadata inline edition with click + Povolit upravování popisných dat písně klepnutím v řádku + + + Write metadata when saving playlists + Zapisovat metadata při ukládání seznamů skladeb + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Zavřít seznam skladeb + + + Rename playlist... + Přejmenovat seznam skladeb... + + + Save playlist... + Uložit seznam skladeb... + + + Rename playlist + Přejmenovat seznam skladeb + + + Enter a new name for this playlist + Zadejte název tohoto seznamu skladeb + + + Remove playlist + Odstranit seznam skladeb + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Chystáte se odstranit seznam skladeb, který není součástí vašich oblíbených seznamů skladeb: Seznam skladeb bude nenávratně odstraněn (tento krok nelze vrátit zpět). +Opravdu chcete pokračovat? + + + Warn me when closing a playlist tab + Varovat při zavření karty se seznamem skladeb + + + This option can be changed in the "Behavior" preferences + Tuto volbu lze změnit v nastavení Chování + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + Seznam skladeb + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + přidat %n skladeb + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + Přesunout %n skladeb + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + odstranit %n skladeb + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + Zamíchat skladby + + + + PlaylistUndoCommands::SortItems + + sort songs + Třídit skladby + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + kb/s + + + + QObject + + Usage + Zacházení + + + options + volby + + + URL(s) + Adresa (URL) + + + Player options + Nastavení přehrávače + + + Start the playlist currently playing + Přehrát současnou skladbu v seznamu skladeb + + + Play if stopped, pause if playing + Přehrát, pokud je zastaveno, pozastavit, pokud je přehráváno + + + Pause playback + Pozastavit přehrávání + + + Stop playback + Zastavit přehrávání + + + Stop playback after current track + Zastavit přehrávání po současné skladbě + + + Skip backwards in playlist + Předchozí skladba v seznamu skladeb + + + Skip forwards in playlist + Další skladba v seznamu skladeb + + + Set the volume to <value> percent + Nastavit hlasitost na <value> procent + + + Increase the volume by 4 percent + Zvýšit hlasitost o 4 procenta + + + Decrease the volume by 4 percent + Snížit hlasitost o 4 procenta + + + Increase the volume by <value> percent + Zvýšit hlasitost o <value> procent + + + Decrease the volume by <value> percent + Snížit hlasitost o <value> procent + + + Seek the currently playing track to an absolute position + Skočit v nyní přehrávané skladbě na určité místo + + + Seek the currently playing track by a relative amount + Přetočit v nyní přehrávané skladbě + + + Restart the track, or play the previous track if within 8 seconds of start. + Spustit znovu přehrávání skladby, nebo přehrávat předchozí skladbu, jestliže ještě neuběhlo osm sekund od začátku skladby. + + + Playlist options + Nastavení seznamu skladeb + + + Create a new playlist with files + Vytvořit nový seznam skladeb se soubory + + + Append files/URLs to the playlist + Přidat soubory/adresy do seznamu skladeb + + + Loads files/URLs, replacing current playlist + Nahraje soubory/adresy (URL), nahradí současný seznam skladeb + + + Play the <n>th track in the playlist + Přehrát <n>. skladbu v seznamu se skladbami + + + Play given playlist + + + + Other options + Další volby + + + Display the on-screen-display + Zobrazovat informace na obrazovce (OSD) + + + Toggle visibility for the pretty on-screen-display + Přepnout viditelnost hezkých oznámení na obrazovce (OSD) + + + Change the language + Změnit jazyk + + + Resize the window + + + + Equivalent to --log-levels *:1 + Rovnocenné s --log-levels *:1 + + + Equivalent to --log-levels *:3 + Rovnocenné s --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Čárkou oddělený seznam class:level, level je 0-3 + + + Print out version information + Vypsat informaci o verzi + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Neznámý + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Soubor %1 nebyl rozpoznán jako platný zvukový soubor. + + + 1 day + 1 den + + + %1 days + %1 dnů + + + Today + Dnes + + + Yesterday + Včera + + + %1 days ago + před %1 dny + + + Tomorrow + Zítra + + + In %1 days + Za %1 dny(ů) + + + Next week + Příští týden + + + In %1 weeks + Za %1 týdny(ů) + + + Show in file browser + Zobrazit v průzkumníku souborů + + + Too many songs selected. + Je vybráno příliš mnoho skladeb. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + Je vybráno %1 skladeb obsažených v %2 různých složkách, chcete je všechny otevřít? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Neznámá chyba + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + umělec + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Dostupná pole + + + after + + + + before + + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + + + + contains + + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + + + + not empty + + + + Comment + Poznámka + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + Hodiny + + + Days + Dny + + + Weeks + + + + Months + Měsíce + + + Years + + + + Normal + Normální + + + Angry + Naštvaný + + + Frozen + Zamrznutý + + + Happy + Šťastný + + + System colors + Systémové barvy + + + + QWidget + + Clear + Smazat + + + Reset + Obnovit výchozí + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Vyhlevávání... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Žádná shoda. + + + Unknown error + Neznámá chyba + + + + QobuzService + + Authenticating... + Probíhá ověření... + + + Maximum number of login attempts reached. + Byl dosažen maximální počet pokusů o přihlášení. + + + Missing Qobuz app ID. + Chybějící ID aplikace Qobuz. + + + Missing Qobuz username. + Chybějící Qobuz uživatelské jméno. + + + Missing Qobuz password. + Chybějící Qobuz heslo. + + + Not authenticated with Qobuz. + Nejste přihlášeni ke službě Qobuz. + + + Missing Qobuz app ID or secret. + Chybějící ID aplikace, nebo tajemství služby Qobuz. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Povolit + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + Ověření + + + App ID + ID aplikace + + + Username + Uživatelské jméno + + + Password + Heslo + + + App Secret + Tajemství aplikace + + + Login + Přihlášení + + + Preferences + Nastavení + + + Audio format + Zvukový formát + + + Search delay + Zpožděné vyhledávání + + + ms + + + + Artists search limit + Limit vyhledávaných umělců + + + Albums search limit + Limit vyhledávaných alb + + + Songs search limit + Limit vyhledaných skladeb + + + Download album covers + Stahovat obaly alb + + + Base64 encoded secret + + + + Configuration incomplete + Konfigurace není hotová + + + Missing app id. + Chybějící ID aplikace. + + + Missing username. + Chybějící uživatelské jméno. + + + Missing password. + Chybějící heslo. + + + Authentication failed + Ověření selhalo + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Chybějící ID aplikace, nebo tajemství služby Qobuz. + + + Cancelled. + Zrušeno. + + + + Queue + + %n track(s) + + + + + + + + + QueueView + + QueueView + Zobrazení fronty + + + Move down + Posunout dolů + + + Ctrl+Up + + + + Move up + Posunout nahoru + + + Ctrl+Down + Ctrl+Šipka dolů + + + Remove + Odstranit + + + Clear + Smazat + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Přidat do současného seznamu skladeb + + + Replace current playlist + Nahradit současný seznam skladeb + + + Open in new playlist + Otevřít v novém seznamu skladeb + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + Formulář + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Spravce uložených seskupení + + + Remove + Odstranit + + + Ctrl+Up + + + + Name + Název + + + First level + První úroveň + + + Second Level + Druhá úroveň + + + Third Level + Třetí úroveň + + + None + Žádná + + + Album artist + Umělec alba + + + Artist + Umělec + + + Album + + + + Album - Disc + Album - Disk + + + Year - Album + Rok - Album + + + Year - Album - Disc + Rok - Album - Disk + + + Original year - Album + Původní rok - Album + + + Original year - Album - Disc + + + + Disc + Disk + + + Year + Rok + + + Original year + Původní rok + + + Genre + Žánr + + + Composer + Skladatel + + + Performer + Účinkující + + + Grouping + Seskupení + + + File type + Typ souboru + + + Format + Formát + + + Sample rate + Vzorkovací kmitočet + + + Bit depth + Bitová hloubka + + + Bitrate + Datový tok + + + Unknown + Neznámý + + + + ScrobblerSettingsPage + + Scrobbler + doporučování hudby + + + Enable + Povolit + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + Pracovat v režimu offline (pouze ukládat přehrané skladby) + + + Show scrobble button + Zobrazit tlačítko pro doporučování hudby + + + Show love button + Zobrazit tlačítko To Miluju! + + + Submit scrobbles every + Odeslat přehrané skladby každých + + + seconds + sekund + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + Preferovat autory alb při odesílání na server + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Zapnout scrobbling pro následující zdroje: + + + Collection + Sbírka + + + Subsonic + + + + Local file + Místní soubor + + + Tidal + + + + Device + Zařízení + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Proud + + + Radio Paradise + + + + Unknown + Neznámý + + + Last.fm + + + + Login + Přihlášení + + + Libre.fm + + + + Listenbrainz + + + + User token: + Uživatelský token: + + + Enter your user token from + Zadejte uživatelský token z + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 Ověření systému pro doporučování hudby (scrobbler) + + + Open URL in web browser? + Otevřít URL v prohlížeči? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Klikněte na "Uložit" pro zkopírování URL do schránky a ruční otevření v prohlížeči. + + + Could not open URL. Please open this URL in your browser + Nelze otevřít adresu URL. Prosím otevřete tuto URL ve vašem prohlížeči + + + Invalid reply from web browser. Missing token. + Špatná odpověď od prohlížeče. Token chybí. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + Systém pro doporučování hudby %1 není přihlášen! + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + Nastavení + + + General + Obecné + + + User interface + Uživatelské rozhraní + + + Streaming + Streamování + + + + SmartPlaylistQuerySearchPage + + Form + Formulář + + + Search mode + + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + Zahrnout všechny skladby + + + Search terms + + + + + SmartPlaylistQuerySortPage + + Form + Formulář + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + Omezení + + + Show all the songs + + + + Only show the first + Zobrazit pouze první + + + songs + skladby + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Hledání v kolekci + + + Find songs in your collection that match the criteria you specify. + Najít skladby z kolekce, které odpovídají kritériům, která specifikujete. + + + Search terms + + + + A song will be included in the playlist if it matches these conditions. + Skladba bude zahrnuta v seznamu skladeb, pokud splňuje tyto podmínky. + + + Search options + + + + Choose how the playlist is sorted and how many songs it will contain. + Zvolte jak bude seznam skladeb seřazen a kolik skladeb bude obsahovat. + + + + SmartPlaylistSearchPreview + + Form + Formulář + + + Preview + Náhled + + + Loading... + Nahrává se... + + + %1 songs found (showing %2) + %1 skladeb nalezeno (%2 zobrazeno) + + + %1 songs found + %1 skladeb nalezeno + + + + SmartPlaylistSearchTermWidget + + Form + Formulář + + + and + + + + ago + + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Přidat hledaný výraz + + + + SmartPlaylistWizard + + Smart playlist + + + + Playlist type + Typ seznamu skladeb + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Chytrý playlist je dynamický seznam skladeb z vaší kolekce. Existuje několik různých typů chytrých playlistů. Každý nabízí jiný způsob výběru skladeb. + + + Finish + Dokončit + + + Choose a name for your smart playlist + Zvolte jméno pro váš chytrý seznam skladeb + + + + SmartPlaylistWizardFinishPage + + Form + Formulář + + + Name + Název + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + Nejnovější skladby + + + 50 random tracks + 50 náhodných skladeb + + + Ever played + + + + Never played + Nikdy nepřehrané + + + Last played + + + + Most played + Nejčastěji přehrávané + + + Favourite tracks + Oblíbené skladby + + + All tracks + Všechny skladby + + + Dynamic random mix + Dynamické míchání skladeb + + + + SmartPlaylistsViewContainer + + New smart playlist + Nový chytrý playlist + + + Edit smart playlist + Upravit chytrý playlist + + + Delete smart playlist + Odstranit chytrý playlist + + + New smart playlist... + Nový chytrý playlist... + + + Append to current playlist + Přidat do současného seznamu skladeb + + + Replace current playlist + Nahradit současný seznam skladeb + + + Open in new playlist + Otevřít v novém seznamu skladeb + + + Queue track + Přidat skladbu do řady + + + Play next + Přehrát další + + + Edit smart playlist... + Upravit chytrý playlist... + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + Bylo zjištěno, že Strawberry běží jako Snap + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + Pro Ubuntu je na %1 dostupné oficiální PPA. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Jsou dostupná oficiální vydání pro Debian a Ubuntu. Tato vydání také fungují s většinou jejich derivátů. Navštivte %1 pro více informací. + + + For a better experience please consider the other options above. + Pro lepší zážitek, prosím zvažte ostatní dostupné možnosti. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + Pro tento odkaz je potřeba GStreamer. + + + Preload function was not set for blocking operation. + Funkce přednačítání nebyla nastavena pro operaci blokování. + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + Přehrávání disků CD je možné pouze za použití GStreamer enginu. + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + Chyba při načítání zvukového CD + + + Loading tracks + Nahrávají se skladby + + + Loading tracks info + Nahrávají se informace o skladbě + + + + SpotifyRequest + + Authenticating... + Probíhá ověření... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Vyhlevávání... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Žádná shoda. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Přihlášení ke Spotify + + + Please open this URL in your browser + Prosím navštivte tuto adresu URL ve vašem prohlížeči. + + + Redirect missing token code or state! + Přesměrování chybí kód tokenu nebo stav! + + + Received invalid reply from web browser. + Obdržena špatná odpověď od prohlížeče. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Povolit + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Nastavení + + + Search delay + Zpožděné vyhledávání + + + ms + + + + Artists search limit + Limit vyhledávaných umělců + + + Albums search limit + Limit vyhledávaných alb + + + Songs search limit + Limit vyhledaných skladeb + + + Download album covers + Stahovat obaly alb + + + Fetch entire albums when searching songs + Načítat celá alba při vyhledávání + + + Authentication failed + Ověření selhalo + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Klikněte zde pro načtení hudby + + + Append to current playlist + Přidat do současného seznamu skladeb + + + Replace current playlist + Nahradit současný seznam skladeb + + + Open in new playlist + Otevřít v novém seznamu skladeb + + + Queue track + Přidat skladbu do řady + + + Queue to play next + Do fronty jako další + + + Remove from favorites + Odstranit z oblíbených + + + + StreamingCollectionViewContainer + + Form + Formulář + + + Close + Zavřít + + + Abort + Přerušit + + + Refresh catalogue + Obnovit katalog + + + + StreamingSearchModel + + Various artists + Různí umělci + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + umělci + + + albums + alba + + + songs + skladby + + + Enter search terms above to find music + Výše zadejte hledaný výraz pro vyhledání hudby + + + Configure %1... + Nastavit %1... + + + Append to current playlist + Přidat do současného seznamu skladeb + + + Replace current playlist + Nahradit současný seznam skladeb + + + Open in new playlist + Otevřít v novém seznamu skladeb + + + Queue track + Přidat skladbu do řady + + + Add to artists + Přidat k umělcům + + + Add to albums + Přidat do alb + + + Add to songs + Přidat ke skladbám + + + Search for this + Hledat toto + + + Group by + Seskupovat podle + + + + StreamingSongsView + + Configure %1... + Nastavit %1... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Umělci + + + Albums + Alba + + + Songs + Skladby + + + Search + Hledat + + + Configure %1... + Nastavit %1... + + + + SubsonicRequest + + Retrieving albums... + Načítání alb... + + + Retrieving songs for %1 album... + Načítání skladeb z %1 alba... + + + Retrieving songs for %1 albums... + Načítání skladeb z %1 alb... + + + Retrieving album cover for %1 album... + Načítání obalů alb pro %1 album... + + + Retrieving album covers for %1 albums... + Načítání obalů alb pro %1 alb... + + + Unknown error + Neznámá chyba + + + + SubsonicService + + Server URL is invalid. + Adresa serveru není správná. + + + Missing username or password. + Chybějící uživatelské jméno nebo heslo. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Povolit + + + Server URL + URL serveru + + + Authentication + Ověření + + + Username + Uživatelské jméno + + + Password + Heslo + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Nastavení + + + Use HTTP/2 when possible + + + + Verify server certificate + Ověřovat certifikát serveru + + + Download album covers + Stahovat obaly alb + + + Server-side scrobbling + + + + Test + + + + Delete songs + + + + Configuration incomplete + Konfigurace není hotová + + + Missing server url, username or password. + Chybějící URL serveru, uživatelské jméno nebo heslo. + + + Configuration incorrect + Konfigurace není správná + + + Server URL is invalid. + Adresa serveru není správná. + + + Test successful! + Test uspěl! + + + Test failed! + Test selhal! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Adresa serveru Subsonic není správná. + + + Missing Subsonic username or password. + Chybějící uživatelské jméno nebo heslo pro Subsonic. + + + + SystemTrayIcon + + Pause + Pozastavit + + + Play + Přehrát + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Probíhá ověření... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Vyhlevávání... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Žádná shoda. + + + + TidalService + + Reply from Tidal is missing query items. + Odpověď od Tidal neobsahuje dotazové položky. + + + Missing Tidal API token. + Chybějící API token pro Tidal. + + + Missing Tidal username. + Chybějící uživatelské jméno k Tidal. + + + Missing Tidal password. + Chybějící heslo k Tidal. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Nejste přihlášeni k Tidal a byl dosažen maximální počet pokusů o přihlášení. + + + Not authenticated with Tidal. + Nejste přihlášeni k Tidal. + + + Missing Tidal API token, username or password. + Chybějící API token, uživatelské jméno nebo heslo pro Tidal. + + + + TidalSettingsPage + + Tidal + + + + Enable + Povolit + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Podpora Tidal není oficiální a vyžaduje API token z registrované aplikace. S tímto vám nemůžeme pomoct. + + + Authentication + Ověření + + + Use OAuth + Použijte OAuth + + + Client ID + ID Klienta + + + API Token + + + + Username + Uživatelské jméno + + + Password + Heslo + + + Login + Přihlášení + + + Preferences + Nastavení + + + Audio quality + Kvalita zvuku + + + Search delay + Zpožděné vyhledávání + + + ms + + + + Artists search limit + Limit vyhledávaných umělců + + + Albums search limit + Limit vyhledávaných alb + + + Songs search limit + Limit vyhledaných skladeb + + + Download album covers + Stahovat obaly alb + + + Fetch entire albums when searching songs + Načítat celá alba při vyhledávání + + + Album cover size + Velikost obalu alba + + + Stream URL method + Metoda URL streamu + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + Konfigurace není hotová + + + Missing Tidal client ID. + Chybějící ID klienta pro Tidal. + + + Missing API token. + Chybějící API token. + + + Missing username. + Chybějící uživatelské jméno. + + + Missing password. + Chybějící heslo. + + + Authentication failed + Ověření selhalo + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Nejste přihlášeni k Tidal. + + + Missing Tidal API token, username or password. + Chybějící API token, uživatelské jméno nebo heslo pro Tidal. + + + Cancelled. + Zrušeno. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + Stahování značek + + + Sorry + Promiňte + + + Strawberry was unable to find results for this file + Strawberry se pro tento soubor výsledky najít nepodařilo + + + Select best possible match + Vyberte nejlepší možnou shodu + + + Track + Skladba + + + Year + Rok + + + Title + Název + + + Artist + Umělec + + + Album + + + + Previous + Předchozí + + + Next + Další + + + Original tags + Původní značky + + + Suggested tags + Navrhované značky + + + Saving tracks + Ukládají se skladby + + + + TrackSlider + + Form + Formulář + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Klepněte pro přepnutí mezi zbývajícím časem a celkovým časem + + + + TranscodeDialog + + Transcode Music + Převést hudbu + + + Files to transcode + Soubory k překódování + + + Filename + Název souboru + + + Directory + Složka + + + Add... + Přidat... + + + Remove + Odstranit + + + Add all tracks from a directory and all its subdirectories + Přidat všechny skladby z adresáři a všech jeho podadresářů + + + Import... + Importovat... + + + Output options + Možnosti výstupu + + + Audio format + Zvukový formát + + + Options... + Volby... + + + Destination + Cíl + + + Alongside the originals + Vedle původních + + + Select... + Vybrat... + + + Progress + Průběh + + + Details... + Podrobnosti... + + + Clear + Smazat + + + Start transcoding + Převést + + + %n remaining + + zůstávají %n + + + + + + %n finished + + dokončeno %n + + + + + + %n failed + + nepodařilo se %n + + + + + + Add files to transcode + Přidat soubory pro překódování + + + Music + Hudba + + + Open a directory to import music from + Otevřít adresář a zavést hudbu v něm + + + Add folder + Přidat složku + + + + TranscodeLogDialog + + Transcoder Log + Záznam o převodu + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Nepodařilo se vytvořit prvek GStreamer "%1" - ujistěte se, že máte nainstalovány všechny požadované přídavné moduly GStreamer + + + Successfully written %1 + %1 úspěšně zapsán + + + Transcoding %1 files using %2 threads + Převádí se %1 souborů s %2 procesy + + + Error processing %1: %2 + Chyba při zpracovávání %1: %2 + + + Starting %1 + Spouští se %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Nepodařilo se najít kodér "%1" - ujistěte se, že máte nainstalovány správné přídavné moduly GStreamer + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Nepodařilo se najít multiplexer pro "%1" - ujistěte se, že máte nainstalovány správné přídavné moduly GStreamer + + + + TranscoderOptionsAAC + + Form + Formulář + + + Bitrate + Datový tok + + + kbps + kb/s + + + Profile + Profil + + + Main profile (MAIN) + Hlavní profil + + + Low complexity profile (LC) + Nízkosložitostní profil + + + Scalable sampling rate profile (SSR) + Profil škálovatelného vzorkovacího kmitočtu + + + Long term prediction profile (LTP) + Dlouhodobý předpověďní profil + + + Use temporal noise shaping + Použít časové tvarování šumu + + + Allow mid/side encoding + Povolit kódování střed/kraj + + + Block type + Typ bloku + + + Normal block type + Běžný typ bloku + + + No short blocks + Žádné krátké bloky + + + No long blocks + Žádné dlouhé bloky + + + + TranscoderOptionsASF + + Form + Formulář + + + Bitrate + Datový tok + + + kbps + kb/s + + + + TranscoderOptionsDialog + + Transcoding options + Volby překódování + + + + TranscoderOptionsFLAC + + Form + Formulář + + + Quality + Sound quality + Kvalita + + + Fast + Rychlý + + + Best + Nejlepší + + + + TranscoderOptionsMP3 + + Form + Formulář + + + Optimize for &quality + Optimalizovat pro &kvalitu + + + Quality + Sound quality + Kvalita + + + Opti&mize for bitrate + Optimal&izovat pro datový tok + + + Bitrate + Datový tok + + + kbps + kb/s + + + Constant bitrate + Stálý datový tok + + + Encoding engine quality + Kvalita kódovacího stroje + + + Fast + Rychlý + + + Standard + Obvyklý + + + High + Vysoká + + + Force mono encoding + Vynutit jednokanálové kódování + + + + TranscoderOptionsOpus + + Form + Formulář + + + Bitrate + Datový tok + + + kbps + kb/s + + + + TranscoderOptionsSpeex + + Form + Formulář + + + Quality + Sound quality + Kvalita + + + Bitrate + Datový tok + + + automatic + automatický + + + kbps + kb/s + + + Average bitrate + Průměrný datový tok + + + disabled + zakázáno + + + Encoding mode + Režim kódování + + + Auto + Automaticky + + + Ultra wide band (UWB) + Ultra široké pásmo + + + Wide band (WB) + Široké pásmo + + + Narrow band (NB) + Úzké pásmo + + + Variable bit rate + Proměnlivý datový tok + + + Voice activity detection + Zjištění hlasové činnosti + + + Discontinuous transmission + Nesouvislý přenos + + + Encoding complexity + Složitost kódování + + + Frames per buffer + Snímků na vyrovnávací paměť + + + + TranscoderOptionsVorbis + + Form + Formulář + + + Quality + Sound quality + Kvalita + + + Use bitrate management engine + Použít stroj na správu datového toku + + + Target bitrate + Cílový datový tok + + + kbps + kb/s + + + Minimum bitrate + Nejnižší datový tok + + + disabled + zakázáno + + + Maximum bitrate + Nejvyšší datový tok + + + + TranscoderOptionsWavPack + + Form + Formulář + + + + TranscoderSettingsPage + + Transcoding + Překódování + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Tato nastavení se používají v dialogu pro překódování hudby a když je hudba před kopírováním do zařízení převáděna. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + Cesta k D-Bus + + + Serial number + Sériové číslo + + + Mount points + Přípojné body + + + Partition label + Štítek oddílu + + + UUID + + + + + UserPassDialog + + Enter username and password + Zadejte uživatelské jméno a heslo + + + Username + Uživatelské jméno + + + Password + Heslo + + + diff --git a/src/translations/strawberry_de_DE.ts b/src/translations/strawberry_de_DE.ts new file mode 100644 index 00000000..18a6968a --- /dev/null +++ b/src/translations/strawberry_de_DE.ts @@ -0,0 +1,7569 @@ + + + + + About + + About + Über + + + About Strawberry + Über Strawberry + + + Version %1 + + + + Strawberry is a music player and music collection organizer. + Strawberry ist ein Musikspieler und organisiert Musiksammlungen. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Es ist ein Fork von Clementine, die 2018 veröffentlicht wurde und sich an Musiksammler und Audiophile richtet. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry ist eine kostenlose Software, die unter der GPL veröffentlicht wird. Der Quellcode ist auf %1 verfügbar. + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Sie sollten zusammen mit diesem Programm eine Kopie der GNU General Public License erhalten haben. Wenn nicht, siehe %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Wenn Ihnen Strawberry gefällt und Sie es nutzen können, sollten Sie sponsern oder spenden. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Sie können den Autor auf %1 sponsern. Sie können auch eine einmalige Zahlung über %2 vornehmen. + + + Author and maintainer + Autor und Betreuer + + + Contributors + Beitragende + + + Clementine authors + Autoren von Clementine + + + Clementine contributors + Beitragende zu Clementine + + + Thanks to + Dank an + + + Thanks to all the other Amarok and Clementine contributors. + Dank an all die anderen, die zu Amarok und Clementine beigetragen haben. + + + + AddStreamDialog + + Add Stream + Datenstrom hinzufügen + + + Enter the URL of a stream: + Gebe die URL eines Datenstromes ein: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Bilder (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Bilder (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Alle Dateien (*) + + + Load cover from disk... + Titelbild von Festplatte laden … + + + Save cover to disk... + Titelbild auf Festplatte speichern … + + + Load cover from URL... + Titelbild von Adresse laden … + + + Search for album covers... + Nach Titelbild suchen … + + + Unset cover + Titelbild entfernen + + + Delete cover + Titelbild löschen + + + Clear cover + Titelbild löschen + + + Show fullsize... + In Originalgröße anzeigen … + + + Search automatically + Automatisch suchen + + + Load cover from disk + Titelbild von Festplatte laden + + + Failed to open cover file %1 for reading: %2 + Titelbild-Datei %1 konnte nicht zum Lesen geöffnet werden: %2 + + + Cover file %1 is empty. + Titelbild-Datei %1 ist leer. + + + unknown + Unbekannt + + + Save album cover + Titelbild speichern + + + Failed to open cover file %1 for writing: %2 + Titelbild-Datei %1 konnte nicht zum Schreiben geöffnet werden: %2 + + + Failed writing cover to file %1: %2 + Schreiben des Titelbilds in Datei %1 fehlgeschlagen: %2 + + + Failed writing cover to file %1. + Titelbild konnte nicht in Datei %1 geschrieben werden. + + + Failed to delete cover file %1: %2 + Titelbild-Datei %1 konnte nicht gelöscht werden: %2 + + + Failed to write cover to file %1: %2 + Titelbild konnte nicht in Datei %1 geschrieben werden: %2 + + + Could not save cover to file %1. + Konnte Titelbild nicht in Datei "%1" einbetten. + + + + AlbumCoverExport + + Export covers + Titelbilder exportieren + + + Output + Ausgabe + + + Enter a filename for exported covers (no extension): + Dateiname für exportierte Titelbilder eingeben (ohne Dateiendung): + + + Export downloaded covers + Heruntergeladene Titelbilder exportieren + + + Export embedded covers + Eingebettete Titelbilder exportieren + + + Existing covers + Existierende Titelbilder + + + Do not overwrite + Nicht überschreiben + + + O&verwrite all + Alles überschreiben + + + Overwrite s&maller ones only + Überschreibe nur k&leinere + + + Size + Größe + + + Scale size + Bildgröße anpassen + + + Size: + Größe: + + + Pixel + + + + + AlbumCoverManager + + Abort + Abbrechen + + + All albums + Alle Alben + + + Albums with covers + Alben mit Titelbildern + + + Albums without covers + Alben ohne Titelbilder + + + Really cancel? + Wirklich abbrechen? + + + Closing this window will stop searching for album covers. + Das Schließen dieses Fensters bricht das Suchen nach Titelbildern ab. + + + Don't stop! + Nicht anhalten! + + + All artists + Alle Interpreten + + + Various artists + Verschiedene Interpreten + + + Got %1 covers out of %2 (%3 failed) + %1 Titelbilder von %2 wurden gefunden (%3 fehlgeschlagen) + + + %1 transferred + %1 übertragen + + + Export finished + Export beendet + + + No covers to export. + Keine Titelbilder zum Exportieren. + + + Exported %1 covers out of %2 (%3 skipped) + %1 von %2 Titelbildern exportiert (%3 übersprungen) + + + Could not save cover to file %1. + Konnte Titelbild nicht in Datei "%1" einbetten. + + + + AlbumCoverSearcher + + Cover Manager + Titelbildverwaltung + + + Artist + Interpret + + + Album + + + + Search + Suche + + + Covers from %1 + Titelbild von %1 + + + Abort + Abbrechen + + + + AnalyzerContainer + + Framerate + Bildwiederholrate + + + Low (%1 fps) + Niedrig (%1 fps) + + + Medium (%1 fps) + Mittel (%1 fps) + + + High (%1 fps) + Hoch (%1 fps) + + + Super high (%1 fps) + Sehr hoch (%1 fps) + + + No analyzer + Keine Visualisierung + + + Block analyzer + Blöcke + + + Boom analyzer + Boom + + + Turbine + + + + Sonogram + Spektrogramm + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Erscheinungsbild + + + Style + Stil + + + Use system theme icons + Symbole des System-Themes verwenden + + + Settings require restart. + Einstellungen erfordern einen Neustart. + + + Tabbar colors + Farben der Reiterleiste + + + &Use the system default color + System Standardfarben benutzen + + + Use custom color + Benutze benutzerdefinierte Farbe + + + Use gradient background + Benutze Hintergrund mit Farbverlauf + + + Select tabbar color: + Wähle die Farbe der Reiterleiste + + + Background image + Hintergrundbild + + + Default bac&kground image + Default Hintergrundbild + + + &No background image + Kein Hintergrundbild + + + The album cover of the currently playing song + Das Titelbild des gerade abgespielten Titels + + + Albu&m cover + + + + Custom image: + Benutzerdefiniertes Bild: + + + Browse... + Durchsuchen … + + + Position + + + + Upper Left + Oben links + + + Upper Right + Oben rechts + + + Middle + Mitte + + + Bottom Left + Unten links + + + Bottom Right + Unten rechts + + + Max cover size + Maximale Titelbildgröße + + + Stretch image to fill playlist + Bild strecken, um die Wiedergabeliste zu füllen + + + Keep aspect ratio + Das Seitenverhältnis behalten + + + Do not cut image + Bild nicht beschneiden + + + Blur amount + Unschärfe + + + 0px + + + + Opacity + Deckkraft + + + 40% + + + + Icon sizes + Größe der Symbole + + + Playlist buttons + Steuerung der Playliste + + + Tabbar large mode + Tab-Leiste großer Modus + + + Play control buttons + Steuerungstasten + + + Configure buttons + Knöpfe einrichten + + + Files, playlists and queue buttons + Tasten für Dateien, Playlisten und Warteschlange + + + Tabbar small mode + Tab-Leiste kleiner Modus + + + Playlist playing song color + Playlist spielt Songfarbe + + + System highlight color + Hervorhebungsfarbe des Systems + + + Custom color + Benutzerdefinierte Farbe + + + Select playlist playing song color: + Wählen Sie die Wiedergabeliste, in der die Songfarbe wiedergegeben wird: + + + Select background image + Hintergrundbild wählen + + + + BackendSettingsPage + + Backend + + + + Audio output + Tonausgabe + + + Device + Gerät + + + Output + Ausgabe + + + Engine + + + + ALSA plugin: + ALSA-Plugin: + + + hw + + + + p&lughw + + + + pcm + PCM + + + Exclusive mode (Experimental) + + + + Options + Optionen + + + Enable volume control + Lautstärkeregler einschalten + + + Upmix / downmix to + Upmix/Downmix zu + + + channels + Kanäle + + + Improve headphone listening of stereo audio records (bs2b) + Kopfhörer-Wiedergabe von Stereo-Aufnahmen verbessern (bs2b) + + + Enable HTTP/2 for streaming + HTTP/2 für Streaming aktivieren + + + Use strict SSL mode + "Strict SSL" Modus verwenden + + + Buffer + Puffer + + + ms + + + + Buffer duration + Pufferdauer + + + High watermark + Höchstwert + + + Low watermark + Niedrigster Wert + + + Defaults + Voreinstellungen + + + Audio normalization + Audio-Normalisierung + + + No audio normalization + Keine Audio-Normalisierung + + + Replay Gain + + + + Use Replay Gain metadata if it is available + Replay Gain Metadaten benutzen, wenn verfügbar + + + Replay Gain mode + Replay Gain + + + Radio (equal loudness for all tracks) + Radio (gleicher Pegel für alle Titel) + + + Album (ideal loudness for all tracks) + Album (idealer Pegel für alle Titel) + + + Pre-amp + Vorverstärkung: + + + Apply compression to prevent clipping + Komprimieren um Übersteuerung zu vermeiden + + + Fallback-gain + Gespeichertes Gain + + + EBU R 128 Loudness Normalization + EBU R 128 Lautstärke Normalisierung + + + Perform track loudness normalization + Lautstärke-Normalisierung anwenden + + + Target Level + Ziel Level: + + + Fading + Überblenden + + + Fade out when stopping a track + Ausblenden, wenn ein Titel angehalten wird + + + Cross-fade when changing tracks manually + Überblenden bei manuellem Titelwechsel + + + Cross-fade when changing tracks automatically + Überblenden bei automatischem Titelwechsel + + + Except between tracks on the same album or in the same CUE sheet + Außer für Titel des gleichen Albums oder des gleichen Cuesheets. + + + Fading duration + Dauer: + + + Fade out on pause / fade in on resume + Ausblenden bei Pause / Einblenden beim Fortsetzen + + + + BehaviourSettingsPage + + Behavior + Verhalten + + + Show system tray icon + Zeige das Symbol in der Systemleiste + + + Keep running in the background when the window is closed + Im Hintergrund weiterlaufen lassen, wenn das Fenster geschlossen wurde + + + Show song progress on system tray icon + Zeigen Sie den Song-Fortschritt auf dem Taskleisten Symbol an + + + Show song progress on taskbar + + + + Resume playback on start + Wiedergabe beim Start fortsetzten + + + Show playing widget + Zeige Abspielwidget + + + On startup + Beim Laden + + + Remember from &last time + Erinnerung an &letztes Mal + + + Show the main window + Zeige das Hauptfenster + + + Hide the main window + Das Hauptfenster verbergen + + + Show the main window maximized + Zeige das Hauptfenster maximiert + + + Show the main window minimized + Zeige das Hauptfenster minimiert + + + Language + Sprache + + + Use the system default + Standardeinstellungen des Systems benutzen + + + You will need to restart Strawberry if you change the language. + Sie müssen Strawberry nach dem Ändern der Sprache neu starten. + + + Using the menu to add a song will... + Beim Hinzufügen eines Titels über das Kontextmenü … + + + Never start playing + Nie mit der Wiedergabe beginnen + + + Play if there is nothing already playing + Mit der Wiedergabe beginnen, falls gerade nichts anderes abgespielt wird + + + Always start playing + Immer mit der Wiedergabe beginnen + + + Pressing "Previous" in player will... + Im Spieler auf »Vorheriger« drücken, wird … + + + Jump to previous song right away + Gleich zum vorherigen Titel springen + + + Restart song, then jump to previous if pressed again + Titel neu starten, dann zum vorherigen Titel springen, wenn nochmal gedrückt + + + Double clicking a song will... + Beim Doppelklick auf einen Titel diesen … + + + Append to the playlist + Zur Wiedergabeliste hinzufügen + + + Replace the playlist + Die Wiedergabeliste ersetzen lassen + + + Open in new playlist + In einer neuen Wiedergabeliste öffnen + + + Add to the queue + In die Warteschlange einreihen + + + Double clicking a song in the playlist will... + Doppelt auf einen Titel in der Wiedergabeliste klicken wird … + + + Change the currently playing song + Den aktuell spielenden Titel ändern + + + Seeking using a keyboard shortcut or mouse wheel + Mit Tastaturkürzel oder Mausrad spulen + + + Time step + Zeitschritt + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Fehler beim Einstellen des CDDA-Geräts in die Bereitschaft. + + + Error while setting CDDA device to pause state. + Fehler beim Einstellen des CDDA-Geräts in den Pausenzustand. + + + Error while querying CDDA tracks. + Fehler beim Abfragen von CDDA-Titeln. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + Bibliotheks-SQL-Abfrage kann nicht ausgeführt werden: %1 + + + Failed SQL query: %1 + Fehlgeschlagene SQL-Abfrage: %1 + + + Updating %1 database. + Aktualisieren der Datenbank %1. + + + + CollectionFilterWidget + + Collection Filter + Bibliotheksfilter + + + Enter search terms here + Bibliothek durchsuchen + + + MenuPopupToolButton + + + + Entire collection + Gesamte Bibliothek + + + Added today + Heute hinzugefügt + + + Added this week + Diese Woche hinzugefügt + + + Added within three months + In den letzten drei Monaten hinzugefügt + + + Added this year + Dieses Jahr hinzugefügt + + + Added this month + Diesen Monat hinzugefügt + + + Save current grouping + Aktuelle Sortierung speichern + + + Manage saved groupings + Gespeicherte Sortierungen verwalten + + + Show + Anzeigen + + + Group by + Sortieren nach + + + Display options + Anzeigeoptionen + + + Group by Album artist/Album + Nach Albuminterpret/Album gruppieren + + + Group by Album artist/Album - Disc + Gruppe von Album Künstler/Album - Disc + + + Group by Album artist/Year - Album + Gruppe von Album Künstler/Jahr - Album + + + Group by Album artist/Year - Album - Disc + Gruppe von Album Künstler/Jahr - Album - Disc + + + Group by Artist/Album + Interpret/Album + + + Group by Artist/Album - Disc + Gruppe nach Künstler/Album - Disc + + + Group by Artist/Year - Album + Interpret/Jahr + + + Group by Artist/Year - Album - Disc + Gruppe nach Künstler/Jahr - Album - Disc + + + Group by Genre/Album artist/Album + Gruppe nach Genre/Album Künstler/Album + + + Group by Genre/Artist/Album + Genre/Interpret/Album + + + Group by Album Artist + Gruppieren nach Album-Künstler + + + Group by Artist + Interpret + + + Group by Album + Album + + + Group by Genre/Album + Genre/Album + + + Advanced grouping... + Erweiterte Sortierung … + + + Grouping Name + Sortiername + + + Grouping name: + Sortiername: + + + + CollectionModel + + Various artists + Verschiedene Interpreten + + + Loading... + Wird geladen … + + + Unknown + Unbekannt + + + + CollectionSettingsPage + + Collection + Bibliothek + + + These folders will be scanned for music to make up your collection + Diese Ordner werden durchsucht, um Ihre Bibliothek zu erstellen + + + Add new folder... + Neuen Ordner hinzufügen … + + + Remove folder + Ordner entfernen + + + Automatic updating + Automatisches Aktualisieren + + + Update the collection when Strawberry starts + Bibliothek beim Programmstart aktualisieren + + + Monitor the collection for changes + Bibliothek auf Änderungen überwachen + + + Song fingerprinting and tracking + Song-Fingerprinting und -Tracking + + + Mark disappeared songs unavailable + Verschwundene Lieder als nicht verfügbar markieren + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + Durchführung einer EBU R 128 Analyse (Benötigt für EBU R 128 Lautstärke-Normalisierung) + + + Expire unavailable songs after + Nicht verfügbare Lieder laufen ab nach + + + days + Tage + + + Preferred album art filenames (comma separated) + Bevorzugte Dateinamen für Titelbilder (durch Komma getrennt): + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Auf der Suche nach Titelbildern wird Strawberry zuerst nach Bilddateien suchen, die eines dieser Wörter enthalten. +Falls es keine Treffer gibt, wird das größte Bild aus dem Verzeichnis ausgewählt. + + + Display options + Anzeigeoptionen + + + Automatically open single categories in the collection tree + Im Bibliotheksbaum automatisch Einzelkategorien öffnen + + + Show dividers + Trenner anzeigen + + + Show album cover art in collection + Zeige Titelbilder in der Bibliothek + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Titelbilder-Cache + + + Size + Größe + + + Enable Disk Cache + Cachespeicher einschalten + + + Disk Cache Size + Größe des Cachespeichers auf der Festplatte + + + Current disk cache in use: + Aktuell wird dieser Cachespeicher genutzt: + + + Clear Disk Cache + Lösche Cachespeicher + + + Song playcounts and ratings + Wiedergabezahlen und Bewertungen für Song + + + Save playcounts to song tags when possible + Wiedergabezahlen nach Möglichkeit in Song-Tags speichern + + + Save ratings to song tags when possible + Speichern Sie Bewertungen nach Möglichkeit in Song-Tags + + + Overwrite database playcount when songs are re-read from disk + Wiedergabezahl in der Datenbank überschreiben, wenn Songs erneut von der Festplatte eingelesen werden + + + Overwrite database rating when songs are re-read from disk + Bewertung in der Datenbank überschreiben, wenn Songs erneut von der Festplatte eingelesen werden + + + Save playcounts and ratings to files now + Wiedergabezahlen und Bewertungen jetzt in Dateien speichern + + + Enable delete files in the right click context menu + Aktivieren Sie das Löschen von Dateien im Kontextmenü mit der rechten Maustaste + + + Add directory... + Verzeichnis hinzufügen … + + + Write all playcounts and ratings to files + Alle Wiedergabezahlen und Bewertungen in Dateien schreiben + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Sind Sie sicher, dass Sie Wiedergabezahlen und Bewertungen aller Lieder in Ihrer Bibliothek in die Dateien der Lieder einbetten möchten? + + + + CollectionView + + Your collection is empty! + Ihre Bibliothek ist leer! + + + Click here to add some music + Hier klicken, um Musik hinzuzufügen + + + Append to current playlist + Zur aktuellen Wiedergabeliste hinzufügen + + + Replace current playlist + Wiedergabeliste ersetzen + + + Open in new playlist + In einer neuen Wiedergabeliste öffnen + + + Queue track + Titel in die Warteschlange einreihen + + + Queue to play next + In die Warteschlange, um sie als nächstes abzuspielen + + + Search for this + Nach diesem suchen + + + Organize files... + Dateien organisieren... + + + Copy to device... + Auf das Gerät kopieren … + + + Delete from disk... + Von der Festplatte löschen … + + + Edit track information... + Metadaten bearbeiten … + + + Edit tracks information... + Metadaten bearbeiten … + + + Show in file browser... + In Dateiverwaltung anzeigen … + + + Rescan song(s) + Lied erneut scannen + + + Show in various artists + Unter »Verschiedene Interpreten« anzeigen + + + Don't show in various artists + Nicht unter »Verschiedene Interpreten« anzeigen + + + There are other songs in this album + Dieses Album enthält auch andere Titel + + + Would you like to move the other songs on this album to Various Artists as well? + Möchten Sie die anderen Songs auf diesem Album auch zu Various Artists verschieben? + + + Error + Fehler + + + None of the selected songs were suitable for copying to a device + Keiner der gewählten Titel war zum Kopieren auf ein Gerät geeignet. + + + + CollectionViewContainer + + Form + Formular + + + + CollectionWatcher + + Updating collection + Bibliothek wird aktualisiert + + + Updating %1 + Aktualisiere %1 + + + + Console + + Console + Konsole + + + Run + Ausführen + + + + ContextSettingsPage + + Context + Kontext + + + Custom text settings + Benutzerdefinierte Texteinstellungen + + + MenuPopupToolButton + + + + Title + Titel + + + Summary + Kopfzeile: + + + Enable Items + Elemente aktivieren + + + Album + + + + Technical Data + Technische Daten + + + Song Lyrics + Liedtexte + + + Automatically search for album cover + Automatisch nach Titelbildern suchen + + + Automatically search for song lyrics + Automatisch nach Liedtexten suchen + + + Font for headline + Schriftart für die Überschrift + + + Font + Schriftart + + + Font size + Schriftgröße + + + pt + .pt + + + Preview + Vorschau + + + Font for data and lyrics + Schriftart für Daten und Liedtexte + + + Add song artist tag + Interpret des aktuellen Titels + + + Add song album tag + Album des aktuellen Titels + + + Add song title tag + Titelname hinzufügen + + + Add song albumartist tag + Albuminterpret des aktuellen Titels + + + Add song year tag + Titelerscheinungsjahr hinzufügen + + + Add song composer tag + Titelkomponist hinzufügen + + + Add song performer tag + Titelbesetzung hinzufügen + + + Add song grouping tag + Titelsortierung hinzufügen + + + Add song disc tag + Titelmedium hinzufügen + + + Add song track tag + Titelnummer hinzufügen + + + Add song genre tag + Titelgenre hinzufügen + + + Add song length tag + Titellänge hinzufügen + + + Add song play count + Titelwiedergabezähler hinzufügen + + + Add song skip count + Titelübersprungzähler hinzufügen + + + Add a new line if supported by the notification type + Zeilenumbruch (falls von der gewählten Art der Benachrichtigung unterstützt) + + + %filename% + + + + Add song filename + Titeldateiname hinzufügen + + + %url% + + + + Add song URL + Lied-URL hinzufügen + + + %rating% + + + + Add song rating + TItelbewertung hinzufügen + + + %originalyear% + + + + Add song original year tag + Original-Titelerscheinungsjahr hinzufügen + + + + ContextView + + Filetype + Dateityp + + + Length + Länge + + + Samplerate + Abtastrate + + + Bit depth + Bit-Tiefe + + + Bitrate + + + + EBU R 128 Integrated Loudness + EBU R 128 Integrierte Lautheit + + + EBU R 128 Loudness Range + EBU R 128 Lautstärke Bereich + + + Show album cover + Titelbilder anzeigen + + + Show song technical data + Zeige die technischen Daten des Liedes + + + Show song lyrics + Zeige Liedtexte + + + Automatically search for song lyrics + Automatisch nach Liedtexten suchen + + + No song playing + Es wird kein Lied gespielt + + + %1 song + %1 Lied + + + %1 songs + %1 Lieder + + + %1 artist + %1 Künstler + + + %1 artists + %1 Künstler + + + %1 album + %1 Album + + + %1 albums + %1 Alben + + + kbps + Kb/s + + + + CoverFromURLDialog + + Load cover from URL + Titelbild von Adresse laden + + + Enter a URL to download a cover from the Internet: + Geben Sie eine Adresse ein, um das Titelbild aus dem Internet herunterzuladen: + + + Fetching cover error + Abrufen des Titelbildes ist fehlgeschlagen + + + The site you requested does not exist! + Die aufgerufene Seite existiert nicht! + + + The site you requested is not an image! + Die angeforderte Seite ist kein Bild! + + + + CoverManager + + Cover Manager + Titelbildverwaltung + + + Enter search terms here + Bibliothek durchsuchen + + + MenuPopupToolButton + + + + View + Ansicht + + + Total albums: + Gesamte Alben: + + + Without cover: + Ohne Titelbild: + + + 0 + + + + Fetch Missing Covers + Fehlende Titelbilder abrufen + + + Export Covers + Titelbilder exportieren + + + Fetch automatically + Automatisch abrufen + + + Load + Laden + + + Add to playlist + Zur Wiedergabeliste hinzufügen + + + + CoverSearchStatisticsDialog + + Fetch completed + Abrufen abgeschlossen + + + Got %1 covers out of %2 (%3 failed) + %1 Titelbilder von %2 wurden gefunden (%3 fehlgeschlagen) + + + Covers from %1 + Titelbild von %1 + + + Total network requests made + Insgesamt gestellte Netzwerkanfragen + + + Average image size + Durchschnittliche Bildgröße + + + Total bytes transferred + Insgesamt übertragene Bytes + + + + CoversSettingsPage + + Covers + Titelbilder + + + Cover providers + Anbieter für Titelbilder + + + Choose the providers you want to use when searching for covers. + Wählen Sie die Anbieter aus, die Sie für die Suche nach Titelbildern nutzen wollen. + + + Move up + Nach oben + + + Move down + Nach unten + + + Authentication + Authentifizierung + + + Login + Anmelden + + + Album cover types + Titelbild Arten + + + Saving album covers + Speichere Titelbilder + + + Save album covers in album directory + Speichere Titelbilder im Album Ordner + + + Save album covers in cache directory + Titelbilder im Cache-Verzeichnis speichern + + + Save album covers as embedded cover + Speichere Titelbilder als eingebettetes Titelbild + + + Filename: + Dateiname: + + + Pattern + Muster + + + Random + Zufällig + + + Overwrite existing file + Überschreibe bestehende Datei + + + Lowercase filename + Dateiname in Kleinbuchstaben + + + Replace spaces with dashes + Leerzeichen durch Bindestriche ersetzen + + + Use Tidal settings to authenticate. + Benutze Tidal Einstellungen zum Authentifizieren. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Verwenden Sie die Qobuz-Einstellungen zur Authentifizierung. + + + %1 needs authentication. + %1 muss sich authentifizieren. + + + %1 does not need authentication. + %1 braucht keine Authentifizierung. + + + No provider selected. + Kein Anbieter ausgewählt. + + + Authentication failed + Authentifizierung fehlgeschlagen + + + Manually unset (%1) + Manuell entfernt (%1) + + + Set through album cover search (%1) + Durch Titelbildsuche setzen (%1) + + + Automatically picked up from album directory (%1) + Automatisch in Albumsordner gefunden (%1) + + + Embedded album cover art (%1) + Eingebettetes Titelbild (%1) + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + SQL-Abfrage kann nicht ausgeführt werden: %1 + + + Failed SQL query: %1 + Fehlgeschlagene SQL-Abfrage: %1 + + + Integrity check + Integritätsprüfung + + + Database corruption detected. + Datenbankfehler festgestellt + + + Backing up database + Die Datenbank wird gesichert + + + + DeleteConfirmationDialog + + Delete files + Dateien löschen + + + The following files will be deleted from disk: + Die folgenden Dateien werden von der Festplatte gelöscht: + + + Are you sure you want to continue? + Sind Sie sicher, dass Sie weitermachen wollen? + + + + DeleteFiles + + Deleting files + Dateien werden gelöscht + + + + DeviceItemDelegate + + Updating %1%... + %1% wird aktualisiert … + + + Not connected + Nicht verbunden + + + Not mounted - double click to mount + Nicht eingehängt – doppelklicken zum Einhängen + + + Double click to open + Zum Öffnen doppelklicken + + + %1 song%2 + %1 Lied%2 + + + + DeviceManager + + Connect device + Gerät verbinden + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Dieses Gerät wurde zum ersten Mal verbunden. Strawberry wird es nun nach Musikdateien durchsuchen – das kann einige Zeit dauern. + + + This device will not work properly + Dieses Gerät wird nicht ordnungsgemäß funktionieren + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Dies ist ein MTP-Gerät, aber Strawberry wurde ohne Unterstützung für libmtp kompiliert. + + + If you continue, this device will work slowly and songs copied to it may not work. + Wenn Sie fortfahren, wird das Gerät langsam arbeiten und kopierte Titel könnten nicht abspielbar sein. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Dies ist ein iPod, aber Strawberry wurde ohne Unterstützung für libgpod kompiliert. + + + This type of device is not supported: %1 + Diese Geräteart wird nicht unterstützt: %1 + + + + DeviceProperties + + Device Properties + Geräteeinstellungen + + + Information + + + + Name + + + + Icon + Symbol + + + Hardware information + Hardwareinformationen + + + Hardware information is only available while the device is connected. + Die Hardwareinformationen sind nur verfügbar, solange das Gerät angeschlossen ist. + + + File formats + Dateiformate + + + Supported formats + Unterstützte Formate + + + This device supports the following file formats: + Dieses Gerät unterstützt die folgenden Dateiformate: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry kann die Musik, die Sie auf dieses Gerät kopieren, automatisch in ein Format umwandeln, welches das Gerät wiedergeben kann. + + + Do not convert any music + Nichts umwandeln + + + Convert any music that the device can't play + Musik umwandeln, die das Gerät nicht wiedergeben kann + + + Convert all music + Gesamte Musik umwandeln + + + Preferred format + Bevorzugtes Format + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Dieses Gerät muss verbunden und geöffnet sein, bevor Strawberry feststellen kann, welche Dateiformate es unterstützt. + + + Open device + Gerät öffnen + + + Querying device... + Gerät wird abgefragt … + + + Model + Modell + + + Manufacturer + Hersteller + + + + DeviceView + + Safely remove device + Gerät sicher entfernen + + + Forget device + Gerät vergessen + + + Device properties... + Geräteeinstellungen … + + + Append to current playlist + Zur aktuellen Wiedergabeliste hinzufügen + + + Replace current playlist + Wiedergabeliste ersetzen + + + Open in new playlist + In einer neuen Wiedergabeliste öffnen + + + Copy to collection... + Zur Bibliothek kopieren … + + + Delete from device... + Vom Gerät löschen … + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Das Vergessen eines Geräts wird es aus dieser Liste entfernen und Strawberry wird beim nächsten Verbinden alle Titel erneut erfassen müssen. + + + Delete files + Dateien löschen + + + These files will be deleted from the device, are you sure you want to continue? + Diese Dateien werden vom Gerät gelöscht. Möchten Sie wirklich fortfahren? + + + + DeviceViewContainer + + Form + Formular + + + + DynamicPlaylistControls + + Dynamic mode is on + Dynamischer Modus ist an + + + New tracks will be added automatically. + Neue Titel werden automatisch hinzugefügt. + + + Expand + Ausdehnen + + + Repopulate + Neu füllen + + + Turn off + Abschalten + + + + EditTagDialog + + Edit track information + Metadaten bearbeiten + + + Summary + Kopfzeile: + + + Date created + Erstellt + + + Art Automatic + Bild automatisch + + + Date modified + Geändert + + + Art Embedded + Bild eingebettet + + + Last played + A playlist's tag. + Zuletzt gespielt + + + File type + Dateityp + + + Length + Länge + + + Play count + Wiedergabezähler + + + Bit depth + Bit-Tiefe + + + EBU R 128 integrated loudness + EBU R 128 Integrierte Lautheit + + + Bit rate + Bitrate + + + Skip count + Übersprungzähler + + + Sample rate + Abtastrate + + + Path + Dateipfad + + + Filename + Dateiname + + + Art Unset + Bild nicht gesetzt + + + File size + Dateigröße + + + Art Manual + Bild manuell + + + EBU R 128 loudness range + EBU R 128 Lautstärke Bereich + + + Reset play counts + Wiedergabezähler zurücksetzen + + + Tags + + + + MenuPopupToolButton + + + + Change art + Bild ändern + + + Embedded cover + Eingebettetes Titelbild + + + Disc + CD-Nr. + + + Grouping + Sortierung + + + Album artist + Album-Interpret + + + Album + + + + Year + Jahr + + + Title + Titel + + + Artist + Interpret + + + Composer + Komponist + + + Complete tags automatically + Schlagworte automatisch vervollständigen + + + Genre + + + + Comment + Kommentar + + + Performer + Besetzung + + + Compilation + Zusammenstellung + + + Track + Titel-Nr. + + + Rating + Bewertung + + + Lyrics + Songtexte + + + Complete lyrics automatically + + + + Previous + Vorheriger + + + Next + Weiter + + + Saving tracks + Titel werden gespeichert + + + Loading tracks + Titel werden geladen + + + %1 songs selected. + %1 Lieder ausgewählt. + + + kbps + Kb/s + + + Unknown + Unbekannt + + + Yes + Ja + + + No + Nein + + + None + Nichts + + + Cover is unset. + Titelbild ist nicht gesetzt. + + + Cover from embedded image. + Titelbild aus eingebettetem Bild + + + Cover from %1 + Titelbild von %1 + + + Cover art not set + Titelbild nicht ausgewählt + + + Album cover editing is only available for collection songs. + Das Bearbeiten von Titelbildern ist nur in der Bibliothek möglich. + + + Cover changed: Will be cleared when saved. + Titelbild geändert: wird beim Speichern geleert. + + + Cover changed: Will be unset when saved. + Titelbild geändert: wird beim Speichern zurückgesetzt. + + + Cover changed: Will be deleted when saved. + Titelbild geändert: wird beim Speichern gelöscht. + + + Cover changed: Will set new when saved. + Titelbild geändert: wird beim Speichern neu gesetzt. + + + Never + Niemals + + + Reset song play statistics + Titel-Wiedergabestatistiken zurücksetzen + + + Are you sure you want to reset this song's play statistics? + Sind Sie sicher, dass Sie die Wiedergabestatistiken dieses Titels zurücksetzen möchten? + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + + + + Preset: + Voreinstellung: + + + Save preset + Voreinstellung speichern + + + Delete preset + Voreinstellung löschen + + + Enable equalizer + Equalizer aktivieren + + + Enable stereo balancer + Stereo Verteiler einschalten + + + Left + Links + + + Balance + + + + Right + Rechts + + + Pre-amp + Vorverstärkung: + + + Custom + Benutzerdefiniert + + + Classical + Klassisch + + + Club + + + + Dance + + + + Full Bass + Maximale Tiefen + + + Full Treble + Maximale Höhen + + + Full Bass + Treble + Maximale Tiefen und Höhen + + + Laptop/Headphones + Laptop/Kopfhörer + + + Large Hall + Großer Raum + + + Live + + + + Party + + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + Null + + + Name + + + + Are you sure you want to delete the "%1" preset? + Sind Sie sicher, dass Sie die Voreinstellung »%1« wirklich löschen wollen? + + + + EqualizerSlider + + Equalizer + + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Strawberry-Fehler + + + + FancyTabWidget + + Large sidebar + Große Seitenleiste + + + Icons sidebar + + + + Small sidebar + Schmale Seitenleiste + + + Plain sidebar + Einfache Seitenleiste + + + Tabs on top + Reiter oben + + + Icons on top + Symbole oben + + + + FileTypeItemDelegate + + Unknown + Unbekannt + + + + FileView + + Form + Formular + + + + FileViewList + + Append to current playlist + Zur aktuellen Wiedergabeliste hinzufügen + + + Replace current playlist + Wiedergabeliste ersetzen + + + Open in new playlist + In einer neuen Wiedergabeliste öffnen + + + Copy to collection... + Zur Bibliothek kopieren … + + + Move to collection... + Zur Bibliothek verschieben … + + + Copy to device... + Auf das Gerät kopieren … + + + Delete from disk... + Von der Festplatte löschen … + + + Edit track information... + Metadaten bearbeiten … + + + Show in file browser... + In Dateiverwaltung anzeigen … + + + + FreeSpaceBar + + Available + Verfügbar + + + New songs + Neue Titel + + + Exceeded by + + + + Used + Belegt + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + iPod-Datenbank wird geladen + + + An error occurred loading the iTunes database + Beim Laden der iTunes-Datenbank ist ein Fehler aufgetreten + + + + GeniusLyricsProvider + + Genius Authentication + Genius Authentifizierung + + + Please open this URL in your browser + Bitte öffne diese URL in deinem Browser + + + Redirect missing token code! + Bei der Weiterleitung fehlt der Token-Code! + + + Received invalid reply from web browser. + Empfange ungültige Antwort vom Webbrowser. + + + Redirect from Genius is missing query items code or state. + Bei der Weiterleitung von Genius fehlt der Code oder Status der abgefragten Elemente. + + + + GioLister + + Mount point + Einhängepunkt + + + Device + Gerät + + + URI + Adresse + + + + GlobalShortcutGrabber + + Press a key + Taste drücken + + + Press a key combination to use for %1... + Eine Tastenkombination für %1 drücken … + + + + GlobalShortcutsManager + + Play + Wiedergabe + + + Pause + + + + Play/Pause + Abspielen/Pausieren + + + Stop + Anhalten + + + Stop playing after current track + Wiedergabe nach aktuellem Titel anhalten + + + Next track + Nächster Titel + + + Previous track + Vorheriger Titel + + + Restart or previous track + + + + Increase volume + Lautstärke erhöhen + + + Decrease volume + Lautstärke verringern + + + Mute + Stumm + + + Seek forward + Vorspulen + + + Seek backward + Zurückspulen + + + Show/Hide + Einblenden/Ausblenden + + + Show OSD + Bildschirmanzeige anzeigen + + + Toggle Pretty OSD + Schalten Sie das OSD um + + + Change shuffle mode + Zufallsmodus ändern + + + Change repeat mode + Wiederholungsart ändern + + + Enable/disable scrobbling + Scrobbeln ein-/ausschalten + + + Love + Lieben + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Allgemeine Tastenkürzel + + + Use Gnome (GSD) shortcuts when available + Verwenden Sie Gnome-Verknüpfungen (GSD), sofern verfügbar + + + Open... + Öffnen … + + + Use MATE shortcuts when available + Verwenden Sie MATE-Shortcuts, wenn verfügbar + + + Use KDE (KGlobalAccel) shortcuts when available + Verwenden Sie KDE-Verknüpfungen (KGlobalAccel), sofern verfügbar + + + Use X11 shortcuts when available + Verwenden Sie X11-Verknüpfungen, sofern verfügbar + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Sie müssen die Systemeinstellungen öffnen und "<span style=" font-style:italic;">Zugriff für Hilfsgeräte aktivieren</span>" in »Bedienhilfen« aktivieren, um Strawberrys Tastenkürzel zu benutzen. + + + Action + Category label + Aktion + + + Shortcut + Tastenkürzel + + + Shortcut for %1 + Tastenkürzel für %1 + + + &None + &Keine + + + &Default + + + + &Custom + &Benutzerdefiniert + + + Change shortcut... + Tastenkürzel ändern … + + + The "%1" command could not be started. + Der Befehl »%1« konnte nicht ausgeführt werden. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Die Verwendung von X11-Tastenkombinationen auf %1 wird nicht empfohlen und kann dazu führen, dass die Tastatur nicht mehr reagiert! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Verknüpfungen zu %1 werden normalerweise über MPRIS und KGlobalAccel verwendet. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Verknüpfungen zu %1 werden normalerweise über Gnome Settings Daemon verwendet und sollten stattdessen im gnome-settings-daemon konfiguriert werden. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Verknüpfungen zu %1 werden normalerweise über Gnome Settings Daemon verwendet und sollten stattdessen im cinnamon-settings-daemon konfiguriert werden. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Verknüpfungen zu %1 werden normalerweise über MATE Settings Daemon verwendet und sollten stattdessen dort konfiguriert werden. + + + + GroupByDialog + + Collection advanced grouping + Erweiterte Bibliothekssortierung + + + You can change the way the songs in the collection are organized. + Sie können die Organisation der Songs in der Bibliothek ändern. + + + Group Collection by... + Bibliothek sortieren nach … + + + First level + Erste Stufe + + + None + Nichts + + + Artist + Interpret + + + Album artist + Album-Interpret + + + Album + + + + Album - Disc + + + + Disc + CD-Nr. + + + Format + + + + Genre + + + + Year + Jahr + + + Year - Album + Jahr – Album + + + Year - Album - Disc + Jahr - Album - Disc + + + Original year + Ursprüngliches Jahr + + + Original year - Album + Ursprüngliches Jahr - Album + + + Composer + Komponist + + + Performer + Besetzung + + + Grouping + Sortierung + + + File type + Dateityp + + + Sample rate + Abtastrate + + + Bit depth + Bit-Tiefe + + + Bitrate + + + + Second level + Zweite Stufe + + + Third level + Dritte Stufe + + + Separate albums by grouping tag + Alben nach Sortierung-Schlagwort trennen + + + + GstEngine + + Buffering + Puffern + + + + LastFMImport + + Missing username, please login to last.fm first! + Fehlender Benutzername, bitte melden Sie sich zuerst bei last.fm an! + + + + LastFMImportDialog + + Import data from last.fm + Importieren Sie Daten aus last.fm + + + Choose data to import from last.fm + Wählen Sie die zu importierenden Daten aus last.fm aus + + + Last played + Zuletzt gespielt + + + Play counts + Wiedergabezähler + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Warnung: Der Wiedergabezähler und das letzte Wiedergabedatum von last.fm ersetzen vollständig dieselben Daten für die übereinstimmenden Songs. Der Wiedergabezähler ersetzt die Daten basierend auf dem Interpreten und dem Songtitel für dieselben Alben! Bitte sichern Sie Ihre Datenbank, bevor Sie beginnen. + + + Go! + Los! + + + Close + Schließen + + + Cancel + Abbrechen + + + Receiving initial data from last.fm... + Empfangen von Anfangsdaten von last.fm ... + + + Receiving playcount for %1 songs and last played for %2 songs. + Empfange Wiedergabezahl für %1 Songs und letztes Wiedergabedatum für %2 Songs. + + + Receiving last played for %1 songs. + Empfange letztes Wiedergabedatum für %1 Songs. + + + Receiving playcounts for %1 songs. + Empfange Wiedergabezahl für %1 Songs. + + + Playcounts for %1 songs and last played for %2 songs received. + Wiedergabezahl für %1 Songs und letztes Wiedergabedatum für %2 Songs empfangen. + + + Last played for %1 songs received. + Letztes Wiedergabedatum für %1 Songs erhalten. + + + Playcounts for %1 songs received. + Wiedergabezahl für %1 Lieder empfangen. + + + + LastPlayedItemDelegate + + Never + Niemals + + + + Library + + Least favourite tracks + Am wenigsten gemochte Titel + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz Authentifizierung + + + Please open this URL in your browser + Bitte öffne diese URL in deinem Browser + + + Redirect missing token code! + Bei der Weiterleitung fehlt der Token-Code! + + + Received invalid reply from web browser. + Empfange ungültige Antwort vom Webbrowser. + + + Unable to scrobble %1 - %2 because of error: %3 + Konnte scrobble %1 - %2 aufgrund eines Fehlers nicht ausführen: %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + Fehlende MusicBrainz Aufnahmenkennung (recording ID) für %1 %2 %3 + + + ListenBrainz error: %1 + ListenBrainz Fehler: %1 + + + + LoginStateWidget + + Form + Formular + + + You are not signed in. + Sie sind nicht angemeldet. + + + Sign out + Abmelden + + + Signing in... + Anmelden … + + + You are signed in. + Sie sind angemeldet. + + + You are signed in as %1. + Sie sind angemeldet als %1. + + + Expires on %1 + Läuft aus am %1 + + + + LyricsSettingsPage + + Lyrics + Songtexte + + + Lyrics providers + Anbieter für Songtexte + + + Choose the providers you want to use when searching for lyrics. + Wähle die Anbieter aus, die du für die Suche nach Liedtexten nutzen willst. + + + Move up + Nach oben + + + Move down + Nach unten + + + Authentication + Authentifizierung + + + Login + Anmelden + + + No provider selected. + Kein Anbieter ausgewählt. + + + Authentication failed + Authentifizierung fehlgeschlagen + + + + MainWindow + + Strawberry Music Player + Strawberry Musik-Player + + + MenuPopupToolButton + + + + &Music + &Musik + + + P&laylist + P&layliste + + + Help + Hilfe + + + &Tools + Werk&zeuge + + + Previous track + Vorheriger Titel + + + F5 + + + + &Play + Abspielen + + + F6 + + + + &Stop + + + + F7 + + + + &Next track + Nächstes Lied + + + F8 + + + + &Quit + &Beenden + + + Ctrl+Q + Strg+Q + + + Stop after this track + Wiedergabe nach diesem Titel anhalten + + + Ctrl+Alt+V + Strg+Alt+V + + + Love + Lieben + + + &Clear playlist + Wiedergabeliste zurücksetzen + + + Clear playlist + Wiedergabeliste leeren + + + Ctrl+K + Strg+K + + + Edit track information... + Metadaten bearbeiten … + + + Ctrl+E + Strg+E + + + Renumber tracks in this order... + Musiktitel in dieser Reihenfolge neu nummerieren … + + + Set value for all selected tracks... + Wert für ausgewählte Titel einstellen … + + + Edit tag... + Schlagwort bearbeiten … + + + &Settings... + &Einstellungen... + + + Ctrl+P + Strg+P + + + &About Strawberry + &Über Strawberry + + + F1 + + + + S&huffle playlist + M&ische die Wiedergabeliste + + + Ctrl+H + Strg+H + + + &Add file... + &Datei hinzufügen... + + + Ctrl+Shift+A + Strg+Umschalt+A + + + &Open file... + Datei öffnen + + + Open audio &CD... + Öffne Audio &CD + + + &Cover Manager + &Titelbildverwaltung + + + C&onsole + Konsole + + + &Shuffle mode + &Zufallsmodus + + + &Repeat mode + &Wiederholungsart + + + Remove from playlist + Aus der Wiedergabeliste entfernen + + + &Equalizer + + + + &Transcode Music + Musik umwandeln + + + Add &folder... + &Ordner hinzufügen... + + + &Jump to the currently playing track + Zum aktuell abgespielten Lied springen + + + Ctrl+J + Strg+J + + + &New playlist + Neue Wiedergabeliste + + + Ctrl+N + Strg+N + + + Save &playlist... + Speichere W&iedergabeliste + + + Ctrl+S + Strg+S + + + &Load playlist... + Wiedergabeliste laden + + + Ctrl+Shift+O + Strg+Umschalt+O + + + &Save all playlists... + Alle Wiedergabelisten speichern... + + + Go to next playlist tab + Zum nächsten Wiedergabelistenreiter wechseln + + + Go to previous playlist tab + Zum vorherigen Wiedergabelistenreiter wechseln + + + &Update changed collection folders + &Aktualisieren der veränderten Bibliotheks-Ordner + + + About &Qt + Über &Qt + + + &Mute + &Stummschalten + + + Ctrl+M + Strg+M + + + &Do a full collection rescan + &Die gesamte Bibliothek neu scannen + + + Stop collection scan + + + + Complete tags automatically... + Schlagworte automatisch vervollständigen … + + + Ctrl+T + Strg+T + + + Toggle scrobbling + Scrobbeln ein- oder ausschalten + + + Remove &duplicates from playlist + Entferne &Duplikate aus der Wiedergabeliste + + + Remove &unavailable tracks from playlist + Entferne &Unverfügbare Titel aus der Wiedergabeliste + + + Add file(s) to transcoder + Datei(en) zum Umwandler hinzufügen + + + Add file to transcoder + Datei zum Umwandler hinzufügen + + + Add stream... + Datenstrom hinzufügen... + + + Show sidebar + Seitenleiste anzeigen + + + Import data from last.fm... + Importieren Sie Daten aus last.fm... + + + All Files (*) + Alle Dateien (*) + + + Context + Kontext + + + Collection + Bibliothek + + + Queue + Warteschlange + + + Playlists + Wiedergabelisten + + + Smart playlists + Intelligente Wiedergabelisten + + + Files + Dateien + + + Radios + + + + Devices + Geräte + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Alle Titel anzeigen + + + Show only duplicates + Nur Doppelte anzeigen + + + Show only untagged + Nur ohne Schlagworte anzeigen + + + Configure collection... + Bibliothek einrichten … + + + Play + Wiedergabe + + + Toggle queue status + Einreihungsstatus ändern + + + Queue selected tracks to play next + Ausgewählte Titel in die Warteschlange stellen, um sie als nächstes abzuspielen + + + Toggle skip status + Überspring-Status umschalten + + + Rescan song(s)... + Lieder erneut scannen... + + + Copy URL(s)... + Kopiere URL-Pfade + + + Show in collection... + In Bibliothek anzeigen … + + + Show in file browser... + In Dateiverwaltung anzeigen … + + + Organize files... + Dateien organisieren... + + + Copy to collection... + Zur Bibliothek kopieren … + + + Move to collection... + Zur Bibliothek verschieben … + + + Copy to device... + Auf das Gerät kopieren … + + + Delete from disk... + Von der Festplatte löschen … + + + Check for updates... + Nach Aktualisierungen suchen … + + + Strawberry running under Rosetta + Strawberry läuft unter Rosetta + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + Sie betreiben Strawberry unter Rosetta. Der Betrieb von Strawberry unter Rosetta wird nicht unterstützt und führt zu Problemen. Bitte laden Sie Strawberry für die korrekte CPU-Architektur von %1 herunter + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry ist freie Open-Source Software. Wenn Ihnen Strawberry gefällt, können sie das Projekt sponsern. Für weitere Informationen zum Thema Sponsorschaft schauen Sie auf unsere Web-Seite %1 + + + Pause + + + + Dequeue track + Titel aus der Warteschlange nehmen + + + Dequeue selected tracks + Titel aus der Warteschlange nehmen + + + Queue track + Titel in die Warteschlange einreihen + + + Queue selected tracks + Titel in die Warteschlange einreihen + + + Queue to play next + In die Warteschlange, um sie als nächstes abzuspielen + + + Unskip track + Titel nicht überspringen + + + Unskip selected tracks + Überspringen der ausgewählten Titel aufheben + + + Skip track + Titel überspringen + + + Skip selected tracks + Ausgewählte Titel überspringen + + + Set %1 to "%2"... + %1 zu »%2« einstellen … + + + Edit tag "%1"... + Schlagwort »%1« bearbeiten … + + + Add to another playlist + Zu anderer Wiedergabeliste hinzufügen + + + New playlist + Neue Wiedergabeliste + + + Add file + Datei hinzufügen + + + Music + Musik + + + Add folder + Ordner hinzufügen + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Die Wiedergabeliste enthält %1 Songs, die zu groß sind, um sie rückgängig zu machen. Sind Sie sicher, dass Sie die Wiedergabeliste löschen möchten? + + + Error + Fehler + + + None of the selected songs were suitable for copying to a device + Keiner der gewählten Titel war zum Kopieren auf ein Gerät geeignet. + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Die Strawberry-Version, auf die Sie gerade aktualisiert haben, erfordert eine komplette Aktualisierung Ihrer Bibliothek, damit die folgenden neuen Funktionen genutzt werden können: + + + Would you like to run a full rescan right now? + Möchten Sie jetzt Ihre Musik-Bibliothek erneut einlesen? + + + Collection rescan notice + Hinweis beim erneuten Durchsuchen der Bibliothek + + + + MessageDialog + + Message Dialog + Meldungsfenster + + + Do not show this message again. + Zeige diese Nachricht nicht wieder. + + + + MimeData + + Playlist + Wiedergabeliste + + + + MoodbarProxyStyle + + Show moodbar + Zeige Stimmungsbarometer + + + Moodbar style + Stil des Stimmungsbarometers + + + + MoodbarSettingsPage + + Moodbar + Stimmungsbarometer + + + Show a moodbar in the track progress bar + Einen Stimmungsbalken in der Fortschrittsleiste des Liedes anzeigen + + + Moodbar style + Stil des Stimmungsbarometers + + + Save the .mood files directly in the songs folders + Speichern Sie die .mood-Dateien direkt in den Lieder-Ordnern + + + Enabled + Aktiviert + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + MTP-Gerät wird geladen + + + Error connecting MTP device %1 + Fehler beim Verbinden zu MTP Gerät %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Netzwerkvermittlung + + + &Use the system proxy settings + System-Proxy-Einstellungen verwenden + + + Direct internet connection + Direkte Verbindung zum Internet + + + &Manual proxy configuration + &Manuelle Konfiguration des Proxy + + + HTTP proxy + HTTP-Proxy + + + SOCKS proxy + SOCKS-Proxy + + + Port + Anschluss (Port) + + + Use authentication + Legitimierung verwenden + + + Username + Benutzername + + + Password + Passwort: + + + Use proxy settings for streaming + Verwenden Sie die Proxy-Einstellungen für das Streaming + + + + NotificationsSettingsPage + + Notifications + Benachrichtigungen + + + Strawberry can show a message when the track changes. + Strawberry kann Benachrichtigungen beim Titelwechsel anzeigen + + + Notification type + Art der Benachrichtigung + + + Disabled + Refers to a disabled notification type in Notification settings. + Deaktiviert + + + Show a &native desktop notification + Zeige die &Desktop Benachrichtigungen an + + + Show a pretty OSD + Strawberry-Bildschirmanzeige anzeigen + + + Show a popup fro&m the system tray + Zeige ein Popup vo&n der Systemleiste + + + General settings + Allgemeine Einstellungen + + + Popup duration + Anzeigedauer + + + seconds + Sekunden + + + Disable duration + Permanente Anzeige + + + Show a notification when I change the volume + Benachrichtigung bei Änderung der Lautstärke anzeigen + + + Show a notification when I change the repeat/shuffle mode + Eine Benachrichtigung, bei Änderung der Wiederholungsart bzw. des Zufallsmodus, anzeigen + + + Show a notification when I pause playback + Eine Benachrichtigung anzeigen, wenn die Wiedergabe angehalten wird + + + Show a notification when I resume playback + Zeige eine Benachrichtigung, wenn ich wieder abspiele + + + Include album art in the notification + Titelbild in der Benachrichtigung anzeigen + + + Custom message settings + Benutzerdefinierte Benachrichtigungseinstellungen + + + Use a custom message for notifications + Einen benutzerdefinierten Text für Benachrichtigungen benutzen + + + Preview + Vorschau + + + MenuPopupToolButton + + + + Summary + Kopfzeile: + + + Body + Textkörper: + + + Pretty OSD options + Einstellungen für die Strawberry-Bildschirmanzeige + + + Background color + Hintergrundfarbe: + + + Text options + Texteinstellungen: + + + Choose font... + Schriftart wählen … + + + Choose color... + Farbe wählen … + + + Background opacity + Deckkraft: + + + Basic Blue + Standardblau + + + Strawberry Red + Strawberry Rot + + + Custom... + Eigene … + + + Enable fading + Ein-/Ausblenden aktivieren + + + Add song artist tag + Interpret des aktuellen Titels + + + Add song album tag + Album des aktuellen Titels + + + Add song title tag + Titelname hinzufügen + + + Add song albumartist tag + Albuminterpret des aktuellen Titels + + + Add song year tag + Titelerscheinungsjahr hinzufügen + + + Add song composer tag + Titelkomponist hinzufügen + + + Add song performer tag + Titelbesetzung hinzufügen + + + Add song grouping tag + Titelsortierung hinzufügen + + + Add song disc tag + Titelmedium hinzufügen + + + Add song track tag + Titelnummer hinzufügen + + + Add song genre tag + Titelgenre hinzufügen + + + Add song length tag + Titellänge hinzufügen + + + Add song play count + Titelwiedergabezähler hinzufügen + + + Add song skip count + Titelübersprungzähler hinzufügen + + + Add song rating + TItelbewertung hinzufügen + + + Add a new line if supported by the notification type + Zeilenumbruch (falls von der gewählten Art der Benachrichtigung unterstützt) + + + %filename% + + + + Add song filename + Titeldateiname hinzufügen + + + %url% + + + + Add song URL + Lied-URL hinzufügen + + + %originalyear% + + + + Add song original year tag + Original-Titelerscheinungsjahr hinzufügen + + + OSD Preview + Vorschau der Bildschirmanzeige + + + Drag to reposition + Klicken und ziehen um die Position zu ändern + + + + OSDBase + + disc %1 + CD %1 + + + track %1 + Titel %1 + + + Paused + Pausiert + + + Stopped + Angehalten + + + Stop playing after track: %1 + Wiedergabe wird nach diesem Lied angehalten: %1 + + + On + An + + + Off + Aus + + + Playlist finished + Wiedergabeliste beendet + + + Volume %1% + Lautstärke %1% + + + Don't shuffle + Zufallsmodus aus + + + Shuffle all + Zufällige Titelreihenfolge + + + Shuffle tracks in this album + Zufällige Titelreihenfolge innerhalb dieses Albums + + + Shuffle albums + Zufällige Albenreihenfolge + + + Don't repeat + Wiederholung aus + + + Repeat track + Titel wiederholen + + + Repeat album + Album wiederholen + + + Repeat playlist + Wiedergabeliste wiederholen + + + Stop after every track + Wiedergabe nach jedem Titel anhalten + + + Intro tracks + Einleitungstitel + + + + Organize + + Organizing files + Dateien organisieren + + + + OrganizeDialog + + Organize Files + Dateien organisieren + + + Destination + Ziel: + + + After copying... + Nach dem Kopieren … + + + Keep the original files + Ursprüngliche Dateien behalten + + + Delete the original files + Ursprüngliche Dateien löschen + + + Naming options + Benennungsoptionen + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Schlüsselwörter beginnen mit %, zum Beispiel: %artist %album %title </p> + +<p>Steht ein Textbereich in geschweiften Klammern, wird dieser nicht angezeigt, falls das Schlüsselwort leer ist.</p> + + + Insert... + Einfügen … + + + Remove problematic characters from filenames + Entferne problematische Zeichen aus Dateinamen + + + Restrict to characters allowed on FAT filesystems + Beschränke auf die in FAT-Dateisystemen erlaubten Zeichen + + + Restrict characters to ASCII + Beschränke Zeichen auf ASCII + + + Allow extended ASCII characters + Erlaube erweiterte ASCII Zeichen + + + Replace spaces with underscores + Leerzeichen mit Unterstrichen ersetzen + + + Overwrite existing files + Bestehende Dateien überschreiben + + + Copy album cover artwork + Kopiere Titelbild + + + Preview + Vorschau + + + Loading... + Wird geladen … + + + Safely remove the device after copying + Das Gerät nach dem Kopiervorgang sicher entfernen + + + Title + Titel + + + Album + + + + Artist + Interpret + + + Artist's initial + Initialen des Interpreten + + + Album artist + Album-Interpret + + + Composer + Komponist + + + Performer + Besetzung + + + Grouping + Sortierung + + + Track + Titel-Nr. + + + Disc + CD-Nr. + + + Year + Jahr + + + Original year + Ursprüngliches Jahr + + + Genre + + + + Comment + Kommentar + + + Length + Länge + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + Abtastrate + + + Bit depth + Bit-Tiefe + + + File extension + Dateiendung + + + + OrganizeErrorDialog + + Error copying songs + Fehler beim Kopieren der Titel + + + There were problems copying some songs. The following files could not be copied: + Beim Kopieren einiger Titel ist ein Fehler aufgetreten. Die folgenden Dateien konnten nicht kopiert werden: + + + Error deleting songs + Fehler beim Löschen der Titel + + + There were problems deleting some songs. The following files could not be deleted: + Beim Löschen einiger Titel ist ein Fehler aufgetreten. Die folgenden Dateien konnten nicht gelöscht werden: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Kleines Titelbild + + + Large album cover + Großes Titelbild + + + Fit cover to width + Titelbild an Breite anpassen + + + Show above status bar + Oberhalb der Statusleiste anzeigen + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Titel + + + Artist + Interpret + + + Album + + + + Track + Titel-Nr. + + + Disc + CD-Nr. + + + Length + Länge + + + Year + Jahr + + + Original Year + Ursprüngliches Jahr + + + Genre + + + + Album Artist + Album-Interpret + + + Composer + Komponist + + + Performer + Besetzung + + + Grouping + Sortierung + + + Play Count + Wiedergabezähler + + + Skip Count + Übersprungzähler + + + Last Played + Zuletzt gespielt + + + Sample Rate + Abtastrate + + + Bit Depth + Bit-Tiefe + + + Bitrate + + + + File Name + Dateiname + + + File Name (without path) + Dateiname (ohne Dateipfad) + + + File Size + Dateigröße + + + File Type + Dateityp + + + Date Modified + Änderungsdatum + + + Date Created + Erstellungsdatum + + + Comment + Kommentar + + + Source + Quelle + + + Mood + Stimmung + + + Rating + Bewertung + + + CUE + Stichwort + + + Integrated Loudness + Integrierte Lautheit + + + Loudness Range + Lautstärkeumfang + + + + PlaylistContainer + + Form + Formular + + + Undo + Rückgängig machen + + + Redo + Wiederholen + + + Playlist + Wiedergabeliste + + + Load playlist + Wiedergabeliste laden + + + No matches found. Clear the search box to show the whole playlist again. + Keine Treffer. Leeren Sie das Suchfeld, um wieder die gesamte Wiedergabeliste anzuzeigen. + + + + PlaylistDelegateBase + + stop + Anhalten + + + + PlaylistGeneratorInserter + + Loading smart playlist + Lade intelligente Wiedergabeliste + + + + PlaylistHeader + + &Hide... + &Ausblenden … + + + &Stretch columns to fit window + &Spalten an Fenstergröße anpassen + + + &Reset columns to default + &Zurücksetzen der Spalten auf Standard + + + &Lock rating + &Lock Bewertung + + + &Align text + &Text ausrichten + + + &Left + &Links + + + &Center + &Zentriert + + + &Right + &Rechts + + + &Hide %1 + %1 &ausblenden + + + + PlaylistListContainer + + Form + Formular + + + New folder + Neuer Ordner + + + Delete + Löschen + + + Save playlist + Save playlist menu action. + Wiedergabeliste speichern + + + Copy to device... + Auf das Gerät kopieren … + + + Enter the name of the folder + Geben Sie den Namen des Ordners ein + + + Playlist + Wiedergabeliste + + + Copy to device + Kopieren auf ein Gerät + + + Playlist must be open first. + Die Wiedergabeliste muss zuerst geöffnet sein. + + + Remove playlists + Wiedergabeliste entfernen + + + You are about to remove %1 playlists from your favorites, are you sure? + Wollen Sie %1 Wiedergabelisten löschen? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Sie können Wiedergabelisten favorisieren, indem Sie das Stern-Symbol neben dem Namen anklicken + + + Favorited playlists will be saved here + Favorisierte Wiedergabelisten werden hier gespeichert + + + + PlaylistManager + + Playlist + Wiedergabeliste + + + Couldn't create playlist + Wiedergabeliste konnte nicht erstellt werden + + + Save playlist + Title of the playlist save dialog. + Wiedergabeliste speichern + + + Unknown playlist extension + Unbekannte Dateiendung für Wiedergabeliste. + + + Unknown file extension for playlist. + Unbekannte Dateiendung für Wiedergabeliste. + + + %1 selected of + %1 ausgewählt von + + + %n track(s) + + %n Stück(e) + + + + + Unknown + Unbekannt + + + Various artists + Verschiedene Interpreten + + + + PlaylistParser + + All playlists (%1) + Alle Wiedergabelisten (%1) + + + %1 playlists (%2) + %1 Wiedergabelisten (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Wiedergabeliste einrichten + + + File paths + Dateipfade + + + This can be changed later through the preferences + Das kann später in den Einstellungen geändert werden + + + Remember my choice + Meine Auswahl merken + + + Automatic + Automatisch + + + Relative + Relativ + + + Absolute + Absolut + + + + PlaylistSequence + + Repeat + Wiederholung + + + Shuffle + Zufallsmodus + + + Don't repeat + Wiederholung aus + + + Repeat track + Titel wiederholen + + + Repeat album + Album wiederholen + + + Repeat playlist + Wiedergabeliste wiederholen + + + Stop after each track + Wiedergabe nach jedem Titel anhalten + + + Intro tracks + Einleitungstitel + + + Don't shuffle + Zufallsmodus aus + + + Shuffle tracks in this album + Zufällige Titelreihenfolge innerhalb dieses Albums + + + Shuffle all + Zufällige Titelreihenfolge + + + Shuffle albums + Zufällige Albenreihenfolge + + + + PlaylistSettingsPage + + Playlist + Wiedergabeliste + + + Use alternating row colors + Verwenden Sie abwechselnde Zeilenfarben + + + Show bars on the currently playing track + Zeigen Sie einen Balken auf dem aktuell wiedergegebenen Titel an + + + Show a glowing animation on the currently playing track + Zeigen Sie eine leuchtende Animation auf dem aktuell abgespielten Titel + + + Warn me when closing a playlist tab + Hinweis beim Schließen eines Wiedergabelistenreiters anzeigen + + + Continue to the next item in the playlist if a song is unavailable + Zum nächsten Lied in der Wiedergabeliste weitergehen, wenn das Lied nicht verfügbar ist + + + Grey out unavailable songs in playlists on playback + Ausgrauen von Liedern während des Abspielens, die nicht verfügbar sind + + + Grey out unavailable songs in playlists on startup + Ausgrauen von Liedern während des Startens, die nicht verfügbar sind + + + Automatically select current playing track + Automatisch den aktuellen Song auswählen + + + Enable playlist toolbar + Wiedergabelisten-Toolbar aktivieren + + + Enable playlist clear button + Wiedergabeliste löschen - Knopf aktivieren + + + Enable delete files in the right click context menu + Aktivieren Sie das Löschen von Dateien im Kontextmenü mit der rechten Maustaste + + + Automatically sort playlist when inserting songs + Sortierliste beim Einfügen von Songs automatisch sortieren + + + When saving a playlist, file paths should be + Beim Speichern einer Wiedergabeliste sollte der Dateipfad folgendes sein + + + A&utomatic + A&utomatisch + + + Absolu&te + Absolu&t + + + Re&lative + Re&lativ + + + As&k when saving + Nachfragen beim Speichern + + + Metadata + Metadaten + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Wenn aktiviert, können Sie mit einem Klick auf einen Titel in der Wiedergabeliste, die Schlagwortwerte direkt bearbeiten + + + Enable song metadata inline edition with click + Direktausgabe der Titelmetadaten mit Klick aktivieren + + + Write metadata when saving playlists + Metadaten schreiben, wenn Wiedergabelisten gespeichert werden + + + + PlaylistTabBar + + Star playlist + Star-Playlist + + + Close playlist + Wiedergabeliste schließen + + + Rename playlist... + Wiedergabeliste umbenennen … + + + Save playlist... + Wiedergabeliste speichern … + + + Rename playlist + Wiedergabeliste umbenennen + + + Enter a new name for this playlist + Neuer Name für diese Wiedergabeliste + + + Remove playlist + Wiedergabeliste entfernen + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Sie entfernen eine nicht favorisierte Wiedergabeliste. Die Wiedergabeliste wird gelöscht (Diese Aktion kann nicht rückgängig gemacht werden). +Möchten Sie wirklich fortfahren? + + + Warn me when closing a playlist tab + Hinweis beim Schließen eines Wiedergabelistenreiters anzeigen + + + This option can be changed in the "Behavior" preferences + Diese Einstellung kann in den »Verhalten«-Einstellungen geändert werden + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Hier doppelklicken, um diese Wiedergabeliste zu Favoriten hinzuzufügen, damit sie gespeichert und in der linken Seitenleiste unter "Wiedergabelisten" zugänglich gemacht wird. + + + Playlist + Wiedergabeliste + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + %n Titel hinzufügen + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + Verschiebe %n Titel + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + %n Titel entfernen + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + Titel mischen + + + + PlaylistUndoCommands::SortItems + + sort songs + Titel sortieren + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + Kb/s + + + + QObject + + Usage + Benutzung + + + options + Einstellungen + + + URL(s) + Adresse(n) + + + Player options + Spielereinstellungen + + + Start the playlist currently playing + Die aktuelle Wiedergabeliste abspielen + + + Play if stopped, pause if playing + Wiedergeben wenn angehalten, pausieren bei Wiedergabe + + + Pause playback + Wiedergabe pausieren + + + Stop playback + Wiedergabe anhalten + + + Stop playback after current track + Wiedergabe nach aktuellem Titel anhalten + + + Skip backwards in playlist + Vorherigen Titel in der Wiedergabeliste + + + Skip forwards in playlist + Nächsten Titel in der Wiedergabeliste + + + Set the volume to <value> percent + Setze Lautstärke auf <value>% + + + Increase the volume by 4 percent + Lautstärke um 4 % erhöhen + + + Decrease the volume by 4 percent + Lautstärke um 4% verringern + + + Increase the volume by <value> percent + Lautstärke um <value> Prozent erhöhen + + + Decrease the volume by <value> percent + Lautstärke um <value> Prozent verringern + + + Seek the currently playing track to an absolute position + Im aktuellen Titel zu einer Position springen + + + Seek the currently playing track by a relative amount + Im aktuellen Titel vorspulen + + + Restart the track, or play the previous track if within 8 seconds of start. + Starten Sie den Titel oder den vorherigen Titel, wenn sie innerhalb von 8 Sekunden nach Beginn. + + + Playlist options + Wiedergabeliste einrichten + + + Create a new playlist with files + Neue Wiedergabelist mit Dateien erstellen + + + Append files/URLs to the playlist + Dateien/Adressen an die Wiedergabeliste anhängen + + + Loads files/URLs, replacing current playlist + Dateien/Adressen laden und die Wiedergabeliste ersetzen + + + Play the <n>th track in the playlist + Titelnummer <n> der Wiedergabeliste abspielen + + + Play given playlist + Angegebene Playliste abspielen + + + Other options + Weitere Optionen + + + Display the on-screen-display + Bildschirmanzeige anzeigen + + + Toggle visibility for the pretty on-screen-display + Sichtbarkeit der Strawberry-Bildschirmanzeige anpassen + + + Change the language + Sprache ändern + + + Resize the window + Größe des Fensters ändern + + + Equivalent to --log-levels *:1 + Äquivalent zu --log-levels *:1 + + + Equivalent to --log-levels *:3 + Äquivalent zu --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Komma getrennte Liste mit »class:level« (Level ist 0-3) + + + Print out version information + Versionsinformationen anzeigen + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Unbekannt + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Datei %1 kann nicht als korrekte Audiodatei erkannt werden. + + + 1 day + 1 Tag + + + %1 days + %1 Tage + + + Today + Heute + + + Yesterday + Gestern + + + %1 days ago + vor %1 Tagen + + + Tomorrow + Morgen + + + In %1 days + In %1 Tagen + + + Next week + Nächste Woche + + + In %1 weeks + In %1 Wochen + + + Show in file browser + Zeige im Dateimanager + + + Too many songs selected. + Zu viele Lieder ausgewählt. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + %1 Lieder in %2 unterschiedlichen Ordnern ausgewählt, sind Sie sicher, dass Sie sie alle öffnen wollen? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Unbekannter Fehler + + + Prefix a search term with a field name to limit the search to that field, e.g.: + Stellen Sie einem Suchbegriff einen Feldnamen voran, um die Suche auf dieses Feld zu beschränken, z.B: + + + artist + Künstler + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + Suchbegriffe für numerische Felder können mit %1 oder %2 vorangestellt werden, um die Suche expliziter zu machen, z.B: + + + rating + Bewertung + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + Mehrere Suchbegriffe können auch mit "%1" (und, standard) und "%2" (oder) kombiniert, sowie mit Klammern gruppiert werden. + + + Available fields + Verfügbare Felder + + + after + danach + + + before + davor + + + on + an + + + not on + nicht an + + + in the last + als letztes + + + not in the last + nicht als letztes + + + between + dazwischen + + + contains + beinhaltet + + + does not contain + beinhaltet nicht + + + starts with + beginnt mit + + + ends with + ended mit + + + greater than + größer als + + + less than + weniger als + + + equals + ist gleich + + + not equals + ist nicht gleich + + + empty + leer + + + not empty + nicht leer + + + Comment + Kommentar + + + A-Z + + + + Z-A + + + + oldest first + älteste zuerst + + + newest first + Neueste zuerst + + + shortest first + kürzeste zuerst + + + longest first + Längste zuerst + + + smallest first + kleinste zuerst + + + biggest first + Größte zuerst + + + Hours + Stunden + + + Days + Tage + + + Weeks + Wochen + + + Months + Monate + + + Years + Jahre + + + Normal + + + + Angry + Wütend + + + Frozen + Eingefroren + + + Happy + Freude! + + + System colors + Systemfarben + + + + QWidget + + Clear + Leeren + + + Reset + Zurücksetzen + + + + QobuzRequest + + Receiving artists... + Empfange Künstler... + + + Receiving albums... + Empfange Alben... + + + Receiving songs... + Empfange Lieder... + + + Searching... + Suche... + + + Receiving albums for %1 artist... + Empfange Alben von %1 Künstler... + + + Receiving albums for %1 artists... + Empfange Alben von %1 Künstlern... + + + Receiving songs for %1 album... + Empfange Lieder für %1 Album... + + + Receiving songs for %1 albums... + Empfange Lieder für %1 Alben... + + + Receiving album cover for %1 album... + Empfange Titelbild für %1 Album... + + + Receiving album covers for %1 albums... + Empfange Titelbilder für %1 Alben... + + + No match. + Keine Übereinstimmung. + + + Unknown error + Unbekannter Fehler + + + + QobuzService + + Authenticating... + Authentifiziere... + + + Maximum number of login attempts reached. + Maximale Anzahl von Anmeldeversuchen erreicht. + + + Missing Qobuz app ID. + Fehlende Qobuz-App-ID. + + + Missing Qobuz username. + Fehlender Qobuz Benutzername. + + + Missing Qobuz password. + Fehlendes Qobuz Passwort. + + + Not authenticated with Qobuz. + Nicht mit Qobuz authentifiziert. + + + Missing Qobuz app ID or secret. + Fehlende Qobuz-App-ID oder geheim. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Aktivieren + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Der Qobuz-Support ist nicht offiziell und erfordert eine API-App-ID und ein Secret einer registrierten Anwendung, um zu funktionieren. Wir können Ihnen nicht helfen, diese zu bekommen. + + + Authentication + Authentifizierung + + + App ID + + + + Username + Benutzername + + + Password + Passwort: + + + App Secret + + + + Login + Anmelden + + + Preferences + Einstellungen + + + Audio format + Tonformat + + + Search delay + Suche verzögert + + + ms + + + + Artists search limit + Künstler Suchlimit + + + Albums search limit + Alben Suchlimit + + + Songs search limit + Lieder Suchlimit + + + Download album covers + Titelbilder herunterladen + + + Base64 encoded secret + Base64 kodiertes Geheimnis (Base64 encoded secret) + + + Configuration incomplete + Einstellungen nicht vollständig + + + Missing app id. + Fehlende App-ID. + + + Missing username. + Fehlender Benutzername. + + + Missing password. + Fehlendes Passwort. + + + Authentication failed + Authentifizierung fehlgeschlagen + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Fehlende Qobuz-App-ID oder geheim. + + + Cancelled. + Abgebrochen. + + + + Queue + + %n track(s) + + %n Stück(e) + + + + + + QueueView + + QueueView + Ansicht Warteschlange + + + Move down + Nach unten + + + Ctrl+Up + Strg+Oben + + + Move up + Nach oben + + + Ctrl+Down + Strg+Down + + + Remove + Entfernen + + + Clear + Leeren + + + Ctrl+K + Strg+K + + + + RadioParadiseService + + Getting %1 channels + Empfange %1 Kanäle. + + + + RadioView + + Append to current playlist + Zur aktuellen Wiedergabeliste hinzufügen + + + Replace current playlist + Wiedergabeliste ersetzen + + + Open in new playlist + In einer neuen Wiedergabeliste öffnen + + + Open homepage + Homepage öffnen + + + Donate + Spenden + + + Refresh channels + Kanäle erneuern + + + + RadioViewContainer + + Form + Formular + + + + SCollection + + Saving playcounts and ratings + Speichern von Wiedergabezahlen und Bewertungen + + + + SavePlaylistsDialog + + Select directory for saving playlists + Wählen Sie ein Verzeichnis zum Speichern von Wiedergabelisten + + + Type + Typ + + + Select directory for the playlists + Wählen Sie ein Verzeichnis für die Wiedergabelisten + + + Directory does not exist. + Das Verzeichnis existiert nicht. + + + + SavedGroupingManager + + Saved Grouping Manager + Gespeicherte Sortierung verwalten + + + Remove + Entfernen + + + Ctrl+Up + Strg+Oben + + + Name + + + + First level + Erste Stufe + + + Second Level + Zweite Stufe + + + Third Level + Dritte Stufe + + + None + Nichts + + + Album artist + Album-Interpret + + + Artist + Interpret + + + Album + + + + Album - Disc + + + + Year - Album + Jahr – Album + + + Year - Album - Disc + Jahr - Album - Disc + + + Original year - Album + Ursprüngliches Jahr - Album + + + Original year - Album - Disc + Originaljahr - Album - Disc + + + Disc + CD-Nr. + + + Year + Jahr + + + Original year + Ursprüngliches Jahr + + + Genre + + + + Composer + Komponist + + + Performer + Besetzung + + + Grouping + Sortierung + + + File type + Dateityp + + + Format + + + + Sample rate + Abtastrate + + + Bit depth + Bit-Tiefe + + + Bitrate + + + + Unknown + Unbekannt + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Aktivieren + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Lieder werden gescrobbelt, wenn sie gültige Metadaten haben und länger als 30 Sekunden sind, mindestens die Hälfte ihrer Dauer oder 4 Minuten (je nachdem, was früher eintritt) abgespielt wurden. + + + Work in offline mode (Only cache scrobbles) + Offline arbeiten (Nur im Speicher scrobbeln) + + + Show scrobble button + Zeige den Knopf fürs Scrobbeln + + + Show love button + Zeige den Knopf für Lieben + + + Submit scrobbles every + Übermittle Scrobbles alle + + + seconds + Sekunden + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + Dies ist die Verzögerung zwischen dem Scrobblen eines Songs und dem Senden der Scrobbles an den Server. Wenn Sie die Zeit auf 0 Sekunden einstellen, werden Scrobbles sofort gesendet). + + + Prefer album artist when sending scrobbles + Alben Künstler bevorzugen wenn man Scrobbler sendet + + + Show dialog for errors + Dialogfeld für Fehler anzeigen + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Scrobbeln für die folgenden Quellen aktivieren: + + + Collection + Bibliothek + + + Subsonic + + + + Local file + Lokale Datei + + + Tidal + + + + Device + Gerät + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Datenstrom + + + Radio Paradise + + + + Unknown + Unbekannt + + + Last.fm + + + + Login + Anmelden + + + Libre.fm + + + + Listenbrainz + ListenBrainz + + + User token: + Benutzer-Token: + + + Enter your user token from + Ihr Benutzer-Token eingeben von + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 Scrobbler Authentifizierung + + + Open URL in web browser? + Die URL im Webbrowser öffnen? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Drücken Sie "Speichern", um die URL in die Zwischenablage zu kopieren und sie manuell in einem Webbrowser zu öffnen. + + + Could not open URL. Please open this URL in your browser + Konnte die URL nicht öffnen. Bitte diese URL im Browser öffnen + + + Invalid reply from web browser. Missing token. + Ungültige Antwort vom Webbrowser. Token fehlt. + + + Received invalid reply from web browser. Try another browser. + Ungültige Antwort vom Webbrowser erhalten. Versuchen Sie einen anderen Webbrowser. + + + Scrobbler %1 is not authenticated! + Scrobbler %1 ist nicht authentifiziert! + + + Scrobbler %1 error: %2 + Scrobbler %1 Fehler: %2 + + + + SettingsDialog + + Settings + Einstellungen + + + General + Allgemein + + + User interface + Benutzeroberfläche + + + Streaming + + + + + SmartPlaylistQuerySearchPage + + Form + Formular + + + Search mode + Suchmodus + + + Match every search term (AND) + Passend zu jedem Suchbegriff (UND) + + + Match one or more search terms (OR) + Übereinstimmend mit einem oder mehreren Suchbegriffen (ODER) + + + Include all songs + Alle Titel zusammen + + + Search terms + Suchbegriffe + + + + SmartPlaylistQuerySortPage + + Form + Formular + + + Sorting + Sortieren + + + Put songs in a random order + Ordne die Songs in zufälliger Reihenfolge an + + + Sort songs by + Sortiere Titel nach + + + Limits + Begrenzungen + + + Show all the songs + Zeige alle Lieder + + + Only show the first + Zeige nur die ersten + + + songs + Lieder + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Bibliothek durchsuchen + + + Find songs in your collection that match the criteria you specify. + Suchen Sie nach Titeln in Ihrer Bibliothek, die den von Ihnen angegebenen Kriterien entsprechen. + + + Search terms + Suchbegriffe + + + A song will be included in the playlist if it matches these conditions. + Ein Lied wird in die Wiedergabeliste aufgenommen, wenn es diesen Bedingungen entspricht. + + + Search options + Suchoptionen + + + Choose how the playlist is sorted and how many songs it will contain. + Wählen Sie aus, wie die Wiedergabeliste sortiert und wie viele Titel sie enthalten soll. + + + + SmartPlaylistSearchPreview + + Form + Formular + + + Preview + Vorschau + + + Loading... + Wird geladen … + + + %1 songs found (showing %2) + %1 Lieder gefunden (zeigt %2) + + + %1 songs found + %1 Lieder gefunden + + + + SmartPlaylistSearchTermWidget + + Form + Formular + + + and + und + + + ago + zuvor + + + The second value must be greater than the first one! + Der zweite Wert muss größer sein als der erste! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Ergänze Suchbegriff + + + + SmartPlaylistWizard + + Smart playlist + Intelligente Wiedergabeliste + + + Playlist type + Art der Wiedergabenliste + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Eine intelligente Wiedergabeliste ist eine dynamische Liste von Titeln, die aus Ihrer Bibliothek stammen. Es gibt verschiedene Arten von intelligenten Wiedergabelisten, die verschiedene Möglichkeiten zur Auswahl von Songs bieten. + + + Finish + Fertigstellen + + + Choose a name for your smart playlist + Wählen Sie einen Namen für Ihre intelligente Wiedergabeliste + + + + SmartPlaylistWizardFinishPage + + Form + Formular + + + Name + + + + Use dynamic mode + Benutze den dynamischen Modus + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + Im dynamischen Modus werden bei jedem Ende eines Songs neue Titel ausgewählt und zur Wiedergabeliste hinzugefügt. + + + + SmartPlaylists + + Newest tracks + Neueste Titel + + + 50 random tracks + 50 zufällige Titel + + + Ever played + Jemals gespielt + + + Never played + Nie gespielt + + + Last played + Zuletzt gespielt + + + Most played + Am meisten gespielt + + + Favourite tracks + Lieblingstitel + + + All tracks + Alle Lieder + + + Dynamic random mix + Dynamischer Zufallsmix + + + + SmartPlaylistsViewContainer + + New smart playlist + Neue intelligente Wiedergabeliste + + + Edit smart playlist + Bearbeiten Sie die intelligente Wiedergabeliste + + + Delete smart playlist + Löschen Sie die intelligente Wiedergabeliste + + + New smart playlist... + Neue intelligente Wiedergabeliste... + + + Append to current playlist + Zur aktuellen Wiedergabeliste hinzufügen + + + Replace current playlist + Wiedergabeliste ersetzen + + + Open in new playlist + In einer neuen Wiedergabeliste öffnen + + + Queue track + Titel in die Warteschlange einreihen + + + Play next + Spiele als nächstes + + + Edit smart playlist... + Bearbeiten Sie die intelligente Wiedergabeliste... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry läuft als Snap + + + It is detected that Strawberry is running as a Snap + Es wird erkannt, dass Strawberry als Snap ausgeführt wird + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry ist langsamer und unterliegt Einschränkungen, wenn sie als Snap ausgeführt wird. Der Zugriff auf das Root-Dateisystem (/) funktioniert nicht. Möglicherweise gibt es auch andere Einschränkungen, z. B. den Zugriff auf bestimmte Geräte oder Netzwerkfreigaben. + + + For Ubuntu there is an official PPA repository available at %1. + Für Ubuntu gibt es ein offizielles PPA-Repository unter %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Für Debian und Ubuntu sind offizielle Releases verfügbar, die auch für die meisten ihrer Derivate funktionieren. Weitere Informationen finden Sie unter %1. + + + For a better experience please consider the other options above. + Für eine bessere Erfahrung berücksichtigen Sie bitte die anderen oben genannten Optionen. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Bevor Sie den Snap deinstallieren, sollten Sie die strawberry.conf und strawberry.db aus dem Ordner ~/snap kopieren, um Ihre Einstellungen nicht zu verlieren: + + + Uninstall the snap with: + Deinstalliere den Snap mit: + + + Install strawberry through PPA: + Strawberry aus PPA installieren: + + + + SomaFMService + + Getting %1 channels + Empfange %1 Kanäle. + + + + SongLoader + + You need GStreamer for this URL. + Sie brauchen GStreamer für diese URL. + + + Preload function was not set for blocking operation. + Preload Funktion war nicht gesetzt für Blockiervorgang. + + + File %1 does not exist. + Datei %1 existiert nicht. + + + CD playback is only available with the GStreamer engine. + CD Wiedergabe ist nur mit der GStreamer Implementierung verfügbar + + + Could not open file %1 for reading: %2 + Konnte Datei %1 nicht zum Lesen öffnen: %2 + + + Could not open CUE file %1 for reading: %2 + Konnte nicht CUE-Datei %1 zum Lesen öffnen: %2 + + + Could not open playlist file %1 for reading: %2 + Konnte nicht die Wiedergabeliste %1 zum Lesen öffnen: %2 + + + Couldn't create GStreamer source element for %1 + Konnte GStreamer-Quellelement für %1 nicht erzeugen + + + Couldn't create GStreamer typefind element for %1 + Konnte kein "GStreamer typefind" Element für "%1" erstellen. + + + Couldn't create GStreamer fakesink element for %1 + Konnte kein "GStreamer fakesink" Element für "%1" erstellen. + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + Konnte nicht "GStreamer source, typefind und fakesink" Elemente für %1 verlinken. + + + + SongLoaderInserter + + Error while loading audio CD. + Fehler beim Laden der Audio-CD + + + Loading tracks + Titel werden geladen + + + Loading tracks info + Titelinfo wird geladen + + + + SpotifyRequest + + Authenticating... + Authentifiziere... + + + Receiving artists... + Empfange Künstler... + + + Receiving albums... + Empfange Alben... + + + Receiving songs... + Empfange Lieder... + + + Searching... + Suche... + + + Receiving albums for %1 artist... + Empfange Alben von %1 Künstler... + + + Receiving albums for %1 artists... + Empfange Alben von %1 Künstlern... + + + Receiving songs for %1 album... + Empfange Lieder für %1 Album... + + + Receiving songs for %1 albums... + Empfange Lieder für %1 Alben... + + + Receiving album cover for %1 album... + Empfange Titelbild für %1 Album... + + + Receiving album covers for %1 albums... + Empfange Titelbilder für %1 Alben... + + + No match. + Keine Übereinstimmung. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Spotify Authentifizierung + + + Please open this URL in your browser + Bitte öffne diese URL in deinem Browser + + + Redirect missing token code or state! + Bei der Weiterleitung fehlen Token-Code oder Status! + + + Received invalid reply from web browser. + Empfange ungültige Antwort vom Webbrowser. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Aktivieren + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Einstellungen + + + Search delay + Suche verzögert + + + ms + + + + Artists search limit + Künstler Suchlimit + + + Albums search limit + Alben Suchlimit + + + Songs search limit + Lieder Suchlimit + + + Download album covers + Titelbilder herunterladen + + + Fetch entire albums when searching songs + Abrufen des ganzen Albums wenn nach Liedern gesucht wird + + + Authentication failed + Authentifizierung fehlgeschlagen + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Klicken Sie hier um Musik zu abzuholen + + + Append to current playlist + Zur aktuellen Wiedergabeliste hinzufügen + + + Replace current playlist + Wiedergabeliste ersetzen + + + Open in new playlist + In einer neuen Wiedergabeliste öffnen + + + Queue track + Titel in die Warteschlange einreihen + + + Queue to play next + In die Warteschlange, um sie als nächstes abzuspielen + + + Remove from favorites + Aus den Favoriten entfernen + + + + StreamingCollectionViewContainer + + Form + Formular + + + Close + Schließen + + + Abort + Abbrechen + + + Refresh catalogue + Bibliothek erneuern + + + + StreamingSearchModel + + Various artists + Verschiedene Interpreten + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + Künstler + + + albums + Alben + + + songs + Titel + + + Enter search terms above to find music + Oberhalb Suchkriterien eingeben um Musik zu finden + + + Configure %1... + %1 konfigurieren … + + + Append to current playlist + Zur aktuellen Wiedergabeliste hinzufügen + + + Replace current playlist + Wiedergabeliste ersetzen + + + Open in new playlist + In einer neuen Wiedergabeliste öffnen + + + Queue track + Titel in die Warteschlange einreihen + + + Add to artists + Zu Künstlern hinzufügen + + + Add to albums + Zu Alben hinzufügen + + + Add to songs + Zu den Liedern hinzufügen + + + Search for this + Nach diesem suchen + + + Group by + Sortieren nach + + + + StreamingSongsView + + Configure %1... + %1 konfigurieren … + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Künstler + + + Albums + Alben + + + Songs + Lieder + + + Search + Suche + + + Configure %1... + %1 konfigurieren … + + + + SubsonicRequest + + Retrieving albums... + Empfange Alben... + + + Retrieving songs for %1 album... + Empfange Lieder für %1 Album... + + + Retrieving songs for %1 albums... + Empfange Lieder für %1 Alben... + + + Retrieving album cover for %1 album... + Empfange Titelbild für %1 Album... + + + Retrieving album covers for %1 albums... + Empfange Titelbilder für %1 Alben... + + + Unknown error + Unbekannter Fehler + + + + SubsonicService + + Server URL is invalid. + Server URL ist ungültig. + + + Missing username or password. + Benutzername oder Passwort fehlt + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Aktivieren + + + Server URL + + + + Authentication + Authentifizierung + + + Username + Benutzername + + + Password + Passwort: + + + Authentication method: + Authentifizierungsmethode: + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Einstellungen + + + Use HTTP/2 when possible + Verwenden Sie nach Möglichkeit HTTP/2 + + + Verify server certificate + Server Zertifikat verifizieren + + + Download album covers + Titelbilder herunterladen + + + Server-side scrobbling + Serverseitiges Scrobbling + + + Test + + + + Delete songs + Lieder löschen + + + Configuration incomplete + Einstellungen nicht vollständig + + + Missing server url, username or password. + Server URL, Benutzername oder Passwort fehlt + + + Configuration incorrect + Konfiguration inkorrekt + + + Server URL is invalid. + Server URL ist ungültig. + + + Test successful! + Test erfolgreich! + + + Test failed! + Test misslungen! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Subsonic Server URL ist ungültig. + + + Missing Subsonic username or password. + Subsonic Benutzername oder Passwort fehlt + + + + SystemTrayIcon + + Pause + + + + Play + Wiedergabe + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Authentifiziere... + + + Receiving artists... + Empfange Künstler... + + + Receiving albums... + Empfange Alben... + + + Receiving songs... + Empfange Lieder... + + + Searching... + Suche... + + + Receiving albums for %1 artist... + Empfange Alben von %1 Künstler... + + + Receiving albums for %1 artists... + Empfange Alben von %1 Künstlern... + + + Receiving songs for %1 album... + Empfange Lieder für %1 Album... + + + Receiving songs for %1 albums... + Empfange Lieder für %1 Alben... + + + Receiving album cover for %1 album... + Empfange Titelbild für %1 Album... + + + Receiving album covers for %1 albums... + Empfange Titelbilder für %1 Alben... + + + No match. + Keine Übereinstimmung. + + + + TidalService + + Reply from Tidal is missing query items. + Bei der Antwort von Tidal fehlen Abfrageelemente. + + + Missing Tidal API token. + Tidal API-Token fehlt. + + + Missing Tidal username. + Tidal Benutzername fehlt. + + + Missing Tidal password. + Tidal Passwort fehlt. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Nicht bei Tidal authentifiziert und maximale Anzahl von Anmeldeversuchen erreicht. + + + Not authenticated with Tidal. + Nicht bei Tidal authentifiziert. + + + Missing Tidal API token, username or password. + Tidal API-Token, Benutzername oder Passwort fehlt. + + + + TidalSettingsPage + + Tidal + + + + Enable + Aktivieren + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Der Tidal-Support ist nicht offiziell und erfordert ein API-Token aus einer registrierten Anwendung, um zu funktionieren. Wir können Ihnen nicht helfen, diese zu bekommen. + + + Authentication + Authentifizierung + + + Use OAuth + Benutze OAuth + + + Client ID + + + + API Token + + + + Username + Benutzername + + + Password + Passwort: + + + Login + Anmelden + + + Preferences + Einstellungen + + + Audio quality + Tonqualität + + + Search delay + Suche verzögert + + + ms + + + + Artists search limit + Künstler Suchlimit + + + Albums search limit + Alben Suchlimit + + + Songs search limit + Lieder Suchlimit + + + Download album covers + Titelbilder herunterladen + + + Fetch entire albums when searching songs + Abrufen des ganzen Albums wenn nach Liedern gesucht wird + + + Album cover size + Titelbildgröße + + + Stream URL method + Datenstrom URL Methode + + + Append explicit to album title for explicit albums + "Nicht jugendfrei" zu Titeln nicht jugendfreier Alben hinzufügen + + + Configuration incomplete + Einstellungen nicht vollständig + + + Missing Tidal client ID. + Tidal Kunden ID fehlt. + + + Missing API token. + API-Token fehlt. + + + Missing username. + Fehlender Benutzername. + + + Missing password. + Fehlendes Passwort. + + + Authentication failed + Authentifizierung fehlgeschlagen + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Nicht bei Tidal authentifiziert. + + + Missing Tidal API token, username or password. + Tidal API-Token, Benutzername oder Passwort fehlt. + + + Cancelled. + Abgebrochen. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + URL mit %1 verschlüsseltem Stream von Tidal erhalten. Strawberry unterstützt derzeit keine verschlüsselten Streams. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Erhaltene URL mit verschlüsseltem Stream von Tidal. Strawberry unterstützt derzeit keine verschlüsselten Streams. + + + + TrackSelectionDialog + + Tag fetcher + Schlagwortsammler + + + Sorry + Entschuldigung + + + Strawberry was unable to find results for this file + Strawberry konnte keine Ergebnisse für diese Datei finden. + + + Select best possible match + Bitte die bestmögliche Übereinstimmung auswählen + + + Track + Titel-Nr. + + + Year + Jahr + + + Title + Titel + + + Artist + Interpret + + + Album + + + + Previous + Vorheriger + + + Next + Weiter + + + Original tags + Ursprüngliche Schlagworte + + + Suggested tags + Vorgeschlagene Schlagworte + + + Saving tracks + Titel werden gespeichert + + + + TrackSlider + + Form + Formular + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Klicken Sie, um zwischen verbleibender und Gesamtzeit zu wechseln + + + + TranscodeDialog + + Transcode Music + Musik umwandeln + + + Files to transcode + Dateien zum Umwandeln + + + Filename + Dateiname + + + Directory + Verzeichnis + + + Add... + Hinzufügen... + + + Remove + Entfernen + + + Add all tracks from a directory and all its subdirectories + Alle Titel aus einem Verzeichnis, inklusive Unterverzeichnisse, hinzufügen + + + Import... + Importieren + + + Output options + Ausgabeoptionen + + + Audio format + Tonformat + + + Options... + Optionen … + + + Destination + Ziel: + + + Alongside the originals + Neben den ursprünglichen Dateien + + + Select... + Auswählen … + + + Progress + Fortschritt + + + Details... + Details … + + + Clear + Leeren + + + Start transcoding + Umwandeln starten + + + %n remaining + + %n verbleibend + + + + + %n finished + + %n abgeschlossen + + + + + %n failed + + %n fehlgeschlagen + + + + + Add files to transcode + Dateien zum Umwandeln hinzufügen + + + Music + Musik + + + Open a directory to import music from + Verzeichnis öffnen, um Musik von dort zu importieren + + + Add folder + Ordner hinzufügen + + + + TranscodeLogDialog + + Transcoder Log + Umwandlungsprotokoll + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + GStreamer-Element »%1« konnte nicht erstellt werden. Stellen Sie sicher, dass alle nötigen GStreamer-Erweiterungen installiert sind. + + + Successfully written %1 + %1 erfolgreich geschrieben + + + Transcoding %1 files using %2 threads + %1 Dateien werden mit %2 Prozessen umgewandelt + + + Error processing %1: %2 + Fehler bei %1: %2 + + + Starting %1 + Starte %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Es konnte kein Kodierer für %1 gefunden werden. Prüfen Sie, ob die erforderlichen GStreamer-Erweiterungen installiert sind. + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Es konnte kein Multiplexer für %1 gefunden werden. Prüfen Sie ob die erforderlichen GStreamer-Erweiterungen installiert sind. + + + + TranscoderOptionsAAC + + Form + Formular + + + Bitrate + + + + kbps + kBit/s + + + Profile + Profil + + + Main profile (MAIN) + Hauptprofil (MAIN) + + + Low complexity profile (LC) + Geringes Komplexitätsprofil (LC) + + + Scalable sampling rate profile (SSR) + Skalierbares Abtastratenprofil (SSR) + + + Long term prediction profile (LTP) + Langzeitvorhersageprofil (LTP) + + + Use temporal noise shaping + Zeitliche Rauschformung verwenden + + + Allow mid/side encoding + Kodierung der Mitten/Seiten zulassen + + + Block type + Blocktyp + + + Normal block type + Normaler Blocktyp + + + No short blocks + Keine kurzen Blöcke + + + No long blocks + Keine langen Blöcke + + + + TranscoderOptionsASF + + Form + Formular + + + Bitrate + + + + kbps + kBit/s + + + + TranscoderOptionsDialog + + Transcoding options + Umwandlungsoptionen + + + + TranscoderOptionsFLAC + + Form + Formular + + + Quality + Sound quality + Qualität + + + Fast + Schnell + + + Best + Optimal + + + + TranscoderOptionsMP3 + + Form + Formular + + + Optimize for &quality + Optimiere auf &Qualität + + + Quality + Sound quality + Qualität + + + Opti&mize for bitrate + Opti&miere auf Bitrate + + + Bitrate + + + + kbps + kBit/s + + + Constant bitrate + Konstante Bitrate + + + Encoding engine quality + Kodierungsqualität + + + Fast + Schnell + + + Standard + + + + High + Hoch + + + Force mono encoding + Monokodierung erzwingen + + + + TranscoderOptionsOpus + + Form + Formular + + + Bitrate + + + + kbps + kBit/s + + + + TranscoderOptionsSpeex + + Form + Formular + + + Quality + Sound quality + Qualität + + + Bitrate + + + + automatic + automatisch + + + kbps + kBit/s + + + Average bitrate + Durchschnittliche Bitrate + + + disabled + abgeschaltet + + + Encoding mode + Kodierungsmodus + + + Auto + Automatisch + + + Ultra wide band (UWB) + Ulte Weit Band (UWB) + + + Wide band (WB) + Breitband (WB) + + + Narrow band (NB) + Schmal-Band (NB) + + + Variable bit rate + Variable Bitrate + + + Voice activity detection + Sprachaktivitätserkennung + + + Discontinuous transmission + Unterbrochene Übertragung + + + Encoding complexity + Kodierungkomplexität + + + Frames per buffer + Frames pro Puffer + + + + TranscoderOptionsVorbis + + Form + Formular + + + Quality + Sound quality + Qualität + + + Use bitrate management engine + Bitratenverwaltung verwenden + + + Target bitrate + Ziel-Bitrate + + + kbps + kBit/s + + + Minimum bitrate + Minimale Bitrate + + + disabled + abgeschaltet + + + Maximum bitrate + Maximale Bitrate + + + + TranscoderOptionsWavPack + + Form + Formular + + + + TranscoderSettingsPage + + Transcoding + Umwandlung + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Diese Einstellungen werden im »Musik umwandeln«-Dialog und beim Umwandeln von Musik vor der Übertragung auf ein Gerät verwendet. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + D-Bus Pfad + + + Serial number + Seriennummer + + + Mount points + Einhängepunkte + + + Partition label + Partitionsbezeichnung + + + UUID + + + + + UserPassDialog + + Enter username and password + Geben Sie Benutzername und Passwort ein + + + Username + Benutzername + + + Password + Passwort: + + + diff --git a/src/translations/strawberry_en_US.ts b/src/translations/strawberry_en_US.ts new file mode 100644 index 00000000..4c2a3a0f --- /dev/null +++ b/src/translations/strawberry_en_US.ts @@ -0,0 +1,7565 @@ + + + + + About + + About + + + + About Strawberry + + + + Version %1 + + + + Strawberry is a music player and music collection organizer. + + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + + + + Contributors + + + + Clementine authors + + + + Clementine contributors + + + + Thanks to + + + + Thanks to all the other Amarok and Clementine contributors. + + + + + AddStreamDialog + + Add Stream + + + + Enter the URL of a stream: + + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + + All files (*) + + + + Load cover from disk... + + + + Save cover to disk... + + + + Load cover from URL... + + + + Search for album covers... + + + + Unset cover + + + + Delete cover + + + + Clear cover + + + + Show fullsize... + + + + Search automatically + + + + Load cover from disk + + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + + + + Save album cover + + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + + + + Output + + + + Enter a filename for exported covers (no extension): + + + + Export downloaded covers + + + + Export embedded covers + + + + Existing covers + + + + Do not overwrite + + + + O&verwrite all + + + + Overwrite s&maller ones only + + + + Size + + + + Scale size + + + + Size: + + + + Pixel + + + + + AlbumCoverManager + + Abort + + + + All albums + + + + Albums with covers + + + + Albums without covers + + + + Really cancel? + + + + Closing this window will stop searching for album covers. + + + + Don't stop! + + + + All artists + + + + Various artists + + + + Got %1 covers out of %2 (%3 failed) + + + + %1 transferred + + + + Export finished + + + + No covers to export. + + + + Exported %1 covers out of %2 (%3 skipped) + + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + + + + Artist + + + + Album + + + + Search + + + + Covers from %1 + + + + Abort + + + + + AnalyzerContainer + + Framerate + + + + Low (%1 fps) + + + + Medium (%1 fps) + + + + High (%1 fps) + + + + Super high (%1 fps) + + + + No analyzer + + + + Block analyzer + + + + Boom analyzer + + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + + + + Style + + + + Use system theme icons + + + + Settings require restart. + + + + Tabbar colors + + + + &Use the system default color + + + + Use custom color + + + + Use gradient background + + + + Select tabbar color: + + + + Background image + + + + Default bac&kground image + + + + &No background image + + + + The album cover of the currently playing song + + + + Albu&m cover + + + + Custom image: + + + + Browse... + + + + Position + + + + Upper Left + + + + Upper Right + + + + Middle + + + + Bottom Left + + + + Bottom Right + + + + Max cover size + + + + Stretch image to fill playlist + + + + Keep aspect ratio + + + + Do not cut image + + + + Blur amount + + + + 0px + + + + Opacity + + + + 40% + + + + Icon sizes + + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + + + + + BackendSettingsPage + + Backend + + + + Audio output + + + + Device + + + + Output + + + + Engine + + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + + + + Buffer duration + + + + High watermark + + + + Low watermark + + + + Defaults + + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + + + + Replay Gain mode + + + + Radio (equal loudness for all tracks) + + + + Album (ideal loudness for all tracks) + + + + Pre-amp + + + + Apply compression to prevent clipping + + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + + + + Fade out when stopping a track + + + + Cross-fade when changing tracks manually + + + + Cross-fade when changing tracks automatically + + + + Except between tracks on the same album or in the same CUE sheet + + + + Fading duration + + + + Fade out on pause / fade in on resume + + + + + BehaviourSettingsPage + + Behavior + + + + Show system tray icon + + + + Keep running in the background when the window is closed + + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + + + + Show playing widget + + + + On startup + + + + Remember from &last time + + + + Show the main window + + + + Hide the main window + + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + + + + Use the system default + + + + You will need to restart Strawberry if you change the language. + + + + Using the menu to add a song will... + + + + Never start playing + + + + Play if there is nothing already playing + + + + Always start playing + + + + Pressing "Previous" in player will... + + + + Jump to previous song right away + + + + Restart song, then jump to previous if pressed again + + + + Double clicking a song will... + + + + Append to the playlist + + + + Replace the playlist + + + + Open in new playlist + + + + Add to the queue + + + + Double clicking a song in the playlist will... + + + + Change the currently playing song + + + + Seeking using a keyboard shortcut or mouse wheel + + + + Time step + + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + + + + Enter search terms here + + + + MenuPopupToolButton + + + + Entire collection + + + + Added today + + + + Added this week + + + + Added within three months + + + + Added this year + + + + Added this month + + + + Save current grouping + + + + Manage saved groupings + + + + Show + + + + Group by + + + + Display options + + + + Group by Album artist/Album + + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + + + + Group by Artist/Album - Disc + + + + Group by Artist/Year - Album + + + + Group by Artist/Year - Album - Disc + + + + Group by Genre/Album artist/Album + + + + Group by Genre/Artist/Album + + + + Group by Album Artist + + + + Group by Artist + + + + Group by Album + + + + Group by Genre/Album + + + + Advanced grouping... + + + + Grouping Name + + + + Grouping name: + + + + + CollectionModel + + Various artists + + + + Loading... + + + + Unknown + + + + + CollectionSettingsPage + + Collection + + + + These folders will be scanned for music to make up your collection + + + + Add new folder... + + + + Remove folder + + + + Automatic updating + + + + Update the collection when Strawberry starts + + + + Monitor the collection for changes + + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + + + + Display options + + + + Automatically open single categories in the collection tree + + + + Show dividers + + + + Show album cover art in collection + + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + + + + Size + + + + Enable Disk Cache + + + + Disk Cache Size + + + + Current disk cache in use: + + + + Clear Disk Cache + + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + + + + Add directory... + + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + + + + Click here to add some music + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Queue to play next + + + + Search for this + + + + Organize files... + + + + Copy to device... + + + + Delete from disk... + + + + Edit track information... + + + + Edit tracks information... + + + + Show in file browser... + + + + Rescan song(s) + + + + Show in various artists + + + + Don't show in various artists + + + + There are other songs in this album + + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + + + + None of the selected songs were suitable for copying to a device + + + + + CollectionViewContainer + + Form + + + + + CollectionWatcher + + Updating collection + + + + Updating %1 + + + + + Console + + Console + + + + Run + + + + + ContextSettingsPage + + Context + + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + + + + Summary + + + + Enable Items + + + + Album + + + + Technical Data + + + + Song Lyrics + + + + Automatically search for album cover + + + + Automatically search for song lyrics + + + + Font for headline + + + + Font + + + + Font size + + + + pt + + + + Preview + + + + Font for data and lyrics + + + + Add song artist tag + + + + Add song album tag + + + + Add song title tag + + + + Add song albumartist tag + + + + Add song year tag + + + + Add song composer tag + + + + Add song performer tag + + + + Add song grouping tag + + + + Add song disc tag + + + + Add song track tag + + + + Add song genre tag + + + + Add song length tag + + + + Add song play count + + + + Add song skip count + + + + Add a new line if supported by the notification type + + + + %filename% + + + + Add song filename + + + + %url% + + + + Add song URL + + + + %rating% + + + + Add song rating + + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + + + + Length + + + + Samplerate + + + + Bit depth + + + + Bitrate + + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + + + + Show song technical data + + + + Show song lyrics + + + + Automatically search for song lyrics + + + + No song playing + + + + %1 song + + + + %1 songs + + + + %1 artist + + + + %1 artists + + + + %1 album + + + + %1 albums + + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + + + + Enter a URL to download a cover from the Internet: + + + + Fetching cover error + + + + The site you requested does not exist! + + + + The site you requested is not an image! + + + + + CoverManager + + Cover Manager + + + + Enter search terms here + + + + MenuPopupToolButton + + + + View + + + + Total albums: + + + + Without cover: + + + + 0 + + + + Fetch Missing Covers + + + + Export Covers + + + + Fetch automatically + + + + Load + + + + Add to playlist + + + + + CoverSearchStatisticsDialog + + Fetch completed + + + + Got %1 covers out of %2 (%3 failed) + + + + Covers from %1 + + + + Total network requests made + + + + Average image size + + + + Total bytes transferred + + + + + CoversSettingsPage + + Covers + + + + Cover providers + + + + Choose the providers you want to use when searching for covers. + + + + Move up + + + + Move down + + + + Authentication + + + + Login + + + + Album cover types + + + + Saving album covers + + + + Save album covers in album directory + + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + + + + Pattern + + + + Random + + + + Overwrite existing file + + + + Lowercase filename + + + + Replace spaces with dashes + + + + Use Tidal settings to authenticate. + + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + + + + %1 does not need authentication. + + + + No provider selected. + + + + Authentication failed + + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + + + + Database corruption detected. + + + + Backing up database + + + + + DeleteConfirmationDialog + + Delete files + + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + + + + + DeleteFiles + + Deleting files + + + + + DeviceItemDelegate + + Updating %1%... + + + + Not connected + + + + Not mounted - double click to mount + + + + Double click to open + + + + %1 song%2 + + + + + DeviceManager + + Connect device + + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + + + + This device will not work properly + + + + This is an MTP device, but you compiled Strawberry without libmtp support. + + + + If you continue, this device will work slowly and songs copied to it may not work. + + + + This is an iPod, but you compiled Strawberry without libgpod support. + + + + This type of device is not supported: %1 + + + + + DeviceProperties + + Device Properties + + + + Information + + + + Name + + + + Icon + + + + Hardware information + + + + Hardware information is only available while the device is connected. + + + + File formats + + + + Supported formats + + + + This device supports the following file formats: + + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + + + + Do not convert any music + + + + Convert any music that the device can't play + + + + Convert all music + + + + Preferred format + + + + This device must be connected and opened before Strawberry can see what file formats it supports. + + + + Open device + + + + Querying device... + + + + Model + + + + Manufacturer + + + + + DeviceView + + Safely remove device + + + + Forget device + + + + Device properties... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Copy to collection... + + + + Delete from device... + + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + + + + Delete files + + + + These files will be deleted from the device, are you sure you want to continue? + + + + + DeviceViewContainer + + Form + + + + + DynamicPlaylistControls + + Dynamic mode is on + + + + New tracks will be added automatically. + + + + Expand + + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + + + + Summary + + + + Date created + + + + Art Automatic + + + + Date modified + + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + + + + Length + + + + Play count + + + + Bit depth + + + + EBU R 128 integrated loudness + + + + Bit rate + + + + Skip count + + + + Sample rate + + + + Path + + + + Filename + + + + Art Unset + + + + File size + + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + + + + Grouping + + + + Album artist + + + + Album + + + + Year + + + + Title + + + + Artist + + + + Composer + + + + Complete tags automatically + + + + Genre + + + + Comment + + + + Performer + + + + Compilation + + + + Track + + + + Rating + + + + Lyrics + + + + Complete lyrics automatically + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + Previous + + + + Next + + + + Saving tracks + + + + Loading tracks + + + + %1 songs selected. + + + + kbps + + + + Unknown + + + + Yes + + + + No + + + + None + + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + + Equalizer + + Equalizer + + + + Preset: + + + + Save preset + + + + Delete preset + + + + Enable equalizer + + + + Enable stereo balancer + + + + Left + + + + Balance + + + + Right + + + + Pre-amp + + + + Custom + + + + Classical + + + + Club + + + + Dance + + + + Full Bass + + + + Full Treble + + + + Full Bass + Treble + + + + Laptop/Headphones + + + + Large Hall + + + + Live + + + + Party + + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + + + + Name + + + + Are you sure you want to delete the "%1" preset? + + + + + EqualizerSlider + + Equalizer + + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + + + + + FancyTabWidget + + Large sidebar + + + + Icons sidebar + + + + Small sidebar + + + + Plain sidebar + + + + Tabs on top + + + + Icons on top + + + + + FileTypeItemDelegate + + Unknown + + + + + FileView + + Form + + + + + FileViewList + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Copy to collection... + + + + Move to collection... + + + + Copy to device... + + + + Delete from disk... + + + + Edit track information... + + + + Show in file browser... + + + + + FreeSpaceBar + + Available + + + + New songs + + + + Exceeded by + + + + Used + + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + + + + An error occurred loading the iTunes database + + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + + + + Device + + + + URI + + + + + GlobalShortcutGrabber + + Press a key + + + + Press a key combination to use for %1... + + + + + GlobalShortcutsManager + + Play + + + + Pause + + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + + + + Action + Category label + + + + Shortcut + + + + Shortcut for %1 + + + + &None + + + + &Default + + + + &Custom + + + + Change shortcut... + + + + The "%1" command could not be started. + + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + + + + First level + + + + None + + + + Artist + + + + Album artist + + + + Album + + + + Album - Disc + + + + Disc + + + + Format + + + + Genre + + + + Year + + + + Year - Album + + + + Year - Album - Disc + + + + Original year + + + + Original year - Album + + + + Composer + + + + Performer + + + + Grouping + + + + File type + + + + Sample rate + + + + Bit depth + + + + Bitrate + + + + Second level + + + + Third level + + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + + + + + LastFMImport + + Missing username, please login to last.fm first! + + + + + LastFMImportDialog + + Import data from last.fm + + + + Choose data to import from last.fm + + + + Last played + + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + + + + Cancel + + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + + + + You are not signed in. + + + + Sign out + + + + Signing in... + + + + You are signed in. + + + + You are signed in as %1. + + + + Expires on %1 + + + + + LyricsSettingsPage + + Lyrics + + + + Lyrics providers + + + + Choose the providers you want to use when searching for lyrics. + + + + Move up + + + + Move down + + + + Authentication + + + + Login + + + + No provider selected. + + + + Authentication failed + + + + + MainWindow + + Strawberry Music Player + + + + MenuPopupToolButton + + + + &Music + + + + P&laylist + + + + Help + + + + &Tools + + + + Previous track + + + + F5 + + + + &Play + + + + F6 + + + + &Stop + + + + F7 + + + + &Next track + + + + F8 + + + + &Quit + + + + Ctrl+Q + + + + Stop after this track + + + + Ctrl+Alt+V + + + + Love + + + + &Clear playlist + + + + Clear playlist + + + + Ctrl+K + + + + Edit track information... + + + + Ctrl+E + + + + Renumber tracks in this order... + + + + Set value for all selected tracks... + + + + Edit tag... + + + + &Settings... + + + + Ctrl+P + + + + &About Strawberry + + + + F1 + + + + S&huffle playlist + + + + Ctrl+H + + + + &Add file... + + + + Ctrl+Shift+A + + + + &Open file... + + + + Open audio &CD... + + + + &Cover Manager + + + + C&onsole + + + + &Shuffle mode + + + + &Repeat mode + + + + Remove from playlist + + + + &Equalizer + + + + &Transcode Music + + + + Add &folder... + + + + &Jump to the currently playing track + + + + Ctrl+J + + + + &New playlist + + + + Ctrl+N + + + + Save &playlist... + + + + Ctrl+S + + + + &Load playlist... + + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + + + + Go to previous playlist tab + + + + &Update changed collection folders + + + + About &Qt + + + + &Mute + + + + Ctrl+M + + + + &Do a full collection rescan + + + + Stop collection scan + + + + Complete tags automatically... + + + + Ctrl+T + + + + Toggle scrobbling + + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + + + + Add file to transcoder + + + + Add stream... + + + + Show sidebar + + + + Import data from last.fm... + + + + All Files (*) + + + + Context + + + + Collection + + + + Queue + + + + Playlists + + + + Smart playlists + + + + Files + + + + Radios + + + + Devices + + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + + + + Show only duplicates + + + + Show only untagged + + + + Configure collection... + + + + Play + + + + Toggle queue status + + + + Queue selected tracks to play next + + + + Toggle skip status + + + + Rescan song(s)... + + + + Copy URL(s)... + + + + Show in collection... + + + + Show in file browser... + + + + Organize files... + + + + Copy to collection... + + + + Move to collection... + + + + Copy to device... + + + + Delete from disk... + + + + Check for updates... + + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + + + + Dequeue track + + + + Dequeue selected tracks + + + + Queue track + + + + Queue selected tracks + + + + Queue to play next + + + + Unskip track + + + + Unskip selected tracks + + + + Skip track + + + + Skip selected tracks + + + + Set %1 to "%2"... + + + + Edit tag "%1"... + + + + Add to another playlist + + + + New playlist + + + + Add file + + + + Music + + + + Add folder + + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + + + + None of the selected songs were suitable for copying to a device + + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + + + + Would you like to run a full rescan right now? + + + + Collection rescan notice + + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + + + + + MimeData + + Playlist + + + + + MoodbarProxyStyle + + Show moodbar + + + + Moodbar style + + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + + + + Moodbar style + + + + Save the .mood files directly in the songs folders + + + + Enabled + + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + + + + Error connecting MTP device %1 + + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + + + + &Use the system proxy settings + + + + Direct internet connection + + + + &Manual proxy configuration + + + + HTTP proxy + + + + SOCKS proxy + + + + Port + + + + Use authentication + + + + Username + + + + Password + + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + + + + Strawberry can show a message when the track changes. + + + + Notification type + + + + Disabled + Refers to a disabled notification type in Notification settings. + + + + Show a &native desktop notification + + + + Show a pretty OSD + + + + Show a popup fro&m the system tray + + + + General settings + + + + Popup duration + + + + seconds + + + + Disable duration + + + + Show a notification when I change the volume + + + + Show a notification when I change the repeat/shuffle mode + + + + Show a notification when I pause playback + + + + Show a notification when I resume playback + + + + Include album art in the notification + + + + Custom message settings + + + + Use a custom message for notifications + + + + Preview + + + + MenuPopupToolButton + + + + Summary + + + + Body + + + + Pretty OSD options + + + + Background color + + + + Text options + + + + Choose font... + + + + Choose color... + + + + Background opacity + + + + Basic Blue + + + + Strawberry Red + + + + Custom... + + + + Enable fading + + + + Add song artist tag + + + + Add song album tag + + + + Add song title tag + + + + Add song albumartist tag + + + + Add song year tag + + + + Add song composer tag + + + + Add song performer tag + + + + Add song grouping tag + + + + Add song disc tag + + + + Add song track tag + + + + Add song genre tag + + + + Add song length tag + + + + Add song play count + + + + Add song skip count + + + + Add song rating + + + + Add a new line if supported by the notification type + + + + %filename% + + + + Add song filename + + + + %url% + + + + Add song URL + + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + + + + Drag to reposition + + + + + OSDBase + + disc %1 + + + + track %1 + + + + Paused + + + + Stopped + + + + Stop playing after track: %1 + + + + On + + + + Off + + + + Playlist finished + + + + Volume %1% + + + + Don't shuffle + + + + Shuffle all + + + + Shuffle tracks in this album + + + + Shuffle albums + + + + Don't repeat + + + + Repeat track + + + + Repeat album + + + + Repeat playlist + + + + Stop after every track + + + + Intro tracks + + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + + + + After copying... + + + + Keep the original files + + + + Delete the original files + + + + Naming options + + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + + + + Insert... + + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + + + + Restrict characters to ASCII + + + + Allow extended ASCII characters + + + + Replace spaces with underscores + + + + Overwrite existing files + + + + Copy album cover artwork + + + + Preview + + + + Loading... + + + + Safely remove the device after copying + + + + Title + + + + Album + + + + Artist + + + + Artist's initial + + + + Album artist + + + + Composer + + + + Performer + + + + Grouping + + + + Track + + + + Disc + + + + Year + + + + Original year + + + + Genre + + + + Comment + + + + Length + + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + + + + Bit depth + + + + File extension + + + + + OrganizeErrorDialog + + Error copying songs + + + + There were problems copying some songs. The following files could not be copied: + + + + Error deleting songs + + + + There were problems deleting some songs. The following files could not be deleted: + + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + + + + Large album cover + + + + Fit cover to width + + + + Show above status bar + + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + + + + Artist + + + + Album + + + + Track + + + + Disc + + + + Length + + + + Year + + + + Original Year + + + + Genre + + + + Album Artist + + + + Composer + + + + Performer + + + + Grouping + + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + + + + Source + + + + Mood + + + + Rating + + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + + + + Undo + + + + Redo + + + + Playlist + + + + Load playlist + + + + No matches found. Clear the search box to show the whole playlist again. + + + + + PlaylistDelegateBase + + stop + + + + + PlaylistGeneratorInserter + + Loading smart playlist + + + + + PlaylistHeader + + &Hide... + + + + &Stretch columns to fit window + + + + &Reset columns to default + + + + &Lock rating + + + + &Align text + + + + &Left + + + + &Center + + + + &Right + + + + &Hide %1 + + + + + PlaylistListContainer + + Form + + + + New folder + + + + Delete + + + + Save playlist + Save playlist menu action. + + + + Copy to device... + + + + Enter the name of the folder + + + + Playlist + + + + Copy to device + + + + Playlist must be open first. + + + + Remove playlists + + + + You are about to remove %1 playlists from your favorites, are you sure? + + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + + + + Favorited playlists will be saved here + + + + + PlaylistManager + + Playlist + + + + Couldn't create playlist + + + + Save playlist + Title of the playlist save dialog. + + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + + + + %n track(s) + + + + + + + Unknown + + + + Various artists + + + + + PlaylistParser + + All playlists (%1) + + + + %1 playlists (%2) + + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + + + + File paths + + + + This can be changed later through the preferences + + + + Remember my choice + + + + Automatic + + + + Relative + + + + Absolute + + + + + PlaylistSequence + + Repeat + + + + Shuffle + + + + Don't repeat + + + + Repeat track + + + + Repeat album + + + + Repeat playlist + + + + Stop after each track + + + + Intro tracks + + + + Don't shuffle + + + + Shuffle tracks in this album + + + + Shuffle all + + + + Shuffle albums + + + + + PlaylistSettingsPage + + Playlist + + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + + + + Continue to the next item in the playlist if a song is unavailable + + + + Grey out unavailable songs in playlists on playback + + + + Grey out unavailable songs in playlists on startup + + + + Automatically select current playing track + + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + + + + A&utomatic + + + + Absolu&te + + + + Re&lative + + + + As&k when saving + + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + + + + Enable song metadata inline edition with click + + + + Write metadata when saving playlists + + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + + + + Rename playlist... + + + + Save playlist... + + + + Rename playlist + + + + Enter a new name for this playlist + + + + Remove playlist + + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + + + + Warn me when closing a playlist tab + + + + This option can be changed in the "Behavior" preferences + + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + + + + + PlaylistUndoCommands::SortItems + + sort songs + + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + + + + options + + + + URL(s) + + + + Player options + + + + Start the playlist currently playing + + + + Play if stopped, pause if playing + + + + Pause playback + + + + Stop playback + + + + Stop playback after current track + + + + Skip backwards in playlist + + + + Skip forwards in playlist + + + + Set the volume to <value> percent + + + + Increase the volume by 4 percent + + + + Decrease the volume by 4 percent + + + + Increase the volume by <value> percent + + + + Decrease the volume by <value> percent + + + + Seek the currently playing track to an absolute position + + + + Seek the currently playing track by a relative amount + + + + Restart the track, or play the previous track if within 8 seconds of start. + + + + Playlist options + + + + Create a new playlist with files + + + + Append files/URLs to the playlist + + + + Loads files/URLs, replacing current playlist + + + + Play the <n>th track in the playlist + + + + Play given playlist + + + + Other options + + + + Display the on-screen-display + + + + Toggle visibility for the pretty on-screen-display + + + + Change the language + + + + Resize the window + + + + Equivalent to --log-levels *:1 + + + + Equivalent to --log-levels *:3 + + + + Comma separated list of class:level, level is 0-3 + + + + Print out version information + + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + + + + 1 day + + + + %1 days + + + + Today + + + + Yesterday + + + + %1 days ago + + + + Tomorrow + + + + In %1 days + + + + Next week + + + + In %1 weeks + + + + Show in file browser + + + + Too many songs selected. + + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + + + + after + + + + before + + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + + + + contains + + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + + + + not empty + + + + Comment + + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + + + + Days + + + + Weeks + + + + Months + + + + Years + + + + Normal + + + + Angry + + + + Frozen + + + + Happy + + + + System colors + + + + + QWidget + + Clear + + + + Reset + + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Unknown error + + + + + QobuzService + + Authenticating... + + + + Maximum number of login attempts reached. + + + + Missing Qobuz app ID. + + + + Missing Qobuz username. + + + + Missing Qobuz password. + + + + Not authenticated with Qobuz. + + + + Missing Qobuz app ID or secret. + + + + + QobuzSettingsPage + + Qobuz + + + + Enable + + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + + + + App ID + + + + Username + + + + Password + + + + App Secret + + + + Login + + + + Preferences + + + + Audio format + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Base64 encoded secret + + + + Configuration incomplete + + + + Missing app id. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + + + + Cancelled. + + + + + Queue + + %n track(s) + + + + + + + + QueueView + + QueueView + + + + Move down + + + + Ctrl+Up + + + + Move up + + + + Ctrl+Down + + + + Remove + + + + Clear + + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + + + + Remove + + + + Ctrl+Up + + + + Name + + + + First level + + + + Second Level + + + + Third Level + + + + None + + + + Album artist + + + + Artist + + + + Album + + + + Album - Disc + + + + Year - Album + + + + Year - Album - Disc + + + + Original year - Album + + + + Original year - Album - Disc + + + + Disc + + + + Year + + + + Original year + + + + Genre + + + + Composer + + + + Performer + + + + Grouping + + + + File type + + + + Format + + + + Sample rate + + + + Bit depth + + + + Bitrate + + + + Unknown + + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + + + + Show love button + + + + Submit scrobbles every + + + + seconds + + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + + + + Subsonic + + + + Local file + + + + Tidal + + + + Device + + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + + + + Radio Paradise + + + + Unknown + + + + Last.fm + + + + Login + + + + Libre.fm + + + + Listenbrainz + + + + User token: + + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + + + + Open URL in web browser? + + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + + + + Could not open URL. Please open this URL in your browser + + + + Invalid reply from web browser. Missing token. + + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + + + + General + + + + User interface + + + + Streaming + + + + + SmartPlaylistQuerySearchPage + + Form + + + + Search mode + + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + + + + + SmartPlaylistQuerySortPage + + Form + + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + + + + Show all the songs + + + + Only show the first + + + + songs + + + + + SmartPlaylistQueryWizardPlugin + + Collection search + + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + + + + A song will be included in the playlist if it matches these conditions. + + + + Search options + + + + Choose how the playlist is sorted and how many songs it will contain. + + + + + SmartPlaylistSearchPreview + + Form + + + + Preview + + + + Loading... + + + + %1 songs found (showing %2) + + + + %1 songs found + + + + + SmartPlaylistSearchTermWidget + + Form + + + + and + + + + ago + + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + + + + + SmartPlaylistWizard + + Smart playlist + + + + Playlist type + + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + + + + Finish + + + + Choose a name for your smart playlist + + + + + SmartPlaylistWizardFinishPage + + Form + + + + Name + + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + + + + 50 random tracks + + + + Ever played + + + + Never played + + + + Last played + + + + Most played + + + + Favourite tracks + + + + All tracks + + + + Dynamic random mix + + + + + SmartPlaylistsViewContainer + + New smart playlist + + + + Edit smart playlist + + + + Delete smart playlist + + + + New smart playlist... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Play next + + + + Edit smart playlist... + + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + + + + Loading tracks + + + + Loading tracks info + + + + + SpotifyRequest + + Authenticating... + + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Authentication failed + + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Queue to play next + + + + Remove from favorites + + + + + StreamingCollectionViewContainer + + Form + + + + Close + + + + Abort + + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + + + + albums + + + + songs + + + + Enter search terms above to find music + + + + Configure %1... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Add to artists + + + + Add to albums + + + + Add to songs + + + + Search for this + + + + Group by + + + + + StreamingSongsView + + Configure %1... + + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + + + + Albums + + + + Songs + + + + Search + + + + Configure %1... + + + + + SubsonicRequest + + Retrieving albums... + + + + Retrieving songs for %1 album... + + + + Retrieving songs for %1 albums... + + + + Retrieving album cover for %1 album... + + + + Retrieving album covers for %1 albums... + + + + Unknown error + + + + + SubsonicService + + Server URL is invalid. + + + + Missing username or password. + + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + + + + Server URL + + + + Authentication + + + + Username + + + + Password + + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + + + + Use HTTP/2 when possible + + + + Verify server certificate + + + + Download album covers + + + + Server-side scrobbling + + + + Test + + + + Delete songs + + + + Configuration incomplete + + + + Missing server url, username or password. + + + + Configuration incorrect + + + + Server URL is invalid. + + + + Test successful! + + + + Test failed! + + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + + + + Missing Subsonic username or password. + + + + + SystemTrayIcon + + Pause + + + + Play + + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + + + + Missing Tidal username. + + + + Missing Tidal password. + + + + Not authenticated with Tidal and reached maximum number of login attempts. + + + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + + TidalSettingsPage + + Tidal + + + + Enable + + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + + + + Use OAuth + + + + Client ID + + + + API Token + + + + Username + + + + Password + + + + Login + + + + Preferences + + + + Audio quality + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Album cover size + + + + Stream URL method + + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + + + + Missing Tidal client ID. + + + + Missing API token. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + Cancelled. + + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + + + + Sorry + + + + Strawberry was unable to find results for this file + + + + Select best possible match + + + + Track + + + + Year + + + + Title + + + + Artist + + + + Album + + + + Previous + + + + Next + + + + Original tags + + + + Suggested tags + + + + Saving tracks + + + + + TrackSlider + + Form + + + + 0:00:00 + + + + Click to toggle between remaining time and total time + + + + + TranscodeDialog + + Transcode Music + + + + Files to transcode + + + + Filename + + + + Directory + + + + Add... + + + + Remove + + + + Add all tracks from a directory and all its subdirectories + + + + Import... + + + + Output options + + + + Audio format + + + + Options... + + + + Destination + + + + Alongside the originals + + + + Select... + + + + Progress + + + + Details... + + + + Clear + + + + Start transcoding + + + + %n remaining + + + + + + + %n finished + + + + + + + %n failed + + + + + + + Add files to transcode + + + + Music + + + + Open a directory to import music from + + + + Add folder + + + + + TranscodeLogDialog + + Transcoder Log + + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + + + + Successfully written %1 + + + + Transcoding %1 files using %2 threads + + + + Error processing %1: %2 + + + + Starting %1 + + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + + + + + TranscoderOptionsAAC + + Form + + + + Bitrate + + + + kbps + + + + Profile + + + + Main profile (MAIN) + + + + Low complexity profile (LC) + + + + Scalable sampling rate profile (SSR) + + + + Long term prediction profile (LTP) + + + + Use temporal noise shaping + + + + Allow mid/side encoding + + + + Block type + + + + Normal block type + + + + No short blocks + + + + No long blocks + + + + + TranscoderOptionsASF + + Form + + + + Bitrate + + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + + + + + TranscoderOptionsFLAC + + Form + + + + Quality + Sound quality + + + + Fast + + + + Best + + + + + TranscoderOptionsMP3 + + Form + + + + Optimize for &quality + + + + Quality + Sound quality + + + + Opti&mize for bitrate + + + + Bitrate + + + + kbps + + + + Constant bitrate + + + + Encoding engine quality + + + + Fast + + + + Standard + + + + High + + + + Force mono encoding + + + + + TranscoderOptionsOpus + + Form + + + + Bitrate + + + + kbps + + + + + TranscoderOptionsSpeex + + Form + + + + Quality + Sound quality + + + + Bitrate + + + + automatic + + + + kbps + + + + Average bitrate + + + + disabled + + + + Encoding mode + + + + Auto + + + + Ultra wide band (UWB) + + + + Wide band (WB) + + + + Narrow band (NB) + + + + Variable bit rate + + + + Voice activity detection + + + + Discontinuous transmission + + + + Encoding complexity + + + + Frames per buffer + + + + + TranscoderOptionsVorbis + + Form + + + + Quality + Sound quality + + + + Use bitrate management engine + + + + Target bitrate + + + + kbps + + + + Minimum bitrate + + + + disabled + + + + Maximum bitrate + + + + + TranscoderOptionsWavPack + + Form + + + + + TranscoderSettingsPage + + Transcoding + + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + + + + Serial number + + + + Mount points + + + + Partition label + + + + UUID + + + + + UserPassDialog + + Enter username and password + + + + Username + + + + Password + + + + diff --git a/src/translations/strawberry_es_AR.ts b/src/translations/strawberry_es_AR.ts new file mode 100644 index 00000000..bb59a466 --- /dev/null +++ b/src/translations/strawberry_es_AR.ts @@ -0,0 +1,7600 @@ + + + + + About + + About + Acerca de + + + About Strawberry + Acerca de Strawberry + + + Version %1 + Versión %1 + + + Strawberry is a music player and music collection organizer. + Strawberry es un reproductor y catalogador de colecciones musicales. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Es un desarrollo derivado de Clementine lanzado en 2018 destinado a melómanos y audiófilos. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry es un programa libre, disponible en virtud de la licencia GPL. El código fuente puede encontrarse en %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Debería haber recibido una copia de la Licencia Pública General GNU junto con este programa. Si no es así, diríjase a %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Si le gusta Strawberry y le da uso, plantéese patrocinarlo o realizar una donación. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Puede patrocinar al autor en %1. También puede realizar una aportación económica a través de %2. + + + Author and maintainer + Autor y responsable + + + Contributors + Colaboradores + + + Clementine authors + Autores de Clementine + + + Clementine contributors + Colaboradores de Clementine + + + Thanks to + Gracias a + + + Thanks to all the other Amarok and Clementine contributors. + Gracias al resto de colaboradores de Amarok y Clementine + + + + AddStreamDialog + + Add Stream + Añadir emisora + + + Enter the URL of a stream: + Introduzca el URL de una emisora: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Imágenes (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Imágenes (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Todos los archivos (*) + + + Load cover from disk... + Cargar cubierta desde disco… + + + Save cover to disk... + Guardar la cubierta en el disco… + + + Load cover from URL... + Cargar cubierta desde un URL… + + + Search for album covers... + Buscar cubiertas de álbumes… + + + Unset cover + Quitar la cubierta + + + Delete cover + Eliminar cubierta + + + Clear cover + Eliminar cubierta + + + Show fullsize... + Mostrar a tamaño completo… + + + Search automatically + Buscar automáticamente + + + Load cover from disk + Cargar cubierta desde el disco + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + Desconocido + + + Save album cover + Guardar la cubierta del álbum + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Exportar cubiertas + + + Output + Salida + + + Enter a filename for exported covers (no extension): + Introduzca un nombre de archivo para las cubiertas exportadas (sin extensión): + + + Export downloaded covers + Exportar cubiertas descargadas + + + Export embedded covers + Exportar cubiertas incrustadas + + + Existing covers + Cubiertas existentes + + + Do not overwrite + No sobrescribir + + + O&verwrite all + &Sobrescribir todo + + + Overwrite s&maller ones only + Sobrescribir únicamente los &más pequeños + + + Size + Tamaño + + + Scale size + Tamaño de escala + + + Size: + Tamaño: + + + Pixel + Píxel + + + + AlbumCoverManager + + Abort + Interrumpir + + + All albums + Todos los álbumes + + + Albums with covers + Álbumes con cubierta + + + Albums without covers + Álbumes sin cubierta + + + Really cancel? + ¿Confirma que quiere cancelar? + + + Closing this window will stop searching for album covers. + Si cierra esta ventana se detendrá la búsqueda de cubiertas para los álbumes. + + + Don't stop! + ¡No detener! + + + All artists + Todos los artistas + + + Various artists + Varios artistas + + + Got %1 covers out of %2 (%3 failed) + Se obtuvieron %1 cubiertas de %2 (%3 fallaron) + + + %1 transferred + %1 transferido + + + Export finished + Exportación finalizada + + + No covers to export. + No hay ninguna cubierta que exportar. + + + Exported %1 covers out of %2 (%3 skipped) + Se han exportado %1 cubiertas de %2 (%3 omitidas) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Gestor de cubiertas + + + Artist + Artista + + + Album + Álbum + + + Search + Buscar + + + Covers from %1 + Cubiertas de %1 + + + Abort + Interrumpir + + + + AnalyzerContainer + + Framerate + Tasa de fotogramas + + + Low (%1 fps) + Baja (%1 fps) + + + Medium (%1 fps) + Media (%1 fps) + + + High (%1 fps) + Alta (%1 fps) + + + Super high (%1 fps) + Muy alta (%1 fps) + + + No analyzer + Sin analizador + + + Block analyzer + Analizador de bloques + + + Boom analyzer + Analizador de resonancia + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Apariencia + + + Style + Estilo + + + Use system theme icons + Usar iconos del tema del sistema + + + Settings require restart. + Los ajustes requieren reiniciar. + + + Tabbar colors + Colores barra pestañas + + + &Use the system default color + &Usar el color predeterminado del sistema + + + Use custom color + Usar color personalizado + + + Use gradient background + Usar fondo degradado + + + Select tabbar color: + Seleccionar color barra pestañas: + + + Background image + Imagen de fondo + + + Default bac&kground image + Imagen de &fondo predeterminada + + + &No background image + &Sin imagen de fondo + + + The album cover of the currently playing song + La cubierta del álbum de la canción en reproducción + + + Albu&m cover + C&ubierta del álbum + + + Custom image: + Imagen personalizada: + + + Browse... + Examinar… + + + Position + Posición + + + Upper Left + Superior izquierda + + + Upper Right + Superior derecha + + + Middle + Medio + + + Bottom Left + Inferior izquierda + + + Bottom Right + Inferior derecha + + + Max cover size + Tamaño máximo de cubierta + + + Stretch image to fill playlist + Ajustar la imagen a la lista de reproducción + + + Keep aspect ratio + Mantener proporción + + + Do not cut image + No recortar la imagen + + + Blur amount + Cantidad de desenfoque + + + 0px + + + + Opacity + Opacidad + + + 40% + 40 % + + + Icon sizes + Tamaños de iconos + + + Playlist buttons + Botones de lista de reproducción + + + Tabbar large mode + Barra pequeña + + + Play control buttons + Botones de control de reproducción + + + Configure buttons + Configurar botones + + + Files, playlists and queue buttons + Botones de archivos, listas y cola + + + Tabbar small mode + Barra grande + + + Playlist playing song color + Color de canción en repr. en lista + + + System highlight color + Color de resalte del sistema + + + Custom color + Color personalizado + + + Select playlist playing song color: + Seleccione el color de canción en repr. en listas: + + + Select background image + Elija la imagen de fondo + + + + BackendSettingsPage + + Backend + Sistema de audio + + + Audio output + Salida de audio + + + Device + Dispositivo + + + Output + Salida + + + Engine + Motor + + + ALSA plugin: + Complemento de ALSA: + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + Activar control de volumen + + + Upmix / downmix to + + + + channels + canales + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + Búfer + + + ms + + + + Buffer duration + Duración del búfer + + + High watermark + Marca de agua alta + + + Low watermark + Marca de agua baja + + + Defaults + Valores predeterminados + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + Ajuste de volumen en reproducción + + + Use Replay Gain metadata if it is available + Usar metadatos de ajuste de volumen en reproducción si están disponibles + + + Replay Gain mode + Modo de ajuste de volumen en reproducción + + + Radio (equal loudness for all tracks) + Radio (volumen igual para todas las pistas) + + + Album (ideal loudness for all tracks) + Álbum (volumen idóneo para todas las pistas) + + + Pre-amp + Preamplificador + + + Apply compression to prevent clipping + Aplicar compresión para evitar saturación + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Fundido + + + Fade out when stopping a track + Fundido al detener la reproducción + + + Cross-fade when changing tracks manually + Fundido encadenado al cambiar pistas manualmente + + + Cross-fade when changing tracks automatically + Fundido encadenado al cambiar pistas automáticamente + + + Except between tracks on the same album or in the same CUE sheet + Excepto entre pistas del mismo álbum o en la misma hoja CUE + + + Fading duration + Duración del fundido + + + Fade out on pause / fade in on resume + Fundido al pausar / reanudar + + + + BehaviourSettingsPage + + Behavior + Comportamiento + + + Show system tray icon + Mostrar icono en la bandeja del sistema + + + Keep running in the background when the window is closed + Seguir ejecutando el programa en segundo plano al cerrar la ventana + + + Show song progress on system tray icon + Mostrar avance en el icono de la bandeja del sistema + + + Show song progress on taskbar + + + + Resume playback on start + Reanudar la reproducción al iniciar + + + Show playing widget + Mostrar mini aplicación de reproducción + + + On startup + Al iniciar + + + Remember from &last time + Recordar de la ú&ltima vez + + + Show the main window + Mostrar ventana principal + + + Hide the main window + Oculta la ventana principal + + + Show the main window maximized + Mostrar ventana principal maximizada + + + Show the main window minimized + Mostrar ventana principal minimizada + + + Language + Idioma + + + Use the system default + Utilizar valor predeterminado del sistema + + + You will need to restart Strawberry if you change the language. + Necesitará reiniciar Strawberry si cambia el idioma. + + + Using the menu to add a song will... + Al usar el menú para añadir una canción… + + + Never start playing + Nunca comenzar la reproducción + + + Play if there is nothing already playing + Reproducir si no hay nada en reproducción + + + Always start playing + Comenzar siempre la reproducción + + + Pressing "Previous" in player will... + Al pulsar en el botón «Anterior» del reproductor… + + + Jump to previous song right away + Ir a la pista anterior inmediatamente + + + Restart song, then jump to previous if pressed again + Reiniciar la pista e ir a la anterior si se hace clic nuevamente + + + Double clicking a song will... + Al pulsar dos veces en una canción… + + + Append to the playlist + Añadir a la lista de reproducción + + + Replace the playlist + Reemplazar la lista de reproducción + + + Open in new playlist + Abrir en una lista nueva + + + Add to the queue + Añadir a la cola + + + Double clicking a song in the playlist will... + Al pulsar dos veces en una canción en la lista de reproducción… + + + Change the currently playing song + Cambiar la pista actualmente en reproducción + + + Seeking using a keyboard shortcut or mouse wheel + Moverse en la pista mediante un atajo de teclado o la rueda del ratón + + + Time step + Salto en el tiempo + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Error al reactivar el dispositivo CDDA. + + + Error while setting CDDA device to pause state. + Error al poner en pausa el dispositivo CDDA. + + + Error while querying CDDA tracks. + Error de acceso a las pistas CDDA. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + Filtro de colección + + + Enter search terms here + Introduzca aquí términos de búsqueda + + + MenuPopupToolButton + + + + Entire collection + Fonoteca completa + + + Added today + Añadidas hoy + + + Added this week + Añadidas esta semana + + + Added within three months + Añadidas en los últimos tres meses + + + Added this year + Añadidas este año + + + Added this month + Añadidas este mes + + + Save current grouping + Guardar agrupamiento actual + + + Manage saved groupings + Gestionar agrupamientos guardados + + + Show + Mostrar + + + Group by + Agrupar por + + + Display options + Opciones de visualización + + + Group by Album artist/Album + Agrupar por artista del álbum/álbum + + + Group by Album artist/Album - Disc + Agrupar por artista del álbum/álbum - disco + + + Group by Album artist/Year - Album + Agrupar por artista del álbum/año - álbum + + + Group by Album artist/Year - Album - Disc + Agrupar por artista del álbum/año - álbum - disco + + + Group by Artist/Album + Agrupar por artista/álbum + + + Group by Artist/Album - Disc + Agrupar por artista/álbum - disco + + + Group by Artist/Year - Album + Agrupar por artista/año - álbum + + + Group by Artist/Year - Album - Disc + Agrupar por artista/año - álbum - disco + + + Group by Genre/Album artist/Album + Agrupar por género/artista del álbum/álbum + + + Group by Genre/Artist/Album + Agrupar por género/artista/álbum + + + Group by Album Artist + Agrupar por artista del álbum + + + Group by Artist + Agrupar por artista + + + Group by Album + Agrupar por álbum + + + Group by Genre/Album + Agrupar por género/álbum + + + Advanced grouping... + Agrupamiento avanzado… + + + Grouping Name + Nombre de agrupamiento + + + Grouping name: + Nombre de agrupamiento: + + + + CollectionModel + + Various artists + Varios artistas + + + Loading... + Cargando… + + + Unknown + Desconocido + + + + CollectionSettingsPage + + Collection + Colección + + + These folders will be scanned for music to make up your collection + Estas carpetas se analizarán en busca de música para crear su colección + + + Add new folder... + Añadir carpeta nueva… + + + Remove folder + Quitar carpeta + + + Automatic updating + Actualización automática + + + Update the collection when Strawberry starts + Actualizar la colección al iniciar Strawberry + + + Monitor the collection for changes + Vigilar cambios en la colección + + + Song fingerprinting and tracking + Identificación y seguimiento de canciones + + + Mark disappeared songs unavailable + Marcar las pistas desaparecidas como no disponibles + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + días + + + Preferred album art filenames (comma separated) + Nombres de archivo preferidos para las portadas (separados por comas) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Al buscar la cubierta, Strawberry tratará de localizar primero imágenes que contengan una de estas palabras. Si no hay resultados, se usará la imagen más grande de la carpeta. + + + Display options + Opciones de visualización + + + Automatically open single categories in the collection tree + Expandir automáticamente categorías únicas en la colección + + + Show dividers + Mostrar divisores + + + Show album cover art in collection + Mostrar cubierta del álbum en la colección + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Antememoria de mapa de bits de cubiertas + + + Size + Tamaño + + + Enable Disk Cache + Activar antememoria de disco + + + Disk Cache Size + Tamaño de antememoria de disco + + + Current disk cache in use: + Antememoria de disco en uso: + + + Clear Disk Cache + Vaciar antememoria de disco + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + Activar eliminación de archivos en el menú contextual del botón secundario del ratón + + + Add directory... + Añadir carpeta… + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + La colección está vacía. + + + Click here to add some music + Pulse aquí para añadir música + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Queue to play next + Poner en cola para reproducir a continuación + + + Search for this + Buscar esto + + + Organize files... + Organizar archivos… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Edit track information... + Editar información de la pista… + + + Edit tracks information... + Editar información de las pistas… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + Rescan song(s) + Volver a escanear pistas + + + Show in various artists + Mostrar en Varios artistas + + + Don't show in various artists + No mostrar en Varios artistas + + + There are other songs in this album + Hay otras pistas en este álbum + + + Would you like to move the other songs on this album to Various Artists as well? + ¿Le gustaría mover también el resto de temas del álbum a Varios artistas? + + + Error + + + + None of the selected songs were suitable for copying to a device + Ninguna de las pistas seleccionadas era apta para copiarse en un dispositivo + + + + CollectionViewContainer + + Form + Formulario + + + + CollectionWatcher + + Updating collection + Actualizando la colección + + + Updating %1 + Actualizando %1 + + + + Console + + Console + Consola + + + Run + Ejecutar + + + + ContextSettingsPage + + Context + Contexto + + + Custom text settings + Configuración de texto personalizada + + + MenuPopupToolButton + + + + Title + Título + + + Summary + Resumen + + + Enable Items + Activar elementos + + + Album + Álbum + + + Technical Data + Información técnica + + + Song Lyrics + Letra de la canción + + + Automatically search for album cover + Buscar automáticamente la cubierta del álbum + + + Automatically search for song lyrics + Buscar automáticamente la letra de la canción + + + Font for headline + Tipo de letra de títulos + + + Font + Tipo de letra + + + Font size + Tamaño de letra + + + pt + pt + + + Preview + Previsualización + + + Font for data and lyrics + Tipo de letra de datos y letras + + + Add song artist tag + Añadir etiqueta de artista a la canción + + + Add song album tag + Añadir etiqueta de álbum a la canción + + + Add song title tag + Añadir etiqueta de título a la canción + + + Add song albumartist tag + Añadir etiqueta de artista del álbum a la canción + + + Add song year tag + Añadir etiqueta de año a la canción + + + Add song composer tag + Añadir etiqueta de compositor a la canción + + + Add song performer tag + Añadir etiqueta de intérprete a la canción + + + Add song grouping tag + Añadir etiqueta de agrupamiento a la canción + + + Add song disc tag + Añadir etiqueta de disco a la canción + + + Add song track tag + Añadir etiqueta de pista a la canción + + + Add song genre tag + Añadir etiqueta de género a la canción + + + Add song length tag + Añadir etiqueta de duración a la canción + + + Add song play count + Añadir contador de reproducciones de la canción + + + Add song skip count + Añadir contador de omisiones de la canción + + + Add a new line if supported by the notification type + Añadir un salto de renglón si el tipo de notificación lo permite + + + %filename% + + + + Add song filename + Añadir nombre de archivo de la canción + + + %url% + + + + Add song URL + Añadir URL del tema + + + %rating% + + + + Add song rating + Añadir valoración de la canción + + + %originalyear% + + + + Add song original year tag + Añadir etiqueta de año original + + + + ContextView + + Filetype + Tipo de archivo + + + Length + Duración + + + Samplerate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Mostrar cubierta del álbum + + + Show song technical data + Mostrar información técnica de la canción + + + Show song lyrics + Mostrar letras + + + Automatically search for song lyrics + Buscar automáticamente la letra de la canción + + + No song playing + No suena nada + + + %1 song + %1 canción + + + %1 songs + %1 canciones + + + %1 artist + %1 artista + + + %1 artists + %1 artistas + + + %1 album + %1 álbum + + + %1 albums + %1 álbumes + + + kbps + kb/s + + + + CoverFromURLDialog + + Load cover from URL + Cargar cubierta desde un URL + + + Enter a URL to download a cover from the Internet: + Introduzca un URL para descargar una cubierta de la Internet: + + + Fetching cover error + Error al obtener la cubierta + + + The site you requested does not exist! + El sitio indicado no existe. + + + The site you requested is not an image! + El sitio indicado no es una imagen. + + + + CoverManager + + Cover Manager + Gestor de cubiertas + + + Enter search terms here + Introduzca aquí términos de búsqueda + + + MenuPopupToolButton + + + + View + Ver + + + Total albums: + Álbumes totales: + + + Without cover: + Sin cubierta: + + + 0 + + + + Fetch Missing Covers + Obtener las cubiertas que faltan + + + Export Covers + Exportar cubiertas + + + Fetch automatically + Obtener automáticamente + + + Load + Cargar + + + Add to playlist + Añadir a la lista de reproducción + + + + CoverSearchStatisticsDialog + + Fetch completed + Descarga finalizada + + + Got %1 covers out of %2 (%3 failed) + Se obtuvieron %1 cubiertas de %2 (%3 fallaron) + + + Covers from %1 + Cubiertas de %1 + + + Total network requests made + Total de solicitudes hechas a la red + + + Average image size + Tamaño medio de imagen + + + Total bytes transferred + Total de bytes transferidos + + + + CoversSettingsPage + + Covers + Cubiertas + + + Cover providers + Proveedores de cubiertas + + + Choose the providers you want to use when searching for covers. + Selecciona los proveedores de búsqueda de cubiertas. + + + Move up + Subir + + + Move down + Bajar + + + Authentication + Autenticación + + + Login + Acceder + + + Album cover types + + + + Saving album covers + Guardando cubiertas de álbumes + + + Save album covers in album directory + Guardar las cubiertas en la carpeta de álbumes + + + Save album covers in cache directory + Guardar cubiertas en directorio de antememoria + + + Save album covers as embedded cover + Guardar cubiertas del álbum como elementos incrustados + + + Filename: + Archivo: + + + Pattern + Pauta + + + Random + Al azar + + + Overwrite existing file + Sobrescribir archivo existente + + + Lowercase filename + Nombre de archivo en minúsculas + + + Replace spaces with dashes + Sustituir espacios por guiones + + + Use Tidal settings to authenticate. + Usar ajustes de Tidal para autenticarse. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Usar ajustes de Qobuz para autenticarse. + + + %1 needs authentication. + %1 necesita autenticación. + + + %1 does not need authentication. + %1 no necesita autenticación. + + + No provider selected. + No se ha seleccionado ningún proveedor. + + + Authentication failed + Falló la autenticación + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Comprobación de integridad + + + Database corruption detected. + Se han detectado errores en la base de datos + + + Backing up database + Haciendo copia de respaldo de la base de datos + + + + DeleteConfirmationDialog + + Delete files + Eliminar archivos + + + The following files will be deleted from disk: + Los siguientes archivos serán borrados del disco: + + + Are you sure you want to continue? + ¿Confirma que quiere continuar? + + + + DeleteFiles + + Deleting files + Eliminando los archivos + + + + DeviceItemDelegate + + Updating %1%... + Actualizando… (%1%) + + + Not connected + No conectado + + + Not mounted - double click to mount + Sin montar. Pulse dos veces para montar + + + Double click to open + Doble clic para abrir + + + %1 song%2 + %1 canción%2 + + + + DeviceManager + + Connect device + Conectar dispositivo + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Esta es la primera vez que conecta este dispositivo. Strawberry analizará el dispositivo ahora para encontrar archivos de música; esto podría tardar un poco. + + + This device will not work properly + Este dispositivo no funcionará correctamente + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Este es un dispositivo MTP, pero se compiló Strawberry sin compatibilidad con libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Si continúa, este dispositivo funcionará con lentitud y las pistas que se copien en él podrían no funcionar. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Esto es un iPod, pero se compiló Strawberry sin compatibilidad con libgpod. + + + This type of device is not supported: %1 + No se admite este tipo de dispositivo: %1 + + + + DeviceProperties + + Device Properties + Propiedades del dispositivo + + + Information + Información + + + Name + Nombre + + + Icon + Icono + + + Hardware information + Información del hardware + + + Hardware information is only available while the device is connected. + La información del hardware solo está disponible cuando el dispositivo está conectado. + + + File formats + Formatos de archivo + + + Supported formats + Formatos admitidos + + + This device supports the following file formats: + Este dispositivo admite los formatos de archivo siguientes: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry puede convertir automáticamente la música que copie en este dispositivo en un formato que pueda reproducir. + + + Do not convert any music + No convertir ninguna pista + + + Convert any music that the device can't play + Convertir las pistas que el dispositivo no pueda reproducir + + + Convert all music + Convertir toda la música + + + Preferred format + Formato preferido + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Este dispositivo debe conectarse y abrirse antes de que Strawberry pueda ver qué formatos de archivo admite. + + + Open device + Abrir dispositivo + + + Querying device... + Consultando dispositivo… + + + Model + Modelo + + + Manufacturer + Fabricante + + + + DeviceView + + Safely remove device + Quitar dispositivo con seguridad + + + Forget device + Olvidar dispositivo + + + Device properties... + Propiedades del dispositivo… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Copy to collection... + Copiar en la colección… + + + Delete from device... + Eliminar del dispositivo… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Olvidar un dispositivo lo eliminará de la lista y Strawberry tendrá que volver a examinar todas las pistas la próxima vez que lo conecte. + + + Delete files + Eliminar archivos + + + These files will be deleted from the device, are you sure you want to continue? + Se eliminarán estos archivos del dispositivo. ¿Confirma que quiere continuar? + + + + DeviceViewContainer + + Form + Formulario + + + + DynamicPlaylistControls + + Dynamic mode is on + Modo dinámico activado + + + New tracks will be added automatically. + Las pistas nuevas se añadirán automáticamente. + + + Expand + Expandir + + + Repopulate + Volver a poblar + + + Turn off + Apagar + + + + EditTagDialog + + Edit track information + Editar información de la pista + + + Summary + Resumen + + + Date created + Fecha de creación + + + Art Automatic + Cubierta automática + + + Date modified + Fecha de modificación + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + Tipo + + + Length + Duración + + + Play count + Número de reproducciones + + + Bit depth + Resolución + + + EBU R 128 integrated loudness + + + + Bit rate + Tasa de bits + + + Skip count + Número de omisiones + + + Sample rate + Frecuencia + + + Path + Ruta + + + Filename + Nombre del archivo + + + Art Unset + + + + File size + Tamaño del archivo + + + Art Manual + Cubierta manual + + + EBU R 128 loudness range + + + + Reset play counts + Reiniciar contador de reproducciones + + + Tags + Etiquetas + + + MenuPopupToolButton + + + + Change art + Cambiar cubierta + + + Embedded cover + Cubierta incrustada + + + Disc + Disco + + + Grouping + Agrupamiento + + + Album artist + Artista del álbum + + + Album + Álbum + + + Year + Año + + + Title + Título + + + Artist + Artista + + + Composer + Compositor + + + Complete tags automatically + Completar etiquetas automáticamente + + + Genre + Género + + + Comment + Comentario + + + Performer + Intérprete + + + Compilation + Compilación + + + Track + Pista + + + Rating + Valoración + + + Lyrics + Letras + + + Complete lyrics automatically + + + + Previous + Anterior + + + Next + Siguiente + + + Saving tracks + Guardando las pistas + + + Loading tracks + Cargando pistas + + + %1 songs selected. + %1 temas seleccionados + + + kbps + kb/s + + + Unknown + Desconocido + + + Yes + + + + No + + + + None + Ninguno + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Cubierta no definida + + + Album cover editing is only available for collection songs. + La edición de las cubiertas de los álbumes solo está disponible para las canciones de la fonoteca. + + + Cover changed: Will be cleared when saved. + Cubierta modificada: se restablecerá al guardar. + + + Cover changed: Will be unset when saved. + Cubierta modificada: se desactivará al guardar. + + + Cover changed: Will be deleted when saved. + Cubierta modificada: se eliminará al guardar. + + + Cover changed: Will set new when saved. + Cubierta modificada: se establecerá la nueva al guardar. + + + Never + Nunca + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Ecualizador + + + Preset: + Ajuste predefinido: + + + Save preset + Guardar ajuste predefinido + + + Delete preset + Eliminar ajuste predefinido + + + Enable equalizer + Activar ecualizador + + + Enable stereo balancer + Activar equilibrador estéreo + + + Left + Izquierda + + + Balance + Equilibrio + + + Right + Derecha + + + Pre-amp + Preamplificador + + + Custom + Personalizado + + + Classical + Clásica + + + Club + + + + Dance + + + + Full Bass + Graves completos + + + Full Treble + Agudos completos + + + Full Bass + Treble + Graves y agudos completos + + + Laptop/Headphones + Portátil/auriculares + + + Large Hall + Salón grande + + + Live + En directo + + + Party + Fiesta + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + Soft rock + + + Techno + Tecno + + + Zero + Cero + + + Name + Nombre + + + Are you sure you want to delete the "%1" preset? + ¿Confirma que quiere eliminar el ajuste predefinido «%1»? + + + + EqualizerSlider + + Equalizer + Ecualizador + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Error de Strawberry + + + + FancyTabWidget + + Large sidebar + Barra lateral grande + + + Icons sidebar + + + + Small sidebar + Barra lateral pequeña + + + Plain sidebar + Barra lateral simple + + + Tabs on top + Pestañas en la parte superior + + + Icons on top + Iconos en la parte superior + + + + FileTypeItemDelegate + + Unknown + Desconocido + + + + FileView + + Form + Formulario + + + + FileViewList + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Copy to collection... + Copiar en la colección… + + + Move to collection... + Mover a la colección… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Edit track information... + Editar información de la pista… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + + FreeSpaceBar + + Available + Disponible + + + New songs + Canciones nuevas + + + Exceeded by + + + + Used + En uso: + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Cargando la base de datos del iPod + + + An error occurred loading the iTunes database + Se produjo un error al cargar la base de datos de iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Autenticación con Genius + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code! + ¡Falta código del token de redirección! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Redirect from Genius is missing query items code or state. + Redirección Genius carece de código de elementos de búsqueda o estado. + + + + GioLister + + Mount point + Punto de montaje + + + Device + Dispositivo + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Presione una tecla + + + Press a key combination to use for %1... + Oprima una combinación de teclas para usar con %1… + + + + GlobalShortcutsManager + + Play + Reproducir + + + Pause + Pausar + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + Pista anterior + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + Silenciar + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + Me gusta + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Atajos generales + + + Use Gnome (GSD) shortcuts when available + Utilizar atajos de Gnome (GSD) cuando sea posible + + + Open... + Abrir… + + + Use MATE shortcuts when available + Utilizar atajos de MATE si están disponibles + + + Use KDE (KGlobalAccel) shortcuts when available + Utilizar atajos de KDE (GSD) cuando sea posible + + + Use X11 shortcuts when available + Usar atajos de X11 cuando sea posible + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Debe abrir las Preferencias del sistema y permitir que Strawberry «<span style="font-style:italic">controle el equipo</span>» para utilizar atajos globales en Strawberry. + + + Action + Category label + Acción + + + Shortcut + Atajo + + + Shortcut for %1 + Atajo para %1 + + + &None + &Ninguno + + + &Default + &Predeterminado + + + &Custom + &Personalizado + + + Change shortcut... + Cambiar atajo… + + + The "%1" command could not be started. + No se pudo iniciar la orden «%1». + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Usar atajos de X11 en %1 no es recomendable y puede hacer que el teclado no responda eficientemente. + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Los atajos en %1 se usan normalmente a través de GMPRIS y KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + Agrupamiento avanzado de la colección + + + You can change the way the songs in the collection are organized. + Puede modificar cómo se organizan los temas en la fonoteca + + + Group Collection by... + Agrupar colección por… + + + First level + Primer nivel + + + None + Ninguno + + + Artist + Artista + + + Album artist + Artista del álbum + + + Album + Álbum + + + Album - Disc + Álbum - Disco + + + Disc + Disco + + + Format + Formato + + + Genre + Género + + + Year + Año + + + Year - Album + Año - álbum + + + Year - Album - Disc + Año - álbum - disco + + + Original year + Año original + + + Original year - Album + Año original - álbum + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + File type + Tipo + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + Second level + Segundo nivel + + + Third level + Tercer nivel + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Guardando en búfer + + + + LastFMImport + + Missing username, please login to last.fm first! + Falta el usuario; acceda a Last.fm primero. + + + + LastFMImportDialog + + Import data from last.fm + Importar datos de Last.fm + + + Choose data to import from last.fm + Escoja qué información importar de Last.fm + + + Last played + + + + Play counts + Contadores de reproducción + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Atención: se reemplazará el recuento de reproducciones y la última reproducción de los temas coincidentes con los datos procedentes de Last.fm. El recuento de reproducciones se sobreescribirá atendiendo a artista y nombre del tema. Haga una copia de respaldo de su base de datos antes de comenzar. + + + Go! + Ir + + + Close + Cerrar + + + Cancel + Cancelar + + + Receiving initial data from last.fm... + Recibiendo datos iniciales de Last.fm… + + + Receiving playcount for %1 songs and last played for %2 songs. + Recibiendo info de nº de reproducciones para %1 temas y última reproducción para %2 temas. + + + Receiving last played for %1 songs. + Recibiendo info de última reproducción para %1 temas. + + + Receiving playcounts for %1 songs. + Recibiendo info de nº de reproducciones para %1 temas. + + + Playcounts for %1 songs and last played for %2 songs received. + Recuentos de %1 reproducciones y última reproducción para %2 temas recibida. + + + Last played for %1 songs received. + Info de última reproducción para %1 temas recibida. + + + Playcounts for %1 songs received. + Recuentos de reproducciones para %1 temas recibidos. + + + + LastPlayedItemDelegate + + Never + Nunca + + + + Library + + Least favourite tracks + Pistas menos valoradas + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Autenticación en ListenBrainz + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code! + ¡Falta código del token de redirección! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Formulario + + + You are not signed in. + No ha accedido a su cuenta. + + + Sign out + Cerrar sesión + + + Signing in... + Iniciando sesión… + + + You are signed in. + Ha accedido a su cuenta. + + + You are signed in as %1. + Ha accedido como %1. + + + Expires on %1 + Caduca el %1 + + + + LyricsSettingsPage + + Lyrics + Letras + + + Lyrics providers + Proveedores de letras + + + Choose the providers you want to use when searching for lyrics. + Seleccione los proveedores de búsqueda de letras. + + + Move up + Subir + + + Move down + Bajar + + + Authentication + Autenticación + + + Login + Acceder + + + No provider selected. + No se ha seleccionado ningún proveedor. + + + Authentication failed + Falló la autenticación + + + + MainWindow + + Strawberry Music Player + Reproductor de música Strawberry + + + MenuPopupToolButton + + + + &Music + &Música + + + P&laylist + Lista de re&producción + + + Help + Ayuda + + + &Tools + &Herramientas + + + Previous track + Pista anterior + + + F5 + + + + &Play + &Reproducir + + + F6 + + + + &Stop + &Detener + + + F7 + + + + &Next track + Pista &siguiente + + + F8 + + + + &Quit + &Salir + + + Ctrl+Q + + + + Stop after this track + Detener reproducción al finalizar la pista actual + + + Ctrl+Alt+V + + + + Love + Me gusta + + + &Clear playlist + &Borrar lista de reproducción + + + Clear playlist + Vaciar lista de reproducción + + + Ctrl+K + + + + Edit track information... + Editar información de la pista… + + + Ctrl+E + + + + Renumber tracks in this order... + Reordenar pistas en este orden… + + + Set value for all selected tracks... + Establecer valor para todas las pistas seleccionadas… + + + Edit tag... + Editar etiqueta… + + + &Settings... + &Configuración… + + + Ctrl+P + + + + &About Strawberry + &Acerca de Strawberry + + + F1 + + + + S&huffle playlist + &Mezclar lista de reproducción + + + Ctrl+H + + + + &Add file... + &Añadir archivo... + + + Ctrl+Shift+A + + + + &Open file... + &Abrir archivo... + + + Open audio &CD... + Abrir &CD de audio... + + + &Cover Manager + &Gestor de cubiertas + + + C&onsole + C&onsola + + + &Shuffle mode + Modo &aleatorio + + + &Repeat mode + Modo de &repetición + + + Remove from playlist + Quitar de la lista de reproducción + + + &Equalizer + &Ecualizador + + + &Transcode Music + Conver&tir música + + + Add &folder... + Añadir &carpeta... + + + &Jump to the currently playing track + &Saltar a la pista en reproducción + + + Ctrl+J + + + + &New playlist + Lista de reproducción &nueva + + + Ctrl+N + + + + Save &playlist... + Guardar lista de re&producción + + + Ctrl+S + + + + &Load playlist... + &Cargar lista de reproducción... + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Ir a la siguiente pestaña de lista de reproducción + + + Go to previous playlist tab + Ir a la anterior pestaña de lista de reproducción + + + &Update changed collection folders + &Actualizar carpetas de la fonoteca con cambios + + + About &Qt + Acerca de &Qt + + + &Mute + &Silenciar + + + Ctrl+M + + + + &Do a full collection rescan + Anali&zar de nuevo toda la fonoteca + + + Stop collection scan + + + + Complete tags automatically... + Completar etiquetas automáticamente… + + + Ctrl+T + + + + Toggle scrobbling + Alternar seguimiento de reproducción + + + Remove &duplicates from playlist + Quitar &duplicados de la lista de reproducción + + + Remove &unavailable tracks from playlist + Quitar pistas &no disponibles de la lista de reproducción + + + Add file(s) to transcoder + Añadir archivo(s) que convertir + + + Add file to transcoder + Añadir archivo que convertir + + + Add stream... + Añadir emisora… + + + Show sidebar + Mostrar barra lateral + + + Import data from last.fm... + Importar datos de Last.fm… + + + All Files (*) + Todos los archivos (*) + + + Context + Contexto + + + Collection + Colección + + + Queue + Cola + + + Playlists + Listas + + + Smart playlists + Listas inteligentes + + + Files + Archivos + + + Radios + + + + Devices + Dispositivos + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Mostrar todas las pistas + + + Show only duplicates + Mostrar solo los duplicados + + + Show only untagged + Solo mostrar no etiquetadas + + + Configure collection... + Configurar colección… + + + Play + Reproducir + + + Toggle queue status + Cambiar estado de la cola + + + Queue selected tracks to play next + Poner en cola las pistas seleccionadas para reproducir a continuación + + + Toggle skip status + Alternar estado de avance + + + Rescan song(s)... + Volver a escanear tema(s)... + + + Copy URL(s)... + Copiar URL… + + + Show in collection... + Mostrar en la colección… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + Organize files... + Organizar archivos… + + + Copy to collection... + Copiar en la colección… + + + Move to collection... + Mover a la colección… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Check for updates... + Buscar actualizaciones… + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Pausar + + + Dequeue track + Quitar la pista de la cola + + + Dequeue selected tracks + Quitar las pistas seleccionadas de la cola + + + Queue track + Poner pista en cola + + + Queue selected tracks + Poner en cola las pistas seleccionadas + + + Queue to play next + Poner en cola para reproducir a continuación + + + Unskip track + No omitir pista + + + Unskip selected tracks + No omitir pistas seleccionadas + + + Skip track + Omitir pista + + + Skip selected tracks + Omitir pistas seleccionadas + + + Set %1 to "%2"... + Establecer %1 a «%2»… + + + Edit tag "%1"... + Editar etiqueta «%1»… + + + Add to another playlist + Añadir a otra lista de reproducción + + + New playlist + Lista nueva + + + Add file + Añadir archivo + + + Music + Música + + + Add folder + Añadir carpeta + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + La lista de reproducción tiene %1 temas, demasiadas para deshacer, ¿estás seguro de que quieres eliminarla? + + + Error + + + + None of the selected songs were suitable for copying to a device + Ninguna de las pistas seleccionadas era apta para copiarse en un dispositivo + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + La versión de Strawberry a la que se acaba de actualizar necesita volver a analizar la colección debido a estas nuevas funciones: + + + Would you like to run a full rescan right now? + ¿Quiere ejecutar un nuevo análisis completo ahora? + + + Collection rescan notice + Notificación de nuevo análisis de la colección + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + No volver a mostrar este mensaje. + + + + MimeData + + Playlist + Lista + + + + MoodbarProxyStyle + + Show moodbar + Mostrar barra de ánimo + + + Moodbar style + Estilo de la barra de ánimo + + + + MoodbarSettingsPage + + Moodbar + Barra de ánimo + + + Show a moodbar in the track progress bar + Mostrar una barra de ánimo en la barra de progreso + + + Moodbar style + Estilo de la barra de ánimo + + + Save the .mood files directly in the songs folders + Guardar archivos .mood directamente en las carpetas de las pistas + + + Enabled + Activado + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Cargando el dispositivo MTP + + + Error connecting MTP device %1 + Error al conectar al dispositivo MTP %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Proxy de la red + + + &Use the system proxy settings + &Utilizar configuración de «proxy» del sistema + + + Direct internet connection + Conexión directa a Internet + + + &Manual proxy configuration + &Configuración manual del proxy + + + HTTP proxy + Proxy HTTP + + + SOCKS proxy + Proxy SOCKS + + + Port + Puerto + + + Use authentication + Usar autenticación + + + Username + Usuario + + + Password + Contraseña + + + Use proxy settings for streaming + Usar ajustes de proxy para transmisión + + + + NotificationsSettingsPage + + Notifications + Notificaciones + + + Strawberry can show a message when the track changes. + Strawberry puede mostrar un mensaje cuando la pista cambie. + + + Notification type + Tipo de notificación + + + Disabled + Refers to a disabled notification type in Notification settings. + Desactivado + + + Show a &native desktop notification + Mostrar una notificación &nativa del sistema + + + Show a pretty OSD + Mostrar panel de información en pantalla chulo + + + Show a popup fro&m the system tray + Mostrar una notificación en la bandeja del siste&ma + + + General settings + Configuración general + + + Popup duration + Duración de la notificación emergente + + + seconds + segundos + + + Disable duration + Desactivar duración + + + Show a notification when I change the volume + Mostrar una notificación al cambiar el volumen + + + Show a notification when I change the repeat/shuffle mode + Mostrar una notificación al cambiar entre los modos repetir/aleatorio + + + Show a notification when I pause playback + Mostrar una notificación al pausar la reproducción + + + Show a notification when I resume playback + Mostrar una notificación cuando reanude la reproducción + + + Include album art in the notification + Incluir cubierta en la notificación + + + Custom message settings + Configuración de mensaje personalizado + + + Use a custom message for notifications + Usar un mensaje personalizado para las notificaciones + + + Preview + Previsualización + + + MenuPopupToolButton + + + + Summary + Resumen + + + Body + Cuerpo + + + Pretty OSD options + Panel de información en pantalla estético + + + Background color + Color de fondo + + + Text options + Opciones del texto + + + Choose font... + Elegir tipo de letra… + + + Choose color... + Elegir color… + + + Background opacity + Opacidad del fondo + + + Basic Blue + Azul básico + + + Strawberry Red + Rojo de Strawberry + + + Custom... + Personalizado… + + + Enable fading + Activar transición gradual + + + Add song artist tag + Añadir etiqueta de artista a la canción + + + Add song album tag + Añadir etiqueta de álbum a la canción + + + Add song title tag + Añadir etiqueta de título a la canción + + + Add song albumartist tag + Añadir etiqueta de artista del álbum a la canción + + + Add song year tag + Añadir etiqueta de año a la canción + + + Add song composer tag + Añadir etiqueta de compositor a la canción + + + Add song performer tag + Añadir etiqueta de intérprete a la canción + + + Add song grouping tag + Añadir etiqueta de agrupamiento a la canción + + + Add song disc tag + Añadir etiqueta de disco a la canción + + + Add song track tag + Añadir etiqueta de pista a la canción + + + Add song genre tag + Añadir etiqueta de género a la canción + + + Add song length tag + Añadir etiqueta de duración a la canción + + + Add song play count + Añadir contador de reproducciones de la canción + + + Add song skip count + Añadir contador de omisiones de la canción + + + Add song rating + Añadir valoración de la canción + + + Add a new line if supported by the notification type + Añadir un salto de renglón si el tipo de notificación lo permite + + + %filename% + + + + Add song filename + Añadir nombre de archivo de la canción + + + %url% + + + + Add song URL + Añadir URL del tema + + + %originalyear% + + + + Add song original year tag + Añadir etiqueta de año original + + + OSD Preview + Previsualización del panel de información en pantalla + + + Drag to reposition + Arrastre para reposicionar + + + + OSDBase + + disc %1 + disco %1 + + + track %1 + pista %1 + + + Paused + En pausa + + + Stopped + Detenido + + + Stop playing after track: %1 + Detener reproducción tras la pista: %1 + + + On + Activado + + + Off + Desactivado + + + Playlist finished + Lista de reproducción finalizada + + + Volume %1% + Volumen %1% + + + Don't shuffle + No mezclar + + + Shuffle all + Mezclar todo + + + Shuffle tracks in this album + Mezclar pistas de este álbum + + + Shuffle albums + Mezclar álbumes + + + Don't repeat + No repetir + + + Repeat track + Repetir pista + + + Repeat album + Repetir álbum + + + Repeat playlist + Repetir lista de reproducción + + + Stop after every track + Detener reproducción al finalizar cada pista + + + Intro tracks + Pistas de introducción + + + + Organize + + Organizing files + Organizando archivos + + + + OrganizeDialog + + Organize Files + Organizar archivos + + + Destination + Destino + + + After copying... + Después de copiar… + + + Keep the original files + Mantener los archivos originales + + + Delete the original files + Eliminar los archivos originales + + + Naming options + Opciones de nomenclatura + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Las fichas comienzan por %, por ejemplo: %artist %album %title </p> + +<p>Si encierra una sección de texto que contenga una ficha entre llaves, esa sección no se mostrará si la ficha está vacía.</p> + + + Insert... + Insertar… + + + Remove problematic characters from filenames + Elimina caracteres especiales de nombres de archivo + + + Restrict to characters allowed on FAT filesystems + Limitar a caracteres permitidos en sistemas de archivos FAT + + + Restrict characters to ASCII + Limitar caracteres a conjunto ASCII + + + Allow extended ASCII characters + Admitir caracteres de ASCII ampliado + + + Replace spaces with underscores + Sustituir espacios pòr caracteres de subrayado + + + Overwrite existing files + Sobrescribir los archivos existentes + + + Copy album cover artwork + Copiar cubierta del álbum + + + Preview + Previsualización + + + Loading... + Cargando… + + + Safely remove the device after copying + Quitar dispositivo con seguridad después de copiar + + + Title + Título + + + Album + Álbum + + + Artist + Artista + + + Artist's initial + Iniciales del artista + + + Album artist + Artista del álbum + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + Track + Pista + + + Disc + Disco + + + Year + Año + + + Original year + Año original + + + Genre + Género + + + Comment + Comentario + + + Length + Duración + + + Bitrate + Refers to bitrate in file organize dialog. + Tasa de bits + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + File extension + Extensión del archivo + + + + OrganizeErrorDialog + + Error copying songs + Error al copiar pistas + + + There were problems copying some songs. The following files could not be copied: + Hubo problemas al copiar algunas pistas. No se pudieron copiar los siguientes archivos: + + + Error deleting songs + Error al eliminar pistas + + + There were problems deleting some songs. The following files could not be deleted: + Hubo problemas al eliminar algunas pistas. No se pudieron eliminar los siguientes archivos: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Cubierta de álbum pequeña + + + Large album cover + Cubierta de álbum grande + + + Fit cover to width + Ajustar cubierta a anchura + + + Show above status bar + Mostrar sobre la barra de estado + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Título + + + Artist + Artista + + + Album + Álbum + + + Track + Pista + + + Disc + Disco + + + Length + Duración + + + Year + Año + + + Original Year + + + + Genre + Género + + + Album Artist + + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Tasa de bits + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Comentario + + + Source + Origen + + + Mood + Ánimo + + + Rating + Valoración + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Formulario + + + Undo + + + + Redo + + + + Playlist + Lista + + + Load playlist + Cargar lista de reproducción + + + No matches found. Clear the search box to show the whole playlist again. + No se encontraron coincidencias. Borre el texto introducido en el cuadro de búsqueda para mostrar la lista completa de nuevo. + + + + PlaylistDelegateBase + + stop + detener + + + + PlaylistGeneratorInserter + + Loading smart playlist + Cargando lista inteligente + + + + PlaylistHeader + + &Hide... + &Ocultar… + + + &Stretch columns to fit window + &Ajustar columnas a la ventana + + + &Reset columns to default + &Reajustar columnas a valores iniciales + + + &Lock rating + B&loquear valoración + + + &Align text + &Alinear el texto + + + &Left + &Izquierda + + + &Center + &Centrar + + + &Right + &Derecha + + + &Hide %1 + &Ocultar «%1» + + + + PlaylistListContainer + + Form + Formulario + + + New folder + Carpeta nueva + + + Delete + Eliminar + + + Save playlist + Save playlist menu action. + Guardar lista de reproducción + + + Copy to device... + Copiar en un dispositivo… + + + Enter the name of the folder + Escriba el nombre de la carpeta + + + Playlist + Lista + + + Copy to device + Copiar en un dispositivo + + + Playlist must be open first. + La lista debe abrirse primero. + + + Remove playlists + Eliminar listas de reproducción + + + You are about to remove %1 playlists from your favorites, are you sure? + ¿Confirma que quiere eliminar %1 listas de reproducción de sus favoritos? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Puede marcar listas de reproducción como favoritas pulsando en los iconos con forma de estrella junto a sus nombres + + + Favorited playlists will be saved here + Sus listas favoritas se guardarán aquí + + + + PlaylistManager + + Playlist + Lista + + + Couldn't create playlist + No se pudo crear la lista de reproducción + + + Save playlist + Title of the playlist save dialog. + Guardar lista de reproducción + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + %1 seleccionado de + + + %n track(s) + + + + + + + + + + + Unknown + Desconocido + + + Various artists + Varios artistas + + + + PlaylistParser + + All playlists (%1) + Todas las listas de reproducción (%1) + + + %1 playlists (%2) + %1 listas de reproducción (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Opciones de la lista de reproducción + + + File paths + Rutas de archivos + + + This can be changed later through the preferences + Esta opción puede modificarse luego en Preferencias + + + Remember my choice + Recordar mi elección + + + Automatic + Automático + + + Relative + Relativo + + + Absolute + Absoluto + + + + PlaylistSequence + + Repeat + Repetir + + + Shuffle + Aleatorio + + + Don't repeat + No repetir + + + Repeat track + Repetir pista + + + Repeat album + Repetir álbum + + + Repeat playlist + Repetir lista de reproducción + + + Stop after each track + Detener reproducción al finalizar cada pista + + + Intro tracks + Pistas de introducción + + + Don't shuffle + No mezclar + + + Shuffle tracks in this album + Mezclar pistas de este álbum + + + Shuffle all + Mezclar todo + + + Shuffle albums + Mezclar álbumes + + + + PlaylistSettingsPage + + Playlist + Lista + + + Use alternating row colors + Utilizar colores alternados en las filas + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Avisarme antes de cerrar una pestaña de lista de reproducción + + + Continue to the next item in the playlist if a song is unavailable + Saltar al siguiente elemento en la lista de reproducción si una canción no está disponible + + + Grey out unavailable songs in playlists on playback + Mostrar en gris las pistas no disponibles en listas de reproducción al reproducir + + + Grey out unavailable songs in playlists on startup + Mostrar en gris las pistas no disponibles en listas de reproducción al iniciar + + + Automatically select current playing track + Seleccionar automáticamente la pista en reproducción + + + Enable playlist toolbar + + + + Enable playlist clear button + Activar botón de borrado de lista de reproducción + + + Enable delete files in the right click context menu + Activar eliminación de archivos en el menú contextual del botón secundario del ratón + + + Automatically sort playlist when inserting songs + Ordenar la lista automáticamente al insertar temas + + + When saving a playlist, file paths should be + Al guardar una lista de reproducción las rutas de archivo deben ser + + + A&utomatic + A&utomático + + + Absolu&te + Absolu&to + + + Re&lative + Re&lativo + + + As&k when saving + &Preguntar al guardar + + + Metadata + Metadatos + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Al activar esta opción podrá pulsar en la canción seleccionada de la lista de reproducción y editar la etiqueta directamente + + + Enable song metadata inline edition with click + Editar metadatos de pistas directamente + + + Write metadata when saving playlists + Escribir los metadatos al guardar las listas de reproducción + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Cerrar lista de reproducción + + + Rename playlist... + Cambiar nombre de lista… + + + Save playlist... + Guardar lista de reproducción… + + + Rename playlist + Cambiar nombre de lista + + + Enter a new name for this playlist + Introduzca un nombre nuevo para esta lista de reproducción + + + Remove playlist + Eliminar lista de reproducción + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Está a punto de eliminar una lista de reproducción que no está entre sus favoritas (esta acción no se puede deshacer). +¿Confirma que quiere continuar? + + + Warn me when closing a playlist tab + Avisarme antes de cerrar una pestaña de lista de reproducción + + + This option can be changed in the "Behavior" preferences + Puede modificar esta opción en la pestaña «Comportamiento» en Preferencias + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Pulse dos veces para convertir esta lista en favorita y que se guarde y quede accesible en el panel «Listas» de la barra izquierda + + + Playlist + Lista + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + añadir %n pistas + + + + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + mover %n temas + + + + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + quitar %n temas + + + + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + mezclar temas + + + + PlaylistUndoCommands::SortItems + + sort songs + ordenar temas + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + kb/s + + + + QObject + + Usage + Uso + + + options + opciones + + + URL(s) + URL + + + Player options + Opciones del reproductor + + + Start the playlist currently playing + Iniciar la lista de reproducción actualmente en reproducción + + + Play if stopped, pause if playing + Reproducir si detenido, pausar si en reproducción + + + Pause playback + Pausar la reproducción + + + Stop playback + Detener reproducción + + + Stop playback after current track + Detener reproducción al terminar la pista actual + + + Skip backwards in playlist + Saltar hacia atrás en la lista de reproducción + + + Skip forwards in playlist + Saltar hacia adelante en la lista de reproducción + + + Set the volume to <value> percent + Establecer el volumen en <value>% + + + Increase the volume by 4 percent + Aumentar el volumen en un 4 % + + + Decrease the volume by 4 percent + Reduce el volumen en un 4 % + + + Increase the volume by <value> percent + Aumentar el volumen en <value> % + + + Decrease the volume by <value> percent + Reduce el volumen en <value> % + + + Seek the currently playing track to an absolute position + Moverse en la pista actual hacia una posición absoluta + + + Seek the currently playing track by a relative amount + Moverse en la pista actual hacia una posición relativa + + + Restart the track, or play the previous track if within 8 seconds of start. + Reiniciar la pista o saltar a la anterior si no han transcurrido 8 segundos desde su inicio. + + + Playlist options + Opciones de la lista de reproducción + + + Create a new playlist with files + Crear una lista de reproducción nueva con archivos + + + Append files/URLs to the playlist + Añadir archivos/URL a la lista de reproducción + + + Loads files/URLs, replacing current playlist + Carga archivos/URL, reemplaza la lista de reproducción actual + + + Play the <n>th track in the playlist + Reproducir la <n>.ª pista de la lista de reproducción + + + Play given playlist + Reproducir lista indicada + + + Other options + Otras opciones + + + Display the on-screen-display + Mostrar indicadores en pantalla + + + Toggle visibility for the pretty on-screen-display + Conmutar visibilidad del panel de información en pantalla estético + + + Change the language + Cambiar el idioma + + + Resize the window + Redimensionar la ventana + + + Equivalent to --log-levels *:1 + Equivalente a --log-levels*:1 + + + Equivalent to --log-levels *:3 + Equivalente a --log-levels*:3 + + + Comma separated list of class:level, level is 0-3 + Lista separada por comas de la clase:nivel, el nivel es 0-3 + + + Print out version information + Mostrar información de versión + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Desconocido + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + El archivo de audio %1 no parece válido. + + + 1 day + 1 día + + + %1 days + %1 días + + + Today + Hoy + + + Yesterday + Ayer + + + %1 days ago + hace %1 días + + + Tomorrow + Mañana + + + In %1 days + En %1 días + + + Next week + Próxima semana + + + In %1 weeks + En %1 semanas + + + Show in file browser + Mostrar en el navegador de archivos + + + Too many songs selected. + Demasiadas pistas seleccionadas + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + Se han seleccionado %1 temas en %2 directorios. ¿Confirma que quiere abrirlos todos? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Error desconocido + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + artista + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Campos disponibles + + + after + Después + + + before + antes + + + on + el + + + not on + no el + + + in the last + en el último + + + not in the last + no en los últimos + + + between + entre + + + contains + contiene + + + does not contain + no contiene + + + starts with + comienza por + + + ends with + termina en + + + greater than + mayor que + + + less than + menos de + + + equals + es igual a + + + not equals + no es igual a + + + empty + vacío + + + not empty + no vacío + + + Comment + Comentario + + + A-Z + + + + Z-A + + + + oldest first + el más antiguo primero + + + newest first + El más nuevo primero + + + shortest first + el más corto primero + + + longest first + El más largo primero + + + smallest first + el más pequeño primero + + + biggest first + primero el mayor + + + Hours + Horas + + + Days + Días + + + Weeks + Semanas + + + Months + Meses + + + Years + Años + + + Normal + + + + Angry + Enfadado + + + Frozen + Congelado + + + Happy + Feliz + + + System colors + Colores del sistema + + + + QWidget + + Clear + Borrar + + + Reset + Restablecer + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Sin coincidencias. + + + Unknown error + Error desconocido + + + + QobuzService + + Authenticating... + Autenticando… + + + Maximum number of login attempts reached. + Se ha alcanzado el número máximo de intentos de acceso. + + + Missing Qobuz app ID. + Falta el identificador de aplicación de Qobuz. + + + Missing Qobuz username. + Falta el usuario de Qobuz. + + + Missing Qobuz password. + Falta la contraseña de Qobuz. + + + Not authenticated with Qobuz. + No se ha accedido a Qobuz. + + + Missing Qobuz app ID or secret. + Falta el identificador de aplicación o el secreto de Qobuz. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Activar + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + La compatibilidad con Qobuz no es oficial y precisa de una ficha de API procedente de una aplicación registrada. No le podemos ayudar a conseguirla. + + + Authentication + Autenticación + + + App ID + Id. de aplic. + + + Username + Usuario + + + Password + Contraseña + + + App Secret + Secreto de aplicación + + + Login + Acceder + + + Preferences + Preferencias + + + Audio format + Formato de audio + + + Search delay + Demora de búsqueda + + + ms + + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de pistas + + + Download album covers + Descargar las cubiertas de los álbumes + + + Base64 encoded secret + + + + Configuration incomplete + Configuración incompleta + + + Missing app id. + Falta el identificador de aplicación. + + + Missing username. + Falta el usuario. + + + Missing password. + Falta la contraseña. + + + Authentication failed + Falló la autenticación + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Falta el identificador de aplicación o el secreto de Qobuz. + + + Cancelled. + Cancelado. + + + + Queue + + %n track(s) + + + + + + + + + + + + QueueView + + QueueView + Vista de la cola + + + Move down + Bajar + + + Ctrl+Up + Ctrl+Arriba + + + Move up + Subir + + + Ctrl+Down + + + + Remove + Eliminar + + + Clear + Borrar + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + Formulario + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Gestor de agrupamientos guardados + + + Remove + Eliminar + + + Ctrl+Up + Ctrl+Arriba + + + Name + Nombre + + + First level + Primer nivel + + + Second Level + Segundo nivel + + + Third Level + Tercer nivel + + + None + Ninguno + + + Album artist + Artista del álbum + + + Artist + Artista + + + Album + Álbum + + + Album - Disc + Álbum - Disco + + + Year - Album + Año - álbum + + + Year - Album - Disc + Año - álbum - disco + + + Original year - Album + Año original - álbum + + + Original year - Album - Disc + Año original - álbum - disco + + + Disc + Disco + + + Year + Año + + + Original year + Año original + + + Genre + Género + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + File type + Tipo + + + Format + Formato + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + Unknown + Desconocido + + + + ScrobblerSettingsPage + + Scrobbler + Registro de reproducción + + + Enable + Activar + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + La reproducción de una canción es registrada solo si dispone de metadatos válidos, dura más de 30 segundos y se ha reproducido al menos durante la mitad de su duración o 4 minutos (lo que ocurra primero). + + + Work in offline mode (Only cache scrobbles) + Trabajar sin conexión (solo registros de reproducción prealmacenados) + + + Show scrobble button + Mostrar botón de registro de reproducción + + + Show love button + Mostrar el botón "Me gusta" + + + Submit scrobbles every + Emitir al servidor de registro cada + + + seconds + segundos + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + Preferir artista del álbum al registrar reproducción + + + Show dialog for errors + Mostrar errores + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Activar seguimiento de reproducción para: + + + Collection + Colección + + + Subsonic + + + + Local file + Archivo local + + + Tidal + + + + Device + Dispositivo + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Transmisión + + + Radio Paradise + + + + Unknown + Desconocido + + + Last.fm + + + + Login + Acceder + + + Libre.fm + + + + Listenbrainz + + + + User token: + Ficha de usuario: + + + Enter your user token from + Introduzca su ficha de usuario de + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + Autenticación en el servicio de registro de reproducciones %1 + + + Open URL in web browser? + ¿Quiere abrir el URL en el navegador? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Pulse en «Guardar» para copiar el URL en el portapapeles y ábralo en el navegador manualmente. + + + Could not open URL. Please open this URL in your browser + No se ha podido abrir URL. Por favor, ábrela en tu navegador + + + Invalid reply from web browser. Missing token. + El servidor web devolvió una respuesta no válida. Falta la ficha. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + ¡No se ha iniciado sesión en servicio de registro de reproducción %1! + + + Scrobbler %1 error: %2 + Registro de reproducción %1 error: %2 + + + + SettingsDialog + + Settings + Configuración + + + General + + + + User interface + Interfaz de usuario + + + Streaming + Transmitiendo + + + + SmartPlaylistQuerySearchPage + + Form + Formulario + + + Search mode + Mode de búsqueda + + + Match every search term (AND) + Hacer coincidir todos los términos (Y) + + + Match one or more search terms (OR) + Hacer coincidir algún término (O) + + + Include all songs + Incluir todas las canciones + + + Search terms + Términos de búsqueda + + + + SmartPlaylistQuerySortPage + + Form + Formulario + + + Sorting + Ordenación + + + Put songs in a random order + Disponer canciones en orden aleatorio + + + Sort songs by + Ordenar temas por + + + Limits + Límites + + + Show all the songs + Mostrar todos los temas + + + Only show the first + Mostrar solo el primero + + + songs + temas + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Búsqueda en la colección + + + Find songs in your collection that match the criteria you specify. + Encuentre temas en la colección que coincidan con los criterios que especifique. + + + Search terms + Términos de búsqueda + + + A song will be included in the playlist if it matches these conditions. + Se incluirá el tema si cumple estas condiciones. + + + Search options + Opciones de búsqueda + + + Choose how the playlist is sorted and how many songs it will contain. + Selecciona como se ordenará la lista y qué temas contendrá + + + + SmartPlaylistSearchPreview + + Form + Formulario + + + Preview + Previsualización + + + Loading... + Cargando… + + + %1 songs found (showing %2) + %1 canciones encontradas (se muestran %2) + + + %1 songs found + %1 canciones encontradas + + + + SmartPlaylistSearchTermWidget + + Form + Formulario + + + and + y + + + ago + hace + + + The second value must be greater than the first one! + El segundo valor debe ser mayor que el primero. + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Añadir término de búsqueda + + + + SmartPlaylistWizard + + Smart playlist + Lista inteligentes + + + Playlist type + Tipo de lista + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Una lista inteligente es una lista dinámica de temas de la fonoteca. Hay distintos tipos de listas inteligentes que permiten seleccionar los temas de distintas maneras. + + + Finish + Terminar + + + Choose a name for your smart playlist + Escoja un nombre para su lista inteligente + + + + SmartPlaylistWizardFinishPage + + Form + Formulario + + + Name + Nombre + + + Use dynamic mode + Usar modo dinámico + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + En el modo dinámico se escogerán y añadirán nuevas pistas cada vez que un tema finalice. + + + + SmartPlaylists + + Newest tracks + Pistas más nuevas + + + 50 random tracks + 50 pistas aleatorias + + + Ever played + Ya reproducido + + + Never played + Nunca reproducidas + + + Last played + + + + Most played + Más reproducidas + + + Favourite tracks + Pistas favoritas + + + All tracks + Todas las pistas + + + Dynamic random mix + Mezcla aleatoria dinámica + + + + SmartPlaylistsViewContainer + + New smart playlist + Lista inteligente nueva + + + Edit smart playlist + Editar lista inteligente + + + Delete smart playlist + Eliminar lista inteligente + + + New smart playlist... + Lista inteligente nueva… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Play next + Reproducir siguiente + + + Edit smart playlist... + Editar lista inteligente... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry se está ejecutando como un Snap + + + It is detected that Strawberry is running as a Snap + Se ha detectado que Strawbery está ejecutándose como un «snap» + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry se está ejecutando como un snap + + + For Ubuntu there is an official PPA repository available at %1. + Hay un repositorio PPA oficial para Ubuntu en %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Existen versiones oficiales para Debian y Ubuntu que también funcionan en la mayor parte de sus derivados. Mira %1 para obtener más información. + + + For a better experience please consider the other options above. + Tenga en cuenta las opciones anteriores para lograr una experiencia óptima. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + Desinstale el «snap» con: + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + Necesita GStreamer para este URL + + + Preload function was not set for blocking operation. + La función de precarga no se ajustó para un funcionamiento con bloqueo. + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + La reproducción de CD solo es posible con el motor GStreamer. + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + Error al cargar el CD de audio. + + + Loading tracks + Cargando pistas + + + Loading tracks info + Cargando información de pistas + + + + SpotifyRequest + + Authenticating... + Autenticando… + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Sin coincidencias. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Autenticación en Spotify + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code or state! + ¡Falta código de token o estado! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Activar + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Preferencias + + + Search delay + Demora de búsqueda + + + ms + + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de pistas + + + Download album covers + Descargar las cubiertas de los álbumes + + + Fetch entire albums when searching songs + Devolver el álbum completo al buscar pistas + + + Authentication failed + Falló la autenticación + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Pulse aquí para recuperar música + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Queue to play next + Poner en cola para reproducir a continuación + + + Remove from favorites + Eliminar de favoritos + + + + StreamingCollectionViewContainer + + Form + Formulario + + + Close + Cerrar + + + Abort + Interrumpir + + + Refresh catalogue + Actualizar catálogo + + + + StreamingSearchModel + + Various artists + Varios artistas + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + artistas + + + albums + álbumes + + + songs + temas + + + Enter search terms above to find music + Introduzca términos de búsqueda arriba para buscar en la colección + + + Configure %1... + Configurar %1… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Add to artists + Añadir a artistas + + + Add to albums + Añadir a álbumes + + + Add to songs + Añadir a temas + + + Search for this + Buscar esto + + + Group by + Agrupar por + + + + StreamingSongsView + + Configure %1... + Configurar %1… + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Artistas + + + Albums + Álbumes + + + Songs + Pistas + + + Search + Buscar + + + Configure %1... + Configurar %1… + + + + SubsonicRequest + + Retrieving albums... + Buscando álbumes... + + + Retrieving songs for %1 album... + Buscando pistas de %1 álbum... + + + Retrieving songs for %1 albums... + Buscando pistas de %1 álbumes... + + + Retrieving album cover for %1 album... + Buscando cubierta del álbum %1... + + + Retrieving album covers for %1 albums... + Buscando cubiertas de %1 álbumes. + + + Unknown error + Error desconocido + + + + SubsonicService + + Server URL is invalid. + La dirección URL del servidor es inválida. + + + Missing username or password. + Falta el usuario o la contraseña. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Activar + + + Server URL + URL del servidor + + + Authentication + Autenticación + + + Username + Usuario + + + Password + Contraseña + + + Authentication method: + Metodo de autentificacion + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Preferencias + + + Use HTTP/2 when possible + + + + Verify server certificate + Verificar el certificado del servidor + + + Download album covers + Descargar las cubiertas de los álbumes + + + Server-side scrobbling + Seguimiento de reproducción en el servidor + + + Test + Probar + + + Delete songs + + + + Configuration incomplete + Configuración incompleta + + + Missing server url, username or password. + Falta el URL del servidor, el usuario o la contraseña. + + + Configuration incorrect + Configuración incorrecta + + + Server URL is invalid. + La dirección URL del servidor es inválida. + + + Test successful! + ¡Prueba correcta! + + + Test failed! + ¡Prueba fallida! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + La dirección URL del servidor de Subsonic es errónea + + + Missing Subsonic username or password. + Falta el usuario o la contraseña de Qobuz. + + + + SystemTrayIcon + + Pause + Pausar + + + Play + Reproducir + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Autenticando… + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Sin coincidencias. + + + + TidalService + + Reply from Tidal is missing query items. + Faltan elementos en la respuesta de Tidal. + + + Missing Tidal API token. + Falta la ficha de API de Tidal. + + + Missing Tidal username. + Falta el usuario de Tidal. + + + Missing Tidal password. + Falta la contraseña de Tidal. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Se ha alcanzado el número máximo de intentos sin lograr acceder a Tidal. + + + Not authenticated with Tidal. + No se ha accedido a Tidal. + + + Missing Tidal API token, username or password. + Falta la ficha de la API de Tidal, el usuario o la contraseña. + + + + TidalSettingsPage + + Tidal + + + + Enable + Activar + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + La compatibilidad con Tidal no es oficial y precisa de una ficha de API procedente de una aplicación registrada. No le podemos ayudar a conseguirla. + + + Authentication + Autenticación + + + Use OAuth + Utilizar OAuth + + + Client ID + Id. de cliente + + + API Token + Ficha de API + + + Username + Usuario + + + Password + Contraseña + + + Login + Acceder + + + Preferences + Preferencias + + + Audio quality + Calidad de audio + + + Search delay + Demora de búsqueda + + + ms + + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de pistas + + + Download album covers + Descargar las cubiertas de los álbumes + + + Fetch entire albums when searching songs + Devolver el álbum completo al buscar pistas + + + Album cover size + Tamaño de la cubierta del álbum + + + Stream URL method + Método de streaming de URL + + + Append explicit to album title for explicit albums + Añadir «explícito» al nombre de los álbumes explícitos + + + Configuration incomplete + Configuración incompleta + + + Missing Tidal client ID. + Falta el identificador de cliente de Tidal. + + + Missing API token. + Falta la ficha de la API. + + + Missing username. + Falta el usuario. + + + Missing password. + Falta la contraseña. + + + Authentication failed + Falló la autenticación + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + No se ha accedido a Tidal. + + + Missing Tidal API token, username or password. + Falta la ficha de la API de Tidal, el usuario o la contraseña. + + + Cancelled. + Cancelado. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + Obtener etiquetas + + + Sorry + Lo sentimos + + + Strawberry was unable to find results for this file + Strawberry no encontró resultados para este archivo + + + Select best possible match + Seleccionar la mejor coincidencia + + + Track + Pista + + + Year + Año + + + Title + Título + + + Artist + Artista + + + Album + Álbum + + + Previous + Anterior + + + Next + Siguiente + + + Original tags + Etiquetas originales + + + Suggested tags + Etiquetas sugeridas + + + Saving tracks + Guardando las pistas + + + + TrackSlider + + Form + Formulario + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Pulse para alternar entre el tiempo restante y el total + + + + TranscodeDialog + + Transcode Music + Convertir música + + + Files to transcode + Archivos que convertir + + + Filename + Nombre del archivo + + + Directory + Directorio + + + Add... + Añadir... + + + Remove + Eliminar + + + Add all tracks from a directory and all its subdirectories + Añadir todas las pistas de una carpeta y sus subcarpetas + + + Import... + Importar… + + + Output options + Opciones de salida + + + Audio format + Formato de audio + + + Options... + Opciones… + + + Destination + Destino + + + Alongside the originals + Junto a los originales + + + Select... + Seleccionar... + + + Progress + Progreso + + + Details... + Detalles… + + + Clear + Borrar + + + Start transcoding + Iniciar la conversión + + + %n remaining + + %n pendientes + + + + + + + + + %n finished + + %n completados + + + + + + + + + %n failed + + %n falló + + + + + + + + + Add files to transcode + Añadir archivos que convertir + + + Music + Música + + + Open a directory to import music from + Abrir una carpeta de la que importar música + + + Add folder + Añadir carpeta + + + + TranscodeLogDialog + + Transcoder Log + Registro del conversor + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados todos los complementos necesarios de GStreamer. + + + Successfully written %1 + %1 se ha escrito correctamente + + + Transcoding %1 files using %2 threads + Convirtiendo %1 archivos usando %2 procesos + + + Error processing %1: %2 + Error al procesar %1: %2 + + + Starting %1 + Iniciando %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + No se pudo encontrar un codificador para %1; compruebe que tiene instalados los complementos correctos de GStreamer + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + No se pudo encontrar un mezclador para %1; compruebe que tiene instalados los complementos correctos de GStreamer + + + + TranscoderOptionsAAC + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + Profile + Perfil + + + Main profile (MAIN) + Perfil principal (MAIN) + + + Low complexity profile (LC) + Perfil de baja complejidad (LC) + + + Scalable sampling rate profile (SSR) + Perfil de tasa de muestreo escalable (SSR) + + + Long term prediction profile (LTP) + Perfil de predicción a largo plazo (LTP) + + + Use temporal noise shaping + Usar conformación de ruido temporal + + + Allow mid/side encoding + Permitir codificación MS (suma / diferencia) + + + Block type + Tipo de bloque + + + Normal block type + Tipo de bloque normal + + + No short blocks + Sin bloques cortos + + + No long blocks + Sin bloques largos + + + + TranscoderOptionsASF + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + + TranscoderOptionsDialog + + Transcoding options + Opciones de conversión + + + + TranscoderOptionsFLAC + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Fast + Rápido + + + Best + Mejor + + + + TranscoderOptionsMP3 + + Form + Formulario + + + Optimize for &quality + Optimizar para &calidad + + + Quality + Sound quality + Calidad + + + Opti&mize for bitrate + Opti&mizar para tasa de bits + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + Constant bitrate + Tasa de bits constante + + + Encoding engine quality + Calidad del motor de codificación + + + Fast + Rápido + + + Standard + Estándar + + + High + Alto + + + Force mono encoding + Forzar la codificación monoaural + + + + TranscoderOptionsOpus + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + + TranscoderOptionsSpeex + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Bitrate + Tasa de bits + + + automatic + automático + + + kbps + kb/s + + + Average bitrate + Tasa media de bits + + + disabled + desactivado + + + Encoding mode + Modo de codificación + + + Auto + Autom. + + + Ultra wide band (UWB) + Banda ultraancha (UWB) + + + Wide band (WB) + Banda ancha (WB) + + + Narrow band (NB) + Banda estrecha (NB) + + + Variable bit rate + Tasa de bits variable + + + Voice activity detection + Detección de actividad de voz + + + Discontinuous transmission + Transmisión discontinua + + + Encoding complexity + Complejidad de codificación + + + Frames per buffer + Fotogramas por búfer + + + + TranscoderOptionsVorbis + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Use bitrate management engine + Usar el motor de gestión de flujo de bits + + + Target bitrate + Tasa de bits objetivo + + + kbps + kb/s + + + Minimum bitrate + Tasa de bits mínima + + + disabled + desactivado + + + Maximum bitrate + Tasa de bits máxima + + + + TranscoderOptionsWavPack + + Form + Formulario + + + + TranscoderSettingsPage + + Transcoding + Convirtiendo + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Estos ajustes se usa en la ventana «Convertir música» y al convertir canciones antes de copiarlas en un dispositivo. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + Ruta de D-Bus + + + Serial number + Número de serie + + + Mount points + Puntos de montaje + + + Partition label + Etiqueta de partición + + + UUID + + + + + UserPassDialog + + Enter username and password + Introduzca usuario y contraseña + + + Username + Usuario + + + Password + Contraseña + + + diff --git a/src/translations/strawberry_es_ES.ts b/src/translations/strawberry_es_ES.ts new file mode 100644 index 00000000..cc2abb85 --- /dev/null +++ b/src/translations/strawberry_es_ES.ts @@ -0,0 +1,7568 @@ + + + + + About + + About + Acerca de + + + About Strawberry + Acerca de Strawberry + + + Version %1 + Versión %1 + + + Strawberry is a music player and music collection organizer. + Strawberry es un reproductor y catalogador de colecciones musicales. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Es un desarrollo derivado de Clementine lanzado en 2018 destinado a melómanos y audiófilos. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry es un programa libre, disponible en virtud de la licencia GPL. El código fuente puede encontrarse en %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Debería haber recibido una copia de la Licencia Pública General GNU junto con este programa. Si no es así, diríjase a %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Si le gusta Strawberry y le da uso, plantéese patrocinarlo o realizar una donación. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Puede patrocinar al autor en %1. También puede realizar una aportación económica a través de %2. + + + Author and maintainer + Autor y responsable + + + Contributors + Colaboradores + + + Clementine authors + Autores de Clementine + + + Clementine contributors + Colaboradores de Clementine + + + Thanks to + Gracias a + + + Thanks to all the other Amarok and Clementine contributors. + Gracias al resto de colaboradores de Amarok y Clementine. + + + + AddStreamDialog + + Add Stream + Añadir retransmisión + + + Enter the URL of a stream: + Introduzca el URL de una retransmisión: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Imágenes (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Imágenes (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Todos los archivos (*) + + + Load cover from disk... + Cargar portada desde disco… + + + Save cover to disk... + Guardar la portada en el disco… + + + Load cover from URL... + Cargar portada desde un URL… + + + Search for album covers... + Buscar portadas de álbumes… + + + Unset cover + Quitar la portada + + + Delete cover + Eliminar portada + + + Clear cover + Eliminar portada + + + Show fullsize... + Mostrar a tamaño completo… + + + Search automatically + Buscar automáticamente + + + Load cover from disk + Cargar portada desde disco + + + Failed to open cover file %1 for reading: %2 + No se ha podido leer el archivo de portada %1: %2 + + + Cover file %1 is empty. + El archivo de portada %1 está vacío. + + + unknown + desconocido + + + Save album cover + Guardar la portada del álbum + + + Failed to open cover file %1 for writing: %2 + No se ha podido escribir el archivo de portada %1: %2 + + + Failed writing cover to file %1: %2 + Error escribiendo la portada en el archivo %1: %2 + + + Failed writing cover to file %1. + Error escribiendo la portada en el archivo %1. + + + Failed to delete cover file %1: %2 + No se ha podido eliminar el archivo de portada %1: %2 + + + Failed to write cover to file %1: %2 + No se ha podido escribir la portada en el archivo %1: %2 + + + Could not save cover to file %1. + No se pudo guardar la portada en el fichero %1. + + + + AlbumCoverExport + + Export covers + Exportar portadas + + + Output + Salida + + + Enter a filename for exported covers (no extension): + Introduzca un nombre de archivo para las portadas exportadas (sin extensión): + + + Export downloaded covers + Exportar portadas descargadas + + + Export embedded covers + Exportar portadas incrustadas + + + Existing covers + Portadas existentes + + + Do not overwrite + No sobrescribir + + + O&verwrite all + &Sobrescribir todo + + + Overwrite s&maller ones only + Sobrescribir únicamente los &más pequeños + + + Size + Tamaño + + + Scale size + Tamaño de escala + + + Size: + Tamaño: + + + Pixel + Píxel + + + + AlbumCoverManager + + Abort + Interrumpir + + + All albums + Todos los álbumes + + + Albums with covers + Álbumes con portada + + + Albums without covers + Álbumes sin portada + + + Really cancel? + ¿Confirma que quiere cancelar? + + + Closing this window will stop searching for album covers. + Si cierra esta ventana se detendrá la búsqueda de portadas para los álbumes. + + + Don't stop! + ¡No detener! + + + All artists + Todos los artistas + + + Various artists + Varios artistas + + + Got %1 covers out of %2 (%3 failed) + Se obtuvieron %1 portadas de %2 (%3 fallaron) + + + %1 transferred + %1 transferido + + + Export finished + Exportación finalizada + + + No covers to export. + No hay ninguna portada que exportar. + + + Exported %1 covers out of %2 (%3 skipped) + Se han exportado %1 portadas de %2 (%3 omitidas) + + + Could not save cover to file %1. + No se pudo guardar la portada en el fichero %1. + + + + AlbumCoverSearcher + + Cover Manager + Gestor de portadas + + + Artist + Artista + + + Album + Álbum + + + Search + Buscar + + + Covers from %1 + Portadas de %1 + + + Abort + Interrumpir + + + + AnalyzerContainer + + Framerate + Tasa de fotogramas + + + Low (%1 fps) + Baja (%1 fps) + + + Medium (%1 fps) + Media (%1 fps) + + + High (%1 fps) + Alta (%1 fps) + + + Super high (%1 fps) + Muy alta (%1 fps) + + + No analyzer + Sin analizador + + + Block analyzer + Analizador de bloques + + + Boom analyzer + Analizador de resonancia + + + Turbine + Turbine + + + Sonogram + Sonograma + + + WaveRubber + WaveRubber + + + + AppearanceSettingsPage + + Appearance + Apariencia + + + Style + Estilo + + + Use system theme icons + Usar iconos del tema del sistema + + + Settings require restart. + Los ajustes requieren reiniciar. + + + Tabbar colors + Colores barra pestañas + + + &Use the system default color + &Usar el color predeterminado del sistema + + + Use custom color + Usar color personalizado + + + Use gradient background + Usar fondo degradado + + + Select tabbar color: + Seleccionar color barra pestañas: + + + Background image + Imagen de fondo + + + Default bac&kground image + Imagen de &fondo predeterminada + + + &No background image + &Sin imagen de fondo + + + The album cover of the currently playing song + La portada del álbum del tema en reproducción + + + Albu&m cover + &Portada del álbum + + + Custom image: + Imagen personalizada: + + + Browse... + Examinar… + + + Position + Posición + + + Upper Left + Superior izquierda + + + Upper Right + Superior derecha + + + Middle + Medio + + + Bottom Left + Inferior izquierda + + + Bottom Right + Inferior derecha + + + Max cover size + Tamaño máximo de portada + + + Stretch image to fill playlist + Ajustar la imagen a la lista de reproducción + + + Keep aspect ratio + Mantener proporción + + + Do not cut image + No recortar la imagen + + + Blur amount + Cantidad de desenfoque + + + 0px + 0 px + + + Opacity + Opacidad + + + 40% + 40 % + + + Icon sizes + Tamaños de iconos + + + Playlist buttons + Botones de lista de reproducción + + + Tabbar large mode + Barra pequeña + + + Play control buttons + Botones de control de reproducción + + + Configure buttons + Configurar botones + + + Files, playlists and queue buttons + Botones de archivos, listas y cola + + + Tabbar small mode + Barra grande + + + Playlist playing song color + Color de tema de la lista en reproducción + + + System highlight color + Color de resalte del sistema + + + Custom color + Color personalizado + + + Select playlist playing song color: + Color de tema de la lista en reproducción: + + + Select background image + Elija la imagen de fondo + + + + BackendSettingsPage + + Backend + Sistema de audio + + + Audio output + Salida de audio + + + Device + Dispositivo + + + Output + Salida + + + Engine + Motor + + + ALSA plugin: + Complemento de ALSA: + + + hw + hw + + + p&lughw + p&lughw + + + pcm + pcm + + + Exclusive mode (Experimental) + Modo exclusivo (experimental) + + + Options + Opciones + + + Enable volume control + Activar control de volumen + + + Upmix / downmix to + Remezclar a + + + channels + canales + + + Improve headphone listening of stereo audio records (bs2b) + Mejorar la escucha por auriculares de grabaciones de audio estéreo (bs2b) + + + Enable HTTP/2 for streaming + Habilitar HTTP/2 para streaming + + + Use strict SSL mode + Usar modo SSL estricto + + + Buffer + Búfer + + + ms + ms + + + Buffer duration + Duración del búfer + + + High watermark + Marca de agua alta + + + Low watermark + Marca de agua baja + + + Defaults + Valores predeterminados + + + Audio normalization + Normalización de audio + + + No audio normalization + Sin normalización de audio + + + Replay Gain + Ajuste de volumen en reproducción + + + Use Replay Gain metadata if it is available + Usar metadatos de ajuste de volumen en reproducción si están disponibles + + + Replay Gain mode + Modo de ajuste de volumen en reproducción + + + Radio (equal loudness for all tracks) + Radio (volumen igual para todas las pistas) + + + Album (ideal loudness for all tracks) + Álbum (volumen idóneo para todas las pistas) + + + Pre-amp + Preamplificador + + + Apply compression to prevent clipping + Aplicar compresión para evitar saturación + + + Fallback-gain + Ganancia por defecto + + + EBU R 128 Loudness Normalization + Normalización de volumen EBU R 128 + + + Perform track loudness normalization + Realizar la normalización de volumen de la pista + + + Target Level + Nivel de destino + + + Fading + Fundido + + + Fade out when stopping a track + Fundido al detener la reproducción + + + Cross-fade when changing tracks manually + Fundido encadenado al cambiar pistas manualmente + + + Cross-fade when changing tracks automatically + Fundido encadenado al cambiar pistas automáticamente + + + Except between tracks on the same album or in the same CUE sheet + Excepto entre pistas del mismo álbum o en la misma hoja CUE + + + Fading duration + Duración del fundido + + + Fade out on pause / fade in on resume + Fundido al pausar / reanudar + + + + BehaviourSettingsPage + + Behavior + Comportamiento + + + Show system tray icon + Mostrar icono en la bandeja del sistema + + + Keep running in the background when the window is closed + Seguir ejecutando el programa en segundo plano al cerrar la ventana + + + Show song progress on system tray icon + Mostrar avance en el icono de la bandeja del sistema + + + Show song progress on taskbar + Mostrar progreso de la canción en la barra de tareas + + + Resume playback on start + Reanudar la reproducción al iniciar + + + Show playing widget + Mostrar mini aplicación de reproducción + + + On startup + Al iniciar + + + Remember from &last time + Recordar de la ú&ltima vez + + + Show the main window + Mostrar ventana principal + + + Hide the main window + Oculta la ventana principal + + + Show the main window maximized + Mostrar ventana principal maximizada + + + Show the main window minimized + Mostrar ventana principal minimizada + + + Language + Idioma + + + Use the system default + Utilizar valor predeterminado del sistema + + + You will need to restart Strawberry if you change the language. + Necesitará reiniciar Strawberry si cambia el idioma. + + + Using the menu to add a song will... + Usar el menú para añadir un tema… + + + Never start playing + Nunca comenzar la reproducción + + + Play if there is nothing already playing + Reproducir si no hay nada en reproducción + + + Always start playing + Comenzar siempre la reproducción + + + Pressing "Previous" in player will... + Al pulsar en el botón «Anterior» del reproductor… + + + Jump to previous song right away + Ir al tema anterior inmediatamente + + + Restart song, then jump to previous if pressed again + Reiniciar el tema e ir al anterior si se hace clic nuevamente + + + Double clicking a song will... + Al pulsar dos veces en un tema… + + + Append to the playlist + Añadir a la lista de reproducción + + + Replace the playlist + Reemplazar la lista de reproducción + + + Open in new playlist + Abrir en una lista nueva + + + Add to the queue + Añadir a la cola + + + Double clicking a song in the playlist will... + Al pulsar dos veces en un tema en la lista de reproducción… + + + Change the currently playing song + Cambia el tema actualmente en reproducción + + + Seeking using a keyboard shortcut or mouse wheel + Desplazarse usando un atajo de teclado o la rueda del ratón + + + Time step + Salto en el tiempo + + + s + s + + + Volume Increment + Incremento de volumen + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Error al reactivar el dispositivo CDDA. + + + Error while setting CDDA device to pause state. + Error al poner en pausa el dispositivo CDDA. + + + Error while querying CDDA tracks. + Error de acceso a las pistas CDDA. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + No se puede ejecutar la consulta SQL de la colección: %1 + + + Failed SQL query: %1 + Falló la consulta SQL: %1 + + + Updating %1 database. + Actualizando base de datos de %1. + + + + CollectionFilterWidget + + Collection Filter + Filtro de colección + + + Enter search terms here + Introduzca aquí términos de búsqueda + + + MenuPopupToolButton + MenuPopupToolButton + + + Entire collection + Biblioteca completa + + + Added today + Añadidas hoy + + + Added this week + Añadidas esta semana + + + Added within three months + Añadidas en los últimos tres meses + + + Added this year + Añadidas este año + + + Added this month + Añadidas este mes + + + Save current grouping + Guardar agrupamiento actual + + + Manage saved groupings + Gestionar agrupamientos guardados + + + Show + Mostrar + + + Group by + Agrupar por + + + Display options + Opciones de visualización + + + Group by Album artist/Album + Agrupar por artista del álbum/álbum + + + Group by Album artist/Album - Disc + Agrupar por artista del álbum/álbum - disco + + + Group by Album artist/Year - Album + Agrupar por artista del álbum/año - álbum + + + Group by Album artist/Year - Album - Disc + Agrupar por artista del álbum/año - álbum - disco + + + Group by Artist/Album + Agrupar por artista/álbum + + + Group by Artist/Album - Disc + Agrupar por artista/álbum - disco + + + Group by Artist/Year - Album + Agrupar por artista/año - álbum + + + Group by Artist/Year - Album - Disc + Agrupar por artista/año - álbum - disco + + + Group by Genre/Album artist/Album + Agrupar por género/artista del álbum/álbum + + + Group by Genre/Artist/Album + Agrupar por género/artista/álbum + + + Group by Album Artist + Agrupar por artista del álbum + + + Group by Artist + Agrupar por artista + + + Group by Album + Agrupar por álbum + + + Group by Genre/Album + Agrupar por género/álbum + + + Advanced grouping... + Agrupamiento avanzado… + + + Grouping Name + Nombre de agrupamiento + + + Grouping name: + Nombre de agrupamiento: + + + + CollectionModel + + Various artists + Varios artistas + + + Loading... + Cargando… + + + Unknown + Desconocido + + + + CollectionSettingsPage + + Collection + Colección + + + These folders will be scanned for music to make up your collection + Estas carpetas se analizarán en busca de música para crear su colección + + + Add new folder... + Añadir carpeta nueva… + + + Remove folder + Quitar carpeta + + + Automatic updating + Actualización automática + + + Update the collection when Strawberry starts + Actualizar la colección al iniciar Strawberry + + + Monitor the collection for changes + Vigilar cambios en la colección + + + Song fingerprinting and tracking + Identificación y seguimiento de temas + + + Mark disappeared songs unavailable + Marcar los temas desaparecidas como no disponibles + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + Realizar análisis de canción EBU R 128 (requerido para la normalización de volumen EBU R 128) + + + Expire unavailable songs after + Hacer que los tema no disponibles expiren tras + + + days + días + + + Preferred album art filenames (comma separated) + Nombres de archivo preferidos para las portadas (separados por comas) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Al buscar la portada, Strawberry tratará de localizar primero imágenes que contengan una de estas palabras. Si no hay resultados, se usará la imagen más grande de la carpeta. + + + Display options + Opciones de visualización + + + Automatically open single categories in the collection tree + Expandir automáticamente categorías únicas en la colección + + + Show dividers + Mostrar divisores + + + Show album cover art in collection + Mostrar portada del álbum en la colección + + + Use various artists for compilation albums + Usar varios artistas para los álbumes recopilatorios + + + Skip leading articles ("the", "a", "an") when sorting artist names + Omitir artículos precedentes («el», «a», «un») al ordenar los nombres de artistas + + + Album cover pixmap cache + Caché de mapa de bits de portadas + + + Size + Tamaño + + + Enable Disk Cache + Activar caché de disco + + + Disk Cache Size + Tamaño de caché de disco + + + Current disk cache in use: + Caché de disco en uso: + + + Clear Disk Cache + Vaciar caché de disco + + + Song playcounts and ratings + Nº de reproducciones y valoraciones + + + Save playcounts to song tags when possible + Guardar nº de reproducciones en las etiquetas de los temas cuando sea posible + + + Save ratings to song tags when possible + Guardar valoraciones en las etiquetas de los temas cuando sea posible + + + Overwrite database playcount when songs are re-read from disk + Sobreescribir el número de reproducciones al volver a leer los temas desde el disco + + + Overwrite database rating when songs are re-read from disk + Sobreescribir valoraciones al volver a leer los temas desde el disco + + + Save playcounts and ratings to files now + Guarda nº de reproducciones y valoraciones en archivos ahora + + + Enable delete files in the right click context menu + Activar eliminación de archivos en el menú contextual del botón secundario del ratón + + + Add directory... + Añadir carpeta… + + + Write all playcounts and ratings to files + Escribir en los archivos todas las estadísticas de reproducción y valoraciones + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + ¿Está seguro de que quiere guardar el nº de reproducciones y las valoraciones de todos los temas de su colección? + + + + CollectionView + + Your collection is empty! + La colección está vacía! + + + Click here to add some music + Pulse aquí para añadir música + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Queue to play next + Poner en cola para reproducir a continuación + + + Search for this + Buscar esto + + + Organize files... + Organizar archivos… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Edit track information... + Editar información de la pista… + + + Edit tracks information... + Editar información de las pistas… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + Rescan song(s) + Volver a escanear tema(s) + + + Show in various artists + Mostrar en Varios artistas + + + Don't show in various artists + No mostrar en Varios artistas + + + There are other songs in this album + Hay otros temas en este álbum + + + Would you like to move the other songs on this album to Various Artists as well? + ¿Le gustaría mover también el resto de temas del álbum a Varios artistas? + + + Error + Error + + + None of the selected songs were suitable for copying to a device + Ninguna de los temas seleccionados podía copiarse en un dispositivo + + + + CollectionViewContainer + + Form + Formulario + + + + CollectionWatcher + + Updating collection + Actualizando la colección + + + Updating %1 + Actualizando %1 + + + + Console + + Console + Consola + + + Run + Ejecutar + + + + ContextSettingsPage + + Context + Contexto + + + Custom text settings + Configuración de texto personalizada + + + MenuPopupToolButton + MenuPopupToolButton + + + Title + Título + + + Summary + Resumen + + + Enable Items + Activar elementos + + + Album + Álbum + + + Technical Data + Información técnica + + + Song Lyrics + Letra + + + Automatically search for album cover + Buscar automáticamente la portada del álbum + + + Automatically search for song lyrics + Buscar automáticamente la letra de los temas + + + Font for headline + Tipo de letra de títulos + + + Font + Tipo de letra + + + Font size + Tamaño de letra + + + pt + pt + + + Preview + Previsualización + + + Font for data and lyrics + Tipo de letra de datos y letras + + + Add song artist tag + Añadir etiqueta de artista a al tema + + + Add song album tag + Añadir etiqueta de álbum al tema + + + Add song title tag + Añadir etiqueta de título al tema + + + Add song albumartist tag + Añadir etiqueta de artista del álbum al tema + + + Add song year tag + Añadir etiqueta de año al tema + + + Add song composer tag + Añadir etiqueta de compositor al tema + + + Add song performer tag + Añadir etiqueta de intérprete al tema + + + Add song grouping tag + Añadir etiqueta de agrupamiento al tema + + + Add song disc tag + Añadir etiqueta de disco al tema + + + Add song track tag + Añadir etiqueta de pista al tema + + + Add song genre tag + Añadir etiqueta de género al tema + + + Add song length tag + Añadir etiqueta de duración al tema + + + Add song play count + Añadir contador de reproducciones del tema + + + Add song skip count + Añadir contador de omisiones del tema + + + Add a new line if supported by the notification type + Añadir un salto de renglón si el tipo de notificación lo permite + + + %filename% + %filename% + + + Add song filename + Añadir nombre de archivo del tema + + + %url% + %url% + + + Add song URL + Añadir URL del tema + + + %rating% + %rating% + + + Add song rating + Añadir valoración del tema + + + %originalyear% + %originalyear% + + + Add song original year tag + Añadir etiqueta de año original + + + + ContextView + + Filetype + Tipo de archivo + + + Length + Duración + + + Samplerate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + EBU R 128 Integrated Loudness + Volumen integrado EBU R 128 + + + EBU R 128 Loudness Range + Rango de volumen EBU R 128 + + + Show album cover + Mostrar portada del álbum + + + Show song technical data + Mostrar información técnica del tema + + + Show song lyrics + Mostrar letras + + + Automatically search for song lyrics + Buscar automáticamente la letra de los temas + + + No song playing + No está sonando ningún tema + + + %1 song + %1 tema + + + %1 songs + %1 temas + + + %1 artist + %1 artista + + + %1 artists + %1 artistas + + + %1 album + %1 álbum + + + %1 albums + %1 álbumes + + + kbps + kb/s + + + + CoverFromURLDialog + + Load cover from URL + Cargar portada desde un URL + + + Enter a URL to download a cover from the Internet: + Introduzca un URL para descargar una portada de Internet: + + + Fetching cover error + Error al obtener la portada + + + The site you requested does not exist! + El sitio indicado no existe! + + + The site you requested is not an image! + El sitio indicado no es una imagen! + + + + CoverManager + + Cover Manager + Gestor de portadas + + + Enter search terms here + Introduzca aquí términos de búsqueda + + + MenuPopupToolButton + MenuPopupToolButton + + + View + Ver + + + Total albums: + Álbumes totales: + + + Without cover: + Sin portada: + + + 0 + 0 + + + Fetch Missing Covers + Obtener las portadas que faltan + + + Export Covers + Exportar portadas + + + Fetch automatically + Obtener automáticamente + + + Load + Cargar + + + Add to playlist + Añadir a la lista de reproducción + + + + CoverSearchStatisticsDialog + + Fetch completed + Descarga finalizada + + + Got %1 covers out of %2 (%3 failed) + Se obtuvieron %1 portadas de %2 (%3 fallaron) + + + Covers from %1 + Portadas de %1 + + + Total network requests made + Total de solicitudes hechas a la red + + + Average image size + Tamaño medio de imagen + + + Total bytes transferred + Total de bytes transferidos + + + + CoversSettingsPage + + Covers + Portadas + + + Cover providers + Proveedores de postadas + + + Choose the providers you want to use when searching for covers. + Selecciona los proveedores de búsqueda de portadas. + + + Move up + Subir + + + Move down + Bajar + + + Authentication + Autenticación + + + Login + Acceder + + + Album cover types + Tipos de portada de álbum + + + Saving album covers + Guardando portadas de álbumes + + + Save album covers in album directory + Guardar las portadas en la carpeta de álbumes + + + Save album covers in cache directory + Guardar portadas en carpeta de caché + + + Save album covers as embedded cover + Guardar portadas del álbum como elementos incrustados + + + Filename: + Archivo: + + + Pattern + Pauta + + + Random + Al azar + + + Overwrite existing file + Sobrescribir archivo existente + + + Lowercase filename + Nombre de archivo en minúsculas + + + Replace spaces with dashes + Sustituir espacios por guiones + + + Use Tidal settings to authenticate. + Usar ajustes de Tidal para autenticarse. + + + Use Spotify settings to authenticate. + Usar ajustes de Spotify para autenticarse. + + + Use Qobuz settings to authenticate. + Usar ajustes de Qobuz para autenticarse. + + + %1 needs authentication. + ubiertalaylists%1 necesita autenticación. + + + %1 does not need authentication. + %1 no necesita autenticación. + + + No provider selected. + No se ha seleccionado ningún proveedor. + + + Authentication failed + Falló la autenticación + + + Manually unset (%1) + Indefinido manualmente (%1) + + + Set through album cover search (%1) + Establecer mediante la búsqueda de portada de álbum (%1) + + + Automatically picked up from album directory (%1) + Tomado automáticamente del directorio del álbum (%1) + + + Embedded album cover art (%1) + Portada de álbum incrustada (%1) + + + + CueParser + + Saving CUE files is not supported. + Guardar archivos CUE no está soportado. + + + + Database + + Unable to execute SQL query: %1 + No se puede ejecutar la consulta SQL: %1 + + + Failed SQL query: %1 + Falló la consulta SQL: %1 + + + Integrity check + Comprobación de integridad + + + Database corruption detected. + Se han detectado errores en la base de datos. + + + Backing up database + Haciendo copia de respaldo de la base de datos + + + + DeleteConfirmationDialog + + Delete files + Eliminar archivos + + + The following files will be deleted from disk: + Los siguientes archivos serán borrados del disco: + + + Are you sure you want to continue? + ¿Confirma que quiere continuar? + + + + DeleteFiles + + Deleting files + Eliminando los archivos + + + + DeviceItemDelegate + + Updating %1%... + Actualizando… (%1%) + + + Not connected + No conectado + + + Not mounted - double click to mount + Sin montar. Pulse dos veces para montar + + + Double click to open + Doble clic para abrir + + + %1 song%2 + %1 tema%2 + + + + DeviceManager + + Connect device + Conectar dispositivo + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Esta es la primera vez que conecta este dispositivo. Strawberry analizará el dispositivo ahora para encontrar archivos de música; esto podría tardar un poco. + + + This device will not work properly + Este dispositivo no funcionará correctamente + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Este es un dispositivo MTP, pero se compiló Strawberry sin compatibilidad con libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Si continúa, este dispositivo funcionará con lentitud y los temas que se copien en él podrían no funcionar. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Esto es un iPod, pero se compiló Strawberry sin compatibilidad con libgpod. + + + This type of device is not supported: %1 + No se admite este tipo de dispositivo: %1 + + + + DeviceProperties + + Device Properties + Propiedades del dispositivo + + + Information + Información + + + Name + Nombre + + + Icon + Icono + + + Hardware information + Información del hardware + + + Hardware information is only available while the device is connected. + La información del hardware solo está disponible cuando el dispositivo está conectado. + + + File formats + Formatos de archivo + + + Supported formats + Formatos admitidos + + + This device supports the following file formats: + Este dispositivo admite los formatos de archivo siguientes: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry puede convertir automáticamente la música que copie en este dispositivo en un formato que pueda reproducir. + + + Do not convert any music + No convertir ninguna pista + + + Convert any music that the device can't play + Convertir las pistas que el dispositivo no pueda reproducir + + + Convert all music + Convertir toda la música + + + Preferred format + Formato preferido + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Este dispositivo debe conectarse y abrirse antes de que Strawberry pueda ver qué formatos de archivo admite. + + + Open device + Abrir dispositivo + + + Querying device... + Consultando dispositivo… + + + Model + Modelo + + + Manufacturer + Fabricante + + + + DeviceView + + Safely remove device + Quitar dispositivo con seguridad + + + Forget device + Olvidar dispositivo + + + Device properties... + Propiedades del dispositivo… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Copy to collection... + Copiar en la colección… + + + Delete from device... + Eliminar del dispositivo… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Olvidar un dispositivo lo eliminará de la lista y Strawberry tendrá que volver a examinar todos los temas la próxima vez que lo conecte. + + + Delete files + Eliminar archivos + + + These files will be deleted from the device, are you sure you want to continue? + Se eliminarán estos archivos del dispositivo. ¿Confirma que quiere continuar? + + + + DeviceViewContainer + + Form + Formulario + + + + DynamicPlaylistControls + + Dynamic mode is on + Modo dinámico activado + + + New tracks will be added automatically. + Las pistas nuevas se añadirán automáticamente. + + + Expand + Expandir + + + Repopulate + Volver a poblar + + + Turn off + Apagar + + + + EditTagDialog + + Edit track information + Editar información de la pista + + + Summary + Resumen + + + Date created + Fecha de creación + + + Art Automatic + Portada automática + + + Date modified + Fecha de modificación + + + Art Embedded + Arte incrustado + + + Last played + A playlist's tag. + + + + File type + Tipo + + + Length + Duración + + + Play count + Número de reproducciones + + + Bit depth + Resolución + + + EBU R 128 integrated loudness + volumen integrado EBU R 128 + + + Bit rate + Tasa de bits + + + Skip count + Número de omisiones + + + Sample rate + Frecuencia + + + Path + Ruta + + + Filename + Nombre del archivo + + + Art Unset + Arte sin establecer + + + File size + Tamaño del archivo + + + Art Manual + Portada manual + + + EBU R 128 loudness range + rango de volumen EBU R 128 + + + Reset play counts + Reiniciar contador de reproducciones + + + Tags + Etiquetas + + + MenuPopupToolButton + MenuPopupToolButton + + + Change art + Cambiar portada + + + Embedded cover + Portada incrustada + + + Disc + Disco + + + Grouping + Agrupamiento + + + Album artist + Artista del álbum + + + Album + Álbum + + + Year + Año + + + Title + Título + + + Artist + Artista + + + Composer + Compositor + + + Complete tags automatically + Completar etiquetas automáticamente + + + Genre + Género + + + Comment + Comentario + + + Performer + Intérprete + + + Compilation + Compilación + + + Track + Pista + + + Rating + Valoración + + + Lyrics + Letras + + + Complete lyrics automatically + Completa letra automáticamente + + + Previous + Anterior + + + Next + Siguiente + + + Saving tracks + Guardando las pistas + + + Loading tracks + Cargando pistas + + + %1 songs selected. + %1 temas seleccionados. + + + kbps + kb/s + + + Unknown + Desconocido + + + Yes + + + + No + No + + + None + Ninguno + + + Cover is unset. + La portada no está definida. + + + Cover from embedded image. + Portada de la imagen incrustada. + + + Cover from %1 + Portada de %1 + + + Cover art not set + Portada no definida + + + Album cover editing is only available for collection songs. + La edición de las portada de los álbumes solo está disponible para los temas de la biblioteca. + + + Cover changed: Will be cleared when saved. + Portada modificada: se restablecerá al guardar. + + + Cover changed: Will be unset when saved. + Portada modificada: se desactivará al guardar. + + + Cover changed: Will be deleted when saved. + Portada modificada: se eliminará al guardar. + + + Cover changed: Will set new when saved. + Portada modificada: se establecerá la nueva al guardar. + + + Never + Nunca + + + Reset song play statistics + Reiniciar estadísticas de reproducción de la canción + + + Are you sure you want to reset this song's play statistics? + ¿Estás seguro de que quieres restablecer las estadísticas de reproducción de esta canción? + + + loading... + cargando... + + + Not found. + No encontrado. + + + Could not write metadata to %1 + No se pudieron escribir los metadatos en %1 + + + Could not write metadata to %1: %2 + No se pudieron escribir los metadatos en %1: %2 + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Ecualizador + + + Preset: + Ajuste predefinido: + + + Save preset + Guardar ajuste predefinido + + + Delete preset + Eliminar ajuste predefinido + + + Enable equalizer + Activar ecualizador + + + Enable stereo balancer + Activar equilibrador estéreo + + + Left + Izquierda + + + Balance + Equilibrio + + + Right + Derecha + + + Pre-amp + Preamplificador + + + Custom + Personalizado + + + Classical + Clásica + + + Club + Club + + + Dance + Música de baile + + + Full Bass + Graves completos + + + Full Treble + Agudos completos + + + Full Bass + Treble + Graves y agudos completos + + + Laptop/Headphones + Portátil/auriculares + + + Large Hall + Salón grande + + + Live + En directo + + + Party + Fiesta + + + Pop + Pop + + + Reggae + Reggae + + + Rock + Rock + + + Soft + Suave + + + Ska + Ska + + + Soft Rock + Soft rock + + + Techno + Tecno + + + Zero + Cero + + + Name + Nombre + + + Are you sure you want to delete the "%1" preset? + ¿Confirma que quiere eliminar el ajuste predefinido «%1»? + + + + EqualizerSlider + + Equalizer + Ecualizador + + + %1 dB + %1 dB + + + + ErrorDialog + + Strawberry Error + Error de Strawberry + + + + FancyTabWidget + + Large sidebar + Barra lateral grande + + + Icons sidebar + Barra lateral de iconos + + + Small sidebar + Barra lateral pequeña + + + Plain sidebar + Barra lateral simple + + + Tabs on top + Pestañas en la parte superior + + + Icons on top + Iconos en la parte superior + + + + FileTypeItemDelegate + + Unknown + Desconocido + + + + FileView + + Form + Formulario + + + + FileViewList + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Copy to collection... + Copiar en la colección… + + + Move to collection... + Mover a la colección… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Edit track information... + Editar información de la pista… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + + FreeSpaceBar + + Available + Disponible + + + New songs + Temas nuevos + + + Exceeded by + Superado en + + + Used + En uso: + + + + GPodDevice + + Could not copy %1 to %2: %3 + No se pudo copiar %1 a %2: %3 + + + Writing database failed: %1 + Falló la escritura en la base de datos: %1 + + + Writing database failed. + Falló la escritura en la base de datos. + + + + GPodLoader + + Loading iPod database + Cargando la base de datos del iPod + + + An error occurred loading the iTunes database + Se produjo un error al cargar la base de datos de iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Autenticación con Genius + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code! + ¡Falta código del token de redirección! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Redirect from Genius is missing query items code or state. + Redirección Genius carece de código de elementos de búsqueda o estado. + + + + GioLister + + Mount point + Punto de montaje + + + Device + Dispositivo + + + URI + URI + + + + GlobalShortcutGrabber + + Press a key + Presione una tecla + + + Press a key combination to use for %1... + Oprima una combinación de teclas para usar con %1… + + + + GlobalShortcutsManager + + Play + Reproducir + + + Pause + Pausar + + + Play/Pause + Reproducir/Pausar + + + Stop + Detener + + + Stop playing after current track + Detener la reproducción tras la pista actual + + + Next track + Pista siguiente + + + Previous track + Pista anterior + + + Restart or previous track + Reiniciar o pista anterior + + + Increase volume + Aumentar el volumen + + + Decrease volume + Reducir el volumen + + + Mute + Silenciar + + + Seek forward + Desplazarse hacia adelante + + + Seek backward + Desplazarse hacia atrás + + + Show/Hide + Mostrar/Ocultar + + + Show OSD + Mostrar panel de información + + + Toggle Pretty OSD + Conmutar panel de información estilizado + + + Change shuffle mode + Cambiar el modo de reproducción aleatoria + + + Change repeat mode + Cambiar el modo de repetición + + + Enable/disable scrobbling + Activar o desactivar seguimiento de reproducción + + + Love + Me gusta + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Atajos generales + + + Use Gnome (GSD) shortcuts when available + Utilizar atajos de Gnome (GSD) cuando sea posible + + + Open... + Abrir… + + + Use MATE shortcuts when available + Utilizar atajos de MATE si están disponibles + + + Use KDE (KGlobalAccel) shortcuts when available + Utilizar atajos de KDE (GSD) cuando sea posible + + + Use X11 shortcuts when available + Usar atajos de X11 cuando sea posible + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Debe abrir las Preferencias del sistema y permitir que Strawberry «<span style="font-style:italic">controle el equipo</span>» para utilizar atajos globales en Strawberry. + + + Action + Category label + Acción + + + Shortcut + Atajo + + + Shortcut for %1 + Atajo para %1 + + + &None + &Ninguno + + + &Default + &Predeterminado + + + &Custom + &Personalizado + + + Change shortcut... + Cambiar atajo… + + + The "%1" command could not be started. + No se pudo iniciar la orden «%1». + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Usar atajos de X11 en %1 no es recomendable y puede hacer que el teclado no responda eficientemente! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Los atajos en %1 se usan normalmente a través de GMPRIS y KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Los atajos en %1 se utilizan habitualmente a través de Gnome Settings Daemon y deben configurarse en gnome-settings-daemon. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Los atajos en %1 se utilizan habitualmente a través de Gnome Settings Daemon y deben configurarse en cinnamon-settings-daemon. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Los atajos en %1 se utilizan habitualmente a través de MATE Settings Daemon y deben configurarse allí. + + + + GroupByDialog + + Collection advanced grouping + Agrupamiento avanzado de la colección + + + You can change the way the songs in the collection are organized. + Puede modificar cómo se organizan los temas en la biblioteca. + + + Group Collection by... + Agrupar colección por… + + + First level + Primer nivel + + + None + Ninguno + + + Artist + Artista + + + Album artist + Artista del álbum + + + Album + Álbum + + + Album - Disc + Álbum - Disco + + + Disc + Disco + + + Format + Formato + + + Genre + Género + + + Year + Año + + + Year - Album + Año - álbum + + + Year - Album - Disc + Año - álbum - disco + + + Original year + Año original + + + Original year - Album + Año original - álbum + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + File type + Tipo + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + Second level + Segundo nivel + + + Third level + Tercer nivel + + + Separate albums by grouping tag + Álbumes separados por etiqueta de grupo + + + + GstEngine + + Buffering + Guardando en búfer + + + + LastFMImport + + Missing username, please login to last.fm first! + Falta el usuario; acceda a Last.fm primero! + + + + LastFMImportDialog + + Import data from last.fm + Importar datos de Last.fm + + + Choose data to import from last.fm + Escoja qué información importar de Last.fm + + + Last played + + + + Play counts + Contadores de reproducción + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Atención: se reemplazará el recuento de reproducciones y la última reproducción de los temas coincidentes con los datos procedentes de Last.fm. El recuento de reproducciones se sobreescribirá atendiendo al artista y nombre del tema. Haga una copia de seguridad de su base de datos antes de comenzar. + + + Go! + Ir! + + + Close + Cerrar + + + Cancel + Cancelar + + + Receiving initial data from last.fm... + Recibiendo datos iniciales de Last.fm… + + + Receiving playcount for %1 songs and last played for %2 songs. + Recibiendo info de nº de reproducciones para %1 temas y última reproducción para %2 temas. + + + Receiving last played for %1 songs. + Recibiendo info de última reproducción para %1 temas. + + + Receiving playcounts for %1 songs. + Recibiendo info de nº de reproducciones para %1 temas. + + + Playcounts for %1 songs and last played for %2 songs received. + Nº de %1 reproducciones y última reproducción para %2 temas recibidas. + + + Last played for %1 songs received. + Última reproducción para %1 temas recibidas. + + + Playcounts for %1 songs received. + Nº de reproducciones para %1 temas recibidas. + + + + LastPlayedItemDelegate + + Never + Nunca + + + + Library + + Least favourite tracks + Pistas menos valoradas + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Autenticación en ListenBrainz + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code! + ¡Falta código del token de redirección! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Unable to scrobble %1 - %2 because of error: %3 + No se hacer el scrobble de %1 - %2 debido al error: %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + Falta el ID de grabación de MusicBrainz para %1 %2 %3 + + + ListenBrainz error: %1 + Error de ListenBrainz: %1 + + + + LoginStateWidget + + Form + Formulario + + + You are not signed in. + No ha accedido a su cuenta. + + + Sign out + Cerrar sesión + + + Signing in... + Iniciando sesión… + + + You are signed in. + Ha accedido a su cuenta. + + + You are signed in as %1. + Ha accedido como %1. + + + Expires on %1 + Caduca el %1 + + + + LyricsSettingsPage + + Lyrics + Letras + + + Lyrics providers + Proveedores de letras + + + Choose the providers you want to use when searching for lyrics. + Seleccione los proveedores de búsqueda de letras. + + + Move up + Subir + + + Move down + Bajar + + + Authentication + Autenticación + + + Login + Acceder + + + No provider selected. + No se ha seleccionado ningún proveedor. + + + Authentication failed + Falló la autenticación + + + + MainWindow + + Strawberry Music Player + Reproductor de música Strawberry + + + MenuPopupToolButton + MenuPopupToolButton + + + &Music + &Música + + + P&laylist + Lista de re&producción + + + Help + Ayuda + + + &Tools + &Herramientas + + + Previous track + Pista anterior + + + F5 + F5 + + + &Play + &Reproducir + + + F6 + F6 + + + &Stop + &Detener + + + F7 + F7 + + + &Next track + Pista &siguiente + + + F8 + F8 + + + &Quit + &Salir + + + Ctrl+Q + Ctrl+Q + + + Stop after this track + Detener reproducción al finalizar la pista actual + + + Ctrl+Alt+V + Ctrl+Alt+V + + + Love + Me gusta + + + &Clear playlist + &Borrar lista de reproducción + + + Clear playlist + Vaciar lista de reproducción + + + Ctrl+K + Ctrl+K + + + Edit track information... + Editar información de la pista… + + + Ctrl+E + Ctrl+E + + + Renumber tracks in this order... + Reordenar pistas en este orden… + + + Set value for all selected tracks... + Establecer valor para todas las pistas seleccionadas… + + + Edit tag... + Editar etiqueta… + + + &Settings... + &Configuración… + + + Ctrl+P + Ctrl+P + + + &About Strawberry + &Acerca de Strawberry + + + F1 + F1 + + + S&huffle playlist + &Mezclar lista de reproducción + + + Ctrl+H + Ctrl+H + + + &Add file... + &Añadir archivo... + + + Ctrl+Shift+A + Ctrl+Shift+A + + + &Open file... + &Abrir archivo... + + + Open audio &CD... + Abrir &CD de audio... + + + &Cover Manager + Gestor de &portadas + + + C&onsole + C&onsola + + + &Shuffle mode + Modo &aleatorio + + + &Repeat mode + Modo de &repetición + + + Remove from playlist + Quitar de la lista de reproducción + + + &Equalizer + &Ecualizador + + + &Transcode Music + Conver&tir música + + + Add &folder... + Añadir &carpeta... + + + &Jump to the currently playing track + &Saltar a la pista en reproducción + + + Ctrl+J + Ctrl+J + + + &New playlist + Lista de reproducción &nueva + + + Ctrl+N + Ctrl+N + + + Save &playlist... + Guardar lista de re&producción... + + + Ctrl+S + Ctrl+S + + + &Load playlist... + &Cargar lista de reproducción... + + + Ctrl+Shift+O + Ctrl+Shift+O + + + &Save all playlists... + &Guardar todas las lista de reproducción... + + + Go to next playlist tab + Ir a la siguiente pestaña de lista de reproducción + + + Go to previous playlist tab + Ir a la anterior pestaña de lista de reproducción + + + &Update changed collection folders + &Actualizar carpetas de la biblioteca con cambios + + + About &Qt + Acerca de &Qt + + + &Mute + &Silenciar + + + Ctrl+M + Ctrl+M + + + &Do a full collection rescan + Anali&zar de nuevo toda la biblioteca + + + Stop collection scan + Detener análisis de la colección + + + Complete tags automatically... + Completar etiquetas automáticamente… + + + Ctrl+T + Ctrl+T + + + Toggle scrobbling + Alternar seguimiento de reproducción + + + Remove &duplicates from playlist + Quitar &duplicados de la lista de reproducción + + + Remove &unavailable tracks from playlist + Quitar pistas &no disponibles de la lista de reproducción + + + Add file(s) to transcoder + Añadir archivo(s) que convertir + + + Add file to transcoder + Añadir archivo que convertir + + + Add stream... + Añadir retransmisión… + + + Show sidebar + Mostrar barra lateral + + + Import data from last.fm... + Importar datos de Last.fm… + + + All Files (*) + Todos los archivos (*) + + + Context + Contexto + + + Collection + Colección + + + Queue + Cola + + + Playlists + Listas + + + Smart playlists + Listas inteligentes + + + Files + Archivos + + + Radios + Radios + + + Devices + Dispositivos + + + Subsonic + Subsonic + + + Tidal + Tidal + + + Spotify + Spotify + + + Qobuz + Qobuz + + + Show all songs + Mostrar todos los temas + + + Show only duplicates + Mostrar solo los duplicados + + + Show only untagged + Solo mostrar no etiquetadas + + + Configure collection... + Configurar colección… + + + Play + Reproducir + + + Toggle queue status + Cambiar estado de la cola + + + Queue selected tracks to play next + Poner en cola las pistas seleccionadas para reproducir a continuación + + + Toggle skip status + Alternar estado de avance + + + Rescan song(s)... + Volver a escanear tema(s)... + + + Copy URL(s)... + Copiar URL… + + + Show in collection... + Mostrar en la colección… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + Organize files... + Organizar archivos… + + + Copy to collection... + Copiar en la colección… + + + Move to collection... + Mover a la colección… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Check for updates... + Buscar actualizaciones… + + + Strawberry running under Rosetta + Strawberry ejecutándose bajo Rosetta + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + Estás ejecutando Strawberry bajo Rosetta. Ejecutar Strawberry bajo Rosetta no está soportado y se sabe que da problemas. Deberías descargar Strawberry para la arquitectura de CPU correcta desde %1 + + + Sponsoring Strawberry + Patrocinar Strawberry + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry es software libre y de código abierto. Si te gusta Strawberry, por favor considera patrocinar el proyecto. Para más información sobre el patrocinio, visita nuestro sitio web %1 + + + Pause + Pausar + + + Dequeue track + Quitar la pista de la cola + + + Dequeue selected tracks + Quitar las pistas seleccionadas de la cola + + + Queue track + Poner pista en cola + + + Queue selected tracks + Poner en cola las pistas seleccionadas + + + Queue to play next + Poner en cola para reproducir a continuación + + + Unskip track + No omitir pista + + + Unskip selected tracks + No omitir pistas seleccionadas + + + Skip track + Omitir pista + + + Skip selected tracks + Omitir pistas seleccionadas + + + Set %1 to "%2"... + Establecer %1 a «%2»… + + + Edit tag "%1"... + Editar etiqueta «%1»… + + + Add to another playlist + Añadir a otra lista de reproducción + + + New playlist + Lista nueva + + + Add file + Añadir archivo + + + Music + Música + + + Add folder + Añadir carpeta + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + La lista de reproducción tiene %1 temas, demasiados para deshacer, ¿estás seguro de que quiere eliminarla? + + + Error + Error + + + None of the selected songs were suitable for copying to a device + Ninguna de los temas seleccionados podía copiarse en un dispositivo + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + La versión de Strawberry a la que se acaba de actualizar necesita volver a analizar la colección debido a estas nuevas funciones: + + + Would you like to run a full rescan right now? + ¿Quiere ejecutar un nuevo análisis completo ahora? + + + Collection rescan notice + Notificación de nuevo análisis de la colección + + + + MessageDialog + + Message Dialog + Cuadro de diálogo de mensajes + + + Do not show this message again. + No volver a mostrar este mensaje. + + + + MimeData + + Playlist + Lista + + + + MoodbarProxyStyle + + Show moodbar + Mostrar barra de ánimo + + + Moodbar style + Estilo de la barra de ánimo + + + + MoodbarSettingsPage + + Moodbar + Barra de ánimo + + + Show a moodbar in the track progress bar + Mostrar una barra de ánimo en la barra de progreso + + + Moodbar style + Estilo de la barra de ánimo + + + Save the .mood files directly in the songs folders + Guardar archivos .mood directamente en las carpetas de los temas + + + Enabled + Activado + + + + MtpConnection + + Invalid MTP device: %1 + Dispositivo MTP no válido: %1 + + + Could not open MTP device. + No se pudo abrir el dispositivo MTP. + + + MTP error: %1 + Error MTP: %1 + + + MTP device not found. + Dispositivo MTP no encontrado. + + + + MtpLoader + + Loading MTP device + Cargando el dispositivo MTP + + + Error connecting MTP device %1 + Error al conectar al dispositivo MTP %1 + + + Error connecting MTP device %1: %2 + Error al conectar con el dispositivo MTP %1: %2 + + + + NetworkProxySettingsPage + + Network Proxy + Proxy de la red + + + &Use the system proxy settings + &Utilizar configuración de «proxy» del sistema + + + Direct internet connection + Conexión directa a Internet + + + &Manual proxy configuration + &Configuración manual del proxy + + + HTTP proxy + Proxy HTTP + + + SOCKS proxy + Proxy SOCKS + + + Port + Puerto + + + Use authentication + Usar autenticación + + + Username + Usuario + + + Password + Contraseña + + + Use proxy settings for streaming + Usar ajustes de proxy para retransmisión + + + + NotificationsSettingsPage + + Notifications + Notificaciones + + + Strawberry can show a message when the track changes. + Strawberry puede mostrar un mensaje cuando la pista cambie. + + + Notification type + Tipo de notificación + + + Disabled + Refers to a disabled notification type in Notification settings. + Desactivado + + + Show a &native desktop notification + Mostrar una notificación &nativa del sistema + + + Show a pretty OSD + Mostrar panel de información estilizado + + + Show a popup fro&m the system tray + Mostrar una notificación en la bandeja del siste&ma + + + General settings + Configuración general + + + Popup duration + Duración de la notificación emergente + + + seconds + segundos + + + Disable duration + Desactivar duración + + + Show a notification when I change the volume + Mostrar una notificación al cambiar el volumen + + + Show a notification when I change the repeat/shuffle mode + Mostrar una notificación al cambiar entre los modos repetir/aleatorio + + + Show a notification when I pause playback + Mostrar una notificación al pausar la reproducción + + + Show a notification when I resume playback + Mostrar una notificación cuando reanude la reproducción + + + Include album art in the notification + Incluir portada en la notificación + + + Custom message settings + Configuración de mensaje personalizado + + + Use a custom message for notifications + Usar un mensaje personalizado para las notificaciones + + + Preview + Previsualización + + + MenuPopupToolButton + MenuPopupToolButton + + + Summary + Resumen + + + Body + Cuerpo + + + Pretty OSD options + Panel de información estilizado + + + Background color + Color de fondo + + + Text options + Opciones del texto + + + Choose font... + Elegir tipo de letra… + + + Choose color... + Elegir color… + + + Background opacity + Opacidad del fondo + + + Basic Blue + Azul básico + + + Strawberry Red + Rojo de Strawberry + + + Custom... + Personalizado… + + + Enable fading + Activar transición gradual + + + Add song artist tag + Añadir etiqueta de artista a al tema + + + Add song album tag + Añadir etiqueta de álbum al tema + + + Add song title tag + Añadir etiqueta de título al tema + + + Add song albumartist tag + Añadir etiqueta de artista del álbum al tema + + + Add song year tag + Añadir etiqueta de año al tema + + + Add song composer tag + Añadir etiqueta de compositor al tema + + + Add song performer tag + Añadir etiqueta de intérprete al tema + + + Add song grouping tag + Añadir etiqueta de agrupamiento al tema + + + Add song disc tag + Añadir etiqueta de disco al tema + + + Add song track tag + Añadir etiqueta de pista al tema + + + Add song genre tag + Añadir etiqueta de género al tema + + + Add song length tag + Añadir etiqueta de duración al tema + + + Add song play count + Añadir contador de reproducciones del tema + + + Add song skip count + Añadir contador de omisiones del tema + + + Add song rating + Añadir valoración del tema + + + Add a new line if supported by the notification type + Añadir un salto de renglón si el tipo de notificación lo permite + + + %filename% + %filename% + + + Add song filename + Añadir nombre de archivo del tema + + + %url% + %url% + + + Add song URL + Añadir URL del tema + + + %originalyear% + %originalyear% + + + Add song original year tag + Añadir etiqueta de año original + + + OSD Preview + Previsualización del panel de información + + + Drag to reposition + Arrastre para reposicionar + + + + OSDBase + + disc %1 + disco %1 + + + track %1 + pista %1 + + + Paused + En pausa + + + Stopped + Detenido + + + Stop playing after track: %1 + Detener reproducción tras la pista: %1 + + + On + Activado + + + Off + Desactivado + + + Playlist finished + Lista de reproducción finalizada + + + Volume %1% + Volumen %1% + + + Don't shuffle + No mezclar + + + Shuffle all + Mezclar todo + + + Shuffle tracks in this album + Mezclar pistas de este álbum + + + Shuffle albums + Mezclar álbumes + + + Don't repeat + No repetir + + + Repeat track + Repetir pista + + + Repeat album + Repetir álbum + + + Repeat playlist + Repetir lista de reproducción + + + Stop after every track + Detener reproducción al finalizar cada pista + + + Intro tracks + Pistas de introducción + + + + Organize + + Organizing files + Organizando archivos + + + + OrganizeDialog + + Organize Files + Organizar archivos + + + Destination + Destino + + + After copying... + Después de copiar… + + + Keep the original files + Mantener los archivos originales + + + Delete the original files + Eliminar los archivos originales + + + Naming options + Opciones de nomenclatura + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Los tokens comienzan por %, por ejemplo: %artist %album %title </p> + +<p>Si encierra una sección de texto que contenga un token entre llaves, esa sección no se mostrará si el token está vacío.</p> + + + Insert... + Insertar… + + + Remove problematic characters from filenames + Elimina caracteres especiales de nombres de archivo + + + Restrict to characters allowed on FAT filesystems + Limitar a caracteres permitidos en sistemas de archivos FAT + + + Restrict characters to ASCII + Limitar caracteres a conjunto ASCII + + + Allow extended ASCII characters + Admitir caracteres de ASCII ampliado + + + Replace spaces with underscores + Sustituir espacios pòr caracteres de subrayado + + + Overwrite existing files + Sobrescribir los archivos existentes + + + Copy album cover artwork + Copiar portada del álbum + + + Preview + Previsualización + + + Loading... + Cargando… + + + Safely remove the device after copying + Quitar dispositivo con seguridad después de copiar + + + Title + Título + + + Album + Álbum + + + Artist + Artista + + + Artist's initial + Iniciales del artista + + + Album artist + Artista del álbum + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + Track + Pista + + + Disc + Disco + + + Year + Año + + + Original year + Año original + + + Genre + Género + + + Comment + Comentario + + + Length + Duración + + + Bitrate + Refers to bitrate in file organize dialog. + Tasa de bits + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + File extension + Extensión del archivo + + + + OrganizeErrorDialog + + Error copying songs + Error al copiar temas + + + There were problems copying some songs. The following files could not be copied: + Hubo problemas al copiar algunos temas. No se pudieron copiar los siguientes archivos: + + + Error deleting songs + Error al eliminar temas + + + There were problems deleting some songs. The following files could not be deleted: + Hubo problemas al eliminar algunos temas. No se pudieron eliminar los siguientes archivos: + + + + ParserBase + + Don't know how to handle %1 + No sé cómo manejar %1 + + + + PlayingWidget + + Small album cover + Portada de álbum pequeña + + + Large album cover + Portadas de álbum grande + + + Fit cover to width + Ajustar portadas a anchura + + + Show above status bar + Mostrar sobre la barra de estado + + + + Playlist + + Could not write metadata to %1 + No se pudieron escribir los metadatos en %1 + + + Could not write metadata to %1: %2 + No se pudieron escribir los metadatos en %1: %2 + + + Title + Título + + + Artist + Artista + + + Album + Álbum + + + Track + Pista + + + Disc + Disco + + + Length + Duración + + + Year + Año + + + Original Year + Año original + + + Genre + Género + + + Album Artist + Artista del álbum + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + Play Count + Número de reproducciones + + + Skip Count + Número de saltos + + + Last Played + Última reproducción + + + Sample Rate + Frecuencia de muestreo + + + Bit Depth + Profundidad de bit + + + Bitrate + Tasa de bits + + + File Name + Nombre de fichero + + + File Name (without path) + Nombre de fichero (sin ruta) + + + File Size + Tamaño del fichero + + + File Type + Tipo de fichero + + + Date Modified + Fecha de modificación + + + Date Created + Fecha de creación + + + Comment + Comentario + + + Source + Origen + + + Mood + Ánimo + + + Rating + Valoración + + + CUE + CUE + + + Integrated Loudness + Volumen integrado + + + Loudness Range + Rango de volumen + + + + PlaylistContainer + + Form + Formulario + + + Undo + Deshacer + + + Redo + Volver a hacer + + + Playlist + Lista + + + Load playlist + Cargar lista de reproducción + + + No matches found. Clear the search box to show the whole playlist again. + No se encontraron coincidencias. Borre el texto introducido en el cuadro de búsqueda para mostrar la lista completa de nuevo. + + + + PlaylistDelegateBase + + stop + detener + + + + PlaylistGeneratorInserter + + Loading smart playlist + Cargando lista inteligente + + + + PlaylistHeader + + &Hide... + &Ocultar… + + + &Stretch columns to fit window + &Ajustar columnas a la ventana + + + &Reset columns to default + &Reajustar columnas a valores iniciales + + + &Lock rating + B&loquear valoración + + + &Align text + &Alinear el texto + + + &Left + &Izquierda + + + &Center + &Centrar + + + &Right + &Derecha + + + &Hide %1 + &Ocultar «%1» + + + + PlaylistListContainer + + Form + Formulario + + + New folder + Carpeta nueva + + + Delete + Eliminar + + + Save playlist + Save playlist menu action. + Guardar lista de reproducción + + + Copy to device... + Copiar en un dispositivo… + + + Enter the name of the folder + Escriba el nombre de la carpeta + + + Playlist + Lista + + + Copy to device + Copiar en un dispositivo + + + Playlist must be open first. + La lista debe abrirse primero. + + + Remove playlists + Eliminar listas de reproducción + + + You are about to remove %1 playlists from your favorites, are you sure? + ¿Confirma que quiere eliminar %1 listas de reproducción de sus favoritos? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Puede marcar listas de reproducción como favoritas pulsando en los iconos con forma de estrella junto a sus nombres + + + Favorited playlists will be saved here + Sus listas favoritas se guardarán aquí + + + + PlaylistManager + + Playlist + Lista + + + Couldn't create playlist + No se pudo crear la lista de reproducción + + + Save playlist + Title of the playlist save dialog. + Guardar lista de reproducción + + + Unknown playlist extension + Extensión de la lista de reproducción desconocida + + + Unknown file extension for playlist. + Extensión desconocida para lista de reproducción. + + + %1 selected of + %1 seleccionado de + + + %n track(s) + + %n pista(s) + + + + + Unknown + Desconocido + + + Various artists + Varios artistas + + + + PlaylistParser + + All playlists (%1) + Todas las listas de reproducción (%1) + + + %1 playlists (%2) + %1 listas de reproducción (%2) + + + Unknown filetype: %1 + Tipo de fichero desconocido: %1 + + + Could not open file %1 + No se pudo abrir el fichero %1 + + + Directory %1 does not exist. + El directorio %1 no existe. + + + Failed to open %1 for writing. + No se pudo abrir %1 para escritura. + + + + PlaylistSaveOptionsDialog + + Playlist options + Opciones de la lista de reproducción + + + File paths + Rutas de archivos + + + This can be changed later through the preferences + Esta opción puede modificarse luego en Preferencias + + + Remember my choice + Recordar mi elección + + + Automatic + Automático + + + Relative + Relativo + + + Absolute + Absoluto + + + + PlaylistSequence + + Repeat + Repetir + + + Shuffle + Aleatorio + + + Don't repeat + No repetir + + + Repeat track + Repetir pista + + + Repeat album + Repetir álbum + + + Repeat playlist + Repetir lista de reproducción + + + Stop after each track + Detener reproducción al finalizar cada pista + + + Intro tracks + Pistas de introducción + + + Don't shuffle + No mezclar + + + Shuffle tracks in this album + Mezclar pistas de este álbum + + + Shuffle all + Mezclar todo + + + Shuffle albums + Mezclar álbumes + + + + PlaylistSettingsPage + + Playlist + Lista + + + Use alternating row colors + Utilizar colores alternados en las filas + + + Show bars on the currently playing track + Mostrar barras en la pista en reproducción + + + Show a glowing animation on the currently playing track + Mostrar una animación en la pista en reproducción + + + Warn me when closing a playlist tab + Avisarme antes de cerrar una pestaña de lista de reproducción + + + Continue to the next item in the playlist if a song is unavailable + Saltar al siguiente elemento en la lista de reproducción si un tema no está disponible + + + Grey out unavailable songs in playlists on playback + Mostrar en gris los temas no disponibles en las listas de reproducción al reproducir + + + Grey out unavailable songs in playlists on startup + Mostrar en gris los temas no disponibles en listas de reproducción al iniciar + + + Automatically select current playing track + Seleccionar automáticamente la pista en reproducción + + + Enable playlist toolbar + Activar barra de herramientas de reproducción + + + Enable playlist clear button + Activar botón de borrado de lista de reproducción + + + Enable delete files in the right click context menu + Activar eliminación de archivos en el menú contextual del botón secundario del ratón + + + Automatically sort playlist when inserting songs + Ordenar la lista automáticamente al insertar temas + + + When saving a playlist, file paths should be + Al guardar una lista de reproducción las rutas de archivo deben ser + + + A&utomatic + A&utomático + + + Absolu&te + Absolu&to + + + Re&lative + Re&lativo + + + As&k when saving + &Preguntar al guardar + + + Metadata + Metadatos + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Al activar esta opción podrá hacer clic en el tema seleccionado de la lista de reproducción y editar su la etiqueta directamente + + + Enable song metadata inline edition with click + Editar metadatos de temas directamente + + + Write metadata when saving playlists + Escribir los metadatos al guardar las listas de reproducción + + + + PlaylistTabBar + + Star playlist + Marcar lista de reproducción como favorita + + + Close playlist + Cerrar lista de reproducción + + + Rename playlist... + Cambiar nombre de lista… + + + Save playlist... + Guardar lista de reproducción… + + + Rename playlist + Cambiar nombre de lista + + + Enter a new name for this playlist + Introduzca un nombre nuevo para esta lista de reproducción + + + Remove playlist + Eliminar lista de reproducción + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Está a punto de eliminar una lista de reproducción que no está entre sus favoritas (esta acción no se puede deshacer). +¿Confirma que quiere continuar? + + + Warn me when closing a playlist tab + Avisarme antes de cerrar una pestaña de lista de reproducción + + + This option can be changed in the "Behavior" preferences + Puede modificar esta opción en la pestaña «Comportamiento» en Preferencias + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Pulse dos veces para convertir esta lista en favorita y que se guarde y quede accesible en el panel «Listas» de la barra izquierda + + + Playlist + Lista + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + añadir %n temas + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + mover %n temas + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + quitar %n temas + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + mezclar temas + + + + PlaylistUndoCommands::SortItems + + sort songs + ordenar temas + + + + PlaylistView + + Hz + Hz + + + Bit + Bit + + + kbps + kb/s + + + + QObject + + Usage + Uso + + + options + opciones + + + URL(s) + URL + + + Player options + Opciones del reproductor + + + Start the playlist currently playing + Iniciar la lista de reproducción actualmente en reproducción + + + Play if stopped, pause if playing + Reproducir si detenido, pausar si en reproducción + + + Pause playback + Pausar la reproducción + + + Stop playback + Detener reproducción + + + Stop playback after current track + Detener reproducción al terminar la pista actual + + + Skip backwards in playlist + Saltar hacia atrás en la lista de reproducción + + + Skip forwards in playlist + Saltar hacia adelante en la lista de reproducción + + + Set the volume to <value> percent + Establecer el volumen en <value>% + + + Increase the volume by 4 percent + Aumentar el volumen en un 4 % + + + Decrease the volume by 4 percent + Reduce el volumen en un 4 % + + + Increase the volume by <value> percent + Aumentar el volumen en <value> % + + + Decrease the volume by <value> percent + Reduce el volumen en <value> % + + + Seek the currently playing track to an absolute position + Desplazarse en la pista en reproducción hasta una posición absoluta + + + Seek the currently playing track by a relative amount + Desplazarse en la pista en reproducción un tiempo determinado + + + Restart the track, or play the previous track if within 8 seconds of start. + Reiniciar la pista o saltar a la anterior si no han transcurrido 8 segundos desde su inicio. + + + Playlist options + Opciones de la lista de reproducción + + + Create a new playlist with files + Crear una lista de reproducción nueva con archivos + + + Append files/URLs to the playlist + Añadir archivos/URL a la lista de reproducción + + + Loads files/URLs, replacing current playlist + Carga archivos/URL, reemplaza la lista de reproducción actual + + + Play the <n>th track in the playlist + Reproducir la <n>.ª pista de la lista de reproducción + + + Play given playlist + Reproducir lista indicada + + + Other options + Otras opciones + + + Display the on-screen-display + Mostrar indicadores en pantalla + + + Toggle visibility for the pretty on-screen-display + Conmutar visibilidad del panel de información estilizado + + + Change the language + Cambiar el idioma + + + Resize the window + Redimensionar la ventana + + + Equivalent to --log-levels *:1 + Equivalente a --log-levels*:1 + + + Equivalent to --log-levels *:3 + Equivalente a --log-levels*:3 + + + Comma separated list of class:level, level is 0-3 + Lista separada por comas de la clase:nivel, el nivel es 0-3 + + + Print out version information + Mostrar información de versión + + + Failed to create directory %1. + No se pudo crear el directorio %1. + + + Destination file %1 exists, but not allowed to overwrite. + El fichero de destino %1 existe, pero no está permitida la sobreescritura. + + + Destination file %1 exists, but not allowed to overwrite + El fichero de destino %1 existe, pero no está permitida la sobreescritura + + + Could not copy file %1 to %2. + No se pudo copiar el fichero %1 a %2. + + + Unknown + Desconocido + + + LUFS + LUFS + + + LU + LU + + + File %1 is not recognized as a valid audio file. + El archivo de audio %1 no parece válido. + + + 1 day + 1 día + + + %1 days + %1 días + + + Today + Hoy + + + Yesterday + Ayer + + + %1 days ago + hace %1 días + + + Tomorrow + Mañana + + + In %1 days + En %1 días + + + Next week + Próxima semana + + + In %1 weeks + En %1 semanas + + + Show in file browser + Mostrar en el navegador de archivos + + + Too many songs selected. + Demasiados temas seleccionados. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + Se han seleccionado %1 temas en %2 directorios. ¿Confirma que quiere abrirlos todas? + + + Failed to load image from data for %1 + Falló la carga de la imagen desde datos para %1 + + + Success + Éxito + + + File is unsupported + El archivo no es compatible + + + Filename is missing + Falta el nombre del archivo + + + File does not exist + El archivo no existe + + + File could not be opened + No se pudo abrir el archivo + + + Could not parse file + No se pudo procesar el archivo + + + Could save file + Se pudo guardar el archivo + + + Unknown error + Error desconocido + + + Prefix a search term with a field name to limit the search to that field, e.g.: + Utilice un nombre de campo como prefijo del término de búsqueda para limitar la búsqueda a ese campo, p. ej.: + + + artist + artista + + + searches for all artists containing the word %1. + busca todos los artistas que contienen la palabra %1. + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + Los términos de búsqueda para campos numéricos pueden llevar %1 o %2 como prefijos para refinar la búsqueda, p. ej.: + + + rating + valoración + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + También pueden combinarse múltiples términos de búsqueda con "%1" (por defecto) y "%2", así como agrupados con paréntesis. + + + Available fields + Campos disponibles + + + after + después + + + before + antes + + + on + el + + + not on + no el + + + in the last + en el último + + + not in the last + no en los últimos + + + between + entre + + + contains + contiene + + + does not contain + no contiene + + + starts with + comienza por + + + ends with + termina en + + + greater than + mayor que + + + less than + menos de + + + equals + es igual a + + + not equals + no es igual a + + + empty + vacío + + + not empty + no vacío + + + Comment + Comentario + + + A-Z + A-Z + + + Z-A + Z-A + + + oldest first + el más antiguo primero + + + newest first + el más nuevo primero + + + shortest first + el más corto primero + + + longest first + el más largo primero + + + smallest first + el más pequeño primero + + + biggest first + primero el mayor + + + Hours + Horas + + + Days + Días + + + Weeks + Semanas + + + Months + Meses + + + Years + Años + + + Normal + Normal + + + Angry + Enfadado + + + Frozen + Congelado + + + Happy + Feliz + + + System colors + Colores del sistema + + + + QWidget + + Clear + Borrar + + + Reset + Restablecer + + + + QobuzRequest + + Receiving artists... + Artistas receptores... + + + Receiving albums... + Recepción de álbumes... + + + Receiving songs... + Recibir canciones... + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + Recibir álbumes de %1 artista... + + + Receiving albums for %1 artists... + Recibir álbumes de artistas de %1... + + + Receiving songs for %1 album... + Recibir canciones del álbum %1... + + + Receiving songs for %1 albums... + Recibir canciones de álbumes de %1... + + + Receiving album cover for %1 album... + Recibir la portada del álbum de %1... + + + Receiving album covers for %1 albums... + Recibir portadas de álbumes de %1 álbumes... + + + No match. + Sin coincidencias. + + + Unknown error + Error desconocido + + + + QobuzService + + Authenticating... + Autenticando… + + + Maximum number of login attempts reached. + Se ha alcanzado el número máximo de intentos de acceso. + + + Missing Qobuz app ID. + Falta el identificador de aplicación de Qobuz. + + + Missing Qobuz username. + Falta el usuario de Qobuz. + + + Missing Qobuz password. + Falta la contraseña de Qobuz. + + + Not authenticated with Qobuz. + No se ha accedido a Qobuz. + + + Missing Qobuz app ID or secret. + Falta el identificador de aplicación o el secreto de Qobuz. + + + + QobuzSettingsPage + + Qobuz + Qobuz + + + Enable + Activar + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + La compatibilidad con Qobuz no es oficial y precisa de un token de API procedente de una aplicación registrada. No le podemos ayudar a conseguirlo. + + + Authentication + Autenticación + + + App ID + Id. de aplic. + + + Username + Usuario + + + Password + Contraseña + + + App Secret + Secreto de aplicación + + + Login + Acceder + + + Preferences + Preferencias + + + Audio format + Formato de audio + + + Search delay + Demora de búsqueda + + + ms + ms + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de temas + + + Download album covers + Descargar las portadas de los álbumes + + + Base64 encoded secret + Secreto codificado en Base64 + + + Configuration incomplete + Configuración incompleta + + + Missing app id. + Falta el identificador de aplicación. + + + Missing username. + Falta el usuario. + + + Missing password. + Falta la contraseña. + + + Authentication failed + Falló la autenticación + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Falta el identificador de aplicación o el secreto de Qobuz. + + + Cancelled. + Cancelado. + + + + Queue + + %n track(s) + + %n pista(s) + + + + + + QueueView + + QueueView + Vista de la cola + + + Move down + Bajar + + + Ctrl+Up + Ctrl+Arriba + + + Move up + Subir + + + Ctrl+Down + Ctrl+Down + + + Remove + Eliminar + + + Clear + Borrar + + + Ctrl+K + Ctrl+K + + + + RadioParadiseService + + Getting %1 channels + Obteniendo %1 channels + + + + RadioView + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Open homepage + Abrir página principal + + + Donate + Donar + + + Refresh channels + Actualizar canales + + + + RadioViewContainer + + Form + Formulario + + + + SCollection + + Saving playcounts and ratings + Guardando nº de reproducciones y valoraciones + + + + SavePlaylistsDialog + + Select directory for saving playlists + Seleccione una carpeta para guardar las listas de reproducción + + + Type + Tipo + + + Select directory for the playlists + Seleccione una carpeta para las listas de reproducción + + + Directory does not exist. + La carpeta no existe. + + + + SavedGroupingManager + + Saved Grouping Manager + Gestor de agrupamientos guardados + + + Remove + Eliminar + + + Ctrl+Up + Ctrl+Arriba + + + Name + Nombre + + + First level + Primer nivel + + + Second Level + Segundo nivel + + + Third Level + Tercer nivel + + + None + Ninguno + + + Album artist + Artista del álbum + + + Artist + Artista + + + Album + Álbum + + + Album - Disc + Álbum - Disco + + + Year - Album + Año - álbum + + + Year - Album - Disc + Año - álbum - disco + + + Original year - Album + Año original - álbum + + + Original year - Album - Disc + Año original - álbum - disco + + + Disc + Disco + + + Year + Año + + + Original year + Año original + + + Genre + Género + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + File type + Tipo + + + Format + Formato + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + Unknown + Desconocido + + + + ScrobblerSettingsPage + + Scrobbler + Registro de reproducción + + + Enable + Activar + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + La reproducción de un tema se registra solo si dispone de metadatos válidos, dura más de 30 segundos y se ha reproducido al menos durante la mitad de su duración o 4 minutos (lo que ocurra primero). + + + Work in offline mode (Only cache scrobbles) + Trabajar sin conexión (solo registros de reproducción prealmacenados) + + + Show scrobble button + Mostrar botón de registro de reproducción + + + Show love button + Mostrar el botón "Me gusta" + + + Submit scrobbles every + Emitir al servidor de registro cada + + + seconds + segundos + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (Este es el tiempo de espera hasta que los registros de reproducción se envían al servidor. Ajustar el tiempo a 0 segundos enviará los registros inmediatamente). + + + Prefer album artist when sending scrobbles + Preferir artista del álbum al registrar reproducción + + + Show dialog for errors + Mostrar errores + + + Strip "remastered" and similar from album and title + Eliminar «remastered» y similares del título del álbum + + + Enable scrobbling for the following sources: + Activar seguimiento de reproducción para: + + + Collection + Colección + + + Subsonic + Subsonic + + + Local file + Archivo local + + + Tidal + Tidal + + + Device + Dispositivo + + + Qobuz + Qobuz + + + CDDA + CDDA + + + SomaFM + SomaFM + + + Stream + Retransmisión + + + Radio Paradise + Radio Paradise + + + Unknown + Desconocido + + + Last.fm + Last.fm + + + Login + Acceder + + + Libre.fm + Libre.fm + + + Listenbrainz + ListenBrainz + + + User token: + Token de usuario: + + + Enter your user token from + Introduzca su token de usuario de + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + Autenticación en el servicio de registro de reproducciones %1 + + + Open URL in web browser? + ¿Quiere abrir el URL en el navegador? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Pulse en «Guardar» para copiar el URL en el portapapeles y ábralo en el navegador manualmente. + + + Could not open URL. Please open this URL in your browser + No se ha podido abrir URL. Por favor, ábrala en su navegador + + + Invalid reply from web browser. Missing token. + El servidor web devolvió una respuesta no válida. Falta el token. + + + Received invalid reply from web browser. Try another browser. + Se ha recibido una respuesta no válida del navegador web. Prueba con otro navegador. + + + Scrobbler %1 is not authenticated! + ¡No se ha iniciado sesión en servicio de registro de reproducción %1! + + + Scrobbler %1 error: %2 + Registro de reproducción %1 error: %2 + + + + SettingsDialog + + Settings + Configuración + + + General + General + + + User interface + Interfaz de usuario + + + Streaming + Retransmitiendo + + + + SmartPlaylistQuerySearchPage + + Form + Formulario + + + Search mode + Mode de búsqueda + + + Match every search term (AND) + Hacer coincidir todos los términos (Y) + + + Match one or more search terms (OR) + Hacer coincidir algún término (O) + + + Include all songs + Incluir todas los temas + + + Search terms + Términos de búsqueda + + + + SmartPlaylistQuerySortPage + + Form + Formulario + + + Sorting + Ordenación + + + Put songs in a random order + Disponer temas en orden aleatorio + + + Sort songs by + Ordenar temas por + + + Limits + Límites + + + Show all the songs + Mostrar todos los temas + + + Only show the first + Mostrar solo el primero + + + songs + temas + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Búsqueda en la colección + + + Find songs in your collection that match the criteria you specify. + Encontrar temas que coincidan con sus criterios en la colección. + + + Search terms + Términos de búsqueda + + + A song will be included in the playlist if it matches these conditions. + Se incluirá el tema si cumple estas condiciones. + + + Search options + Opciones de búsqueda + + + Choose how the playlist is sorted and how many songs it will contain. + Seleccionar como se ordenará la lista y qué temas contendrá. + + + + SmartPlaylistSearchPreview + + Form + Formulario + + + Preview + Previsualización + + + Loading... + Cargando… + + + %1 songs found (showing %2) + %1 temas encontrados (se muestran %2) + + + %1 songs found + %1 temas encontrados + + + + SmartPlaylistSearchTermWidget + + Form + Formulario + + + and + y + + + ago + hace + + + The second value must be greater than the first one! + El segundo valor debe ser mayor que el primero! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Añadir término de búsqueda + + + + SmartPlaylistWizard + + Smart playlist + Lista inteligentes + + + Playlist type + Tipo de lista + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Una lista inteligente es una lista dinámica de temas de la biblioteca. Hay distintos tipos de listas inteligentes que permiten seleccionar los temas de distintas maneras. + + + Finish + Terminar + + + Choose a name for your smart playlist + Escoja un nombre para su lista inteligente + + + + SmartPlaylistWizardFinishPage + + Form + Formulario + + + Name + Nombre + + + Use dynamic mode + Usar modo dinámico + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + En el modo dinámico se escogerán y añadirán nuevas pistas cada vez que un tema finalice. + + + + SmartPlaylists + + Newest tracks + Pistas más nuevas + + + 50 random tracks + 50 pistas aleatorias + + + Ever played + Ya reproducido + + + Never played + Nunca reproducidas + + + Last played + + + + Most played + Más reproducidas + + + Favourite tracks + Pistas favoritas + + + All tracks + Todas las pistas + + + Dynamic random mix + Mezcla aleatoria dinámica + + + + SmartPlaylistsViewContainer + + New smart playlist + Lista inteligente nueva + + + Edit smart playlist + Editar lista inteligente + + + Delete smart playlist + Eliminar lista inteligente + + + New smart playlist... + Lista inteligente nueva… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Play next + Reproducir siguiente + + + Edit smart playlist... + Editar lista inteligente... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry se está ejecutando como un Snap + + + It is detected that Strawberry is running as a Snap + Se ha detectado que Strawbery está ejecutándose como un «snap» + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry se está ejecutando como un snap. Será imposible acceder a la partición raíz (/). Pueden producirse otras restricciones, como la imposibilidad de acceder a determinados dispositivos o recursos compartidos de red. + + + For Ubuntu there is an official PPA repository available at %1. + Hay un repositorio PPA oficial para Ubuntu en %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Existen versiones oficiales para Debian y Ubuntu que también funcionan en la mayor parte de sus derivados. Mira %1 para obtener más información. + + + For a better experience please consider the other options above. + Tenga en cuenta las opciones anteriores para lograr una experiencia óptima. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Copia los archivos strawberry.conf y strawberry.db de tu directorio ~/snap antes de desinstalar el paquete snap para no perder tu configuración: + + + Uninstall the snap with: + Desinstale el «snap» con: + + + Install strawberry through PPA: + Instalar Strawberry mediante un PPA: + + + + SomaFMService + + Getting %1 channels + Obteniendo %1 channels + + + + SongLoader + + You need GStreamer for this URL. + Necesita GStreamer para este URL. + + + Preload function was not set for blocking operation. + La función de precarga no se ajustó para un funcionamiento con bloqueo. + + + File %1 does not exist. + El archivo %1 no existe. + + + CD playback is only available with the GStreamer engine. + La reproducción de CD solo es posible con el motor GStreamer. + + + Could not open file %1 for reading: %2 + No se ha podido abrir el archivo %1 para leer: %2 + + + Could not open CUE file %1 for reading: %2 + No se ha podido leer el archivo CUE %1: %2 + + + Could not open playlist file %1 for reading: %2 + No se ha podido leer el archivo de lista de reproducción %1: %2 + + + Couldn't create GStreamer source element for %1 + No se ha podido crear una fuente GStreamer para %1 + + + Couldn't create GStreamer typefind element for %1 + No se pudo crear el elemento typefind de GStreamer para %1 + + + Couldn't create GStreamer fakesink element for %1 + No se pudo crear el elemento fakesink de GStreamer para %1 + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + No se pudieron vincular los elementos fuente, typefind y fakesink de GStreamer para %1 + + + + SongLoaderInserter + + Error while loading audio CD. + Error al cargar el CD de audio. + + + Loading tracks + Cargando pistas + + + Loading tracks info + Cargando información de pistas + + + + SpotifyRequest + + Authenticating... + Autenticando… + + + Receiving artists... + Artistas receptores... + + + Receiving albums... + Recepción de álbumes... + + + Receiving songs... + Recibir canciones... + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + Recibir álbumes de %1 artista... + + + Receiving albums for %1 artists... + Recibir álbumes de artistas de %1... + + + Receiving songs for %1 album... + Recibir canciones del álbum %1... + + + Receiving songs for %1 albums... + Recibir canciones de álbumes de %1... + + + Receiving album cover for %1 album... + Recibir la portada del álbum de %1... + + + Receiving album covers for %1 albums... + Recibir portadas de álbumes de %1 álbumes... + + + No match. + Sin coincidencias. + + + Data missing error + Error de datos inexistentes + + + + SpotifyService + + Spotify Authentication + Autenticación en Spotify + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code or state! + ¡Falta código de token o estado! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Not authenticated with Spotify. + No autenticado con Spotify. + + + + SpotifySettingsPage + + Spotify + Spotify + + + Enable + Activar + + + Basic authentication + Autenticación básica + + + Authenticate + Autenticar + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + <html><head/><body><p>No se detecta el plugin GStreamer de Spotify, por lo que no podrás transmitir canciones desde Spotify sin él. Véase la <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> para las instrucciones de cómo instalar el plugin.</p></body></html> + + + Preferences + Preferencias + + + Search delay + Demora de búsqueda + + + ms + ms + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de temas + + + Download album covers + Descargar las portadas de los álbumes + + + Fetch entire albums when searching songs + Devolver el álbum completo al buscar temas + + + Authentication failed + Falló la autenticación + + + + StreamingCollectionView + + The streaming collection is empty! + ¡La colección de streaming está vacía! + + + Click here to retrieve music + Pulse aquí para recuperar música + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Queue to play next + Poner en cola para reproducir a continuación + + + Remove from favorites + Eliminar de favoritos + + + + StreamingCollectionViewContainer + + Form + Formulario + + + Close + Cerrar + + + Abort + Interrumpir + + + Refresh catalogue + Actualizar catálogo + + + + StreamingSearchModel + + Various artists + Varios artistas + + + + StreamingSearchView + + Streaming Search View + Vista de búsqueda en streaming + + + MenuPopupToolButton + MenuPopupToolButton + + + artists + artistas + + + albums + álbumes + + + songs + temas + + + Enter search terms above to find music + Introduzca términos de búsqueda arriba para buscar en la colección + + + Configure %1... + Configurar %1… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Add to artists + Añadir a artistas + + + Add to albums + Añadir a álbumes + + + Add to songs + Añadir a temas + + + Search for this + Buscar esto + + + Group by + Agrupar por + + + + StreamingSongsView + + Configure %1... + Configurar %1… + + + + StreamingTabsView + + Streaming Tabs View + Vista de pestañas de streaming + + + Artists + Artistas + + + Albums + Álbumes + + + Songs + Temas + + + Search + Buscar + + + Configure %1... + Configurar %1… + + + + SubsonicRequest + + Retrieving albums... + Buscando álbumes... + + + Retrieving songs for %1 album... + Buscando temas de %1 álbum... + + + Retrieving songs for %1 albums... + Buscando temas de %1 álbumes... + + + Retrieving album cover for %1 album... + Buscando la portada del álbum %1... + + + Retrieving album covers for %1 albums... + Buscando portadas de %1 álbumes. + + + Unknown error + Error desconocido + + + + SubsonicService + + Server URL is invalid. + La dirección URL del servidor es inválida. + + + Missing username or password. + Falta el usuario o la contraseña. + + + + SubsonicSettingsPage + + Subsonic + Subsonic + + + Enable + Activar + + + Server URL + URL del servidor + + + Authentication + Autenticación + + + Username + Usuario + + + Password + Contraseña + + + Authentication method: + Método de autenticación: + + + Hex + Hex + + + MD5 token (Recommended) + Token MD5 (recomendado) + + + Preferences + Preferencias + + + Use HTTP/2 when possible + Usar HTTP/2 cuando sea posible + + + Verify server certificate + Verificar el certificado del servidor + + + Download album covers + Descargar las portadas de los álbumes + + + Server-side scrobbling + Seguimiento de reproducción en el servidor + + + Test + Probar + + + Delete songs + Eliminar temas + + + Configuration incomplete + Configuración incompleta + + + Missing server url, username or password. + Falta el URL del servidor, el usuario o la contraseña. + + + Configuration incorrect + Configuración incorrecta + + + Server URL is invalid. + La dirección URL del servidor es inválida. + + + Test successful! + ¡Prueba correcta! + + + Test failed! + ¡Prueba fallida! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + La dirección URL del servidor de Subsonic es errónea. + + + Missing Subsonic username or password. + Falta el usuario o la contraseña de Qobuz. + + + + SystemTrayIcon + + Pause + Pausar + + + Play + Reproducir + + + + TagFetcher + + Identifying song + Identificando canción + + + Fingerprinting song + Creando huella digital de canción + + + Downloading metadata + Descargando metadatos + + + + TidalRequest + + Authenticating... + Autenticando… + + + Receiving artists... + Artistas receptores... + + + Receiving albums... + Recepción de álbumes... + + + Receiving songs... + Recibir canciones... + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + Recibir álbumes de %1 artista... + + + Receiving albums for %1 artists... + Recibir álbumes de artistas de %1... + + + Receiving songs for %1 album... + Recibir canciones del álbum %1... + + + Receiving songs for %1 albums... + Recibir canciones de álbumes de %1... + + + Receiving album cover for %1 album... + Recibir la portada del álbum de %1... + + + Receiving album covers for %1 albums... + Recibir portadas de álbumes de %1 álbumes... + + + No match. + Sin coincidencias. + + + + TidalService + + Reply from Tidal is missing query items. + Faltan elementos en la respuesta de Tidal. + + + Missing Tidal API token. + Falta el token de API de Tidal. + + + Missing Tidal username. + Falta el usuario de Tidal. + + + Missing Tidal password. + Falta la contraseña de Tidal. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Se ha alcanzado el número máximo de intentos sin lograr acceder a Tidal. + + + Not authenticated with Tidal. + No se ha accedido a Tidal. + + + Missing Tidal API token, username or password. + Falta el token de la API de Tidal, el usuario o la contraseña. + + + + TidalSettingsPage + + Tidal + Tidal + + + Enable + Activar + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + La compatibilidad con Tidal no es oficial y precisa de un token de API procedente de una aplicación registrada. No le podemos ayudar a conseguirlo. + + + Authentication + Autenticación + + + Use OAuth + Utilizar OAuth + + + Client ID + Id. de cliente + + + API Token + Token de API + + + Username + Usuario + + + Password + Contraseña + + + Login + Acceder + + + Preferences + Preferencias + + + Audio quality + Calidad de audio + + + Search delay + Demora de búsqueda + + + ms + ms + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de temas + + + Download album covers + Descargar las portadas de los álbumes + + + Fetch entire albums when searching songs + Devolver el álbum completo al buscar temas + + + Album cover size + Tamaño de la portada del álbum + + + Stream URL method + Método de retransmisión de URL + + + Append explicit to album title for explicit albums + Añadir «explícito» al nombre de los álbumes explícitos + + + Configuration incomplete + Configuración incompleta + + + Missing Tidal client ID. + Falta el identificador de cliente de Tidal. + + + Missing API token. + Falta el token de la API. + + + Missing username. + Falta el usuario. + + + Missing password. + Falta la contraseña. + + + Authentication failed + Falló la autenticación + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + No se ha accedido a Tidal. + + + Missing Tidal API token, username or password. + Falta el token de la API de Tidal, el usuario o la contraseña. + + + Cancelled. + Cancelado. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Se ha recibido URL con %1 transmisión cifrada de Tidal. Strawberry no soporta flujos cifrados por ahora. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Se ha recibido URL con una transmisión cifrada de Tidal. Strawberry no soporta flujos cifrados por ahora. + + + + TrackSelectionDialog + + Tag fetcher + Obtener etiquetas + + + Sorry + Lo sentimos + + + Strawberry was unable to find results for this file + Strawberry no encontró resultados para este archivo + + + Select best possible match + Seleccionar la mejor coincidencia + + + Track + Pista + + + Year + Año + + + Title + Título + + + Artist + Artista + + + Album + Álbum + + + Previous + Anterior + + + Next + Siguiente + + + Original tags + Etiquetas originales + + + Suggested tags + Etiquetas sugeridas + + + Saving tracks + Guardando las pistas + + + + TrackSlider + + Form + Formulario + + + 0:00:00 + 0:00:00 + + + Click to toggle between remaining time and total time + Pulse para alternar entre el tiempo restante y el total + + + + TranscodeDialog + + Transcode Music + Convertir música + + + Files to transcode + Archivos que convertir + + + Filename + Nombre del archivo + + + Directory + Carpeta + + + Add... + Añadir... + + + Remove + Eliminar + + + Add all tracks from a directory and all its subdirectories + Añadir todas las pistas de una carpeta y sus subcarpetas + + + Import... + Importar… + + + Output options + Opciones de salida + + + Audio format + Formato de audio + + + Options... + Opciones… + + + Destination + Destino + + + Alongside the originals + Junto a los originales + + + Select... + Seleccionar... + + + Progress + Progreso + + + Details... + Detalles… + + + Clear + Borrar + + + Start transcoding + Iniciar la conversión + + + %n remaining + + %n pendientes + + + + + %n finished + + %n completados + + + + + %n failed + + %n falló + + + + + Add files to transcode + Añadir archivos que convertir + + + Music + Música + + + Open a directory to import music from + Abrir una carpeta de la que importar música + + + Add folder + Añadir carpeta + + + + TranscodeLogDialog + + Transcoder Log + Registro del conversor + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados todos los complementos necesarios de GStreamer + + + Successfully written %1 + %1 se ha escrito correctamente + + + Transcoding %1 files using %2 threads + Convirtiendo %1 archivos usando %2 procesos + + + Error processing %1: %2 + Error al procesar %1: %2 + + + Starting %1 + Iniciando %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + No se pudo encontrar un codificador para %1; compruebe que tiene instalados los complementos correctos de GStreamer + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + No se pudo encontrar un mezclador para %1; compruebe que tiene instalados los complementos correctos de GStreamer + + + + TranscoderOptionsAAC + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + Profile + Perfil + + + Main profile (MAIN) + Perfil principal (MAIN) + + + Low complexity profile (LC) + Perfil de baja complejidad (LC) + + + Scalable sampling rate profile (SSR) + Perfil de tasa de muestreo escalable (SSR) + + + Long term prediction profile (LTP) + Perfil de predicción a largo plazo (LTP) + + + Use temporal noise shaping + Usar conformación de ruido temporal + + + Allow mid/side encoding + Permitir codificación MS (suma / diferencia) + + + Block type + Tipo de bloque + + + Normal block type + Tipo de bloque normal + + + No short blocks + Sin bloques cortos + + + No long blocks + Sin bloques largos + + + + TranscoderOptionsASF + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + + TranscoderOptionsDialog + + Transcoding options + Opciones de conversión + + + + TranscoderOptionsFLAC + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Fast + Rápido + + + Best + Mejor + + + + TranscoderOptionsMP3 + + Form + Formulario + + + Optimize for &quality + Optimizar para &calidad + + + Quality + Sound quality + Calidad + + + Opti&mize for bitrate + Opti&mizar para tasa de bits + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + Constant bitrate + Tasa de bits constante + + + Encoding engine quality + Calidad del motor de codificación + + + Fast + Rápido + + + Standard + Estándar + + + High + Alto + + + Force mono encoding + Forzar la codificación monoaural + + + + TranscoderOptionsOpus + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + + TranscoderOptionsSpeex + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Bitrate + Tasa de bits + + + automatic + automático + + + kbps + kb/s + + + Average bitrate + Tasa media de bits + + + disabled + desactivado + + + Encoding mode + Modo de codificación + + + Auto + Autom. + + + Ultra wide band (UWB) + Banda ultraancha (UWB) + + + Wide band (WB) + Banda ancha (WB) + + + Narrow band (NB) + Banda estrecha (NB) + + + Variable bit rate + Tasa de bits variable + + + Voice activity detection + Detección de actividad de voz + + + Discontinuous transmission + Transmisión discontinua + + + Encoding complexity + Complejidad de codificación + + + Frames per buffer + Fotogramas por búfer + + + + TranscoderOptionsVorbis + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Use bitrate management engine + Usar el motor de gestión de flujo de bits + + + Target bitrate + Tasa de bits objetivo + + + kbps + kb/s + + + Minimum bitrate + Tasa de bits mínima + + + disabled + desactivado + + + Maximum bitrate + Tasa de bits máxima + + + + TranscoderOptionsWavPack + + Form + Formulario + + + + TranscoderSettingsPage + + Transcoding + Convirtiendo + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Estos ajustes se usa en la ventana «Convertir música» y al convertir canciones antes de copiarlas en un dispositivo. + + + FLAC + FLAC + + + WavPack + WavPack + + + Vorbis + Vorbis + + + Opus + Opus + + + Speex + Speex + + + AAC + AAC + + + ASF (WMA) + ASF (WMA) + + + MP3 + MP3 + + + + Udisks2Lister + + D-Bus path + Ruta de D-Bus + + + Serial number + Número de serie + + + Mount points + Puntos de montaje + + + Partition label + Etiqueta de partición + + + UUID + UUID + + + + UserPassDialog + + Enter username and password + Introduzca usuario y contraseña + + + Username + Usuario + + + Password + Contraseña + + + diff --git a/src/translations/strawberry_es_MX.ts b/src/translations/strawberry_es_MX.ts new file mode 100644 index 00000000..ab811783 --- /dev/null +++ b/src/translations/strawberry_es_MX.ts @@ -0,0 +1,7568 @@ + + + + + About + + About + Acerca de + + + About Strawberry + Acerca de Strawberry + + + Version %1 + Versión %1 + + + Strawberry is a music player and music collection organizer. + Strawberry es un reproductor y catalogador de colecciones musicales. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Es un desarrollo derivado de Clementine lanzado en 2018 destinado a melómanos y audiófilos. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry es un programa libre, disponible en virtud de la licencia GPL. El código fuente puede encontrarse en %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Debería haber recibido una copia de la Licencia Pública General GNU junto con este programa. Si no es así, diríjase a %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Si le gusta Strawberry y le da uso, plantéese patrocinarlo o realizar una donación. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Puede patrocinar al autor en %1. También puede realizar una aportación económica a través de %2. + + + Author and maintainer + Autor y responsable + + + Contributors + Colaboradores + + + Clementine authors + Autores de Clementine + + + Clementine contributors + Colaboradores de Clementine + + + Thanks to + Gracias a + + + Thanks to all the other Amarok and Clementine contributors. + Gracias al resto de colaboradores de Amarok y Clementine + + + + AddStreamDialog + + Add Stream + Añadir emisora + + + Enter the URL of a stream: + Introduzca el URL de una emisora: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Imágenes (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Imágenes (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Todos los archivos (*) + + + Load cover from disk... + Cargar cubierta desde disco… + + + Save cover to disk... + Guardar la cubierta en el disco… + + + Load cover from URL... + Cargar cubierta desde un URL… + + + Search for album covers... + Buscar cubiertas de álbumes… + + + Unset cover + Quitar la cubierta + + + Delete cover + Eliminar cubierta + + + Clear cover + Eliminar cubierta + + + Show fullsize... + Mostrar a tamaño completo… + + + Search automatically + Buscar automáticamente + + + Load cover from disk + Cargar cubierta desde el disco + + + Failed to open cover file %1 for reading: %2 + Error al abrir el archivo de portada %1 para la lectura: %2 + + + Cover file %1 is empty. + El archivo de portada %1 está vacío. + + + unknown + Desconocido + + + Save album cover + Guardar la cubierta del álbum + + + Failed to open cover file %1 for writing: %2 + Error al abrir el archivo de portada %1 para la escritura: %2 + + + Failed writing cover to file %1: %2 + Error escribiendo la portada en el archivo %1: %2 + + + Failed writing cover to file %1. + Error escribiendo la portada en el archivo %1. + + + Failed to delete cover file %1: %2 + Error al eliminar el archivo de portada %1: %2 + + + Failed to write cover to file %1: %2 + Error al escribir la portada en el archivo %1: %2 + + + Could not save cover to file %1. + No se pudo guardar la portada en el archivo %1. + + + + AlbumCoverExport + + Export covers + Exportar cubiertas + + + Output + Salida + + + Enter a filename for exported covers (no extension): + Introduzca un nombre de archivo para las cubiertas exportadas (sin extensión): + + + Export downloaded covers + Exportar cubiertas descargadas + + + Export embedded covers + Exportar cubiertas incrustadas + + + Existing covers + Cubiertas existentes + + + Do not overwrite + No sobrescribir + + + O&verwrite all + &Sobrescribir todo + + + Overwrite s&maller ones only + Sobrescribir únicamente los &más pequeños + + + Size + Tamaño + + + Scale size + Tamaño de escala + + + Size: + Tamaño: + + + Pixel + Píxel + + + + AlbumCoverManager + + Abort + Interrumpir + + + All albums + Todos los álbumes + + + Albums with covers + Álbumes con cubierta + + + Albums without covers + Álbumes sin cubierta + + + Really cancel? + ¿Confirma que quiere cancelar? + + + Closing this window will stop searching for album covers. + Si cierra esta ventana se detendrá la búsqueda de cubiertas para los álbumes. + + + Don't stop! + ¡No detener! + + + All artists + Todos los artistas + + + Various artists + Varios artistas + + + Got %1 covers out of %2 (%3 failed) + Se obtuvieron %1 cubiertas de %2 (%3 fallaron) + + + %1 transferred + %1 transferido + + + Export finished + Exportación finalizada + + + No covers to export. + No hay ninguna cubierta que exportar. + + + Exported %1 covers out of %2 (%3 skipped) + Se han exportado %1 cubiertas de %2 (%3 omitidas) + + + Could not save cover to file %1. + No se pudo guardar la portada en el archivo %1. + + + + AlbumCoverSearcher + + Cover Manager + Gestor de cubiertas + + + Artist + Artista + + + Album + Álbum + + + Search + Buscar + + + Covers from %1 + Cubiertas de %1 + + + Abort + Interrumpir + + + + AnalyzerContainer + + Framerate + Tasa de fotogramas + + + Low (%1 fps) + Baja (%1 fps) + + + Medium (%1 fps) + Media (%1 fps) + + + High (%1 fps) + Alta (%1 fps) + + + Super high (%1 fps) + Muy alta (%1 fps) + + + No analyzer + Sin analizador + + + Block analyzer + Analizador de bloques + + + Boom analyzer + Analizador de resonancia + + + Turbine + Turbine + + + Sonogram + Sonograma + + + WaveRubber + WaveRubber + + + + AppearanceSettingsPage + + Appearance + Apariencia + + + Style + Estilo + + + Use system theme icons + Usar iconos del tema del sistema + + + Settings require restart. + Los ajustes requieren reiniciar. + + + Tabbar colors + Colores barra pestañas + + + &Use the system default color + &Usar el color predeterminado del sistema + + + Use custom color + Usar color personalizado + + + Use gradient background + Usar fondo degradado + + + Select tabbar color: + Seleccionar color barra pestañas: + + + Background image + Imagen de fondo + + + Default bac&kground image + Imagen de &fondo predeterminada + + + &No background image + &Sin imagen de fondo + + + The album cover of the currently playing song + La cubierta del álbum de la canción en reproducción + + + Albu&m cover + C&ubierta del álbum + + + Custom image: + Imagen personalizada: + + + Browse... + Examinar… + + + Position + Posición + + + Upper Left + Superior izquierda + + + Upper Right + Superior derecha + + + Middle + Medio + + + Bottom Left + Inferior izquierda + + + Bottom Right + Inferior derecha + + + Max cover size + Tamaño máximo de cubierta + + + Stretch image to fill playlist + Ajustar la imagen a la lista de reproducción + + + Keep aspect ratio + Mantener proporción + + + Do not cut image + No recortar la imagen + + + Blur amount + Cantidad de desenfoque + + + 0px + 0px + + + Opacity + Opacidad + + + 40% + 40 % + + + Icon sizes + Tamaños de iconos + + + Playlist buttons + Botones de lista de reproducción + + + Tabbar large mode + Barra pequeña + + + Play control buttons + Botones de control de reproducción + + + Configure buttons + Configurar botones + + + Files, playlists and queue buttons + Botones de archivos, listas y cola + + + Tabbar small mode + Barra grande + + + Playlist playing song color + Color de canción en repr. en lista + + + System highlight color + Color de resalte del sistema + + + Custom color + Color personalizado + + + Select playlist playing song color: + Seleccione el color de canción en repr. en listas: + + + Select background image + Elija la imagen de fondo + + + + BackendSettingsPage + + Backend + Sistema de audio + + + Audio output + Salida de audio + + + Device + Dispositivo + + + Output + Salida + + + Engine + Motor + + + ALSA plugin: + Complemento de ALSA: + + + hw + hw + + + p&lughw + p&lughw + + + pcm + pcm + + + Exclusive mode (Experimental) + Modo exclusivo (experimental) + + + Options + Opciones + + + Enable volume control + Activar control de volumen + + + Upmix / downmix to + Mezcla ascendente/descendente + + + channels + canales + + + Improve headphone listening of stereo audio records (bs2b) + Mejora la escucha por auriculares de grabaciones de audio estéreo (bs2b) + + + Enable HTTP/2 for streaming + Habilitar HTTP/2 para streaming + + + Use strict SSL mode + Usar modo SSL estricto + + + Buffer + Búfer + + + ms + ms + + + Buffer duration + Duración del búfer + + + High watermark + Marca de agua alta + + + Low watermark + Marca de agua baja + + + Defaults + Valores predeterminados + + + Audio normalization + Normalización de audio + + + No audio normalization + Sin normalización de audio + + + Replay Gain + Ajuste de volumen en reproducción + + + Use Replay Gain metadata if it is available + Usar metadatos de ajuste de volumen en reproducción si están disponibles + + + Replay Gain mode + Modo de ajuste de volumen en reproducción + + + Radio (equal loudness for all tracks) + Radio (volumen igual para todas las pistas) + + + Album (ideal loudness for all tracks) + Álbum (volumen idóneo para todas las pistas) + + + Pre-amp + Preamplificador + + + Apply compression to prevent clipping + Aplicar compresión para evitar saturación + + + Fallback-gain + Ganancia de respaldo + + + EBU R 128 Loudness Normalization + Normalización de volumen EBU R 128 + + + Perform track loudness normalization + Realizar normalización de sonoridad de la pista + + + Target Level + Nivel objetivo + + + Fading + Fundido + + + Fade out when stopping a track + Fundido al detener la reproducción + + + Cross-fade when changing tracks manually + Fundido encadenado al cambiar pistas manualmente + + + Cross-fade when changing tracks automatically + Fundido encadenado al cambiar pistas automáticamente + + + Except between tracks on the same album or in the same CUE sheet + Excepto entre pistas del mismo álbum o en la misma hoja CUE + + + Fading duration + Duración del fundido + + + Fade out on pause / fade in on resume + Fundido al pausar / reanudar + + + + BehaviourSettingsPage + + Behavior + Comportamiento + + + Show system tray icon + Mostrar icono en la bandeja del sistema + + + Keep running in the background when the window is closed + Seguir ejecutando el programa en segundo plano al cerrar la ventana + + + Show song progress on system tray icon + Mostrar avance en el icono de la bandeja del sistema + + + Show song progress on taskbar + Mostrar progreso de la canción en la barra de tareas + + + Resume playback on start + Reanudar la reproducción al iniciar + + + Show playing widget + Mostrar mini aplicación de reproducción + + + On startup + Al iniciar + + + Remember from &last time + Recordar de la ú&ltima vez + + + Show the main window + Mostrar ventana principal + + + Hide the main window + Oculta la ventana principal + + + Show the main window maximized + Mostrar ventana principal maximizada + + + Show the main window minimized + Mostrar ventana principal minimizada + + + Language + Idioma + + + Use the system default + Utilizar valor predeterminado del sistema + + + You will need to restart Strawberry if you change the language. + Necesitará reiniciar Strawberry si cambia el idioma. + + + Using the menu to add a song will... + Al usar el menú para añadir una canción… + + + Never start playing + Nunca comenzar la reproducción + + + Play if there is nothing already playing + Reproducir si no hay nada en reproducción + + + Always start playing + Comenzar siempre la reproducción + + + Pressing "Previous" in player will... + Al pulsar en el botón «Anterior» del reproductor… + + + Jump to previous song right away + Ir a la pista anterior inmediatamente + + + Restart song, then jump to previous if pressed again + Reiniciar la pista e ir a la anterior si se hace clic nuevamente + + + Double clicking a song will... + Al pulsar dos veces en una canción… + + + Append to the playlist + Añadir a la lista de reproducción + + + Replace the playlist + Reemplazar la lista de reproducción + + + Open in new playlist + Abrir en una lista nueva + + + Add to the queue + Añadir a la cola + + + Double clicking a song in the playlist will... + Al pulsar dos veces en una canción en la lista de reproducción… + + + Change the currently playing song + Cambiar la pista actualmente en reproducción + + + Seeking using a keyboard shortcut or mouse wheel + Moverse en la pista mediante un atajo de teclado o la rueda del ratón + + + Time step + Salto en el tiempo + + + s + s + + + Volume Increment + Incremento de volumen + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Error al reactivar el dispositivo CDDA. + + + Error while setting CDDA device to pause state. + Error al poner en pausa el dispositivo CDDA. + + + Error while querying CDDA tracks. + Error de acceso a las pistas CDDA. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + No se puede ejecutar la consulta SQL de la colección: %1 + + + Failed SQL query: %1 + Error en la consulta de SQL: %1 + + + Updating %1 database. + Actualizando %1 base de datos. + + + + CollectionFilterWidget + + Collection Filter + Filtro de colección + + + Enter search terms here + Introduzca aquí términos de búsqueda + + + MenuPopupToolButton + MenuPopupToolButton + + + Entire collection + Fonoteca completa + + + Added today + Añadidas hoy + + + Added this week + Añadidas esta semana + + + Added within three months + Añadidas en los últimos tres meses + + + Added this year + Añadidas este año + + + Added this month + Añadidas este mes + + + Save current grouping + Guardar agrupamiento actual + + + Manage saved groupings + Gestionar agrupamientos guardados + + + Show + Mostrar + + + Group by + Agrupar por + + + Display options + Opciones de visualización + + + Group by Album artist/Album + Agrupar por artista del álbum/álbum + + + Group by Album artist/Album - Disc + Agrupar por artista del álbum/álbum - disco + + + Group by Album artist/Year - Album + Agrupar por artista del álbum/año - álbum + + + Group by Album artist/Year - Album - Disc + Agrupar por artista del álbum/año - álbum - disco + + + Group by Artist/Album + Agrupar por artista/álbum + + + Group by Artist/Album - Disc + Agrupar por artista/álbum - disco + + + Group by Artist/Year - Album + Agrupar por artista/año - álbum + + + Group by Artist/Year - Album - Disc + Agrupar por artista/año - álbum - disco + + + Group by Genre/Album artist/Album + Agrupar por género/artista del álbum/álbum + + + Group by Genre/Artist/Album + Agrupar por género/artista/álbum + + + Group by Album Artist + Agrupar por artista del álbum + + + Group by Artist + Agrupar por artista + + + Group by Album + Agrupar por álbum + + + Group by Genre/Album + Agrupar por género/álbum + + + Advanced grouping... + Agrupamiento avanzado… + + + Grouping Name + Nombre de agrupamiento + + + Grouping name: + Nombre de agrupamiento: + + + + CollectionModel + + Various artists + Varios artistas + + + Loading... + Cargando… + + + Unknown + Desconocido + + + + CollectionSettingsPage + + Collection + Colección + + + These folders will be scanned for music to make up your collection + Estas carpetas se analizarán en busca de música para crear su colección + + + Add new folder... + Añadir carpeta nueva… + + + Remove folder + Quitar carpeta + + + Automatic updating + Actualización automática + + + Update the collection when Strawberry starts + Actualizar la colección al iniciar Strawberry + + + Monitor the collection for changes + Vigilar cambios en la colección + + + Song fingerprinting and tracking + Identificación y seguimiento de canciones + + + Mark disappeared songs unavailable + Marcar las pistas desaparecidas como no disponibles + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + Realizar análisis de canción EBU R 128 (requerido para la normalización de volumen EBU R 128) + + + Expire unavailable songs after + Hacer que las canciones no disponibles expiren tras + + + days + días + + + Preferred album art filenames (comma separated) + Nombres de archivo preferidos para las portadas (separados por comas) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Al buscar la cubierta, Strawberry tratará de localizar primero imágenes que contengan una de estas palabras. Si no hay resultados, se usará la imagen más grande de la carpeta. + + + Display options + Opciones de visualización + + + Automatically open single categories in the collection tree + Expandir automáticamente categorías únicas en la colección + + + Show dividers + Mostrar divisores + + + Show album cover art in collection + Mostrar cubierta del álbum en la colección + + + Use various artists for compilation albums + Usar varios artistas para los álbumes de compilación + + + Skip leading articles ("the", "a", "an") when sorting artist names + Omitir artículos principales ("él", "ella", "un", "una") al ordenar los nombres de los artistas + + + Album cover pixmap cache + Antememoria de mapa de bits de cubiertas + + + Size + Tamaño + + + Enable Disk Cache + Activar antememoria de disco + + + Disk Cache Size + Tamaño de antememoria de disco + + + Current disk cache in use: + Antememoria de disco en uso: + + + Clear Disk Cache + Vaciar antememoria de disco + + + Song playcounts and ratings + Conteo de reproducciones y valoraciones de la canción + + + Save playcounts to song tags when possible + Guardar número de reproducciones en las etiquetas de las canciones cuando sea posible + + + Save ratings to song tags when possible + Guadar valoraciones en las etiquetas de la canción cuando sea posible + + + Overwrite database playcount when songs are re-read from disk + Sobreescribir el conteo de reproducciones de la base de datos al volver a leer las canciones del disco + + + Overwrite database rating when songs are re-read from disk + Sobreescribir base de datos de las valoraciones al volver a leer las canciones desde el disco + + + Save playcounts and ratings to files now + Guardar conteo de reproducciones y valoraciones en los archivos ahora + + + Enable delete files in the right click context menu + Activar eliminación de archivos en el menú contextual del botón secundario del ratón + + + Add directory... + Añadir carpeta… + + + Write all playcounts and ratings to files + Escribir todos los conteos de reproducciones y valoraciones en los archivos + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + ¿Estás seguro de que quieres guardar en los archivos el conteo de reproducciones y las valoraciones para todas las canciones de tu colección? + + + + CollectionView + + Your collection is empty! + La colección está vacía. + + + Click here to add some music + Pulse aquí para añadir música + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Queue to play next + Poner en cola para reproducir a continuación + + + Search for this + Buscar esto + + + Organize files... + Organizar archivos… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Edit track information... + Editar información de la pista… + + + Edit tracks information... + Editar información de las pistas… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + Rescan song(s) + Volver a escanear pistas + + + Show in various artists + Mostrar en Varios artistas + + + Don't show in various artists + No mostrar en Varios artistas + + + There are other songs in this album + Hay otras pistas en este álbum + + + Would you like to move the other songs on this album to Various Artists as well? + ¿Le gustaría mover también el resto de temas del álbum a Varios artistas? + + + Error + Error + + + None of the selected songs were suitable for copying to a device + Ninguna de las pistas seleccionadas era apta para copiarse en un dispositivo + + + + CollectionViewContainer + + Form + Formulario + + + + CollectionWatcher + + Updating collection + Actualizando la colección + + + Updating %1 + Actualizando %1 + + + + Console + + Console + Consola + + + Run + Ejecutar + + + + ContextSettingsPage + + Context + Contexto + + + Custom text settings + Configuración de texto personalizada + + + MenuPopupToolButton + MenuPopupToolButton + + + Title + Título + + + Summary + Resumen + + + Enable Items + Activar elementos + + + Album + Álbum + + + Technical Data + Información técnica + + + Song Lyrics + Letra de la canción + + + Automatically search for album cover + Buscar automáticamente la cubierta del álbum + + + Automatically search for song lyrics + Buscar automáticamente la letra de la canción + + + Font for headline + Tipo de letra de títulos + + + Font + Tipo de letra + + + Font size + Tamaño de letra + + + pt + pt + + + Preview + Previsualización + + + Font for data and lyrics + Tipo de letra de datos y letras + + + Add song artist tag + Añadir etiqueta de artista a la canción + + + Add song album tag + Añadir etiqueta de álbum a la canción + + + Add song title tag + Añadir etiqueta de título a la canción + + + Add song albumartist tag + Añadir etiqueta de artista del álbum a la canción + + + Add song year tag + Añadir etiqueta de año a la canción + + + Add song composer tag + Añadir etiqueta de compositor a la canción + + + Add song performer tag + Añadir etiqueta de intérprete a la canción + + + Add song grouping tag + Añadir etiqueta de agrupamiento a la canción + + + Add song disc tag + Añadir etiqueta de disco a la canción + + + Add song track tag + Añadir etiqueta de pista a la canción + + + Add song genre tag + Añadir etiqueta de género a la canción + + + Add song length tag + Añadir etiqueta de duración a la canción + + + Add song play count + Añadir contador de reproducciones de la canción + + + Add song skip count + Añadir contador de omisiones de la canción + + + Add a new line if supported by the notification type + Añadir un salto de renglón si el tipo de notificación lo permite + + + %filename% + %filename% + + + Add song filename + Añadir nombre de archivo de la canción + + + %url% + %url% + + + Add song URL + Añadir URL del tema + + + %rating% + %rating% + + + Add song rating + Añadir valoración de la canción + + + %originalyear% + %originalyear% + + + Add song original year tag + Añadir etiqueta de año original + + + + ContextView + + Filetype + Tipo de archivo + + + Length + Duración + + + Samplerate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + EBU R 128 Integrated Loudness + Sonoridad integrada EBU R 128 + + + EBU R 128 Loudness Range + Rango de sonoridad EBU R 128 + + + Show album cover + Mostrar cubierta del álbum + + + Show song technical data + Mostrar información técnica de la canción + + + Show song lyrics + Mostrar letras + + + Automatically search for song lyrics + Buscar automáticamente la letra de la canción + + + No song playing + No suena nada + + + %1 song + %1 canción + + + %1 songs + %1 canciones + + + %1 artist + %1 artista + + + %1 artists + %1 artistas + + + %1 album + %1 álbum + + + %1 albums + %1 álbumes + + + kbps + kb/s + + + + CoverFromURLDialog + + Load cover from URL + Cargar cubierta desde un URL + + + Enter a URL to download a cover from the Internet: + Introduzca un URL para descargar una cubierta de la Internet: + + + Fetching cover error + Error al obtener la cubierta + + + The site you requested does not exist! + El sitio indicado no existe. + + + The site you requested is not an image! + El sitio indicado no es una imagen. + + + + CoverManager + + Cover Manager + Gestor de cubiertas + + + Enter search terms here + Introduzca aquí términos de búsqueda + + + MenuPopupToolButton + MenuPopupToolButton + + + View + Ver + + + Total albums: + Álbumes totales: + + + Without cover: + Sin cubierta: + + + 0 + 0 + + + Fetch Missing Covers + Obtener las cubiertas que faltan + + + Export Covers + Exportar cubiertas + + + Fetch automatically + Obtener automáticamente + + + Load + Cargar + + + Add to playlist + Añadir a la lista de reproducción + + + + CoverSearchStatisticsDialog + + Fetch completed + Descarga finalizada + + + Got %1 covers out of %2 (%3 failed) + Se obtuvieron %1 cubiertas de %2 (%3 fallaron) + + + Covers from %1 + Cubiertas de %1 + + + Total network requests made + Total de solicitudes hechas a la red + + + Average image size + Tamaño medio de imagen + + + Total bytes transferred + Total de bytes transferidos + + + + CoversSettingsPage + + Covers + Cubiertas + + + Cover providers + Proveedores de cubiertas + + + Choose the providers you want to use when searching for covers. + Selecciona los proveedores de búsqueda de cubiertas. + + + Move up + Subir + + + Move down + Bajar + + + Authentication + Autenticación + + + Login + Acceder + + + Album cover types + Tipos de portada de álbum + + + Saving album covers + Guardando cubiertas de álbumes + + + Save album covers in album directory + Guardar las cubiertas en la carpeta de álbumes + + + Save album covers in cache directory + Guardar cubiertas en directorio de antememoria + + + Save album covers as embedded cover + Guardar cubiertas del álbum como elementos incrustados + + + Filename: + Archivo: + + + Pattern + Pauta + + + Random + Al azar + + + Overwrite existing file + Sobrescribir archivo existente + + + Lowercase filename + Nombre de archivo en minúsculas + + + Replace spaces with dashes + Sustituir espacios por guiones + + + Use Tidal settings to authenticate. + Usar ajustes de Tidal para autenticarse. + + + Use Spotify settings to authenticate. + Usar ajustes de Spotify para autenticarse. + + + Use Qobuz settings to authenticate. + Usar ajustes de Qobuz para autenticarse. + + + %1 needs authentication. + %1 necesita autenticación. + + + %1 does not need authentication. + %1 no necesita autenticación. + + + No provider selected. + No se ha seleccionado ningún proveedor. + + + Authentication failed + Falló la autenticación + + + Manually unset (%1) + Desactivar manualmente (%1) + + + Set through album cover search (%1) + Establecer mediante la búsqueda de portada de álbum (%1) + + + Automatically picked up from album directory (%1) + Elegido automáticamente de la carpeta del álbum (%1) + + + Embedded album cover art (%1) + Portada de álbum incrustada (%1) + + + + CueParser + + Saving CUE files is not supported. + El guardado de archivos CUE no está soportado. + + + + Database + + Unable to execute SQL query: %1 + No se puede ejecutar la consulta SQL: %1 + + + Failed SQL query: %1 + Error en la consulta de SQL: %1 + + + Integrity check + Comprobación de integridad + + + Database corruption detected. + Se han detectado errores en la base de datos + + + Backing up database + Haciendo copia de respaldo de la base de datos + + + + DeleteConfirmationDialog + + Delete files + Eliminar archivos + + + The following files will be deleted from disk: + Los siguientes archivos serán borrados del disco: + + + Are you sure you want to continue? + ¿Confirma que quiere continuar? + + + + DeleteFiles + + Deleting files + Eliminando los archivos + + + + DeviceItemDelegate + + Updating %1%... + Actualizando… (%1%) + + + Not connected + No conectado + + + Not mounted - double click to mount + Sin montar. Pulse dos veces para montar + + + Double click to open + Doble clic para abrir + + + %1 song%2 + %1 canción%2 + + + + DeviceManager + + Connect device + Conectar dispositivo + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Esta es la primera vez que conecta este dispositivo. Strawberry analizará el dispositivo ahora para encontrar archivos de música; esto podría tardar un poco. + + + This device will not work properly + Este dispositivo no funcionará correctamente + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Este es un dispositivo MTP, pero se compiló Strawberry sin compatibilidad con libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Si continúa, este dispositivo funcionará con lentitud y las pistas que se copien en él podrían no funcionar. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Esto es un iPod, pero se compiló Strawberry sin compatibilidad con libgpod. + + + This type of device is not supported: %1 + No se admite este tipo de dispositivo: %1 + + + + DeviceProperties + + Device Properties + Propiedades del dispositivo + + + Information + Información + + + Name + Nombre + + + Icon + Icono + + + Hardware information + Información del hardware + + + Hardware information is only available while the device is connected. + La información del hardware solo está disponible cuando el dispositivo está conectado. + + + File formats + Formatos de archivo + + + Supported formats + Formatos admitidos + + + This device supports the following file formats: + Este dispositivo admite los formatos de archivo siguientes: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry puede convertir automáticamente la música que copie en este dispositivo en un formato que pueda reproducir. + + + Do not convert any music + No convertir ninguna pista + + + Convert any music that the device can't play + Convertir las pistas que el dispositivo no pueda reproducir + + + Convert all music + Convertir toda la música + + + Preferred format + Formato preferido + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Este dispositivo debe conectarse y abrirse antes de que Strawberry pueda ver qué formatos de archivo admite. + + + Open device + Abrir dispositivo + + + Querying device... + Consultando dispositivo… + + + Model + Modelo + + + Manufacturer + Fabricante + + + + DeviceView + + Safely remove device + Quitar dispositivo con seguridad + + + Forget device + Olvidar dispositivo + + + Device properties... + Propiedades del dispositivo… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Copy to collection... + Copiar en la colección… + + + Delete from device... + Eliminar del dispositivo… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Olvidar un dispositivo lo eliminará de la lista y Strawberry tendrá que volver a examinar todas las pistas la próxima vez que lo conecte. + + + Delete files + Eliminar archivos + + + These files will be deleted from the device, are you sure you want to continue? + Se eliminarán estos archivos del dispositivo. ¿Confirma que quiere continuar? + + + + DeviceViewContainer + + Form + Formulario + + + + DynamicPlaylistControls + + Dynamic mode is on + Modo dinámico activado + + + New tracks will be added automatically. + Las pistas nuevas se añadirán automáticamente. + + + Expand + Expandir + + + Repopulate + Volver a poblar + + + Turn off + Apagar + + + + EditTagDialog + + Edit track information + Editar información de la pista + + + Summary + Resumen + + + Date created + Fecha de creación + + + Art Automatic + Cubierta automática + + + Date modified + Fecha de modificación + + + Art Embedded + Arte incrustrado + + + Last played + A playlist's tag. + + + + File type + Tipo + + + Length + Duración + + + Play count + Número de reproducciones + + + Bit depth + Resolución + + + EBU R 128 integrated loudness + Sonoridad integrada EBU R 128 + + + Bit rate + Tasa de bits + + + Skip count + Número de omisiones + + + Sample rate + Frecuencia + + + Path + Ruta + + + Filename + Nombre del archivo + + + Art Unset + Arte no establecido + + + File size + Tamaño del archivo + + + Art Manual + Cubierta manual + + + EBU R 128 loudness range + Rango de sonoridad EBU R 128 + + + Reset play counts + Reiniciar contador de reproducciones + + + Tags + Etiquetas + + + MenuPopupToolButton + MenuPopupToolButton + + + Change art + Cambiar cubierta + + + Embedded cover + Cubierta incrustada + + + Disc + Disco + + + Grouping + Agrupamiento + + + Album artist + Artista del álbum + + + Album + Álbum + + + Year + Año + + + Title + Título + + + Artist + Artista + + + Composer + Compositor + + + Complete tags automatically + Completar etiquetas automáticamente + + + Genre + Género + + + Comment + Comentario + + + Performer + Intérprete + + + Compilation + Compilación + + + Track + Pista + + + Rating + Valoración + + + Lyrics + Letras + + + Complete lyrics automatically + Completar la letra automáticamente + + + Previous + Anterior + + + Next + Siguiente + + + Saving tracks + Guardando las pistas + + + Loading tracks + Cargando pistas + + + %1 songs selected. + %1 temas seleccionados + + + kbps + kb/s + + + Unknown + Desconocido + + + Yes + + + + No + No + + + None + Ninguno + + + Cover is unset. + La portada no está establecida. + + + Cover from embedded image. + Portada desde la imagen incrustrada. + + + Cover from %1 + Portada de %1 + + + Cover art not set + Cubierta no definida + + + Album cover editing is only available for collection songs. + La edición de las cubiertas de los álbumes solo está disponible para las canciones de la fonoteca. + + + Cover changed: Will be cleared when saved. + Cubierta modificada: se restablecerá al guardar. + + + Cover changed: Will be unset when saved. + Cubierta modificada: se desactivará al guardar. + + + Cover changed: Will be deleted when saved. + Cubierta modificada: se eliminará al guardar. + + + Cover changed: Will set new when saved. + Cubierta modificada: se establecerá la nueva al guardar. + + + Never + Nunca + + + Reset song play statistics + Restablecer estadísticas de reproducción de canción + + + Are you sure you want to reset this song's play statistics? + ¿Estás seguro de que deseas reestablecer las estadísticas de reproducción de esta canción? + + + loading... + cargando... + + + Not found. + No se encontró. + + + Could not write metadata to %1 + No se pudieron escribir los metadatos en %1 + + + Could not write metadata to %1: %2 + No se pudieron escribir los metadatos en %1: %2 + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Ecualizador + + + Preset: + Ajuste predefinido: + + + Save preset + Guardar ajuste predefinido + + + Delete preset + Eliminar ajuste predefinido + + + Enable equalizer + Activar ecualizador + + + Enable stereo balancer + Activar equilibrador estéreo + + + Left + Izquierda + + + Balance + Equilibrio + + + Right + Derecha + + + Pre-amp + Preamplificador + + + Custom + Personalizado + + + Classical + Clásica + + + Club + Club + + + Dance + Baile + + + Full Bass + Graves completos + + + Full Treble + Agudos completos + + + Full Bass + Treble + Graves y agudos completos + + + Laptop/Headphones + Portátil/auriculares + + + Large Hall + Salón grande + + + Live + En directo + + + Party + Fiesta + + + Pop + Pop + + + Reggae + Reggae + + + Rock + Rock + + + Soft + Suave + + + Ska + Ska + + + Soft Rock + Soft rock + + + Techno + Tecno + + + Zero + Cero + + + Name + Nombre + + + Are you sure you want to delete the "%1" preset? + ¿Confirma que quiere eliminar el ajuste predefinido «%1»? + + + + EqualizerSlider + + Equalizer + Ecualizador + + + %1 dB + %1 dB + + + + ErrorDialog + + Strawberry Error + Error de Strawberry + + + + FancyTabWidget + + Large sidebar + Barra lateral grande + + + Icons sidebar + Barra lateral de iconos + + + Small sidebar + Barra lateral pequeña + + + Plain sidebar + Barra lateral simple + + + Tabs on top + Pestañas en la parte superior + + + Icons on top + Iconos en la parte superior + + + + FileTypeItemDelegate + + Unknown + Desconocido + + + + FileView + + Form + Formulario + + + + FileViewList + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Copy to collection... + Copiar en la colección… + + + Move to collection... + Mover a la colección… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Edit track information... + Editar información de la pista… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + + FreeSpaceBar + + Available + Disponible + + + New songs + Canciones nuevas + + + Exceeded by + Superado por + + + Used + En uso: + + + + GPodDevice + + Could not copy %1 to %2: %3 + No se pudo copiar %1 a %2: %3 + + + Writing database failed: %1 + Error al escribir la base de datos: %1 + + + Writing database failed. + Error al escribir la base de datos. + + + + GPodLoader + + Loading iPod database + Cargando la base de datos del iPod + + + An error occurred loading the iTunes database + Se produjo un error al cargar la base de datos de iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Autenticación con Genius + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code! + ¡Falta código del token de redirección! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Redirect from Genius is missing query items code or state. + Redirección Genius carece de código de elementos de búsqueda o estado. + + + + GioLister + + Mount point + Punto de montaje + + + Device + Dispositivo + + + URI + URI + + + + GlobalShortcutGrabber + + Press a key + Presione una tecla + + + Press a key combination to use for %1... + Oprima una combinación de teclas para usar con %1… + + + + GlobalShortcutsManager + + Play + Reproducir + + + Pause + Pausar + + + Play/Pause + Reproducir/pausar + + + Stop + Detener + + + Stop playing after current track + Detener la reproducción tras la pista actual + + + Next track + Siguiente pista + + + Previous track + Pista anterior + + + Restart or previous track + Reiniciar o pista anterior + + + Increase volume + Aumentar el volumen + + + Decrease volume + Reducir el volumen + + + Mute + Silenciar + + + Seek forward + Avanzar + + + Seek backward + Retroceder + + + Show/Hide + Mostrar/ocultar + + + Show OSD + Mostrar OSD + + + Toggle Pretty OSD + Alternar panel de información en pantalla estético + + + Change shuffle mode + Cambiar el modo de reproducción aleatoria + + + Change repeat mode + Cambiar el modo de repetición + + + Enable/disable scrobbling + Activar/desactivar scrobbling + + + Love + Me gusta + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Atajos generales + + + Use Gnome (GSD) shortcuts when available + Utilizar atajos de Gnome (GSD) cuando sea posible + + + Open... + Abrir… + + + Use MATE shortcuts when available + Utilizar atajos de MATE si están disponibles + + + Use KDE (KGlobalAccel) shortcuts when available + Utilizar atajos de KDE (GSD) cuando sea posible + + + Use X11 shortcuts when available + Usar atajos de X11 cuando sea posible + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Debe abrir las Preferencias del sistema y permitir que Strawberry «<span style="font-style:italic">controle el equipo</span>» para utilizar atajos globales en Strawberry. + + + Action + Category label + Acción + + + Shortcut + Atajo + + + Shortcut for %1 + Atajo para %1 + + + &None + &Ninguno + + + &Default + &Predeterminado + + + &Custom + &Personalizado + + + Change shortcut... + Cambiar atajo… + + + The "%1" command could not be started. + No se pudo iniciar la orden «%1». + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Usar atajos de X11 en %1 no es recomendable y puede hacer que el teclado no responda eficientemente. + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Los atajos en %1 se usan normalmente a través de GMPRIS y KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Los atajos en %1 se utilizan habitualmente a través de Gnome Settings Daemon y deben configurarse en gnome-settings-daemon en su lugar. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Los atajos en %1 se utilizan habitualmente a través de Gnome Settings Daemon y deben configurarse en cinnamon-settings-daemon en su lugar. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Los atajos en %1 se utilizan habitualmente a través de Mate Settings Daemon y deben configurarse ahí en su lugar. + + + + GroupByDialog + + Collection advanced grouping + Agrupamiento avanzado de la colección + + + You can change the way the songs in the collection are organized. + Puede modificar cómo se organizan los temas en la fonoteca + + + Group Collection by... + Agrupar colección por… + + + First level + Primer nivel + + + None + Ninguno + + + Artist + Artista + + + Album artist + Artista del álbum + + + Album + Álbum + + + Album - Disc + Álbum - Disco + + + Disc + Disco + + + Format + Formato + + + Genre + Género + + + Year + Año + + + Year - Album + Año - álbum + + + Year - Album - Disc + Año - álbum - disco + + + Original year + Año original + + + Original year - Album + Año original - álbum + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + File type + Tipo + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + Second level + Segundo nivel + + + Third level + Tercer nivel + + + Separate albums by grouping tag + Separar álbumes por etiquetas de agrupación + + + + GstEngine + + Buffering + Guardando en búfer + + + + LastFMImport + + Missing username, please login to last.fm first! + Falta el usuario; acceda a Last.fm primero. + + + + LastFMImportDialog + + Import data from last.fm + Importar datos de Last.fm + + + Choose data to import from last.fm + Escoja qué información importar de Last.fm + + + Last played + + + + Play counts + Contadores de reproducción + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Atención: se reemplazará el recuento de reproducciones y la última reproducción de los temas coincidentes con los datos procedentes de Last.fm. El recuento de reproducciones se sobreescribirá atendiendo a artista y nombre del tema. Haga una copia de respaldo de su base de datos antes de comenzar. + + + Go! + Ir + + + Close + Cerrar + + + Cancel + Cancelar + + + Receiving initial data from last.fm... + Recibiendo datos iniciales de Last.fm… + + + Receiving playcount for %1 songs and last played for %2 songs. + Recibiendo info de nº de reproducciones para %1 temas y última reproducción para %2 temas. + + + Receiving last played for %1 songs. + Recibiendo info de última reproducción para %1 temas. + + + Receiving playcounts for %1 songs. + Recibiendo info de nº de reproducciones para %1 temas. + + + Playcounts for %1 songs and last played for %2 songs received. + Recuentos de %1 reproducciones y última reproducción para %2 temas recibida. + + + Last played for %1 songs received. + Info de última reproducción para %1 temas recibida. + + + Playcounts for %1 songs received. + Recuentos de reproducciones para %1 temas recibidos. + + + + LastPlayedItemDelegate + + Never + Nunca + + + + Library + + Least favourite tracks + Pistas menos valoradas + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Autenticación en ListenBrainz + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code! + ¡Falta código del token de redirección! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Unable to scrobble %1 - %2 because of error: %3 + No se puede hacer el scrobble %1 - %2 debido al error: %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + Falta el ID de grabación de MusicBrainz para %1 %2 %3 + + + ListenBrainz error: %1 + Error de ListenBrainz: %1 + + + + LoginStateWidget + + Form + Formulario + + + You are not signed in. + No ha accedido a su cuenta. + + + Sign out + Cerrar sesión + + + Signing in... + Iniciando sesión… + + + You are signed in. + Ha accedido a su cuenta. + + + You are signed in as %1. + Ha accedido como %1. + + + Expires on %1 + Caduca el %1 + + + + LyricsSettingsPage + + Lyrics + Letras + + + Lyrics providers + Proveedores de letras + + + Choose the providers you want to use when searching for lyrics. + Seleccione los proveedores de búsqueda de letras. + + + Move up + Subir + + + Move down + Bajar + + + Authentication + Autenticación + + + Login + Acceder + + + No provider selected. + No se ha seleccionado ningún proveedor. + + + Authentication failed + Falló la autenticación + + + + MainWindow + + Strawberry Music Player + Reproductor de música Strawberry + + + MenuPopupToolButton + MenuPopupToolButton + + + &Music + &Música + + + P&laylist + Lista de re&producción + + + Help + Ayuda + + + &Tools + &Herramientas + + + Previous track + Pista anterior + + + F5 + F5 + + + &Play + &Reproducir + + + F6 + F6 + + + &Stop + &Detener + + + F7 + F7 + + + &Next track + Pista &siguiente + + + F8 + F8 + + + &Quit + &Salir + + + Ctrl+Q + Ctrl+Q + + + Stop after this track + Detener reproducción al finalizar la pista actual + + + Ctrl+Alt+V + Ctrl+Alt+V + + + Love + Me gusta + + + &Clear playlist + &Borrar lista de reproducción + + + Clear playlist + Vaciar lista de reproducción + + + Ctrl+K + Ctrl+K + + + Edit track information... + Editar información de la pista… + + + Ctrl+E + Ctrl+E + + + Renumber tracks in this order... + Reordenar pistas en este orden… + + + Set value for all selected tracks... + Establecer valor para todas las pistas seleccionadas… + + + Edit tag... + Editar etiqueta… + + + &Settings... + &Configuración… + + + Ctrl+P + Ctrl+P + + + &About Strawberry + &Acerca de Strawberry + + + F1 + F1 + + + S&huffle playlist + &Mezclar lista de reproducción + + + Ctrl+H + Ctrl+H + + + &Add file... + &Añadir archivo... + + + Ctrl+Shift+A + Ctrl+Shift+A + + + &Open file... + &Abrir archivo... + + + Open audio &CD... + Abrir &CD de audio... + + + &Cover Manager + &Gestor de cubiertas + + + C&onsole + C&onsola + + + &Shuffle mode + Modo &aleatorio + + + &Repeat mode + Modo de &repetición + + + Remove from playlist + Quitar de la lista de reproducción + + + &Equalizer + &Ecualizador + + + &Transcode Music + Conver&tir música + + + Add &folder... + Añadir &carpeta... + + + &Jump to the currently playing track + &Saltar a la pista en reproducción + + + Ctrl+J + Ctrl+J + + + &New playlist + Lista de reproducción &nueva + + + Ctrl+N + Ctrl+N + + + Save &playlist... + Guardar lista de re&producción + + + Ctrl+S + Ctrl+S + + + &Load playlist... + &Cargar lista de reproducción... + + + Ctrl+Shift+O + Ctrl+Shift+O + + + &Save all playlists... + Guardar toda&s las listas de reproducción... + + + Go to next playlist tab + Ir a la siguiente pestaña de lista de reproducción + + + Go to previous playlist tab + Ir a la anterior pestaña de lista de reproducción + + + &Update changed collection folders + &Actualizar carpetas de la fonoteca con cambios + + + About &Qt + Acerca de &Qt + + + &Mute + &Silenciar + + + Ctrl+M + Ctrl+M + + + &Do a full collection rescan + Anali&zar de nuevo toda la fonoteca + + + Stop collection scan + Detener escaneo de la colección + + + Complete tags automatically... + Completar etiquetas automáticamente… + + + Ctrl+T + Ctrl+T + + + Toggle scrobbling + Alternar seguimiento de reproducción + + + Remove &duplicates from playlist + Quitar &duplicados de la lista de reproducción + + + Remove &unavailable tracks from playlist + Quitar pistas &no disponibles de la lista de reproducción + + + Add file(s) to transcoder + Añadir archivo(s) que convertir + + + Add file to transcoder + Añadir archivo que convertir + + + Add stream... + Añadir emisora… + + + Show sidebar + Mostrar barra lateral + + + Import data from last.fm... + Importar datos de Last.fm… + + + All Files (*) + Todos los archivos (*) + + + Context + Contexto + + + Collection + Colección + + + Queue + Cola + + + Playlists + Listas + + + Smart playlists + Listas inteligentes + + + Files + Archivos + + + Radios + Radios + + + Devices + Dispositivos + + + Subsonic + Subsonic + + + Tidal + Tidal + + + Spotify + Spotify + + + Qobuz + Qobuz + + + Show all songs + Mostrar todas las pistas + + + Show only duplicates + Mostrar solo los duplicados + + + Show only untagged + Solo mostrar no etiquetadas + + + Configure collection... + Configurar colección… + + + Play + Reproducir + + + Toggle queue status + Cambiar estado de la cola + + + Queue selected tracks to play next + Poner en cola las pistas seleccionadas para reproducir a continuación + + + Toggle skip status + Alternar estado de avance + + + Rescan song(s)... + Volver a escanear tema(s)... + + + Copy URL(s)... + Copiar URL… + + + Show in collection... + Mostrar en la colección… + + + Show in file browser... + Mostrar en el gestor de archivos… + + + Organize files... + Organizar archivos… + + + Copy to collection... + Copiar en la colección… + + + Move to collection... + Mover a la colección… + + + Copy to device... + Copiar en un dispositivo… + + + Delete from disk... + Eliminar del disco… + + + Check for updates... + Buscar actualizaciones… + + + Strawberry running under Rosetta + Strawberry ejecutándose bajo Rosetta + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + Estás ejecutando Strawberry bajo Rosetta. Ejecutar Strawberry bajo Rosetta no está soportado y se sabe que presenta problemas. Deberías descargar Strawberry para la arquitectura de CPU correcta desde %1 + + + Sponsoring Strawberry + Patrocinar Strawberry + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry es software libre y de código abierto. Si te gusta Strawberry, por favor considera patrocinar el proyecto. Para más información sobre el patrocinio, visita nuestro sitio web %1 + + + Pause + Pausar + + + Dequeue track + Quitar la pista de la cola + + + Dequeue selected tracks + Quitar las pistas seleccionadas de la cola + + + Queue track + Poner pista en cola + + + Queue selected tracks + Poner en cola las pistas seleccionadas + + + Queue to play next + Poner en cola para reproducir a continuación + + + Unskip track + No omitir pista + + + Unskip selected tracks + No omitir pistas seleccionadas + + + Skip track + Omitir pista + + + Skip selected tracks + Omitir pistas seleccionadas + + + Set %1 to "%2"... + Establecer %1 a «%2»… + + + Edit tag "%1"... + Editar etiqueta «%1»… + + + Add to another playlist + Añadir a otra lista de reproducción + + + New playlist + Lista nueva + + + Add file + Añadir archivo + + + Music + Música + + + Add folder + Añadir carpeta + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + La lista de reproducción tiene %1 temas, demasiadas para deshacer, ¿estás seguro de que quieres eliminarla? + + + Error + Error + + + None of the selected songs were suitable for copying to a device + Ninguna de las pistas seleccionadas era apta para copiarse en un dispositivo + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + La versión de Strawberry a la que se acaba de actualizar necesita volver a analizar la colección debido a estas nuevas funciones: + + + Would you like to run a full rescan right now? + ¿Quiere ejecutar un nuevo análisis completo ahora? + + + Collection rescan notice + Notificación de nuevo análisis de la colección + + + + MessageDialog + + Message Dialog + Diálogo de mensajes + + + Do not show this message again. + No volver a mostrar este mensaje. + + + + MimeData + + Playlist + Lista + + + + MoodbarProxyStyle + + Show moodbar + Mostrar barra de ánimo + + + Moodbar style + Estilo de la barra de ánimo + + + + MoodbarSettingsPage + + Moodbar + Barra de ánimo + + + Show a moodbar in the track progress bar + Mostrar una barra de ánimo en la barra de progreso + + + Moodbar style + Estilo de la barra de ánimo + + + Save the .mood files directly in the songs folders + Guardar archivos .mood directamente en las carpetas de las pistas + + + Enabled + Activado + + + + MtpConnection + + Invalid MTP device: %1 + Dispositivo MTP no válido: %1 + + + Could not open MTP device. + No se pudo abrir el dispositivo MTP. + + + MTP error: %1 + Error de MTP: %1 + + + MTP device not found. + Dispositivo MTP no encontrado. + + + + MtpLoader + + Loading MTP device + Cargando el dispositivo MTP + + + Error connecting MTP device %1 + Error al conectar al dispositivo MTP %1 + + + Error connecting MTP device %1: %2 + Error al conectar el dispositivo MTP %1: %2 + + + + NetworkProxySettingsPage + + Network Proxy + Proxy de la red + + + &Use the system proxy settings + &Utilizar configuración de «proxy» del sistema + + + Direct internet connection + Conexión directa a Internet + + + &Manual proxy configuration + &Configuración manual del proxy + + + HTTP proxy + Proxy HTTP + + + SOCKS proxy + Proxy SOCKS + + + Port + Puerto + + + Use authentication + Usar autenticación + + + Username + Usuario + + + Password + Contraseña + + + Use proxy settings for streaming + Usar ajustes de proxy para transmisión + + + + NotificationsSettingsPage + + Notifications + Notificaciones + + + Strawberry can show a message when the track changes. + Strawberry puede mostrar un mensaje cuando la pista cambie. + + + Notification type + Tipo de notificación + + + Disabled + Refers to a disabled notification type in Notification settings. + Desactivado + + + Show a &native desktop notification + Mostrar una notificación &nativa del sistema + + + Show a pretty OSD + Mostrar panel de información en pantalla chulo + + + Show a popup fro&m the system tray + Mostrar una notificación en la bandeja del siste&ma + + + General settings + Configuración general + + + Popup duration + Duración de la notificación emergente + + + seconds + segundos + + + Disable duration + Desactivar duración + + + Show a notification when I change the volume + Mostrar una notificación al cambiar el volumen + + + Show a notification when I change the repeat/shuffle mode + Mostrar una notificación al cambiar entre los modos repetir/aleatorio + + + Show a notification when I pause playback + Mostrar una notificación al pausar la reproducción + + + Show a notification when I resume playback + Mostrar una notificación cuando reanude la reproducción + + + Include album art in the notification + Incluir cubierta en la notificación + + + Custom message settings + Configuración de mensaje personalizado + + + Use a custom message for notifications + Usar un mensaje personalizado para las notificaciones + + + Preview + Previsualización + + + MenuPopupToolButton + MenuPopupToolButton + + + Summary + Resumen + + + Body + Cuerpo + + + Pretty OSD options + Panel de información en pantalla estético + + + Background color + Color de fondo + + + Text options + Opciones del texto + + + Choose font... + Elegir tipo de letra… + + + Choose color... + Elegir color… + + + Background opacity + Opacidad del fondo + + + Basic Blue + Azul básico + + + Strawberry Red + Rojo de Strawberry + + + Custom... + Personalizado… + + + Enable fading + Activar transición gradual + + + Add song artist tag + Añadir etiqueta de artista a la canción + + + Add song album tag + Añadir etiqueta de álbum a la canción + + + Add song title tag + Añadir etiqueta de título a la canción + + + Add song albumartist tag + Añadir etiqueta de artista del álbum a la canción + + + Add song year tag + Añadir etiqueta de año a la canción + + + Add song composer tag + Añadir etiqueta de compositor a la canción + + + Add song performer tag + Añadir etiqueta de intérprete a la canción + + + Add song grouping tag + Añadir etiqueta de agrupamiento a la canción + + + Add song disc tag + Añadir etiqueta de disco a la canción + + + Add song track tag + Añadir etiqueta de pista a la canción + + + Add song genre tag + Añadir etiqueta de género a la canción + + + Add song length tag + Añadir etiqueta de duración a la canción + + + Add song play count + Añadir contador de reproducciones de la canción + + + Add song skip count + Añadir contador de omisiones de la canción + + + Add song rating + Añadir valoración de la canción + + + Add a new line if supported by the notification type + Añadir un salto de renglón si el tipo de notificación lo permite + + + %filename% + %filename% + + + Add song filename + Añadir nombre de archivo de la canción + + + %url% + %url% + + + Add song URL + Añadir URL del tema + + + %originalyear% + %originalyear% + + + Add song original year tag + Añadir etiqueta de año original + + + OSD Preview + Previsualización del panel de información en pantalla + + + Drag to reposition + Arrastre para reposicionar + + + + OSDBase + + disc %1 + disco %1 + + + track %1 + pista %1 + + + Paused + En pausa + + + Stopped + Detenido + + + Stop playing after track: %1 + Detener reproducción tras la pista: %1 + + + On + Activado + + + Off + Desactivado + + + Playlist finished + Lista de reproducción finalizada + + + Volume %1% + Volumen %1% + + + Don't shuffle + No mezclar + + + Shuffle all + Mezclar todo + + + Shuffle tracks in this album + Mezclar pistas de este álbum + + + Shuffle albums + Mezclar álbumes + + + Don't repeat + No repetir + + + Repeat track + Repetir pista + + + Repeat album + Repetir álbum + + + Repeat playlist + Repetir lista de reproducción + + + Stop after every track + Detener reproducción al finalizar cada pista + + + Intro tracks + Pistas de introducción + + + + Organize + + Organizing files + Organizando archivos + + + + OrganizeDialog + + Organize Files + Organizar archivos + + + Destination + Destino + + + After copying... + Después de copiar… + + + Keep the original files + Mantener los archivos originales + + + Delete the original files + Eliminar los archivos originales + + + Naming options + Opciones de nomenclatura + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Las fichas comienzan por %, por ejemplo: %artist %album %title </p> + +<p>Si encierra una sección de texto que contenga una ficha entre llaves, esa sección no se mostrará si la ficha está vacía.</p> + + + Insert... + Insertar… + + + Remove problematic characters from filenames + Elimina caracteres especiales de nombres de archivo + + + Restrict to characters allowed on FAT filesystems + Limitar a caracteres permitidos en sistemas de archivos FAT + + + Restrict characters to ASCII + Limitar caracteres a conjunto ASCII + + + Allow extended ASCII characters + Admitir caracteres de ASCII ampliado + + + Replace spaces with underscores + Sustituir espacios pòr caracteres de subrayado + + + Overwrite existing files + Sobrescribir los archivos existentes + + + Copy album cover artwork + Copiar cubierta del álbum + + + Preview + Previsualización + + + Loading... + Cargando… + + + Safely remove the device after copying + Quitar dispositivo con seguridad después de copiar + + + Title + Título + + + Album + Álbum + + + Artist + Artista + + + Artist's initial + Iniciales del artista + + + Album artist + Artista del álbum + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + Track + Pista + + + Disc + Disco + + + Year + Año + + + Original year + Año original + + + Genre + Género + + + Comment + Comentario + + + Length + Duración + + + Bitrate + Refers to bitrate in file organize dialog. + Tasa de bits + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + File extension + Extensión del archivo + + + + OrganizeErrorDialog + + Error copying songs + Error al copiar pistas + + + There were problems copying some songs. The following files could not be copied: + Hubo problemas al copiar algunas pistas. No se pudieron copiar los siguientes archivos: + + + Error deleting songs + Error al eliminar pistas + + + There were problems deleting some songs. The following files could not be deleted: + Hubo problemas al eliminar algunas pistas. No se pudieron eliminar los siguientes archivos: + + + + ParserBase + + Don't know how to handle %1 + No sé cómo manejar %1 + + + + PlayingWidget + + Small album cover + Cubierta de álbum pequeña + + + Large album cover + Cubierta de álbum grande + + + Fit cover to width + Ajustar cubierta a anchura + + + Show above status bar + Mostrar sobre la barra de estado + + + + Playlist + + Could not write metadata to %1 + No se pudieron escribir los metadatos en %1 + + + Could not write metadata to %1: %2 + No se pudieron escribir los metadatos en %1: %2 + + + Title + Título + + + Artist + Artista + + + Album + Álbum + + + Track + Pista + + + Disc + Disco + + + Length + Duración + + + Year + Año + + + Original Year + Año original + + + Genre + Género + + + Album Artist + Artista del álbum + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + Play Count + Conteo de reproducciones + + + Skip Count + Número de omisiones + + + Last Played + Última reproducción + + + Sample Rate + Frecuencia + + + Bit Depth + Profundidad de Bit + + + Bitrate + Tasa de bits + + + File Name + Nombre del archivo + + + File Name (without path) + Nombre del archivo (sin ruta) + + + File Size + Tamaño del archivo + + + File Type + Tipo del archivo + + + Date Modified + Fecha de modificación + + + Date Created + Fecha de creación + + + Comment + Comentario + + + Source + Origen + + + Mood + Ánimo + + + Rating + Valoración + + + CUE + CUE + + + Integrated Loudness + Sonoridad integrada + + + Loudness Range + Rango de sonoridad + + + + PlaylistContainer + + Form + Formulario + + + Undo + Deshacer + + + Redo + Rehacer + + + Playlist + Lista + + + Load playlist + Cargar lista de reproducción + + + No matches found. Clear the search box to show the whole playlist again. + No se encontraron coincidencias. Borre el texto introducido en el cuadro de búsqueda para mostrar la lista completa de nuevo. + + + + PlaylistDelegateBase + + stop + detener + + + + PlaylistGeneratorInserter + + Loading smart playlist + Cargando lista inteligente + + + + PlaylistHeader + + &Hide... + &Ocultar… + + + &Stretch columns to fit window + &Ajustar columnas a la ventana + + + &Reset columns to default + &Reajustar columnas a valores iniciales + + + &Lock rating + B&loquear valoración + + + &Align text + &Alinear el texto + + + &Left + &Izquierda + + + &Center + &Centrar + + + &Right + &Derecha + + + &Hide %1 + &Ocultar «%1» + + + + PlaylistListContainer + + Form + Formulario + + + New folder + Carpeta nueva + + + Delete + Eliminar + + + Save playlist + Save playlist menu action. + Guardar lista de reproducción + + + Copy to device... + Copiar en un dispositivo… + + + Enter the name of the folder + Escriba el nombre de la carpeta + + + Playlist + Lista + + + Copy to device + Copiar en un dispositivo + + + Playlist must be open first. + La lista debe abrirse primero. + + + Remove playlists + Eliminar listas de reproducción + + + You are about to remove %1 playlists from your favorites, are you sure? + ¿Confirma que quiere eliminar %1 listas de reproducción de sus favoritos? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Puede marcar listas de reproducción como favoritas pulsando en los iconos con forma de estrella junto a sus nombres + + + Favorited playlists will be saved here + Sus listas favoritas se guardarán aquí + + + + PlaylistManager + + Playlist + Lista + + + Couldn't create playlist + No se pudo crear la lista de reproducción + + + Save playlist + Title of the playlist save dialog. + Guardar lista de reproducción + + + Unknown playlist extension + Extensión de la lista de reproducción desconocida + + + Unknown file extension for playlist. + Extensión de archivo desconocida para la lista de reproducción. + + + %1 selected of + %1 seleccionado de + + + %n track(s) + + %n pista(s) + + + + + Unknown + Desconocido + + + Various artists + Varios artistas + + + + PlaylistParser + + All playlists (%1) + Todas las listas de reproducción (%1) + + + %1 playlists (%2) + %1 listas de reproducción (%2) + + + Unknown filetype: %1 + Tipo de vínculo desconocido: %1 + + + Could not open file %1 + No se pudo abrir el archivo %1 + + + Directory %1 does not exist. + El directorio %1 no existe. + + + Failed to open %1 for writing. + Error al abrir %1 para escritura. + + + + PlaylistSaveOptionsDialog + + Playlist options + Opciones de la lista de reproducción + + + File paths + Rutas de archivos + + + This can be changed later through the preferences + Esta opción puede modificarse luego en Preferencias + + + Remember my choice + Recordar mi elección + + + Automatic + Automático + + + Relative + Relativo + + + Absolute + Absoluto + + + + PlaylistSequence + + Repeat + Repetir + + + Shuffle + Aleatorio + + + Don't repeat + No repetir + + + Repeat track + Repetir pista + + + Repeat album + Repetir álbum + + + Repeat playlist + Repetir lista de reproducción + + + Stop after each track + Detener reproducción al finalizar cada pista + + + Intro tracks + Pistas de introducción + + + Don't shuffle + No mezclar + + + Shuffle tracks in this album + Mezclar pistas de este álbum + + + Shuffle all + Mezclar todo + + + Shuffle albums + Mezclar álbumes + + + + PlaylistSettingsPage + + Playlist + Lista + + + Use alternating row colors + Utilizar colores alternados en las filas + + + Show bars on the currently playing track + Mostrar barras en la pista actual en reproducción + + + Show a glowing animation on the currently playing track + Mostrar una animación resplandeciente en la pista actual en reproducción + + + Warn me when closing a playlist tab + Avisarme antes de cerrar una pestaña de lista de reproducción + + + Continue to the next item in the playlist if a song is unavailable + Saltar al siguiente elemento en la lista de reproducción si una canción no está disponible + + + Grey out unavailable songs in playlists on playback + Mostrar en gris las pistas no disponibles en listas de reproducción al reproducir + + + Grey out unavailable songs in playlists on startup + Mostrar en gris las pistas no disponibles en listas de reproducción al iniciar + + + Automatically select current playing track + Seleccionar automáticamente la pista en reproducción + + + Enable playlist toolbar + Activar barra de herramientas de lista de reproducción + + + Enable playlist clear button + Activar botón de borrado de lista de reproducción + + + Enable delete files in the right click context menu + Activar eliminación de archivos en el menú contextual del botón secundario del ratón + + + Automatically sort playlist when inserting songs + Ordenar la lista automáticamente al insertar temas + + + When saving a playlist, file paths should be + Al guardar una lista de reproducción las rutas de archivo deben ser + + + A&utomatic + A&utomático + + + Absolu&te + Absolu&to + + + Re&lative + Re&lativo + + + As&k when saving + &Preguntar al guardar + + + Metadata + Metadatos + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Al activar esta opción podrá pulsar en la canción seleccionada de la lista de reproducción y editar la etiqueta directamente + + + Enable song metadata inline edition with click + Editar metadatos de pistas directamente + + + Write metadata when saving playlists + Escribir los metadatos al guardar las listas de reproducción + + + + PlaylistTabBar + + Star playlist + Marcar lista de reproducción como favorita + + + Close playlist + Cerrar lista de reproducción + + + Rename playlist... + Cambiar nombre de lista… + + + Save playlist... + Guardar lista de reproducción… + + + Rename playlist + Cambiar nombre de lista + + + Enter a new name for this playlist + Introduzca un nombre nuevo para esta lista de reproducción + + + Remove playlist + Eliminar lista de reproducción + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Está a punto de eliminar una lista de reproducción que no está entre sus favoritas (esta acción no se puede deshacer). +¿Confirma que quiere continuar? + + + Warn me when closing a playlist tab + Avisarme antes de cerrar una pestaña de lista de reproducción + + + This option can be changed in the "Behavior" preferences + Puede modificar esta opción en la pestaña «Comportamiento» en Preferencias + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Pulse dos veces para convertir esta lista en favorita y que se guarde y quede accesible en el panel «Listas» de la barra izquierda + + + Playlist + Lista + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + añadir %n pistas + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + mover %n temas + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + quitar %n temas + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + mezclar temas + + + + PlaylistUndoCommands::SortItems + + sort songs + ordenar temas + + + + PlaylistView + + Hz + Hz + + + Bit + Bit + + + kbps + kb/s + + + + QObject + + Usage + Uso + + + options + opciones + + + URL(s) + URL + + + Player options + Opciones del reproductor + + + Start the playlist currently playing + Iniciar la lista de reproducción actualmente en reproducción + + + Play if stopped, pause if playing + Reproducir si detenido, pausar si en reproducción + + + Pause playback + Pausar la reproducción + + + Stop playback + Detener reproducción + + + Stop playback after current track + Detener reproducción al terminar la pista actual + + + Skip backwards in playlist + Saltar hacia atrás en la lista de reproducción + + + Skip forwards in playlist + Saltar hacia adelante en la lista de reproducción + + + Set the volume to <value> percent + Establecer el volumen en <value>% + + + Increase the volume by 4 percent + Aumentar el volumen en un 4 % + + + Decrease the volume by 4 percent + Reduce el volumen en un 4 % + + + Increase the volume by <value> percent + Aumentar el volumen en <value> % + + + Decrease the volume by <value> percent + Reduce el volumen en <value> % + + + Seek the currently playing track to an absolute position + Moverse en la pista actual hacia una posición absoluta + + + Seek the currently playing track by a relative amount + Moverse en la pista actual hacia una posición relativa + + + Restart the track, or play the previous track if within 8 seconds of start. + Reiniciar la pista o saltar a la anterior si no han transcurrido 8 segundos desde su inicio. + + + Playlist options + Opciones de la lista de reproducción + + + Create a new playlist with files + Crear una lista de reproducción nueva con archivos + + + Append files/URLs to the playlist + Añadir archivos/URL a la lista de reproducción + + + Loads files/URLs, replacing current playlist + Carga archivos/URL, reemplaza la lista de reproducción actual + + + Play the <n>th track in the playlist + Reproducir la <n>.ª pista de la lista de reproducción + + + Play given playlist + Reproducir lista indicada + + + Other options + Otras opciones + + + Display the on-screen-display + Mostrar indicadores en pantalla + + + Toggle visibility for the pretty on-screen-display + Conmutar visibilidad del panel de información en pantalla estético + + + Change the language + Cambiar el idioma + + + Resize the window + Redimensionar la ventana + + + Equivalent to --log-levels *:1 + Equivalente a --log-levels*:1 + + + Equivalent to --log-levels *:3 + Equivalente a --log-levels*:3 + + + Comma separated list of class:level, level is 0-3 + Lista separada por comas de la clase:nivel, el nivel es 0-3 + + + Print out version information + Mostrar información de versión + + + Failed to create directory %1. + Error al crear el directorio %1. + + + Destination file %1 exists, but not allowed to overwrite. + El archivo de destino %1 existe, pero no se permite sobrescribirlo. + + + Destination file %1 exists, but not allowed to overwrite + El archivo de destino %1 existe, pero no se permite sobrescribirlo + + + Could not copy file %1 to %2. + No se pudo copiar el archivo %1 a %2. + + + Unknown + Desconocido + + + LUFS + LUFS + + + LU + LU + + + File %1 is not recognized as a valid audio file. + El archivo de audio %1 no parece válido. + + + 1 day + 1 día + + + %1 days + %1 días + + + Today + Hoy + + + Yesterday + Ayer + + + %1 days ago + hace %1 días + + + Tomorrow + Mañana + + + In %1 days + En %1 días + + + Next week + Próxima semana + + + In %1 weeks + En %1 semanas + + + Show in file browser + Mostrar en el navegador de archivos + + + Too many songs selected. + Demasiadas pistas seleccionadas + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + Se han seleccionado %1 temas en %2 directorios. ¿Confirma que quiere abrirlos todos? + + + Failed to load image from data for %1 + Error al cargar la imagen de datos para %1 + + + Success + Éxito + + + File is unsupported + El archivo no está soportado + + + Filename is missing + Falta el nombre del archivo + + + File does not exist + El archivo no existe + + + File could not be opened + No se pudo abrir el archivo + + + Could not parse file + No se pudo analizar el archivo + + + Could save file + Se pudo guardar el archivo + + + Unknown error + Error desconocido + + + Prefix a search term with a field name to limit the search to that field, e.g.: + Utiliza un término de búsqued acon un nombre de campo para limitar la búsqueda a ese campo. Por ejemplo: + + + artist + artista + + + searches for all artists containing the word %1. + busca todos los artistas que contienen la palabra %1. + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + Los términos de búsqueda para campos numéricos pueden llevar %1 o %2 como prefijos para refinar la búsqueda. Por ejemplo: + + + rating + valoración + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + También se pueden combinar múltiples términos de búsqueda con "%1" (por defecto) y "%2", así como agruparlos con paréntesis. + + + Available fields + Campos disponibles + + + after + Después + + + before + antes + + + on + el + + + not on + no el + + + in the last + en el último + + + not in the last + no en los últimos + + + between + entre + + + contains + contiene + + + does not contain + no contiene + + + starts with + comienza por + + + ends with + termina en + + + greater than + mayor que + + + less than + menos de + + + equals + es igual a + + + not equals + no es igual a + + + empty + vacío + + + not empty + no vacío + + + Comment + Comentario + + + A-Z + A-Z + + + Z-A + Z-A + + + oldest first + el más antiguo primero + + + newest first + El más nuevo primero + + + shortest first + el más corto primero + + + longest first + El más largo primero + + + smallest first + el más pequeño primero + + + biggest first + primero el mayor + + + Hours + Horas + + + Days + Días + + + Weeks + Semanas + + + Months + Meses + + + Years + Años + + + Normal + Normal + + + Angry + Enfadado + + + Frozen + Congelado + + + Happy + Feliz + + + System colors + Colores del sistema + + + + QWidget + + Clear + Borrar + + + Reset + Restablecer + + + + QobuzRequest + + Receiving artists... + Recibiendo artistas... + + + Receiving albums... + Recibiendo álbumes... + + + Receiving songs... + Recibiendo canciones... + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + Recibiendo álbumes de %1 artista... + + + Receiving albums for %1 artists... + Recibiendo álbumes de %1 artistas... + + + Receiving songs for %1 album... + Recibiendo canciones para %1 album... + + + Receiving songs for %1 albums... + Recibir canciones de %1 álbumes... + + + Receiving album cover for %1 album... + Recibiendo portada de álbum de %1 álbum... + + + Receiving album covers for %1 albums... + Recibiendo portadas de álbumes para %1 álbumes... + + + No match. + Sin coincidencias. + + + Unknown error + Error desconocido + + + + QobuzService + + Authenticating... + Autenticando… + + + Maximum number of login attempts reached. + Se ha alcanzado el número máximo de intentos de acceso. + + + Missing Qobuz app ID. + Falta el identificador de aplicación de Qobuz. + + + Missing Qobuz username. + Falta el usuario de Qobuz. + + + Missing Qobuz password. + Falta la contraseña de Qobuz. + + + Not authenticated with Qobuz. + No se ha accedido a Qobuz. + + + Missing Qobuz app ID or secret. + Falta el identificador de aplicación o el secreto de Qobuz. + + + + QobuzSettingsPage + + Qobuz + Qobuz + + + Enable + Activar + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + La compatibilidad con Qobuz no es oficial y precisa de una ficha de API procedente de una aplicación registrada. No le podemos ayudar a conseguirla. + + + Authentication + Autenticación + + + App ID + Id. de aplic. + + + Username + Usuario + + + Password + Contraseña + + + App Secret + Secreto de aplicación + + + Login + Acceder + + + Preferences + Preferencias + + + Audio format + Formato de audio + + + Search delay + Demora de búsqueda + + + ms + ms + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de pistas + + + Download album covers + Descargar las cubiertas de los álbumes + + + Base64 encoded secret + Secreto codificado en Base64 + + + Configuration incomplete + Configuración incompleta + + + Missing app id. + Falta el identificador de aplicación. + + + Missing username. + Falta el usuario. + + + Missing password. + Falta la contraseña. + + + Authentication failed + Falló la autenticación + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Falta el identificador de aplicación o el secreto de Qobuz. + + + Cancelled. + Cancelado. + + + + Queue + + %n track(s) + + %n pista(s) + + + + + + QueueView + + QueueView + Vista de la cola + + + Move down + Bajar + + + Ctrl+Up + Ctrl+Arriba + + + Move up + Subir + + + Ctrl+Down + Ctrl+Abajo + + + Remove + Eliminar + + + Clear + Borrar + + + Ctrl+K + Ctrl+K + + + + RadioParadiseService + + Getting %1 channels + Obteniendo %1 canales + + + + RadioView + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Open homepage + Abrir página de inicio + + + Donate + Donar + + + Refresh channels + Actualizar canales + + + + RadioViewContainer + + Form + Formulario + + + + SCollection + + Saving playcounts and ratings + Guardando el conteo de reproducciones y valoraciones + + + + SavePlaylistsDialog + + Select directory for saving playlists + Selecciona una carpeta para guardar las listas de reproducción + + + Type + Tipo + + + Select directory for the playlists + Selecciona una carpeta para las listas de reproducción + + + Directory does not exist. + El directorio no existe. + + + + SavedGroupingManager + + Saved Grouping Manager + Gestor de agrupamientos guardados + + + Remove + Eliminar + + + Ctrl+Up + Ctrl+Arriba + + + Name + Nombre + + + First level + Primer nivel + + + Second Level + Segundo nivel + + + Third Level + Tercer nivel + + + None + Ninguno + + + Album artist + Artista del álbum + + + Artist + Artista + + + Album + Álbum + + + Album - Disc + Álbum - Disco + + + Year - Album + Año - álbum + + + Year - Album - Disc + Año - álbum - disco + + + Original year - Album + Año original - álbum + + + Original year - Album - Disc + Año original - álbum - disco + + + Disc + Disco + + + Year + Año + + + Original year + Año original + + + Genre + Género + + + Composer + Compositor + + + Performer + Intérprete + + + Grouping + Agrupamiento + + + File type + Tipo + + + Format + Formato + + + Sample rate + Frecuencia + + + Bit depth + Resolución + + + Bitrate + Tasa de bits + + + Unknown + Desconocido + + + + ScrobblerSettingsPage + + Scrobbler + Registro de reproducción + + + Enable + Activar + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + La reproducción de una canción es registrada solo si dispone de metadatos válidos, dura más de 30 segundos y se ha reproducido al menos durante la mitad de su duración o 4 minutos (lo que ocurra primero). + + + Work in offline mode (Only cache scrobbles) + Trabajar sin conexión (solo registros de reproducción prealmacenados) + + + Show scrobble button + Mostrar botón de registro de reproducción + + + Show love button + Mostrar el botón "Me gusta" + + + Submit scrobbles every + Emitir al servidor de registro cada + + + seconds + segundos + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (Este es el retraso desde que se hace el scrobble de una canción y cuando los scrobbles se envían al servidor. Establecer este tiempo a 0 segundos enviará los scrobbles inmediatamente). + + + Prefer album artist when sending scrobbles + Preferir artista del álbum al registrar reproducción + + + Show dialog for errors + Mostrar errores + + + Strip "remastered" and similar from album and title + Eliminar "remastered" y similares del álbum y título + + + Enable scrobbling for the following sources: + Activar seguimiento de reproducción para: + + + Collection + Colección + + + Subsonic + Subsonic + + + Local file + Archivo local + + + Tidal + Tidal + + + Device + Dispositivo + + + Qobuz + Qobuz + + + CDDA + CDDA + + + SomaFM + SomaFM + + + Stream + Transmisión + + + Radio Paradise + Radio Paradise + + + Unknown + Desconocido + + + Last.fm + Last.fm + + + Login + Acceder + + + Libre.fm + Libre.fm + + + Listenbrainz + Listenbrainz + + + User token: + Ficha de usuario: + + + Enter your user token from + Introduzca su ficha de usuario de + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + Autenticación en el servicio de registro de reproducciones %1 + + + Open URL in web browser? + ¿Quiere abrir el URL en el navegador? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Pulse en «Guardar» para copiar el URL en el portapapeles y ábralo en el navegador manualmente. + + + Could not open URL. Please open this URL in your browser + No se ha podido abrir URL. Por favor, ábrela en tu navegador + + + Invalid reply from web browser. Missing token. + El servidor web devolvió una respuesta no válida. Falta la ficha. + + + Received invalid reply from web browser. Try another browser. + Se ha recibido una respuesta inválida del navegador web. Intenta con otro navegador. + + + Scrobbler %1 is not authenticated! + ¡No se ha iniciado sesión en servicio de registro de reproducción %1! + + + Scrobbler %1 error: %2 + Registro de reproducción %1 error: %2 + + + + SettingsDialog + + Settings + Configuración + + + General + General + + + User interface + Interfaz de usuario + + + Streaming + Transmitiendo + + + + SmartPlaylistQuerySearchPage + + Form + Formulario + + + Search mode + Mode de búsqueda + + + Match every search term (AND) + Hacer coincidir todos los términos (Y) + + + Match one or more search terms (OR) + Hacer coincidir algún término (O) + + + Include all songs + Incluir todas las canciones + + + Search terms + Términos de búsqueda + + + + SmartPlaylistQuerySortPage + + Form + Formulario + + + Sorting + Ordenación + + + Put songs in a random order + Disponer canciones en orden aleatorio + + + Sort songs by + Ordenar temas por + + + Limits + Límites + + + Show all the songs + Mostrar todos los temas + + + Only show the first + Mostrar solo el primero + + + songs + temas + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Búsqueda en la colección + + + Find songs in your collection that match the criteria you specify. + Encuentre temas en la colección que coincidan con los criterios que especifique. + + + Search terms + Términos de búsqueda + + + A song will be included in the playlist if it matches these conditions. + Se incluirá el tema si cumple estas condiciones. + + + Search options + Opciones de búsqueda + + + Choose how the playlist is sorted and how many songs it will contain. + Selecciona como se ordenará la lista y qué temas contendrá + + + + SmartPlaylistSearchPreview + + Form + Formulario + + + Preview + Previsualización + + + Loading... + Cargando… + + + %1 songs found (showing %2) + %1 canciones encontradas (se muestran %2) + + + %1 songs found + %1 canciones encontradas + + + + SmartPlaylistSearchTermWidget + + Form + Formulario + + + and + y + + + ago + hace + + + The second value must be greater than the first one! + El segundo valor debe ser mayor que el primero. + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Añadir término de búsqueda + + + + SmartPlaylistWizard + + Smart playlist + Lista inteligentes + + + Playlist type + Tipo de lista + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Una lista inteligente es una lista dinámica de temas de la fonoteca. Hay distintos tipos de listas inteligentes que permiten seleccionar los temas de distintas maneras. + + + Finish + Terminar + + + Choose a name for your smart playlist + Escoja un nombre para su lista inteligente + + + + SmartPlaylistWizardFinishPage + + Form + Formulario + + + Name + Nombre + + + Use dynamic mode + Usar modo dinámico + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + En el modo dinámico se escogerán y añadirán nuevas pistas cada vez que un tema finalice. + + + + SmartPlaylists + + Newest tracks + Pistas más nuevas + + + 50 random tracks + 50 pistas aleatorias + + + Ever played + Ya reproducido + + + Never played + Nunca reproducidas + + + Last played + + + + Most played + Más reproducidas + + + Favourite tracks + Pistas favoritas + + + All tracks + Todas las pistas + + + Dynamic random mix + Mezcla aleatoria dinámica + + + + SmartPlaylistsViewContainer + + New smart playlist + Lista inteligente nueva + + + Edit smart playlist + Editar lista inteligente + + + Delete smart playlist + Eliminar lista inteligente + + + New smart playlist... + Lista inteligente nueva… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Play next + Reproducir siguiente + + + Edit smart playlist... + Editar lista inteligente... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry se está ejecutando como un Snap + + + It is detected that Strawberry is running as a Snap + Se ha detectado que Strawbery está ejecutándose como un «snap» + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry se está ejecutando como un snap + + + For Ubuntu there is an official PPA repository available at %1. + Hay un repositorio PPA oficial para Ubuntu en %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Existen versiones oficiales para Debian y Ubuntu que también funcionan en la mayor parte de sus derivados. Mira %1 para obtener más información. + + + For a better experience please consider the other options above. + Tenga en cuenta las opciones anteriores para lograr una experiencia óptima. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Copia tus archivos strawberry.conf y strawberry.db de tu directorio ~/snap antes de desinstalar el paquete snap para no perder tu configuración: + + + Uninstall the snap with: + Desinstale el «snap» con: + + + Install strawberry through PPA: + Instalar Strawberry mediante un PPA: + + + + SomaFMService + + Getting %1 channels + Obteniendo %1 canales + + + + SongLoader + + You need GStreamer for this URL. + Necesita GStreamer para este URL + + + Preload function was not set for blocking operation. + La función de precarga no se ajustó para un funcionamiento con bloqueo. + + + File %1 does not exist. + El archivo %1 no existe. + + + CD playback is only available with the GStreamer engine. + La reproducción de CD solo es posible con el motor GStreamer. + + + Could not open file %1 for reading: %2 + No se pudo abrir el archivo %1 para la lectura: %2 + + + Could not open CUE file %1 for reading: %2 + No se pudo abrir el archivo CUE %1 para la lectura: %2 + + + Could not open playlist file %1 for reading: %2 + No se pudo abrir el archivo de lista de reproducción %1 para la lectura: %2 + + + Couldn't create GStreamer source element for %1 + No se pudo crear el elemento source de GStreamer para %1 + + + Couldn't create GStreamer typefind element for %1 + No se pudo crear el elemento typefind de GStreamer para %1 + + + Couldn't create GStreamer fakesink element for %1 + No se pudo crear el elemento fakesink de GStreamer para %1 + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + No se pudieron vincular los elementos source, typefind y fakesink de GStreamer para %1 + + + + SongLoaderInserter + + Error while loading audio CD. + Error al cargar el CD de audio. + + + Loading tracks + Cargando pistas + + + Loading tracks info + Cargando información de pistas + + + + SpotifyRequest + + Authenticating... + Autenticando… + + + Receiving artists... + Recibiendo artistas... + + + Receiving albums... + Recibiendo álbumes... + + + Receiving songs... + Recibiendo canciones... + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + Recibiendo álbumes de %1 artista... + + + Receiving albums for %1 artists... + Recibiendo álbumes de %1 artistas... + + + Receiving songs for %1 album... + Recibiendo canciones para %1 album... + + + Receiving songs for %1 albums... + Recibir canciones de %1 álbumes... + + + Receiving album cover for %1 album... + Recibiendo portada de álbum de %1 álbum... + + + Receiving album covers for %1 albums... + Recibiendo portadas de álbumes para %1 álbumes... + + + No match. + Sin coincidencias. + + + Data missing error + Error de datos faltantes + + + + SpotifyService + + Spotify Authentication + Autenticación en Spotify + + + Please open this URL in your browser + Abra este URL en el navegador + + + Redirect missing token code or state! + ¡Falta código de token o estado! + + + Received invalid reply from web browser. + Se recibió una respuesta no válida del navegador. + + + Not authenticated with Spotify. + No autenticar con Spotify. + + + + SpotifySettingsPage + + Spotify + Spotify + + + Enable + Activar + + + Basic authentication + Autenticación básica + + + Authenticate + Autenticar + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + <html><head/><body><p>El plugin GStreamer de Spotify no ha sido detectado. No podrás transmitir canciones de Spotify sin él. Consulta <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> para ver las instrucciones de cómo instalar el plugin.</p></body></html> + + + Preferences + Preferencias + + + Search delay + Demora de búsqueda + + + ms + ms + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de pistas + + + Download album covers + Descargar las cubiertas de los álbumes + + + Fetch entire albums when searching songs + Devolver el álbum completo al buscar pistas + + + Authentication failed + Falló la autenticación + + + + StreamingCollectionView + + The streaming collection is empty! + ¡La colección de streaming está vacía! + + + Click here to retrieve music + Pulse aquí para recuperar música + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Queue to play next + Poner en cola para reproducir a continuación + + + Remove from favorites + Eliminar de favoritos + + + + StreamingCollectionViewContainer + + Form + Formulario + + + Close + Cerrar + + + Abort + Interrumpir + + + Refresh catalogue + Actualizar catálogo + + + + StreamingSearchModel + + Various artists + Varios artistas + + + + StreamingSearchView + + Streaming Search View + Vista de búsqueda en streaming + + + MenuPopupToolButton + MenuPopupToolButton + + + artists + artistas + + + albums + álbumes + + + songs + temas + + + Enter search terms above to find music + Introduzca términos de búsqueda arriba para buscar en la colección + + + Configure %1... + Configurar %1… + + + Append to current playlist + Añadir a la lista de reproducción actual + + + Replace current playlist + Reemplazar lista de reproducción actual + + + Open in new playlist + Abrir en una lista nueva + + + Queue track + Poner pista en cola + + + Add to artists + Añadir a artistas + + + Add to albums + Añadir a álbumes + + + Add to songs + Añadir a temas + + + Search for this + Buscar esto + + + Group by + Agrupar por + + + + StreamingSongsView + + Configure %1... + Configurar %1… + + + + StreamingTabsView + + Streaming Tabs View + Vista de pestañas en streaming + + + Artists + Artistas + + + Albums + Álbumes + + + Songs + Pistas + + + Search + Buscar + + + Configure %1... + Configurar %1… + + + + SubsonicRequest + + Retrieving albums... + Buscando álbumes... + + + Retrieving songs for %1 album... + Buscando pistas de %1 álbum... + + + Retrieving songs for %1 albums... + Buscando pistas de %1 álbumes... + + + Retrieving album cover for %1 album... + Buscando cubierta del álbum %1... + + + Retrieving album covers for %1 albums... + Buscando cubiertas de %1 álbumes. + + + Unknown error + Error desconocido + + + + SubsonicService + + Server URL is invalid. + La dirección URL del servidor es inválida. + + + Missing username or password. + Falta el usuario o la contraseña. + + + + SubsonicSettingsPage + + Subsonic + Subsonic + + + Enable + Activar + + + Server URL + URL del servidor + + + Authentication + Autenticación + + + Username + Usuario + + + Password + Contraseña + + + Authentication method: + Método de autenticación: + + + Hex + Hex + + + MD5 token (Recommended) + Token MD5 (recomendado) + + + Preferences + Preferencias + + + Use HTTP/2 when possible + Usar HTTP/2 cuando sea posible + + + Verify server certificate + Verificar el certificado del servidor + + + Download album covers + Descargar las cubiertas de los álbumes + + + Server-side scrobbling + Seguimiento de reproducción en el servidor + + + Test + Probar + + + Delete songs + Eliminar canciones + + + Configuration incomplete + Configuración incompleta + + + Missing server url, username or password. + Falta el URL del servidor, el usuario o la contraseña. + + + Configuration incorrect + Configuración incorrecta + + + Server URL is invalid. + La dirección URL del servidor es inválida. + + + Test successful! + ¡Prueba correcta! + + + Test failed! + ¡Prueba fallida! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + La dirección URL del servidor de Subsonic es errónea + + + Missing Subsonic username or password. + Falta el usuario o la contraseña de Qobuz. + + + + SystemTrayIcon + + Pause + Pausar + + + Play + Reproducir + + + + TagFetcher + + Identifying song + Identificando la canción + + + Fingerprinting song + Creando huella digital de la canción + + + Downloading metadata + Descargando metadatos + + + + TidalRequest + + Authenticating... + Autenticando… + + + Receiving artists... + Recibiendo artistas... + + + Receiving albums... + Recibiendo álbumes... + + + Receiving songs... + Recibiendo canciones... + + + Searching... + Buscando... + + + Receiving albums for %1 artist... + Recibiendo álbumes de %1 artista... + + + Receiving albums for %1 artists... + Recibiendo álbumes de %1 artistas... + + + Receiving songs for %1 album... + Recibiendo canciones para %1 album... + + + Receiving songs for %1 albums... + Recibir canciones de %1 álbumes... + + + Receiving album cover for %1 album... + Recibiendo portada de álbum de %1 álbum... + + + Receiving album covers for %1 albums... + Recibiendo portadas de álbumes para %1 álbumes... + + + No match. + Sin coincidencias. + + + + TidalService + + Reply from Tidal is missing query items. + Faltan elementos en la respuesta de Tidal. + + + Missing Tidal API token. + Falta la ficha de API de Tidal. + + + Missing Tidal username. + Falta el usuario de Tidal. + + + Missing Tidal password. + Falta la contraseña de Tidal. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Se ha alcanzado el número máximo de intentos sin lograr acceder a Tidal. + + + Not authenticated with Tidal. + No se ha accedido a Tidal. + + + Missing Tidal API token, username or password. + Falta la ficha de la API de Tidal, el usuario o la contraseña. + + + + TidalSettingsPage + + Tidal + Tidal + + + Enable + Activar + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + La compatibilidad con Tidal no es oficial y precisa de una ficha de API procedente de una aplicación registrada. No le podemos ayudar a conseguirla. + + + Authentication + Autenticación + + + Use OAuth + Utilizar OAuth + + + Client ID + Id. de cliente + + + API Token + Ficha de API + + + Username + Usuario + + + Password + Contraseña + + + Login + Acceder + + + Preferences + Preferencias + + + Audio quality + Calidad de audio + + + Search delay + Demora de búsqueda + + + ms + ms + + + Artists search limit + Límites de búsqueda de artistas + + + Albums search limit + Límites de búsqueda de álbumes + + + Songs search limit + Límite de búsqueda de pistas + + + Download album covers + Descargar las cubiertas de los álbumes + + + Fetch entire albums when searching songs + Devolver el álbum completo al buscar pistas + + + Album cover size + Tamaño de la cubierta del álbum + + + Stream URL method + Método de streaming de URL + + + Append explicit to album title for explicit albums + Añadir «explícito» al nombre de los álbumes explícitos + + + Configuration incomplete + Configuración incompleta + + + Missing Tidal client ID. + Falta el identificador de cliente de Tidal. + + + Missing API token. + Falta la ficha de la API. + + + Missing username. + Falta el usuario. + + + Missing password. + Falta la contraseña. + + + Authentication failed + Falló la autenticación + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + No se ha accedido a Tidal. + + + Missing Tidal API token, username or password. + Falta la ficha de la API de Tidal, el usuario o la contraseña. + + + Cancelled. + Cancelado. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Se ha recibido una URL con %1 flujo encriptado de Tidal. Strawberry actualmente no soporta flujos encriptados. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Se ha recibido una URL con un flujo encriptado de Tidal. Strawberry actualmente no soporta flujos encriptados. + + + + TrackSelectionDialog + + Tag fetcher + Obtener etiquetas + + + Sorry + Lo sentimos + + + Strawberry was unable to find results for this file + Strawberry no encontró resultados para este archivo + + + Select best possible match + Seleccionar la mejor coincidencia + + + Track + Pista + + + Year + Año + + + Title + Título + + + Artist + Artista + + + Album + Álbum + + + Previous + Anterior + + + Next + Siguiente + + + Original tags + Etiquetas originales + + + Suggested tags + Etiquetas sugeridas + + + Saving tracks + Guardando las pistas + + + + TrackSlider + + Form + Formulario + + + 0:00:00 + 0:00:00 + + + Click to toggle between remaining time and total time + Pulse para alternar entre el tiempo restante y el total + + + + TranscodeDialog + + Transcode Music + Convertir música + + + Files to transcode + Archivos que convertir + + + Filename + Nombre del archivo + + + Directory + Directorio + + + Add... + Añadir... + + + Remove + Eliminar + + + Add all tracks from a directory and all its subdirectories + Añadir todas las pistas de una carpeta y sus subcarpetas + + + Import... + Importar… + + + Output options + Opciones de salida + + + Audio format + Formato de audio + + + Options... + Opciones… + + + Destination + Destino + + + Alongside the originals + Junto a los originales + + + Select... + Seleccionar... + + + Progress + Progreso + + + Details... + Detalles… + + + Clear + Borrar + + + Start transcoding + Iniciar la conversión + + + %n remaining + + %n pendientes + + + + + %n finished + + %n completados + + + + + %n failed + + %n falló + + + + + Add files to transcode + Añadir archivos que convertir + + + Music + Música + + + Open a directory to import music from + Abrir una carpeta de la que importar música + + + Add folder + Añadir carpeta + + + + TranscodeLogDialog + + Transcoder Log + Registro del conversor + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados todos los complementos necesarios de GStreamer. + + + Successfully written %1 + %1 se ha escrito correctamente + + + Transcoding %1 files using %2 threads + Convirtiendo %1 archivos usando %2 procesos + + + Error processing %1: %2 + Error al procesar %1: %2 + + + Starting %1 + Iniciando %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + No se pudo encontrar un codificador para %1; compruebe que tiene instalados los complementos correctos de GStreamer + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + No se pudo encontrar un mezclador para %1; compruebe que tiene instalados los complementos correctos de GStreamer + + + + TranscoderOptionsAAC + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + Profile + Perfil + + + Main profile (MAIN) + Perfil principal (MAIN) + + + Low complexity profile (LC) + Perfil de baja complejidad (LC) + + + Scalable sampling rate profile (SSR) + Perfil de tasa de muestreo escalable (SSR) + + + Long term prediction profile (LTP) + Perfil de predicción a largo plazo (LTP) + + + Use temporal noise shaping + Usar conformación de ruido temporal + + + Allow mid/side encoding + Permitir codificación MS (suma / diferencia) + + + Block type + Tipo de bloque + + + Normal block type + Tipo de bloque normal + + + No short blocks + Sin bloques cortos + + + No long blocks + Sin bloques largos + + + + TranscoderOptionsASF + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + + TranscoderOptionsDialog + + Transcoding options + Opciones de conversión + + + + TranscoderOptionsFLAC + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Fast + Rápido + + + Best + Mejor + + + + TranscoderOptionsMP3 + + Form + Formulario + + + Optimize for &quality + Optimizar para &calidad + + + Quality + Sound quality + Calidad + + + Opti&mize for bitrate + Opti&mizar para tasa de bits + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + Constant bitrate + Tasa de bits constante + + + Encoding engine quality + Calidad del motor de codificación + + + Fast + Rápido + + + Standard + Estándar + + + High + Alto + + + Force mono encoding + Forzar la codificación monoaural + + + + TranscoderOptionsOpus + + Form + Formulario + + + Bitrate + Tasa de bits + + + kbps + kb/s + + + + TranscoderOptionsSpeex + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Bitrate + Tasa de bits + + + automatic + automático + + + kbps + kb/s + + + Average bitrate + Tasa media de bits + + + disabled + desactivado + + + Encoding mode + Modo de codificación + + + Auto + Autom. + + + Ultra wide band (UWB) + Banda ultraancha (UWB) + + + Wide band (WB) + Banda ancha (WB) + + + Narrow band (NB) + Banda estrecha (NB) + + + Variable bit rate + Tasa de bits variable + + + Voice activity detection + Detección de actividad de voz + + + Discontinuous transmission + Transmisión discontinua + + + Encoding complexity + Complejidad de codificación + + + Frames per buffer + Fotogramas por búfer + + + + TranscoderOptionsVorbis + + Form + Formulario + + + Quality + Sound quality + Calidad + + + Use bitrate management engine + Usar el motor de gestión de flujo de bits + + + Target bitrate + Tasa de bits objetivo + + + kbps + kb/s + + + Minimum bitrate + Tasa de bits mínima + + + disabled + desactivado + + + Maximum bitrate + Tasa de bits máxima + + + + TranscoderOptionsWavPack + + Form + Formulario + + + + TranscoderSettingsPage + + Transcoding + Convirtiendo + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Estos ajustes se usa en la ventana «Convertir música» y al convertir canciones antes de copiarlas en un dispositivo. + + + FLAC + FLAC + + + WavPack + WavPack + + + Vorbis + Vorbis + + + Opus + Opus + + + Speex + Speex + + + AAC + AAC + + + ASF (WMA) + ASF (WMA) + + + MP3 + MP3 + + + + Udisks2Lister + + D-Bus path + Ruta de D-Bus + + + Serial number + Número de serie + + + Mount points + Puntos de montaje + + + Partition label + Etiqueta de partición + + + UUID + UUID + + + + UserPassDialog + + Enter username and password + Introduzca usuario y contraseña + + + Username + Usuario + + + Password + Contraseña + + + diff --git a/src/translations/strawberry_et_EE.ts b/src/translations/strawberry_et_EE.ts new file mode 100644 index 00000000..93ec0b4d --- /dev/null +++ b/src/translations/strawberry_et_EE.ts @@ -0,0 +1,7569 @@ + + + + + About + + About + Programmist + + + About Strawberry + Strawberry teave + + + Version %1 + Versioon %1 + + + Strawberry is a music player and music collection organizer. + Strawberry on muusikamängija ja helikogude haldur. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + See on 2018. aastal välja antud Clementine haru, mis on suunatud muusikakollektsionääridele ja audiofiilidele. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry on tasuta tarkvara, mis on välja antud GPL litsentsi all. Lähtekood on saadaval aadressil %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Sai ilmselt koos selle programmiga ka GNU üldise avaliku litsentsi koopia. Kui ei, vaata %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Kui sulle meeldib Strawberry ja leiad selle olevat kasulik, kaalu sponsoreerimist või annetamist. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Võid toetatada autorit saidil %1. Samuti on võimalik ühekordne makse %2 kaudu. + + + Author and maintainer + Autor ja hooldaja + + + Contributors + Toetajad + + + Clementine authors + Clementine autorid + + + Clementine contributors + Clementine toetajad + + + Thanks to + Tänud + + + Thanks to all the other Amarok and Clementine contributors. + Täname kõiki teisi Amaroki ja Clementine' kaastöölisi. + + + + AddStreamDialog + + Add Stream + Lisa voog + + + Enter the URL of a stream: + Sisesta voo URL: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Pildid (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Pildid (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Kõik failid (*) + + + Load cover from disk... + Laadi kaanepilt kettalt... + + + Save cover to disk... + Salvesta kaanepilt kettale... + + + Load cover from URL... + Laadi kaaanepilt aadressilt... + + + Search for album covers... + Otsi kaanepilte... + + + Unset cover + Tühista kaanepilt + + + Delete cover + Kustuta kaanepilt + + + Clear cover + Eemalda kaanepilt + + + Show fullsize... + Kuva täissuuruses... + + + Search automatically + Otsi automaatselt + + + Load cover from disk + Laadi kaanepilt kettalt + + + Failed to open cover file %1 for reading: %2 + Kaanepildi faili %1 avamine lugemiseks nurjus: %2 + + + Cover file %1 is empty. + Kaanepildi fail %1 on tühi. + + + unknown + tundmatu + + + Save album cover + Salvesta kaanepilt + + + Failed to open cover file %1 for writing: %2 + Kaanepildi faili %1 avamine salvestamiseks nurjus: %2 + + + Failed writing cover to file %1: %2 + Kaanepildi salvestamine faili %1 nurjus: %2 + + + Failed writing cover to file %1. + Kaanepildi salvestamine faili %1 nurjus. + + + Failed to delete cover file %1: %2 + Kaanepildi faili %1 kustutamine ei õnnestunud: %2 + + + Failed to write cover to file %1: %2 + Kaanepildi salvestamine faili %1 nurjus: %2 + + + Could not save cover to file %1. + Ei õnnestunud salvestada kaanepilti faili %1. + + + + AlbumCoverExport + + Export covers + Ekspordi kaanepildid + + + Output + Väljund + + + Enter a filename for exported covers (no extension): + Sisesta failinimi eksporditud kaanepiltidele (laiendita): + + + Export downloaded covers + Ekspordi allalaetud kaanepildid + + + Export embedded covers + Ekspordi põimitud kaanepildid + + + Existing covers + Olemasolevad kaanepildid + + + Do not overwrite + Ära kirjuta üle + + + O&verwrite all + Kirjuta kõik üle + + + Overwrite s&maller ones only + Kirjuta üle ainult väiksemad + + + Size + Suurus + + + Scale size + Skaala suurus + + + Size: + Suurus: + + + Pixel + Piksel + + + + AlbumCoverManager + + Abort + Katkesta + + + All albums + Kõik albumid + + + Albums with covers + Kaanepildiga albumid + + + Albums without covers + Kaanepildita albumid + + + Really cancel? + Kas tühistada? + + + Closing this window will stop searching for album covers. + Selle akna sulgemine lõpetab kaanepiltide otsimise. + + + Don't stop! + Ära peata! + + + All artists + Kõik esitajad + + + Various artists + Erinevad esitajad + + + Got %1 covers out of %2 (%3 failed) + %2-st kaanepildist saadi %1 (%3 nurjus) + + + %1 transferred + %1 üle kantud + + + Export finished + Eksport on lõpetatud + + + No covers to export. + Kaanepilte ekspordiks pole. + + + Exported %1 covers out of %2 (%3 skipped) + %2-st kaanepildist eksporditi %1 (%3 jäeti vahele) + + + Could not save cover to file %1. + Ei õnnestunud salvestada kaanepilti faili %1. + + + + AlbumCoverSearcher + + Cover Manager + Kaanepildi haldur + + + Artist + Esitaja + + + Album + Album + + + Search + Otsing + + + Covers from %1 + Kaanepildid teenuselt %1 + + + Abort + Katkesta + + + + AnalyzerContainer + + Framerate + Kaadrisagedus + + + Low (%1 fps) + Madal (%1 fps) + + + Medium (%1 fps) + Keskmine (%1 fps) + + + High (%1 fps) + Kõrge (%1 fps) + + + Super high (%1 fps) + Ülikõrge (%1 kaadrit sekundis) + + + No analyzer + Analüsaator puudub + + + Block analyzer + Blokk-analüsaator + + + Boom analyzer + Kõmisev analüsaator + + + Turbine + Turbine + + + Sonogram + Sonogram + + + WaveRubber + WaveRubber + + + + AppearanceSettingsPage + + Appearance + Välimus + + + Style + Stiil + + + Use system theme icons + Kasuta süsteemi teema ikoone + + + Settings require restart. + Seaded nõuavad taaskäivitamist. + + + Tabbar colors + Kaardiriba värvid + + + &Use the system default color + &Kasuta süsteemi vaikevärvi + + + Use custom color + Kasuta kohandatud värvi + + + Use gradient background + Kasuta taustaks värvi üleminekut + + + Select tabbar color: + Vali kaardiriba värv: + + + Background image + Taustapilt + + + Default bac&kground image + Vaikimisi &taustapilt + + + &No background image + &Taustapilti pole + + + The album cover of the currently playing song + Hetkel mängitava loo kaanepilt + + + Albu&m cover + Albu&mi kaanepilt + + + Custom image: + Kohandatud pilt: + + + Browse... + Sirvi... + + + Position + Asukoht + + + Upper Left + Üleval vasakul + + + Upper Right + Üleval paremal + + + Middle + Keskel + + + Bottom Left + All vasakul + + + Bottom Right + All paremal + + + Max cover size + Kaanepildi maksimaalne suurus + + + Stretch image to fill playlist + Venita kujutist esitusloendi täitmiseks + + + Keep aspect ratio + Hoia kuvasuhet + + + Do not cut image + Ära lõika pilti + + + Blur amount + Hägustuse hulk + + + 0px + 0px + + + Opacity + Läbipaistmatus + + + 40% + 40% + + + Icon sizes + Ikoonide suurus + + + Playlist buttons + Esitusloendi nupud + + + Tabbar large mode + Suur kaardiriba + + + Play control buttons + Esituse juhtnupud + + + Configure buttons + Seadistuse nupud + + + Files, playlists and queue buttons + Failid, esitusloendid ja järjekorranupud + + + Tabbar small mode + Väike kaardiriba + + + Playlist playing song color + Esitatava loo värv esitusloendis + + + System highlight color + Süsteemi esiletõstu värv + + + Custom color + Kohandatud värv + + + Select playlist playing song color: + Vali esitusloendis esitatatava loo värv: + + + Select background image + Vali taustpilt + + + + BackendSettingsPage + + Backend + Taustaprogramm + + + Audio output + Heli väljund + + + Device + Seade + + + Output + Väljund + + + Engine + Mootor + + + ALSA plugin: + ALSA pistikprogramm: + + + hw + hw + + + p&lughw + p&lughw + + + pcm + pcm + + + Exclusive mode (Experimental) + Eksklusiivne režiim (eksperimentaalne) + + + Options + Valikud + + + Enable volume control + Luba helitugevuse juhtimine + + + Upmix / downmix to + Teisenda heli + + + channels + kanaliseks + + + Improve headphone listening of stereo audio records (bs2b) + Paranda stereo helisalvestuste kuulamist kõrvaklappidega (bs2b) + + + Enable HTTP/2 for streaming + Luba voogesituseks HTTP/2 + + + Use strict SSL mode + Kasuta ranget SSL režiimi + + + Buffer + Puhver + + + ms + ms + + + Buffer duration + Puhvri kestus + + + High watermark + Kõrgeim väärtus + + + Low watermark + Madalaim väärtus + + + Defaults + Vaikeväärtused + + + Audio normalization + Heli normaliseerimine + + + No audio normalization + Heli ei normaliseerita + + + Replay Gain + Esitusvaljuse tundlikkus + + + Use Replay Gain metadata if it is available + Kui esitusvaljuse tundlikkuse metainfo on failis olemas, siis kasuta seda + + + Replay Gain mode + Esitusvaljuse tundlikkuse režiim + + + Radio (equal loudness for all tracks) + Raadio (kõigil paladel võrdne valjus) + + + Album (ideal loudness for all tracks) + Album (kõigil radadel ideaalne valjus) + + + Pre-amp + Eelmoonutus + + + Apply compression to prevent clipping + Ülevõimenduse vältimiseks kasuta kompressorit + + + Fallback-gain + Esitusvaljuse samm + + + EBU R 128 Loudness Normalization + EBU R 128 valjuse normaliseerimine + + + Perform track loudness normalization + Normaliseeri loo valjus + + + Target Level + Sihttase + + + Fading + Hajumine + + + Fade out when stopping a track + Hajuta heli loo peatamisel + + + Cross-fade when changing tracks manually + Risthajuta heli lugude käsitsi vahetamisel + + + Cross-fade when changing tracks automatically + Risthajuta heli lugude automaatsel vahetamisel + + + Except between tracks on the same album or in the same CUE sheet + Välja arvatud samal albumil või samas asukohatabelis asuvate lugude vahel + + + Fading duration + Hajumise kestus + + + Fade out on pause / fade in on resume + Kasuta pausimisel ja jätkamisel hajumist + + + + BehaviourSettingsPage + + Behavior + Käitumine + + + Show system tray icon + Kuva süsteemisalve ikoon + + + Keep running in the background when the window is closed + Jäta taustal tööle ka siis, kui programmiaken on suletud + + + Show song progress on system tray icon + Kuva süsteemisalve ikoonil edenemist + + + Show song progress on taskbar + Näita loo edenemist tegumiribal + + + Resume playback on start + Käivitamisel jätka taasesitust + + + Show playing widget + Kuva esitusvidin + + + On startup + Käivitamisel + + + Remember from &last time + Jätka pooleli jäänud kohast + + + Show the main window + Kuva peaaken + + + Hide the main window + Peida peaaken + + + Show the main window maximized + Kuva peaaken maksimeerituna + + + Show the main window minimized + Kuva peaaken minimeerituna + + + Language + Keel + + + Use the system default + Kasuta süsteemi vaikeväärtust + + + You will need to restart Strawberry if you change the language. + Keele muutmisel tuleb Strawberry taaskäivitada. + + + Using the menu to add a song will... + Menüü kaudu loo lisamisel... + + + Never start playing + Ära kunagi alusta esitust + + + Play if there is nothing already playing + Esita, kui hetkel juba pole midagi esitamisel + + + Always start playing + Alusta alati esitust + + + Pressing "Previous" in player will... + Vajutades nuppu "Eelmine"... + + + Jump to previous song right away + Hüppa kohe eelmisele loole + + + Restart song, then jump to previous if pressed again + Esita uuesti algusest, seejärel uuesti vajutamisel hüppa eelmisele + + + Double clicking a song will... + Topeltklõpsuga lool... + + + Append to the playlist + Lisa esitusloendisse + + + Replace the playlist + Asenda esitusloend + + + Open in new playlist + Ava uues esitusloendis + + + Add to the queue + Lisa esitusjärjekorda + + + Double clicking a song in the playlist will... + Topeltklõpsuga lool esitusloendis... + + + Change the currently playing song + Käivita valitud lugu + + + Seeking using a keyboard shortcut or mouse wheel + Kiirklahvi või hiireratta abil kerimine + + + Time step + Aja samm + + + s + s + + + Volume Increment + Helivaljuse samm + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Viga CDDA seadme valmisolekusse seadmisel. + + + Error while setting CDDA device to pause state. + Viga CDDA seadme peatatud olekusse määramisel. + + + Error while querying CDDA tracks. + Viga lugude CDDA päringul. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + Helikogu SQL päring ei õnnestunud: %1 + + + Failed SQL query: %1 + Nurjunud SQL päring: %1 + + + Updating %1 database. + %1 andmebaasi värskendamine. + + + + CollectionFilterWidget + + Collection Filter + Helikogu filter + + + Enter search terms here + Sisesta siia otsingusõnad + + + MenuPopupToolButton + MenuPopupToolButton + + + Entire collection + Terve helikogu + + + Added today + Lisatud täna + + + Added this week + Lisatud sel nädalal + + + Added within three months + Lisatud kolme kuu jooksul + + + Added this year + Lisatud sel aastal + + + Added this month + Lisatud sel kuul + + + Save current grouping + Salvesta praegune rühmitus + + + Manage saved groupings + Halda salvestatud rühmitusi + + + Show + Näita + + + Group by + Rühmitamise alus + + + Display options + Kuvamise valikud + + + Group by Album artist/Album + Rühmita: album esitaja/album + + + Group by Album artist/Album - Disc + Rühmita: album esitaja/album - plaat + + + Group by Album artist/Year - Album + Rühmita: album esitaja/aasta - album + + + Group by Album artist/Year - Album - Disc + Rühmita: album esitaja/aasta - album - plaat + + + Group by Artist/Album + Rühmita: esitaja/album + + + Group by Artist/Album - Disc + Rühmita: esitaja/album - plaat + + + Group by Artist/Year - Album + Rühmita: esitaja/aasta - album + + + Group by Artist/Year - Album - Disc + Rühmita: esitaja/aasta - album - plaat + + + Group by Genre/Album artist/Album + Rühmita: žanr/album esitaja/album + + + Group by Genre/Artist/Album + Rühmita: žanr/esitaja/album + + + Group by Album Artist + Rühmita: album esitaja + + + Group by Artist + Rühmita: esitaja + + + Group by Album + Rühmita: album + + + Group by Genre/Album + Rühmita: žanr/album + + + Advanced grouping... + Täpsem rühmitamine... + + + Grouping Name + Rühmituse nimi + + + Grouping name: + Rühmituse nimi: + + + + CollectionModel + + Various artists + Erinevad esitajad + + + Loading... + Laadimine... + + + Unknown + Tundmatu + + + + CollectionSettingsPage + + Collection + Helikogu + + + These folders will be scanned for music to make up your collection + Helikogu moodustamiseks skaneeritakse muusikat nendest kaustadest + + + Add new folder... + Lisa uus kaust... + + + Remove folder + Eemalda kaust + + + Automatic updating + Automaatne uuendamine + + + Update the collection when Strawberry starts + Värskenda helikogu Strawberry käivitumisel + + + Monitor the collection for changes + Jälgi muudatusi helikogus + + + Song fingerprinting and tracking + Sõrmejäljesta ja jälgi lugusi + + + Mark disappeared songs unavailable + Märgi kadunud lood kättesaamatuks + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + Teosta loo EBU R 128 analüüs (vajalik EBU R 128 valjuse normaliseerimiseks) + + + Expire unavailable songs after + Kättesaamatud lood aeguvad pärast + + + days + päeva + + + Preferred album art filenames (comma separated) + Eelistatud kaanepildi failinimed (komadega eraldatud) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Kaanepilte otsides vaatab Strawberry esmalt pildifaile, mis sisaldavad ühte neist sõnadest. + Kui vasteid pole, kasutab see kataloogi suurimat pilti. + + + Display options + Kuvamise valikud + + + Automatically open single categories in the collection tree + Ava üksikud kategooriad kogumikupuus automaatselt + + + Show dividers + Kuva eraldajad + + + Show album cover art in collection + Kuva helikogus kaanepilte + + + Use various artists for compilation albums + Kogumike puhul kasuta albumi esitajanimena märget „Erinevad esitajad“ + + + Skip leading articles ("the", "a", "an") when sorting artist names + Esitajate nimede sortimisel eira eesliiteid ("the", "a", "an") + + + Album cover pixmap cache + Kaanepiltide vahemälu + + + Size + Suurus + + + Enable Disk Cache + Luba ketta vahemälu + + + Disk Cache Size + Ketta vahemälu suurus + + + Current disk cache in use: + Praegu kasutatav ketta vahemälu: + + + Clear Disk Cache + Tühjenda ketta vahemälu + + + Song playcounts and ratings + Loo esituskorrad ja hinnangud + + + Save playcounts to song tags when possible + Salvesta esituskorrad ja hinnangud failidesse esimesel võimalusel + + + Save ratings to song tags when possible + Salvesta hinnangud lugude siltidesse esimesel võimalusel + + + Overwrite database playcount when songs are re-read from disk + Kirjuta lugude uuesti sisselugemisel andmebaasi esituskorrad üle + + + Overwrite database rating when songs are re-read from disk + Kirjuta lugude uuesti sisselugemisel andmebaasi hinnangud üle + + + Save playcounts and ratings to files now + Salvesta esituskorrad ja hinnangud failidesse kohe + + + Enable delete files in the right click context menu + Luba failide kustutamine paremklõpsuga kontekstimenüüs + + + Add directory... + Lisa kataloog... + + + Write all playcounts and ratings to files + Kirjuta failidesse kõik esituskorrad ja reitingud + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Kas soovid salvestada esituskorrad ja hinnangud kõigi oma helikogus olevate lugude jaoks? + + + + CollectionView + + Your collection is empty! + Su helikogu on tühi! + + + Click here to add some music + Klõpsa muusika lisamiseks siia + + + Append to current playlist + Lisa praegusesse esitusloendisse + + + Replace current playlist + Asenda praegune esitusloend + + + Open in new playlist + Ava uues esitusloendis + + + Queue track + Lisa järjekorda + + + Queue to play next + Lisa järgmiseks esitamiseks järjekorda + + + Search for this + Otsi seda + + + Organize files... + Korrasta faile... + + + Copy to device... + Kopeeri seadmesse... + + + Delete from disk... + Kustuta kettalt... + + + Edit track information... + Muuda loo infot... + + + Edit tracks information... + Muuda lugude infot... + + + Show in file browser... + Kuva failihalduris... + + + Rescan song(s) + Skaneeri lugu uuesti + + + Show in various artists + Kuva nimistus 'Erinevad esitajad' + + + Don't show in various artists + Ära kuva nimistus 'Erinevad esitajad' + + + There are other songs in this album + Sellel albumil on ka teisi lugusid + + + Would you like to move the other songs on this album to Various Artists as well? + Kas soovid teisaldada ka teised selle albumi lood nimistusse 'Erinevad esitajad'? + + + Error + Viga + + + None of the selected songs were suitable for copying to a device + Valitud lood ei olnud sobilikud seadmesse kopeerimiseks + + + + CollectionViewContainer + + Form + Vorm + + + + CollectionWatcher + + Updating collection + Helikogu värskendamine + + + Updating %1 + %1 uuendamine + + + + Console + + Console + Konsool + + + Run + Käivita + + + + ContextSettingsPage + + Context + Kontekst + + + Custom text settings + Kohandatud teksti seaded + + + MenuPopupToolButton + MenuPopupToolButton + + + Title + Pealkiri + + + Summary + Kokkuvõte + + + Enable Items + Luba üksused + + + Album + Album + + + Technical Data + Tehnilised andmed + + + Song Lyrics + Laulusõnad + + + Automatically search for album cover + Otsi kaanepilti automaatselt + + + Automatically search for song lyrics + Otsi laulusõnu automaatselt + + + Font for headline + Pealkirja kirjatüüp + + + Font + Kirjatüüp + + + Font size + Kirjatüübi suurus + + + pt + punkti + + + Preview + Eelvaade + + + Font for data and lyrics + Andmete ja laulusõnade kirjatüüp + + + Add song artist tag + Lisa loole esitaja silt + + + Add song album tag + Lisa loole albumi silt + + + Add song title tag + Lisa loole pealkirja silt + + + Add song albumartist tag + Lisa loole albumi esitaja silt + + + Add song year tag + Lisa loole aasta silt + + + Add song composer tag + Lisa loole helilooja silt + + + Add song performer tag + Lisa loole esineja silt + + + Add song grouping tag + Lisa loole rühmitamise silt + + + Add song disc tag + Lisa loole plaadi numbri silt + + + Add song track tag + Lisa loole plaadijärjekorra silt + + + Add song genre tag + Lisage loole žanri silt + + + Add song length tag + Lisa loole pikkuse silt + + + Add song play count + Lisa loole esituskorrad + + + Add song skip count + Lisa loole vahelejätmiskorrad + + + Add a new line if supported by the notification type + Lisa uus rida, kui teavituse tüüp seda toetab + + + %filename% + %filename% + + + Add song filename + Lisa loole failinimi + + + %url% + %url% + + + Add song URL + Lisa loo URL + + + %rating% + %rating% + + + Add song rating + Lisa loole hinnang + + + %originalyear% + %originalyear% + + + Add song original year tag + Lisa loole algse aasta silt + + + + ContextView + + Filetype + Faili tüüp + + + Length + Kestus + + + Samplerate + Diskreetimissagedus + + + Bit depth + Bitisügavus + + + Bitrate + Bitikiirus + + + EBU R 128 Integrated Loudness + EBU R 128 integreeritud valjus + + + EBU R 128 Loudness Range + EBU R 128 valjuse vahemik + + + Show album cover + Kuva kaanepilte + + + Show song technical data + Kuva loo tehnilisi andmeid + + + Show song lyrics + Kuva laulusõnad + + + Automatically search for song lyrics + Otsi laulusõnu automaatselt + + + No song playing + Midagi ei mängita + + + %1 song + %1 lugu + + + %1 songs + %1 lugu + + + %1 artist + %1 esitaja + + + %1 artists + %1 esitajat + + + %1 album + %1 album + + + %1 albums + %1 albumit + + + kbps + kbps + + + + CoverFromURLDialog + + Load cover from URL + Laadi kaaanepilt aadressilt + + + Enter a URL to download a cover from the Internet: + Kaanepiltide laadimiseks internetist sisesta aadress: + + + Fetching cover error + Viga kaanepildi hankimisel + + + The site you requested does not exist! + Sinu soovitud veebisaiti pole olemas! + + + The site you requested is not an image! + Sinu soovitud veebisait pole pilt! + + + + CoverManager + + Cover Manager + Kaanepildi haldur + + + Enter search terms here + Sisesta siia otsingusõnad + + + MenuPopupToolButton + MenuPopupToolButton + + + View + Vaade + + + Total albums: + Albumeid kokku: + + + Without cover: + Kaanepildita: + + + 0 + 0 + + + Fetch Missing Covers + Hangi puuduvad kaanepildid + + + Export Covers + Ekspordi kaanepildid + + + Fetch automatically + Tõmba automaatselt + + + Load + Laadi + + + Add to playlist + Lisa esitusloendisse + + + + CoverSearchStatisticsDialog + + Fetch completed + Hankimine on tehtud + + + Got %1 covers out of %2 (%3 failed) + %2-st kaanepildist saadi %1 (%3 nurjus) + + + Covers from %1 + Kaanepildid teenuselt %1 + + + Total network requests made + Tehtud võrgupäringuid kokku + + + Average image size + Pildi keskmine suurus + + + Total bytes transferred + Edastatud baite kokku + + + + CoversSettingsPage + + Covers + Kaanepildid + + + Cover providers + Kaanepildi pakkujad + + + Choose the providers you want to use when searching for covers. + Vali teenused, mida soovid kaanepildi otsimisel kasutada. + + + Move up + Liiguta üles + + + Move down + Liiguta alla + + + Authentication + Autentimine + + + Login + Logi sisse + + + Album cover types + Kaanepildi tüübid + + + Saving album covers + Kaanepiltide salvestamine + + + Save album covers in album directory + Salvesta kaanepildid albumi kataloogi + + + Save album covers in cache directory + Salvesta kaanepildid vahemälu kataloogi + + + Save album covers as embedded cover + Salvesta kaanepildid põimitud kaanepildina + + + Filename: + Faili nimi: + + + Pattern + Muster + + + Random + Juhuslik + + + Overwrite existing file + Kirjuta olemasolev fail üle + + + Lowercase filename + Väiketähtedega failinimi + + + Replace spaces with dashes + Asenda tühikud kriipsudega + + + Use Tidal settings to authenticate. + Kasuta autentimiseks Tidali seadeid. + + + Use Spotify settings to authenticate. + Kasuta autentimiseks Spotify seadeid. + + + Use Qobuz settings to authenticate. + Kasuta autentimiseks Qobuzi seadeid. + + + %1 needs authentication. + %1 vajab autentimist. + + + %1 does not need authentication. + %1 ei vaja autentimist. + + + No provider selected. + Teenuseid pole valitud. + + + Authentication failed + Autentimine ebaõnnestus + + + Manually unset (%1) + Käsitsi määramata (%1) + + + Set through album cover search (%1) + Määra kaanepildi otsinguga (%1) + + + Automatically picked up from album directory (%1) + Automaatselt võetud albumi kataloogist (%1) + + + Embedded album cover art (%1) + Põimitud albumi kaanepilt (%1) + + + + CueParser + + Saving CUE files is not supported. + CUE-failide salvestamine pole toetatud. + + + + Database + + Unable to execute SQL query: %1 + SQL päring nurjus: %1 + + + Failed SQL query: %1 + Nurjunud SQL päring: %1 + + + Integrity check + Terviklikkuse kontroll + + + Database corruption detected. + Tuvastati rikutud andmebaas. + + + Backing up database + Andmebaasi varundamine + + + + DeleteConfirmationDialog + + Delete files + Kustuta failid + + + The following files will be deleted from disk: + Järgnevad failid kustutatakse kettalt: + + + Are you sure you want to continue? + Kas soovid jätkata? + + + + DeleteFiles + + Deleting files + Failide kustutamine + + + + DeviceItemDelegate + + Updating %1%... + %1% värskendamine... + + + Not connected + Pole ühendatud + + + Not mounted - double click to mount + Haakimata - topeltklõps haakimiseks + + + Double click to open + Avamiseks tee topeltklikk + + + %1 song%2 + %1 lugu%2 + + + + DeviceManager + + Connect device + Ühenda seade + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Ühendasid selle seadme esimest korda. Strawberry skaneerib nüüd seadet muusikafailide leidmiseks – selleks võib kuluda veidi aega. + + + This device will not work properly + See seade ei tööta korralikult + + + This is an MTP device, but you compiled Strawberry without libmtp support. + See on MTP seade, kuid kompileerisid Strawberry libmtp toeta. + + + If you continue, this device will work slowly and songs copied to it may not work. + Kui jätkad, töötab see seade aeglaselt ja sinna kopeeritud lood ei pruugi töötada. + + + This is an iPod, but you compiled Strawberry without libgpod support. + See on iPod, kuid kompileerisid Strawberry libgpod toeta. + + + This type of device is not supported: %1 + Seda tüüpi seadet ei toetata: %1 + + + + DeviceProperties + + Device Properties + Seadme omadused + + + Information + Informatsioon + + + Name + Nimi + + + Icon + Ikoon + + + Hardware information + Riistvara info + + + Hardware information is only available while the device is connected. + Riistvara info on ainult siis saadaval, kui seade on ühendatud. + + + File formats + Failivormingud + + + Supported formats + Toetatud vormingud + + + This device supports the following file formats: + See seade toetab järgmisi failivorminguid: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry saab sellesse seadmesse kopeeritud muusika automaatselt teisendada vormingusse, mida ta suudab esitada. + + + Do not convert any music + Ära teisenda mitte midagi + + + Convert any music that the device can't play + Teisenda kogu muusika, mida seade ei suuda esitada + + + Convert all music + Konverteeri kõik failid + + + Preferred format + Eelistatud vorming + + + This device must be connected and opened before Strawberry can see what file formats it supports. + See seade peab olema ühendatud ja avatud, enne kui Strawberry näeb, milliseid failivorminguid see toetab. + + + Open device + Ava seade + + + Querying device... + Vaatame, mida seadmes leidub... + + + Model + Mudel + + + Manufacturer + Tootja + + + + DeviceView + + Safely remove device + Eemalda seade ohutult + + + Forget device + Unusta seade + + + Device properties... + Seadme omadused... + + + Append to current playlist + Lisa praegusesse esitusloendisse + + + Replace current playlist + Asenda praegune esitusloend + + + Open in new playlist + Ava uues esitusloendis + + + Copy to collection... + Kopeeri helikogusse... + + + Delete from device... + Kustuta seadmest... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Seadme unustamine eemaldab selle siit loendist, mistõttu peab Strawberry järgmisel ühendamisel kõik lood uuesti skaneerima. + + + Delete files + Kustuta failid + + + These files will be deleted from the device, are you sure you want to continue? + Need failid kustutatakse seadmest. Kas soovid jätkata? + + + + DeviceViewContainer + + Form + Vorm + + + + DynamicPlaylistControls + + Dynamic mode is on + Kasutusel on dünaamiline režiim + + + New tracks will be added automatically. + Uued lood lisatakse automaatselt. + + + Expand + Laienda + + + Repopulate + Täida uuesti andmetega + + + Turn off + Lülita välja + + + + EditTagDialog + + Edit track information + Muuda loo infot + + + Summary + Kokkuvõte + + + Date created + Loomise kuupäev + + + Art Automatic + Automaatne kaanepilt + + + Date modified + Muutmise kuupäev + + + Art Embedded + Põimitud kaanepilt + + + Last played + A playlist's tag. + Viimati esitatud + + + File type + Faili tüüp + + + Length + Kestus + + + Play count + Esituskordi + + + Bit depth + Bitisügavus + + + EBU R 128 integrated loudness + EBU R 128 integreeritud valjus + + + Bit rate + Bitikiirus + + + Skip count + Vahelejätmisi + + + Sample rate + Diskreetimissagedus + + + Path + Asukoht + + + Filename + Faili nimi + + + Art Unset + Kaanepilt määramata + + + File size + Faili suurus + + + Art Manual + Käsitsi kaanepilt + + + EBU R 128 loudness range + EBU R 128 valjuse vahemik + + + Reset play counts + Lähtesta esituskorrad + + + Tags + Sildid + + + MenuPopupToolButton + MenuPopupToolButton + + + Change art + Muuda kaanepilti + + + Embedded cover + Põimitud kaanepilt + + + Disc + Ketas + + + Grouping + Rühmitamine + + + Album artist + Albumi esitaja + + + Album + Album + + + Year + Aasta + + + Title + Pealkiri + + + Artist + Esitaja + + + Composer + Helilooja + + + Complete tags automatically + Täida sildid automaatselt + + + Genre + Žanr + + + Comment + Märkus + + + Performer + Esineja + + + Compilation + Kogumik + + + Track + Rada + + + Rating + Hinnang + + + Lyrics + Laulusõnad + + + Complete lyrics automatically + Täida laulusõnad automaatselt + + + Previous + Eelmine + + + Next + Järgmine + + + Saving tracks + Lugude salvestamine + + + Loading tracks + Radade laadimine + + + %1 songs selected. + %1 lugu valitud. + + + kbps + kbps + + + Unknown + Tundmatu + + + Yes + Jah + + + No + Ei + + + None + Puudub + + + Cover is unset. + Kaanepilt on kinnitamata. + + + Cover from embedded image. + Kaanepilt põimitud pildilt. + + + Cover from %1 + Kaanepilt teenuselt %1 + + + Cover art not set + Kaanepilt määramata + + + Album cover editing is only available for collection songs. + Kaanepildi muutmine on võimalik ainult helikogu lugudel. + + + Cover changed: Will be cleared when saved. + Kaanepilt muudetud: salvestamisel eemaldatakse. + + + Cover changed: Will be unset when saved. + Kaanepilt muudetud: salvestamisel tühistatakse. + + + Cover changed: Will be deleted when saved. + Kaanepilt muudetud: salvestamisel kustutatakse. + + + Cover changed: Will set new when saved. + Kaanepilt muudetud: salvestamisel määratakse uus. + + + Never + Mitte kunagi + + + Reset song play statistics + Lähtest loo esitamise statistika + + + Are you sure you want to reset this song's play statistics? + Kas soovid selle loo esitusstatistika lähtestada? + + + loading... + laadimine... + + + Not found. + Ei leitud. + + + Could not write metadata to %1 + Metaandmete salvestamine faili „%1“ ei õnnestunud + + + Could not write metadata to %1: %2 + Metaandmete salvestamine faili „%1“ ei õnnestunud: %2 + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Ekvalaiser + + + Preset: + Valmisvalik: + + + Save preset + Eelmääratluse salvestamine + + + Delete preset + Kustuta valmisseadistus + + + Enable equalizer + Luba ekvalaiser + + + Enable stereo balancer + Stereo tasakaalustamine + + + Left + Vasak + + + Balance + Tasakaal + + + Right + Parem + + + Pre-amp + Eelmoonutus + + + Custom + Kohanda + + + Classical + Klassikaline + + + Club + Klubi + + + Dance + Tantsumuusika + + + Full Bass + Täisbass + + + Full Treble + Täiskõrged + + + Full Bass + Treble + Täisbass + kõrged + + + Laptop/Headphones + Sülearvuti/kõrvaklapid + + + Large Hall + Suur ruum + + + Live + Kontsert + + + Party + Pidu + + + Pop + Pop + + + Reggae + Regemuusika + + + Rock + Rokk + + + Soft + Mahe + + + Ska + Ska + + + Soft Rock + Pehme rokk + + + Techno + Tehno + + + Zero + Null + + + Name + Nimi + + + Are you sure you want to delete the "%1" preset? + Kas soovid kustutada eelseadistuse "%1"? + + + + EqualizerSlider + + Equalizer + Ekvalaiser + + + %1 dB + %1 dB + + + + ErrorDialog + + Strawberry Error + Strawberry viga + + + + FancyTabWidget + + Large sidebar + Suur külgriba + + + Icons sidebar + Ikoonide külgriba + + + Small sidebar + Väike külgriba + + + Plain sidebar + Lihtne külgriba + + + Tabs on top + Kaardid üleval + + + Icons on top + Ikoonid üleval + + + + FileTypeItemDelegate + + Unknown + Tundmatu + + + + FileView + + Form + Vorm + + + + FileViewList + + Append to current playlist + Lisa praegusesse esitusloendisse + + + Replace current playlist + Asenda praegune esitusloend + + + Open in new playlist + Ava uues esitusloendis + + + Copy to collection... + Kopeeri helikogusse... + + + Move to collection... + Teisalda helikogusse... + + + Copy to device... + Kopeeri seadmesse... + + + Delete from disk... + Kustuta kettalt... + + + Edit track information... + Muuda loo infot... + + + Show in file browser... + Kuva failihalduris... + + + + FreeSpaceBar + + Available + Saadaolevad + + + New songs + Uued lood + + + Exceeded by + Ületatud + + + Used + Kasutuses + + + + GPodDevice + + Could not copy %1 to %2: %3 + %1 -> %2 kopeeruimine ei õnnestunud: %3 + + + Writing database failed: %1 + Andmebaasi salvestamine ei õnnestunud: %1 + + + Writing database failed. + Andmebaasi salvestamine ei õnnestunud. + + + + GPodLoader + + Loading iPod database + Laadime iPodi andmekogu + + + An error occurred loading the iTunes database + iTunesi andmebaasi laadimisel tekkis viga + + + + GeniusLyricsProvider + + Genius Authentication + Genius autentimine + + + Please open this URL in your browser + Ava see URL oma veebilehitsejas + + + Redirect missing token code! + Suuna puuduv tunnuskood ümber! + + + Received invalid reply from web browser. + Veebilehitsejast saadi vigane vastus. + + + Redirect from Genius is missing query items code or state. + Geniuse ümbersuunamisel puudub päringuüksuste kood või olek. + + + + GioLister + + Mount point + Haakepunkt + + + Device + Seade + + + URI + URI + + + + GlobalShortcutGrabber + + Press a key + Vajuta klahvi + + + Press a key combination to use for %1... + Vajuta klahvikombinatsiooni %1 kasutamiseks... + + + + GlobalShortcutsManager + + Play + Mängi + + + Pause + Paus + + + Play/Pause + Esita/paus + + + Stop + Peata + + + Stop playing after current track + Peata taasesitus pärast praegust lugu + + + Next track + Järgmine lugu + + + Previous track + Eelmine lugu + + + Restart or previous track + Käivita uuesti või esita eelmine lugu + + + Increase volume + Heli valjemaks + + + Decrease volume + Heli vaiksemaks + + + Mute + Vaigista + + + Seek forward + Samm edasi + + + Seek backward + Samm tagasi + + + Show/Hide + Kuva/peida + + + Show OSD + Kuva ekraanimenüü + + + Toggle Pretty OSD + Ilusa ekraanimenüü lüliti + + + Change shuffle mode + Muuda juhuesituse režiimi + + + Change repeat mode + Muuda kordusrežiimi + + + Enable/disable scrobbling + Luba/keela kraasimine + + + Love + Meeldib + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Globaalsed kiirklahvid + + + Use Gnome (GSD) shortcuts when available + Kasuta võimalusel Gnome kiirklahve + + + Open... + Ava... + + + Use MATE shortcuts when available + Kasuta võimalusel MATE kiirklahve + + + Use KDE (KGlobalAccel) shortcuts when available + Kasuta võimalusel KDE kiirklahve + + + Use X11 shortcuts when available + Kasuta võimalusel X11 kiirklahve + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Et Strawberry saaks üldiseid kiirklahve kasutada, ava süsteemi seadistused ja märgi eelistus „<span style="font-style:italic">juhi oma arvutit</span>“. + + + Action + Category label + Tegevus + + + Shortcut + Kiirklahv + + + Shortcut for %1 + %1 kiirklahv + + + &None + &Puudub + + + &Default + &Vaikimisi + + + &Custom + &Kohandatud + + + Change shortcut... + Muuda kiirklahvi... + + + The "%1" command could not be started. + Käsku "%1" ei saanud käivitada. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + X11 otseteede kasutamine asukohas %1 ei ole soovitatav ja see võib põhjustada klaviatuuri hangumise! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + %1 otseteid kasutatakse tavaliselt MPRIS ja KGlobalAccel kaudu. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + %1 otseteid kasutatakse tavaliselt Gnome sätete deemoni kaudu ja need tuleks seadistada hoopis gnome-settings-daemon'i abil. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + %1 otseteid kasutatakse tavaliselt Gnome sätete deemoni kaudu ja need tuleks seadistada hoopis cinnamon-settings-daemon'i abil. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + %1 otseteid kasutatakse tavaliselt MATE sätete deemoni kaudu ja need tuleks seadistada hoopis seal. + + + + GroupByDialog + + Collection advanced grouping + Helikogu täpsem rühmitamine + + + You can change the way the songs in the collection are organized. + Saad muuta viisi, kuidas helikogus olevad lood on korraldatud. + + + Group Collection by... + Järjesta helikogu... + + + First level + Esimene tase + + + None + Puudub + + + Artist + Esitaja + + + Album artist + Albumi esitaja + + + Album + Album + + + Album - Disc + Album – plaat + + + Disc + Ketas + + + Format + Vorming + + + Genre + Žanr + + + Year + Aasta + + + Year - Album + Aasta - Album + + + Year - Album - Disc + Aasta - Album - Plaat + + + Original year + Algne aasta + + + Original year - Album + Algne aasta – album + + + Composer + Helilooja + + + Performer + Esineja + + + Grouping + Rühmitamine + + + File type + Faili tüüp + + + Sample rate + Diskreetimissagedus + + + Bit depth + Bitisügavus + + + Bitrate + Bitikiirus + + + Second level + Teine tase + + + Third level + Kolmas tase + + + Separate albums by grouping tag + Eralda albumid rühmitamise sildi järgi + + + + GstEngine + + Buffering + Puhvedamine + + + + LastFMImport + + Missing username, please login to last.fm first! + Kasutajanimi puudub, logi esmalt last.fm-i sisse! + + + + LastFMImportDialog + + Import data from last.fm + Impordi last.fm andmed + + + Choose data to import from last.fm + Vali andmed saidilt last.fm importimiseks + + + Last played + Viimati esitatud + + + Play counts + Esituskordi + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Hoiatus: Esituskordade ja viimati mängitud lugude statistikasaidilt last.fm asendab täielikult samad andmed vastega lugude jaoks. Andmed asendatakse sama albumi esitaja ja loo pealkirja järgi! Enne alustamist varunda oma andmebaas. + + + Go! + Mine! + + + Close + Sulge + + + Cancel + Tühista + + + Receiving initial data from last.fm... + Algandmete vastuvõtmine saidilt last.fm... + + + Receiving playcount for %1 songs and last played for %2 songs. + Esituskordade vastuvõtmine %1 loo jaoks ja viimati esitamine %2 loo jaoks. + + + Receiving last played for %1 songs. + %1 loo viimati esitamise vastuvõtmine. + + + Receiving playcounts for %1 songs. + %1 loo esituskorra vastuvõtmine. + + + Playcounts for %1 songs and last played for %2 songs received. + %1 loo esituskorrad ja %2 loo viimati esitamised on vastu võetud. + + + Last played for %1 songs received. + Viimati esitamine %1 loole vastu võetud. + + + Playcounts for %1 songs received. + %1 loo esituskorrad on vastu võetud. + + + + LastPlayedItemDelegate + + Never + Mitte kunagi + + + + Library + + Least favourite tracks + Vähim kuulatud lood + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz autentimine + + + Please open this URL in your browser + Ava see URL oma veebilehitsejas + + + Redirect missing token code! + Suuna puuduv tunnuskood ümber! + + + Received invalid reply from web browser. + Veebilehitsejast saadi vigane vastus. + + + Unable to scrobble %1 - %2 because of error: %3 + %1 kraasimine nurjus - %2 põhjuseks: %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + MusicBrainzi salvestuse ID puudub %1 %2 %3 jaoks + + + ListenBrainz error: %1 + ListenBrainz viga: %1 + + + + LoginStateWidget + + Form + Vorm + + + You are not signed in. + Sa ei ole sisse logitud. + + + Sign out + Logi välja + + + Signing in... + Sisselogimine... + + + You are signed in. + Oled sisse logitud. + + + You are signed in as %1. + Oled sisse logitud kui %1. + + + Expires on %1 + Aegub %1 + + + + LyricsSettingsPage + + Lyrics + Laulusõnad + + + Lyrics providers + Laulusõnade pakkujad + + + Choose the providers you want to use when searching for lyrics. + Vali teenused, mida soovid laulusõnade otsimisel kasutada. + + + Move up + Liiguta üles + + + Move down + Liiguta alla + + + Authentication + Autentimine + + + Login + Logi sisse + + + No provider selected. + Teenuseid pole valitud. + + + Authentication failed + Autentimine ebaõnnestus + + + + MainWindow + + Strawberry Music Player + Strawberry muusikamängija + + + MenuPopupToolButton + MenuPopupToolButton + + + &Music + Muusika + + + P&laylist + Esitusloend + + + Help + Abi + + + &Tools + Töövahendid + + + Previous track + Eelmine lugu + + + F5 + F5 + + + &Play + &Esita + + + F6 + F6 + + + &Stop + &Peata + + + F7 + F7 + + + &Next track + &Järgmine lugu + + + F8 + F8 + + + &Quit + &Välju + + + Ctrl+Q + Ctrl+Q + + + Stop after this track + Peata pärast seda lugu + + + Ctrl+Alt+V + Ctrl+Alt+V + + + Love + Meeldib + + + &Clear playlist + &Tühjenda esitusloend + + + Clear playlist + Tühjenda esitusloend + + + Ctrl+K + Ctrl+K + + + Edit track information... + Muuda loo infot... + + + Ctrl+E + Ctrl+E + + + Renumber tracks in this order... + Nummerda lood ümber selles järjekorras... + + + Set value for all selected tracks... + Määra väärtus kõikidel valitud lugudel... + + + Edit tag... + Muuda silti... + + + &Settings... + &Seaded... + + + Ctrl+P + Ctrl+P + + + &About Strawberry + Strawberry teave + + + F1 + F1 + + + S&huffle playlist + Sega esitusloend + + + Ctrl+H + Ctrl+H + + + &Add file... + Lisa fail... + + + Ctrl+Shift+A + Ctrl+Shift+A + + + &Open file... + &Ava fail... + + + Open audio &CD... + Ava CD plaat... + + + &Cover Manager + &Kaanepildi haldur + + + C&onsole + Konsool + + + &Shuffle mode + Juhuesituse režiim + + + &Repeat mode + &Kordusrežiim + + + Remove from playlist + Eemalda esitusloendist + + + &Equalizer + &Ekvalaiser + + + &Transcode Music + &Teisenda muusikat + + + Add &folder... + Lisa &kaust... + + + &Jump to the currently playing track + &Hüppa esitatavale loole + + + Ctrl+J + Ctrl+J + + + &New playlist + &Uus esitusloend + + + Ctrl+N + Ctrl+N + + + Save &playlist... + Salvesta esitusloend... + + + Ctrl+S + Ctrl+S + + + &Load playlist... + &Laadi esitusloend... + + + Ctrl+Shift+O + Ctrl+Shift+O + + + &Save all playlists... + &Salvesta kõik esitusloendid... + + + Go to next playlist tab + Liigu järgmisele esitusloendi vahekaardile + + + Go to previous playlist tab + Liigu eelmisele esitusloendi vahekaardile + + + &Update changed collection folders + &Värskenda muudetud kaustu helikogus + + + About &Qt + &Qt teave + + + &Mute + &Vaigista + + + Ctrl+M + Ctrl+M + + + &Do a full collection rescan + &Skaneeri kogu helikogu + + + Stop collection scan + Peata helikogu skaneerimine + + + Complete tags automatically... + Täida sildid automaatselt... + + + Ctrl+T + Ctrl+T + + + Toggle scrobbling + Kraasimise lüliti + + + Remove &duplicates from playlist + Eemalda esitusloendist duplikaadid + + + Remove &unavailable tracks from playlist + Eemalda esitusloendist kättesaamatud lood + + + Add file(s) to transcoder + Lisa failid teisendamiseks + + + Add file to transcoder + Lisa fail teisendamiseks + + + Add stream... + Lisa voog... + + + Show sidebar + Kuva külgriba + + + Import data from last.fm... + Impordi last.fm andmed... + + + All Files (*) + Kõik failid (*) + + + Context + Kontekst + + + Collection + Helikogu + + + Queue + Järjekord + + + Playlists + Esitusloendid + + + Smart playlists + Nutikad esitusloendid + + + Files + Failid + + + Radios + Raadiod + + + Devices + Seadmed + + + Subsonic + Subsonic + + + Tidal + Tidal + + + Spotify + Spotify + + + Qobuz + Qobuz + + + Show all songs + Kuva kõik lood + + + Show only duplicates + Kuva ainult duplikaadid + + + Show only untagged + Kuva ainult sildistamata lood + + + Configure collection... + Helikogu seadistamine... + + + Play + Mängi + + + Toggle queue status + Muuda järjekorra olekut + + + Queue selected tracks to play next + Lisa valitud lood järgmiseks esitamiseks järjekorda + + + Toggle skip status + Muuda vahelejätmise olekut + + + Rescan song(s)... + Skaneeri lugu uuesti... + + + Copy URL(s)... + Kopeeri URL(id)... + + + Show in collection... + Kuva helikogus... + + + Show in file browser... + Kuva failihalduris... + + + Organize files... + Korrasta faile... + + + Copy to collection... + Kopeeri helikogusse... + + + Move to collection... + Teisalda helikogusse... + + + Copy to device... + Kopeeri seadmesse... + + + Delete from disk... + Kustuta kettalt... + + + Check for updates... + Kontrolli uuendusi... + + + Strawberry running under Rosetta + Strawberry töötab Rosetta all + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + Kasutad Strawberryt Rosetta all. Strawberry käitamist Rosetta all ei toetata ja sellel on teadaolevalt probleeme. Õige CPU arhitektuuri jaoks tuleks Strawberry alla laadida saidilt %1 + + + Sponsoring Strawberry + Strawberry toetamine + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry on tasuta ja avatud lähtekoodiga tarkvara. Kui sulle meeldib Strawberry, kaalu projekti toetamist. Lisateavet sponsorluse kohta leiab meie veebisaidilt %1 + + + Pause + Paus + + + Dequeue track + Eemalda lugu järjekorrast + + + Dequeue selected tracks + Eemalda valitud lood järjekorrast + + + Queue track + Lisa järjekorda + + + Queue selected tracks + Lisa valitud lood järjekorda + + + Queue to play next + Lisa järgmiseks esitamiseks järjekorda + + + Unskip track + Tühista loo vahelejätmine + + + Unskip selected tracks + Tühista valitud lugude vahelejätmine + + + Skip track + Jäta vahele + + + Skip selected tracks + Jäta valitud lood vahele + + + Set %1 to "%2"... + Määra %1 väärtuseks „%2“... + + + Edit tag "%1"... + Muuda silti "%1"... + + + Add to another playlist + Lisa teise esitusloendisse + + + New playlist + Uus esitusloend + + + Add file + Lisa fail + + + Music + Muusika + + + Add folder + Lisa kaust + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Esitusloendis on %1 lugu, liiga suur, et seda tagasi võtta. Kas oled kindel, et soovid esitusloendi tühjendada? + + + Error + Viga + + + None of the selected songs were suitable for copying to a device + Valitud lood ei olnud sobilikud seadmesse kopeerimiseks + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Strawberry versioon, millele äsja uuendasid, nõuab muusikakogu täielikku uuesti skaneerimist allpool loetletud uute funktsioonide tõttu: + + + Would you like to run a full rescan right now? + Kas teha uus täielik skaneering kohe? + + + Collection rescan notice + Helikogu uuesti skaneerimise teatis + + + + MessageDialog + + Message Dialog + Sõnumiaken + + + Do not show this message again. + Ära seda teadet enam näita. + + + + MimeData + + Playlist + Esitusloend + + + + MoodbarProxyStyle + + Show moodbar + Kuva tujuriba + + + Moodbar style + Meeleoluriba stiil + + + + MoodbarSettingsPage + + Moodbar + Meeleoluriba + + + Show a moodbar in the track progress bar + Kuva loo edenemisribal meeleoluriba + + + Moodbar style + Meeleoluriba stiil + + + Save the .mood files directly in the songs folders + Salvesta .mood failid lugude kaustadesse + + + Enabled + Lubatud + + + + MtpConnection + + Invalid MTP device: %1 + Kehtetu MTP-seade: %1 + + + Could not open MTP device. + MTP seadme avamine ei õnnestunud. + + + MTP error: %1 + MTP viga: %1 + + + MTP device not found. + MTP-seadet ei leitud. + + + + MtpLoader + + Loading MTP device + MTP-seadme laadimine + + + Error connecting MTP device %1 + Viga MTP seadme %1 ühendamiselug + + + Error connecting MTP device %1: %2 + Viga MTP-seadme %1 ühendamisel: %2 + + + + NetworkProxySettingsPage + + Network Proxy + Võrgu puhverserver + + + &Use the system proxy settings + &Kasuta süsteemi puhverserveri seadeid + + + Direct internet connection + Interneti otseühendus + + + &Manual proxy configuration + &Puhverserveri käsitsi seadistamine + + + HTTP proxy + HTTP-puhverserver + + + SOCKS proxy + SOCKS puhverserver + + + Port + Port + + + Use authentication + Kasuta autentimist + + + Username + Kasutajanimi + + + Password + Parool + + + Use proxy settings for streaming + Kasuta voogesituseks puhverserveri seadeid + + + + NotificationsSettingsPage + + Notifications + Teavitused + + + Strawberry can show a message when the track changes. + Strawberry võib loo vahetumisel kuvada märguande. + + + Notification type + Teavituse tüüp + + + Disabled + Refers to a disabled notification type in Notification settings. + Välja lülitatud + + + Show a &native desktop notification + Kuva &töölaua märguandena + + + Show a pretty OSD + Kuva ilus ekraanimenüü + + + Show a popup fro&m the system tray + Kuva süsteemisalves hüpikaken + + + General settings + Üldised seadistused + + + Popup duration + Hüpikakna kestus + + + seconds + sekundit + + + Disable duration + Näita kestust + + + Show a notification when I change the volume + Kuva helitugevuse muutmisel märguanne + + + Show a notification when I change the repeat/shuffle mode + Kuva märguanne kordus-/juhuesitusrežiimi muutmisel + + + Show a notification when I pause playback + Kuva taasesituse pausimisel märguanne + + + Show a notification when I resume playback + Kuva taasesituse jätkamisel märguanne + + + Include album art in the notification + Kuva teavituses albumi kaanepilt + + + Custom message settings + Kohandatud sõnumi seaded + + + Use a custom message for notifications + Kasuta teavitustes kohandatud sõnumit + + + Preview + Eelvaade + + + MenuPopupToolButton + MenuPopupToolButton + + + Summary + Kokkuvõte + + + Body + Sisu + + + Pretty OSD options + Ilusa ekraanimenüü seadistused + + + Background color + Taustavärv + + + Text options + Tekstivalikud + + + Choose font... + Vali kirjatüüp... + + + Choose color... + Vali värv... + + + Background opacity + Tausta läbipaistvus + + + Basic Blue + Tavaline sinine + + + Strawberry Red + Maasikapunane + + + Custom... + Kohandatud... + + + Enable fading + Luba hajumine + + + Add song artist tag + Lisa loole esitaja silt + + + Add song album tag + Lisa loole albumi silt + + + Add song title tag + Lisa loole pealkirja silt + + + Add song albumartist tag + Lisa loole albumi esitaja silt + + + Add song year tag + Lisa loole aasta silt + + + Add song composer tag + Lisa loole helilooja silt + + + Add song performer tag + Lisa loole esineja silt + + + Add song grouping tag + Lisa loole rühmitamise silt + + + Add song disc tag + Lisa loole plaadi numbri silt + + + Add song track tag + Lisa loole plaadijärjekorra silt + + + Add song genre tag + Lisage loole žanri silt + + + Add song length tag + Lisa loole pikkuse silt + + + Add song play count + Lisa loole esituskorrad + + + Add song skip count + Lisa loole vahelejätmiskorrad + + + Add song rating + Lisa loole hinnang + + + Add a new line if supported by the notification type + Lisa uus rida, kui teavituse tüüp seda toetab + + + %filename% + %filename% + + + Add song filename + Lisa loole failinimi + + + %url% + %url% + + + Add song URL + Lisa loo URL + + + %originalyear% + %originalyear% + + + Add song original year tag + Lisa loole algse aasta silt + + + OSD Preview + Ekraanimenüü eelvaade + + + Drag to reposition + Lohista asukoha muutmiseks + + + + OSDBase + + disc %1 + plaat %1 + + + track %1 + lugu %1 + + + Paused + Peatatud + + + Stopped + Peatatud + + + Stop playing after track: %1 + Peata taasesitus pärast lugu: %1 + + + On + Sees + + + Off + Väljas + + + Playlist finished + Esitusnimekiri läbi + + + Volume %1% + Helitugevus %1% + + + Don't shuffle + Juhuesitus väljas + + + Shuffle all + Kõige juhuesitus + + + Shuffle tracks in this album + Selle albumi lugude juhuesitus + + + Shuffle albums + Albumite juhuesitus + + + Don't repeat + Ära korda + + + Repeat track + Korda lugu + + + Repeat album + Korda album + + + Repeat playlist + Korda esitusloend + + + Stop after every track + Peata pärast iga lugu + + + Intro tracks + Introd + + + + Organize + + Organizing files + Failide korrastamine + + + + OrganizeDialog + + Organize Files + Korrasta faile + + + Destination + Sihtkoht + + + After copying... + Pärast kopeerimist... + + + Keep the original files + Säiilita algsed failid + + + Delete the original files + Kustuta algsed failid + + + Naming options + Nimetamise valikud + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Asendusmärkid algavad %'ga, näiteks %artist, %album %title</p> + +<p>Kui Kui ümbritsed asendusmärkidega tekstilõigu looksulgudega, siis see tekstilõik jäetakse kuvamata, kui asendusmärgi väärtus on tühi.</p> + + + Insert... + Lisa... + + + Remove problematic characters from filenames + Eemalda failinimedest probleemsed tähemärgid + + + Restrict to characters allowed on FAT filesystems + Piira FAT failisüsteemides lubatud tähemärkidega + + + Restrict characters to ASCII + Piira ASCII tähemärkidega + + + Allow extended ASCII characters + Luba laiendatud ASCII tähemärgid + + + Replace spaces with underscores + Asenda tühikud allkriipsudega + + + Overwrite existing files + Kirjuta olemasolevad failid üle + + + Copy album cover artwork + Kopeeri albumi kaanepildid + + + Preview + Eelvaade + + + Loading... + Laadimine... + + + Safely remove the device after copying + Pärast kopeerimist eemalda seade ohutult + + + Title + Pealkiri + + + Album + Album + + + Artist + Esitaja + + + Artist's initial + Esitaja initsiaalid + + + Album artist + Albumi esitaja + + + Composer + Helilooja + + + Performer + Esineja + + + Grouping + Rühmitamine + + + Track + Rada + + + Disc + Ketas + + + Year + Aasta + + + Original year + Algne aasta + + + Genre + Žanr + + + Comment + Märkus + + + Length + Kestus + + + Bitrate + Refers to bitrate in file organize dialog. + Bitikiirus + + + Sample rate + Diskreetimissagedus + + + Bit depth + Bitisügavus + + + File extension + Faililaiend + + + + OrganizeErrorDialog + + Error copying songs + Viga lugude kopeerimisel + + + There were problems copying some songs. The following files could not be copied: + Mõne loo kopeerimisel ilmnes probleeme. Järgnevaid faile ei kopeeritud: + + + Error deleting songs + Viga lugude kustutamisel + + + There were problems deleting some songs. The following files could not be deleted: + Mõne loo kustutamisel ilmnes probleeme. Järgnevaid faile ei kustutatud: + + + + ParserBase + + Don't know how to handle %1 + Ei tea, kuidas peaks kasutama: %1 + + + + PlayingWidget + + Small album cover + Väike kaanepilt + + + Large album cover + Suur kaanepilt + + + Fit cover to width + Sobita kaanepilt laiusega + + + Show above status bar + Kuva olekuriba kohal + + + + Playlist + + Could not write metadata to %1 + Metaandmete salvestamine faili „%1“ ei õnnestunud + + + Could not write metadata to %1: %2 + Metaandmete salvestamine faili „%1“ ei õnnestunud: %2 + + + Title + Pealkiri + + + Artist + Esitaja + + + Album + Album + + + Track + Rada + + + Disc + Ketas + + + Length + Kestus + + + Year + Aasta + + + Original Year + Algne aasta + + + Genre + Žanr + + + Album Artist + Albumi esitaja + + + Composer + Helilooja + + + Performer + Esineja + + + Grouping + Rühmitamine + + + Play Count + Esituskordi + + + Skip Count + Vahelejätmisi + + + Last Played + Viimati esitatud + + + Sample Rate + Diskreetimissagedus + + + Bit Depth + Bitisügavus + + + Bitrate + Bitikiirus + + + File Name + Faili nimi + + + File Name (without path) + Faili nimi (asukohata) + + + File Size + Faili suurus + + + File Type + Faili tüüp + + + Date Modified + Muutmise aeg + + + Date Created + Loomise aeg + + + Comment + Märkus + + + Source + Allikas + + + Mood + Meeleolu + + + Rating + Hinnang + + + CUE + CUE + + + Integrated Loudness + Integreeritud valjus + + + Loudness Range + Valjuse vahemik + + + + PlaylistContainer + + Form + Vorm + + + Undo + Võta tagasi + + + Redo + Tee uuesti + + + Playlist + Esitusloend + + + Load playlist + Laadi esitusloend + + + No matches found. Clear the search box to show the whole playlist again. + Vasteid ei leitud. Puhasta otsingukast, et näha kogu esitusloendit. + + + + PlaylistDelegateBase + + stop + peata + + + + PlaylistGeneratorInserter + + Loading smart playlist + Nutika esitusloendi laadimine + + + + PlaylistHeader + + &Hide... + &Peida... + + + &Stretch columns to fit window + &Sobita veerud akna laiusega + + + &Reset columns to default + &Lähtesta veerud vaikeväärtustele + + + &Lock rating + &Lukusta hinne + + + &Align text + &Joonda tekst + + + &Left + &Vasak + + + &Center + &Keskele + + + &Right + &Parem + + + &Hide %1 + &Peida %1 + + + + PlaylistListContainer + + Form + Vorm + + + New folder + Uus kaust + + + Delete + Kustuta + + + Save playlist + Save playlist menu action. + Salvesta esitusloend + + + Copy to device... + Kopeeri seadmesse... + + + Enter the name of the folder + Sisesta kausta nimi + + + Playlist + Esitusloend + + + Copy to device + Kopeeri seadmesse + + + Playlist must be open first. + Esitusloend peab esmalt olema avatud. + + + Remove playlists + Eemalda esitusloendid + + + You are about to remove %1 playlists from your favorites, are you sure? + Oled eemaldamas oma lemmikutest %1 esitusloendit. Kas oled kindel? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Esitusloendi saab määrata lemmikuks vajutades selle nime juures olevale täheikoonile + + + Favorited playlists will be saved here + Lemmikuks määratud esitusloendid salvestatakse siia + + + + PlaylistManager + + Playlist + Esitusloend + + + Couldn't create playlist + Esitusloendit ei saanud luua + + + Save playlist + Title of the playlist save dialog. + Salvesta esitusloend + + + Unknown playlist extension + Tundmatu esitusloendi laiend + + + Unknown file extension for playlist. + Esitusloendi jaoks tundmatu faililaiend. + + + %1 selected of + %1 on valitud + + + %n track(s) + + %n lugu + + + + + Unknown + Tundmatu + + + Various artists + Erinevad esitajad + + + + PlaylistParser + + All playlists (%1) + Kõik esitusloendid (%1) + + + %1 playlists (%2) + %1 esitusloendit (%2) + + + Unknown filetype: %1 + Tundmatu failitüüp: %1 + + + Could not open file %1 + Faili avamine ei õnnestu: %1 + + + Directory %1 does not exist. + „%1“ kausta pole olemas. + + + Failed to open %1 for writing. + %1 avamine salvestamiseks ei õnnestunud. + + + + PlaylistSaveOptionsDialog + + Playlist options + Esitusloendi valikud + + + File paths + Failide asukohad + + + This can be changed later through the preferences + Seda saab hiljem eelistuste kaudu muuta + + + Remember my choice + Jäta minu valik meelde + + + Automatic + Automaatne + + + Relative + Suhteline + + + Absolute + Absoluutne + + + + PlaylistSequence + + Repeat + Korda + + + Shuffle + Juhuesitus + + + Don't repeat + Ära korda + + + Repeat track + Korda lugu + + + Repeat album + Korda album + + + Repeat playlist + Korda esitusloend + + + Stop after each track + Peata pärast iga lugu + + + Intro tracks + Introd + + + Don't shuffle + Juhuesitus väljas + + + Shuffle tracks in this album + Selle albumi lugude juhuesitus + + + Shuffle all + Kõige juhuesitus + + + Shuffle albums + Albumite juhuesitus + + + + PlaylistSettingsPage + + Playlist + Esitusloend + + + Use alternating row colors + Kasuta vahelduvaid reavärve + + + Show bars on the currently playing track + Kuva hetkel esitataval lool riba + + + Show a glowing animation on the currently playing track + Kuva esitataval lool helendav kuma + + + Warn me when closing a playlist tab + Hoiata esitusloendi vahekaardi sulgemisel + + + Continue to the next item in the playlist if a song is unavailable + Kui lugu pole saadaval, jätka esitusloendi järgmise üksusega + + + Grey out unavailable songs in playlists on playback + Kuva kättesaamatud lood esitusloendites hallina + + + Grey out unavailable songs in playlists on startup + Kuva käivitamisel kättesaamatud lood esitusloendites hallina + + + Automatically select current playing track + Vali hetkel esitatav lugu automaatselt + + + Enable playlist toolbar + Luba esitusloendi tööriistariba + + + Enable playlist clear button + Luba esitusloendi tühjendamise nupp + + + Enable delete files in the right click context menu + Luba failide kustutamine paremklõpsuga kontekstimenüüs + + + Automatically sort playlist when inserting songs + Sordi esitusloend lugude sisestamisel automaatselt + + + When saving a playlist, file paths should be + Esitusloendi salvestamisel on failitee + + + A&utomatic + A&utomaatne + + + Absolu&te + Absoluut&ne + + + Re&lative + Suhteline + + + As&k when saving + Küsi salvestamisel + + + Metadata + Metaandmed + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Kui lubatud, saab esitusloendivaates valitud lool klõpsates sildi väärtust otse muuta + + + Enable song metadata inline edition with click + Luba klõpsates loo metaandmete muutmine + + + Write metadata when saving playlists + Salvesta metaandmed esitusloendite salvestamisel + + + + PlaylistTabBar + + Star playlist + Standardne + + + Close playlist + Sulge esitusloend + + + Rename playlist... + Nimeta esitusloend ümber... + + + Save playlist... + Salvesta esitusloend... + + + Rename playlist + Nimeta esitusloend ümber + + + Enter a new name for this playlist + Sisesta sellele esitusloendile uus nimi + + + Remove playlist + Eemalda esitusloend + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Oled eemaldamas esitusloendit, mis ei kuulu lemmikesitusloendite hulka: esitusloend kustutatakse (seda toimingut ei saa tagasi võtta). +Kas soovid jätkata? + + + Warn me when closing a playlist tab + Hoiata esitusloendi vahekaardi sulgemisel + + + This option can be changed in the "Behavior" preferences + Seda valikut saab muuta eelistustes "Käitumine" + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Selle esitusloendi lemmikuks lisamiseks topeltklõpsa siin. See salvestatakse ja jääb juurdepääsetavaks vasakpoolsel küljeribal oleva paneeli "Esitusloendid" kaudu + + + Playlist + Esitusloend + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + lisa %n lugu + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + liiguta %n lugu + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + eemalda %n lugu + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + lugude juhuesitus + + + + PlaylistUndoCommands::SortItems + + sort songs + sordi lugusi + + + + PlaylistView + + Hz + Hz + + + Bit + bitt + + + kbps + kbps + + + + QObject + + Usage + Kasutus + + + options + valikud + + + URL(s) + URL(id) + + + Player options + Meediamängija valikud + + + Start the playlist currently playing + Alusta hetkel esitatav esitusloend uuesti algusest + + + Play if stopped, pause if playing + Mängi, kui on peatatud, paus, kui mängitakse + + + Pause playback + Peata esitus + + + Stop playback + Peata taasesitus + + + Stop playback after current track + Peata taasesitus pärast praegust lugu + + + Skip backwards in playlist + Hüppa esitusloendis tagasi + + + Skip forwards in playlist + Hüppa esitusloendis edasi + + + Set the volume to <value> percent + Määra helitugevuseks <value> protsenti + + + Increase the volume by 4 percent + Heli valjemaks 4 protsenti + + + Decrease the volume by 4 percent + Heli vaiksemaks 4 protsenti + + + Increase the volume by <value> percent + Heli valjemaks <value> protsenti + + + Decrease the volume by <value> percent + Heli vaiksemaks <value> protsenti + + + Seek the currently playing track to an absolute position + Jätka praeguse loo esitust uuest absoluutsest asukohast + + + Seek the currently playing track by a relative amount + Jätka praeguse loo esitust uuest suhtelisest asukohast + + + Restart the track, or play the previous track if within 8 seconds of start. + Käivita lugu uuesti või esita eelmine lugu, kui see on 8 sekundi jooksul pärast alustamist. + + + Playlist options + Esitusloendi valikud + + + Create a new playlist with files + Loo uus esitusloend failidega + + + Append files/URLs to the playlist + Lisa failid/URL-id esitusloendisse + + + Loads files/URLs, replacing current playlist + Laadib failid/URL-id, asendades praeguse esitusloendi + + + Play the <n>th track in the playlist + Esita esitusloendi lugu nr <n> + + + Play given playlist + Esita antud esitusloendit + + + Other options + Muud valikud + + + Display the on-screen-display + Kuva ekraanigraafika + + + Toggle visibility for the pretty on-screen-display + Muuda ilusa ekraanimenüü nähtavust + + + Change the language + Muuda keelt + + + Resize the window + Muuda akna suurust + + + Equivalent to --log-levels *:1 + Võrdne käivitusvõtmega --log-levels *:1 + + + Equivalent to --log-levels *:3 + Võrdne käivitusvõtmega --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Komadega eraldatud loend klass:tase, kus tase võib olla 0-3 + + + Print out version information + Trüki teave käesoleva versiooni kohta + + + Failed to create directory %1. + Kataloogi %1 loomine ei õnnestunud. + + + Destination file %1 exists, but not allowed to overwrite. + Sihtfail %1 on olemas, kuid seda ei lubata üle kirjutada. + + + Destination file %1 exists, but not allowed to overwrite + Sihtfail %1 on olemas, kuid seda ei lubata üle kirjutada + + + Could not copy file %1 to %2. + Ei õnnestunud kopeerida faili %1 seadmesse %2. + + + Unknown + Tundmatu + + + LUFS + LUFS + + + LU + LU + + + File %1 is not recognized as a valid audio file. + Faili %1 ei tuvastatud kehtiva helifailina. + + + 1 day + 1 päev + + + %1 days + %1 päeva + + + Today + Täna + + + Yesterday + Eile + + + %1 days ago + %1 päeva tagasi + + + Tomorrow + Homme + + + In %1 days + %1 päeva jooksul + + + Next week + järgmisel nädalal + + + In %1 weeks + %1 nädala jooksul + + + Show in file browser + Kuva failihalduris + + + Too many songs selected. + Valitud on liiga palju lugusi. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + Valitud on %1 lugu %2 erinevas kataloogis. Kas oled kindel, et soovid need kõik avada? + + + Failed to load image from data for %1 + %1 jaoks ei õnnestunud andmetest tuvastada pildifaili + + + Success + Valmis + + + File is unsupported + Fail pole toetatud + + + Filename is missing + Faili nimi on puudu + + + File does not exist + Faili pole olemas + + + File could not be opened + Faili avamine ei õnnestunud + + + Could not parse file + Faili süntaksi analüüsimine ei õnnestunud + + + Could save file + Faili salvestamine ei õnnestunud + + + Unknown error + Tundmatu viga + + + Prefix a search term with a field name to limit the search to that field, e.g.: + Otsingusõnale välja nime lisamine võimaldab piirata otsingut selle väljaga, näiteks: + + + artist + esitaja + + + searches for all artists containing the word %1. + kõikide esitajate otsing, kus leidub %1. + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + Otsingu täpsustamiseks võib numbriväljade otsisõnade eesliiteks lisada %1 või %2, nt: + + + rating + hinnang + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + Mitut otsinguterminit saab kombineerida ka sõnadega "%1" (vaikimisi) ja "%2" ning rühmitada need sulgudega. + + + Available fields + Saadaolevad väljad + + + after + pärast + + + before + enne + + + on + kuupäeval + + + not on + ei ole kuupäeval + + + in the last + on vähem kui viimased + + + not in the last + on enam kui viimased + + + between + vahemikus + + + contains + sisaldab + + + does not contain + ei sisalda + + + starts with + alguses on + + + ends with + lõpus on + + + greater than + suurem kui + + + less than + on väiksem kui + + + equals + võrdub + + + not equals + ei võrdu + + + empty + tühi + + + not empty + pole tühi + + + Comment + Märkus + + + A-Z + A-Ü + + + Z-A + Z-A + + + oldest first + vanimad esimesena + + + newest first + uusim esimesena + + + shortest first + lühimad esimesena + + + longest first + pikim esimesena + + + smallest first + väikseim esimesena + + + biggest first + suurimad esimesena + + + Hours + tundi + + + Days + päeva + + + Weeks + nädalat + + + Months + kuud + + + Years + aastat + + + Normal + Tavaline + + + Angry + Vihane + + + Frozen + Külmunud + + + Happy + Õnnelik + + + System colors + Süsteemi värvid + + + + QWidget + + Clear + Puhasta + + + Reset + Lähtesta + + + + QobuzRequest + + Receiving artists... + Esitajate vastuvõtmine... + + + Receiving albums... + Albumite vastuvõtmine... + + + Receiving songs... + Lugude vastuvõtmine... + + + Searching... + Otsimine... + + + Receiving albums for %1 artist... + %1 esitaja albumite vastuvõtmine... + + + Receiving albums for %1 artists... + %1 esitaja albumite vastuvõtmine... + + + Receiving songs for %1 album... + %1 albumi lugude vastuvõtmine... + + + Receiving songs for %1 albums... + %1 albumi lugude vastuvõtmine... + + + Receiving album cover for %1 album... + %1 albumi kaanepildi vastuvõtmine... + + + Receiving album covers for %1 albums... + %1 albumi kaanepildi vastuvõtmine... + + + No match. + Vasteid ei leitud. + + + Unknown error + Tundmatu viga + + + + QobuzService + + Authenticating... + Autentimine... + + + Maximum number of login attempts reached. + Maksimaalne sisselogimiskatsete arv on täis. + + + Missing Qobuz app ID. + Qobuzi rakenduse ID puudub. + + + Missing Qobuz username. + Qobuzi kasutajanimi puudub. + + + Missing Qobuz password. + Qobuzi parool puudub. + + + Not authenticated with Qobuz. + Pole Qobuziga autentitud. + + + Missing Qobuz app ID or secret. + Qobuzi rakenduse ID või võti puudub. + + + + QobuzSettingsPage + + Qobuz + Qobuz + + + Enable + Luba + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Qobuzi tugi ei ole ametlik ja selle toimimiseks on vajalik rakenduse API ID ja registreeritud rakenduse võtit. Me ei saa aidata neid hankida. + + + Authentication + Autentimine + + + App ID + Rakenduse ID + + + Username + Kasutajanimi + + + Password + Parool + + + App Secret + Rakenduse võti + + + Login + Logi sisse + + + Preferences + Seadistused + + + Audio format + Heli vorming + + + Search delay + Otsingu viivitus + + + ms + ms + + + Artists search limit + Esitajate otsingu piirang + + + Albums search limit + Albumite otsingu piirang + + + Songs search limit + Lugude otsingu limiit + + + Download album covers + Laadi alla albumi kaanepilte + + + Base64 encoded secret + Base64 kodeeringus võti + + + Configuration incomplete + Seadistamine on pooleli + + + Missing app id. + Rakenduse ID puudub. + + + Missing username. + Kasutajanimi puudub. + + + Missing password. + Parool puudub. + + + Authentication failed + Autentimine ebaõnnestus + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Qobuzi rakenduse ID või võti puudub. + + + Cancelled. + Tühistatud. + + + + Queue + + %n track(s) + + %n lugu + + + + + + QueueView + + QueueView + Järjekorravaade + + + Move down + Liiguta alla + + + Ctrl+Up + Ctrl+Up + + + Move up + Liiguta üles + + + Ctrl+Down + Ctrl+Down + + + Remove + Eemalda + + + Clear + Puhasta + + + Ctrl+K + Ctrl+K + + + + RadioParadiseService + + Getting %1 channels + %1 kanali hankimine + + + + RadioView + + Append to current playlist + Lisa praegusesse esitusloendisse + + + Replace current playlist + Asenda praegune esitusloend + + + Open in new playlist + Ava uues esitusloendis + + + Open homepage + Ava koduleht + + + Donate + Anneta + + + Refresh channels + Värskenda kanaleid + + + + RadioViewContainer + + Form + Vorm + + + + SCollection + + Saving playcounts and ratings + Salvestame esituskordi ja hinnanguid + + + + SavePlaylistsDialog + + Select directory for saving playlists + Vali esitusloendite salvestamise kataloog + + + Type + Tüüp + + + Select directory for the playlists + Vali esitusloendite jaoks kataloog + + + Directory does not exist. + Kataloogi pole olemas. + + + + SavedGroupingManager + + Saved Grouping Manager + Salvestatud rühmituste haldur + + + Remove + Eemalda + + + Ctrl+Up + Ctrl+Up + + + Name + Nimi + + + First level + Esimene tase + + + Second Level + Teine tase + + + Third Level + Kolmas tase + + + None + Puudub + + + Album artist + Albumi esitaja + + + Artist + Esitaja + + + Album + Album + + + Album - Disc + Album – plaat + + + Year - Album + Aasta - Album + + + Year - Album - Disc + Aasta - Album - Plaat + + + Original year - Album + Algne aasta – album + + + Original year - Album - Disc + Algne aasta – album - plaat + + + Disc + Ketas + + + Year + Aasta + + + Original year + Algne aasta + + + Genre + Žanr + + + Composer + Helilooja + + + Performer + Esineja + + + Grouping + Rühmitamine + + + File type + Faili tüüp + + + Format + Vorming + + + Sample rate + Diskreetimissagedus + + + Bit depth + Bitisügavus + + + Bitrate + Bitikiirus + + + Unknown + Tundmatu + + + + ScrobblerSettingsPage + + Scrobbler + Kraasimine + + + Enable + Luba + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Lood kraasitakse, kui neil on kehtivad metaandmed ja need on pikemad kui 30 sekundit, neid on mängitud vähemalt pool kestusest või 4 minutit (olenevalt sellest, kumb saabub varem). + + + Work in offline mode (Only cache scrobbles) + Tööta võrguühenduseta režiimis (kraasi vahemällu) + + + Show scrobble button + Kuva kraasimise nupp + + + Show love button + Kuva meeldimise nupp + + + Submit scrobbles every + Saada kraasmed iga + + + seconds + sekundit + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (See on viivitus loo kraasimise ja selle serverisse esitamise vahel. Kui määrata ajaks 0 sekundit, esitatakse kraasimised kohe). + + + Prefer album artist when sending scrobbles + Kraasmete saatmisel eelista albumi esitajat + + + Show dialog for errors + Kuva veaaken + + + Strip "remastered" and similar from album and title + Eemalda albumi nimest ja loo pealkirjast „remastered“ ja muud sarnased sõnad + + + Enable scrobbling for the following sources: + Luba kraasimine järgmiste allikate jaoks: + + + Collection + Helikogu + + + Subsonic + Subsonic + + + Local file + Kohalik fail + + + Tidal + Tidal + + + Device + Seade + + + Qobuz + Qobuz + + + CDDA + CDDA + + + SomaFM + SomaFM + + + Stream + Voog + + + Radio Paradise + Radio Paradise + + + Unknown + Tundmatu + + + Last.fm + Last.fm + + + Login + Logi sisse + + + Libre.fm + Libre.fm + + + Listenbrainz + Listenbrainz + + + User token: + Kasutaja tunnuskood: + + + Enter your user token from + Sisesta oma tunnuskood saidilt + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 kraasija autentimine + + + Open URL in web browser? + Kas avada URL veebibrauseris? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + URL-i lõikepuhvrisse kopeerimiseks ja veebilehitsejas käsitsi avamiseks vajuta nuppu "Salvesta". + + + Could not open URL. Please open this URL in your browser + URL-i ei saanud avada. Ava see URL oma veebilehitseja + + + Invalid reply from web browser. Missing token. + Kehtetu vastus veebibrauserist. Tunnuskood puudub. + + + Received invalid reply from web browser. Try another browser. + Veebilehitsejast saadi vigane vastus. Proovi teist lehitsejat. + + + Scrobbler %1 is not authenticated! + Kraasija %1 ei ole autentitud! + + + Scrobbler %1 error: %2 + Kraasija %1 viga: %2 + + + + SettingsDialog + + Settings + Seaded + + + General + Üldine + + + User interface + Kasutajaliides + + + Streaming + Voogesitus + + + + SmartPlaylistQuerySearchPage + + Form + Vorm + + + Search mode + Otsingurežiim + + + Match every search term (AND) + Klapita iga otsingusõnaga (JA) + + + Match one or more search terms (OR) + Klapita ühe või enama otsingusõnaga (VÕI) + + + Include all songs + Kaasa kõik lood + + + Search terms + Otsisõnad + + + + SmartPlaylistQuerySortPage + + Form + Vorm + + + Sorting + Sortimine + + + Put songs in a random order + Pane lood juhuslikku järjekorda + + + Sort songs by + Lugude sortimise alus + + + Limits + Piirid + + + Show all the songs + Kuva kõik lood + + + Only show the first + Kuva ainult esimene + + + songs + lugu + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Helikogu otsing + + + Find songs in your collection that match the criteria you specify. + Otsi oma helikogust laule, mis vastavad määratud kriteeriumidele. + + + Search terms + Otsisõnad + + + A song will be included in the playlist if it matches these conditions. + Lugu lisatakse esitusloendisse, kui see vastab nendele tingimustele. + + + Search options + Otsingu valikud + + + Choose how the playlist is sorted and how many songs it will contain. + Vali, kuidas esitusloend sorditakse ja kui palju lugusid see sisaldab. + + + + SmartPlaylistSearchPreview + + Form + Vorm + + + Preview + Eelvaade + + + Loading... + Laadimine... + + + %1 songs found (showing %2) + %1 lugu leitud (näidatakse %2) + + + %1 songs found + %1 lugu leitud + + + + SmartPlaylistSearchTermWidget + + Form + Vorm + + + and + ja + + + ago + tagasi + + + The second value must be greater than the first one! + Teine väärtus peab olema suurem kui esimene! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Lisa otsingusõna + + + + SmartPlaylistWizard + + Smart playlist + Nutikas esitusloend + + + Playlist type + Esitusloendi tüüp + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Nutikas esitusloend on dünaamiline loend lugudest sinu helikogust. On olemas erinevat tüüpi nutikaid esitusloendeid, mis pakuvad erinevaid viise lugude valimiseks. + + + Finish + Lõpeta + + + Choose a name for your smart playlist + Vali oma nutikale esitusloendile nimi + + + + SmartPlaylistWizardFinishPage + + Form + Vorm + + + Name + Nimi + + + Use dynamic mode + Kasuta dünaamilist režiimi + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + Dünaamilises režiimis valitakse uued lood ja lisatakse need esitusloendisse iga kord, kui lugu lõpeb. + + + + SmartPlaylists + + Newest tracks + Uusimad lood + + + 50 random tracks + 50 juhuslikku lugu + + + Ever played + Läbi aegade esitatud + + + Never played + Pole esitatud + + + Last played + Viimati esitatud + + + Most played + Enim esitatud + + + Favourite tracks + Lemmiklood + + + All tracks + Kõik lood + + + Dynamic random mix + Dünaamiline juhuslik valik + + + + SmartPlaylistsViewContainer + + New smart playlist + Uus nutikas esitusloend + + + Edit smart playlist + Muuda nutikat esitusloendit + + + Delete smart playlist + Kustuta nutikas esitusloend + + + New smart playlist... + Uus nutikas esitusloend... + + + Append to current playlist + Lisa praegusesse esitusloendisse + + + Replace current playlist + Asenda praegune esitusloend + + + Open in new playlist + Ava uues esitusloendis + + + Queue track + Lisa järjekorda + + + Play next + Esita järgmisena + + + Edit smart playlist... + Muuda nutikat esitusloendit... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry töötab Snapina + + + It is detected that Strawberry is running as a Snap + Tuvastati, et Strawberry töötab Snapina + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry on aeglasem ja omab Snapina käitamisel piiranguid. Juurfailisüsteemile (/) ligipääs puudub. Samuti võivad kehtida muud piirangud, näiteks juurdepääs teatud seadmetele või võrgujagudele. + + + For Ubuntu there is an official PPA repository available at %1. + Ubuntu jaoks on ametlik PPA hoidla, mis on saadaval aadressil %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Ametlikud versioonid on saadaval Debiani ja Ubuntu jaoks, mis töötavad ka enamiku nende derivaatidega. Lisateabe saamiseks vaata %1. + + + For a better experience please consider the other options above. + Parema kasutuskogemuse saamiseks kaalu teisi ülaltoodud valikuid. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Varunda strawberry.conf ja strawberry.db kataloogist ~/snap, et vältida seadistuse kaotamist enne snapi eemaldamist: + + + Uninstall the snap with: + Eemalda snap koos: + + + Install strawberry through PPA: + Paigalda Strawberry PPA kaudu: + + + + SomaFMService + + Getting %1 channels + %1 kanali hankimine + + + + SongLoader + + You need GStreamer for this URL. + Selle URL-i jaoks vajad GStreamerit. + + + Preload function was not set for blocking operation. + Eellaadimise funktsionaalsus polnud määratud blokeerimiseks. + + + File %1 does not exist. + Faili %1 pole olemas. + + + CD playback is only available with the GStreamer engine. + CD taasesitus on võimalik ainult GStreameri mootoriga. + + + Could not open file %1 for reading: %2 + Ei õnnestunud avada %1 faili lugemiseks: %2 + + + Could not open CUE file %1 for reading: %2 + Ei õnnestunud avada CUE faili %1 lugemiseks: %2 + + + Could not open playlist file %1 for reading: %2 + Esitusloendi faili %1 ei õnnestunud lugemiseks avada: %2 + + + Couldn't create GStreamer source element for %1 + GStreameri lähteelemendi loomine %1 jaoks nurjus + + + Couldn't create GStreamer typefind element for %1 + GStreameri typefind elemendi loomine %1 jaoks nurjus + + + Couldn't create GStreamer fakesink element for %1 + GStreameri fakesink elemendi loomine %1 jaoks nurjus + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + GStreameri fakesink, typefind ja lähteelementide linkimine %1 jaoks nurjus + + + + SongLoaderInserter + + Error while loading audio CD. + Viga audio CD laadimisel. + + + Loading tracks + Radade laadimine + + + Loading tracks info + Lugude teabe laadimine + + + + SpotifyRequest + + Authenticating... + Autentimine... + + + Receiving artists... + Esitajate vastuvõtmine... + + + Receiving albums... + Albumite vastuvõtmine... + + + Receiving songs... + Lugude vastuvõtmine... + + + Searching... + Otsimine... + + + Receiving albums for %1 artist... + %1 esitaja albumite vastuvõtmine... + + + Receiving albums for %1 artists... + %1 esitaja albumite vastuvõtmine... + + + Receiving songs for %1 album... + %1 albumi lugude vastuvõtmine... + + + Receiving songs for %1 albums... + %1 albumi lugude vastuvõtmine... + + + Receiving album cover for %1 album... + %1 albumi kaanepildi vastuvõtmine... + + + Receiving album covers for %1 albums... + %1 albumi kaanepildi vastuvõtmine... + + + No match. + Vasteid ei leitud. + + + Data missing error + Viga: andmed puuduvad + + + + SpotifyService + + Spotify Authentication + Spotify autentimine + + + Please open this URL in your browser + Ava see URL oma veebilehitsejas + + + Redirect missing token code or state! + Suuna puuduv tunnuskood või olek ümber! + + + Received invalid reply from web browser. + Veebilehitsejast saadi vigane vastus. + + + Not authenticated with Spotify. + Pole Spotifyga autenditud. + + + + SpotifySettingsPage + + Spotify + Spotify + + + Enable + Luba + + + Basic authentication + Lihtne autentimine + + + Authenticate + Autendi + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + <html><head/><body><p>GStreameri Spotify pistikprogrammi ei õnnestu tuvastada, aga Spotify voogedastus ilma selleta ei toimi. Lisateavet leiad: <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;"></span></a> selle pistikprogrammi paigaldamise lehelt meie vikis.</p></body></html> + + + Preferences + Seadistused + + + Search delay + Otsingu viivitus + + + ms + ms + + + Artists search limit + Esitajate otsingu piirang + + + Albums search limit + Albumite otsingu piirang + + + Songs search limit + Lugude otsingu limiit + + + Download album covers + Laadi alla albumi kaanepilte + + + Fetch entire albums when searching songs + Lugude otsimisel hangi terved albumid + + + Authentication failed + Autentimine ebaõnnestus + + + + StreamingCollectionView + + The streaming collection is empty! + Voogesituste kogu on tühi! + + + Click here to retrieve music + Muusika hankimiseks klõpsa siia + + + Append to current playlist + Lisa praegusesse esitusloendisse + + + Replace current playlist + Asenda praegune esitusloend + + + Open in new playlist + Ava uues esitusloendis + + + Queue track + Lisa järjekorda + + + Queue to play next + Lisa järgmiseks esitamiseks järjekorda + + + Remove from favorites + Eemalda lemmikutest + + + + StreamingCollectionViewContainer + + Form + Vorm + + + Close + Sulge + + + Abort + Katkesta + + + Refresh catalogue + Värskenda kataloog + + + + StreamingSearchModel + + Various artists + Erinevad esitajad + + + + StreamingSearchView + + Streaming Search View + Voogedastuse otsinguvaade + + + MenuPopupToolButton + MenuPopupToolButton + + + artists + esitajad + + + albums + albumit + + + songs + lugu + + + Enter search terms above to find music + Muusika leidmiseks sisesta üles otsingusõnad + + + Configure %1... + Seadista %1... + + + Append to current playlist + Lisa praegusesse esitusloendisse + + + Replace current playlist + Asenda praegune esitusloend + + + Open in new playlist + Ava uues esitusloendis + + + Queue track + Lisa järjekorda + + + Add to artists + Lisa esitajate hulka + + + Add to albums + Lisa albumitesse + + + Add to songs + Lisa lugude hulka + + + Search for this + Otsi seda + + + Group by + Rühmitamise alus + + + + StreamingSongsView + + Configure %1... + Seadista %1... + + + + StreamingTabsView + + Streaming Tabs View + Voogedastuse kaardivaade + + + Artists + Esitajad + + + Albums + Albumid + + + Songs + lugu + + + Search + Otsing + + + Configure %1... + Seadista %1... + + + + SubsonicRequest + + Retrieving albums... + Albumite toomine... + + + Retrieving songs for %1 album... + %1 albumi lugude toomine... + + + Retrieving songs for %1 albums... + %1 albumi lugude toomine... + + + Retrieving album cover for %1 album... + Kaanepildi toomine albumile %1... + + + Retrieving album covers for %1 albums... + Kaanepiltide toomine albumitele %1... + + + Unknown error + Tundmatu viga + + + + SubsonicService + + Server URL is invalid. + Serveri URL on vigane. + + + Missing username or password. + Kasutajanimi või parool puudub. + + + + SubsonicSettingsPage + + Subsonic + Subsonic + + + Enable + Luba + + + Server URL + Serveri URL + + + Authentication + Autentimine + + + Username + Kasutajanimi + + + Password + Parool + + + Authentication method: + Autentimise viis: + + + Hex + Hex + + + MD5 token (Recommended) + MD5 tunnuskood (soovitatav) + + + Preferences + Seadistused + + + Use HTTP/2 when possible + Kasuta võimalusel HTTP/2 + + + Verify server certificate + Kontrolli serveri sertifikaati + + + Download album covers + Laadi alla albumi kaanepilte + + + Server-side scrobbling + Serveripoolne kraasimine + + + Test + Testi + + + Delete songs + Kustuta lood + + + Configuration incomplete + Seadistamine on pooleli + + + Missing server url, username or password. + Serveri URL, kasutajanimi või parool puudub. + + + Configuration incorrect + Seadistus on vale + + + Server URL is invalid. + Serveri URL on vigane. + + + Test successful! + Test õnnestus! + + + Test failed! + Test ebaõnnestus! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Subsonici serveri URL on kehtetu. + + + Missing Subsonic username or password. + Subsonic kasutajanimi või parool puudub. + + + + SystemTrayIcon + + Pause + Paus + + + Play + Mängi + + + + TagFetcher + + Identifying song + Tuvastame laulu + + + Fingerprinting song + Sõrmejäljestame lugu + + + Downloading metadata + Laadime alla metaandmeid + + + + TidalRequest + + Authenticating... + Autentimine... + + + Receiving artists... + Esitajate vastuvõtmine... + + + Receiving albums... + Albumite vastuvõtmine... + + + Receiving songs... + Lugude vastuvõtmine... + + + Searching... + Otsimine... + + + Receiving albums for %1 artist... + %1 esitaja albumite vastuvõtmine... + + + Receiving albums for %1 artists... + %1 esitaja albumite vastuvõtmine... + + + Receiving songs for %1 album... + %1 albumi lugude vastuvõtmine... + + + Receiving songs for %1 albums... + %1 albumi lugude vastuvõtmine... + + + Receiving album cover for %1 album... + %1 albumi kaanepildi vastuvõtmine... + + + Receiving album covers for %1 albums... + %1 albumi kaanepildi vastuvõtmine... + + + No match. + Vasteid ei leitud. + + + + TidalService + + Reply from Tidal is missing query items. + Tidali vastuses puuduvad päringuüksused. + + + Missing Tidal API token. + Tidali API tunnuskood puudub. + + + Missing Tidal username. + Tidali kasutajanimi puudub. + + + Missing Tidal password. + Tidali parool puudub. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Tidalis autentimata ja maksimaalne sisselogimiskatsete arv on täis. + + + Not authenticated with Tidal. + Pole Tidaliga autentitud. + + + Missing Tidal API token, username or password. + Puuduv Tidal API tunnuskood, kasutajanimi või parool. + + + + TidalSettingsPage + + Tidal + Tidal + + + Enable + Luba + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Tidali tugi ei ole ametlik ja selle toimimiseks on vaja registreeritud rakenduse API tunnuskood. Meie ei saa aidata neid hankida. + + + Authentication + Autentimine + + + Use OAuth + Kasuta OAuth + + + Client ID + Kliendi ID + + + API Token + API tunnuskood + + + Username + Kasutajanimi + + + Password + Parool + + + Login + Logi sisse + + + Preferences + Seadistused + + + Audio quality + Heli kvaliteet + + + Search delay + Otsingu viivitus + + + ms + ms + + + Artists search limit + Esitajate otsingu piirang + + + Albums search limit + Albumite otsingu piirang + + + Songs search limit + Lugude otsingu limiit + + + Download album covers + Laadi alla albumi kaanepilte + + + Fetch entire albums when searching songs + Lugude otsimisel hangi terved albumid + + + Album cover size + Kaanepildi suurus + + + Stream URL method + Voo URL-i meetod + + + Append explicit to album title for explicit albums + Lisa vajadusel albumi nimele silt 'explicit' + + + Configuration incomplete + Seadistamine on pooleli + + + Missing Tidal client ID. + Tidali kliendi ID puudub. + + + Missing API token. + API tunnuskood puudub. + + + Missing username. + Kasutajanimi puudub. + + + Missing password. + Parool puudub. + + + Authentication failed + Autentimine ebaõnnestus + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Pole Tidaliga autentitud. + + + Missing Tidal API token, username or password. + Puuduv Tidal API tunnuskood, kasutajanimi või parool. + + + Cancelled. + Tühistatud. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Tidalilt saabus URL %1 krüptitud vooga . Strawberry ei toeta praegu krüptitud vooge. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Tidalilt saabus URL krüptitud vooga . Strawberry ei toeta praegu krüptitud vooge. + + + + TrackSelectionDialog + + Tag fetcher + Siltide laadija + + + Sorry + Vabandust + + + Strawberry was unable to find results for this file + Strawberry ei leidnud selle faili jaoks tulemusi + + + Select best possible match + Vali parim võimalik vaste + + + Track + Rada + + + Year + Aasta + + + Title + Pealkiri + + + Artist + Esitaja + + + Album + Album + + + Previous + Eelmine + + + Next + Järgmine + + + Original tags + Algsed sildid + + + Suggested tags + Soovitatud sildid + + + Saving tracks + Lugude salvestamine + + + + TrackSlider + + Form + Vorm + + + 0:00:00 + 0:00:00 + + + Click to toggle between remaining time and total time + Klõpsa järelejäänud aja ja kestuse vahel vahetamiseks + + + + TranscodeDialog + + Transcode Music + Teisenda muusikat + + + Files to transcode + Teisendatavad failid + + + Filename + Faili nimi + + + Directory + Kataloog + + + Add... + Lisa... + + + Remove + Eemalda + + + Add all tracks from a directory and all its subdirectories + Lisa kõik lood kataloogist ja kõigist selle alamkataloogidest + + + Import... + Impordi... + + + Output options + Väljundi valikud + + + Audio format + Heli vorming + + + Options... + Valikud... + + + Destination + Sihtkoht + + + Alongside the originals + Lähtefailide kõrval + + + Select... + Vali... + + + Progress + Edenemine + + + Details... + Üksikasjad... + + + Clear + Puhasta + + + Start transcoding + Alusta teisendamist + + + %n remaining + + jäänud %n + + + + + %n finished + + %n lõpetatud + + + + + %n failed + + %n ebaõnnestus + + + + + Add files to transcode + Lisa failid teisendamiseks + + + Music + Muusika + + + Open a directory to import music from + Ava kataloog, kust muusika importida + + + Add folder + Lisa kaust + + + + TranscodeLogDialog + + Transcoder Log + Teisendamise logi + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Ei suutnud luua GStreamer'i elementi "%1" - palun kontrolli, et arvutis oleks paigaldatud kõik vajalikud GStreamer'i pistikprogrammid + + + Successfully written %1 + Kodeerimine õnnestus: %1 + + + Transcoding %1 files using %2 threads + Teisendatakse %1 faili kasutades %2 lõime + + + Error processing %1: %2 + Viga %1 töötlemisel: %2 + + + Starting %1 + Käivitatakse %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Ei leidnud kodeerijat %1 jaoks, palun kontrolli et arvutis oleks paigaldatud õiged GStreamer'i pistikprogrammid + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Ei leidnud mukserit %1 jaoks, palun kontrolli et arvutis oleks paigaldatud õiged GStreamer'i pistikprogrammid + + + + TranscoderOptionsAAC + + Form + Vorm + + + Bitrate + Bitikiirus + + + kbps + kbps + + + Profile + Profiil + + + Main profile (MAIN) + Põhiprofiil (MAIN) + + + Low complexity profile (LC) + Vähese keerukusega profiil (LC) + + + Scalable sampling rate profile (SSR) + Skaleeritava diskreetimissageduse profiil (Scalable sampling rate profile - SSR) + + + Long term prediction profile (LTP) + Pikaajalisel ennustusel põhinev profiil (LTP) + + + Use temporal noise shaping + Kasuta ajutist müravormimist (temporal noise shaping) + + + Allow mid/side encoding + Luba keskmist/külgmist kodeerimist (mid/side encoding) + + + Block type + Blokitüüp + + + Normal block type + Tavaline blokitüüp + + + No short blocks + Ära kasuta lühikesi blokke + + + No long blocks + Ära kasuta pikki blokke + + + + TranscoderOptionsASF + + Form + Vorm + + + Bitrate + Bitikiirus + + + kbps + kbps + + + + TranscoderOptionsDialog + + Transcoding options + Teisendamise valikud + + + + TranscoderOptionsFLAC + + Form + Vorm + + + Quality + Sound quality + Kvaliteet + + + Fast + Kiire + + + Best + Parim + + + + TranscoderOptionsMP3 + + Form + Vorm + + + Optimize for &quality + Optimeerige kvaliteedile + + + Quality + Sound quality + Kvaliteet + + + Opti&mize for bitrate + Optimeeri bitikiirusele + + + Bitrate + Bitikiirus + + + kbps + kbps + + + Constant bitrate + Ühtlane bitikiirus + + + Encoding engine quality + Kodeerimismootori kvaliteet + + + Fast + Kiire + + + Standard + Tavaline + + + High + Kõrge + + + Force mono encoding + Sunni monoheli + + + + TranscoderOptionsOpus + + Form + Vorm + + + Bitrate + Bitikiirus + + + kbps + kbps + + + + TranscoderOptionsSpeex + + Form + Vorm + + + Quality + Sound quality + Kvaliteet + + + Bitrate + Bitikiirus + + + automatic + automaatne + + + kbps + kbps + + + Average bitrate + Keskmine bitikiirus + + + disabled + keelatud + + + Encoding mode + Kodeerimisrežiim + + + Auto + Automaatne + + + Ultra wide band (UWB) + Ülilairiba (UWB) + + + Wide band (WB) + Lairiba (WB) + + + Narrow band (NB) + Kitsasribaühendus (NB) + + + Variable bit rate + Varieeruv bitikiirus + + + Voice activity detection + Häältegevuse tuvastamine + + + Discontinuous transmission + Katkestustega edastamine + + + Encoding complexity + Kodeerimise keerukus + + + Frames per buffer + Kaadreid puhvri kohta + + + + TranscoderOptionsVorbis + + Form + Vorm + + + Quality + Sound quality + Kvaliteet + + + Use bitrate management engine + Kasuta bitikiiruse haldust + + + Target bitrate + Sihtbitikiirus + + + kbps + kbps + + + Minimum bitrate + Vähim bitikiirus + + + disabled + keelatud + + + Maximum bitrate + Suurim bitikiirus + + + + TranscoderOptionsWavPack + + Form + Vorm + + + + TranscoderSettingsPage + + Transcoding + Teisendamine + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Neid sätteid kasutatakse aknas "Teisenda muusikat" ja muusika teisendamisel enne selle seadmesse kopeerimist. + + + FLAC + FLAC + + + WavPack + WavPack + + + Vorbis + Vorbis + + + Opus + Opus + + + Speex + Speex + + + AAC + AAC + + + ASF (WMA) + ASF (WMA) + + + MP3 + MP3 + + + + Udisks2Lister + + D-Bus path + D-Bus asukoht + + + Serial number + Seerianumber + + + Mount points + Haakepunktid + + + Partition label + Partitsiooni silt + + + UUID + UUID + + + + UserPassDialog + + Enter username and password + Sisesta kasutajanimi ja parool + + + Username + Kasutajanimi + + + Password + Parool + + + diff --git a/src/translations/strawberry_fi_FI.ts b/src/translations/strawberry_fi_FI.ts new file mode 100644 index 00000000..c27b9285 --- /dev/null +++ b/src/translations/strawberry_fi_FI.ts @@ -0,0 +1,7569 @@ + + + + + About + + About + Tietoa + + + About Strawberry + Tietoa Strawberrystä + + + Version %1 + Versio %1 + + + Strawberry is a music player and music collection organizer. + + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Sinun pitäisi olla saanut kopio GNU:n GPL -lisenssistä tämän ohjelman mukana. Jos et, katso %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Jos pidät Strawberrystä ja sinulla on sille käyttöä, harkitse sponsorointia tai lahjoitusta. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Voit sponsoroida tekijää %1:ssa. Voit myös tehdä kertalahjoituksen osoiteessa %2. + + + Author and maintainer + Tekijä ja ylläpitäjä + + + Contributors + Tekijät + + + Clementine authors + Clementinen tekijät + + + Clementine contributors + Clementinen tekijät + + + Thanks to + Kiitos + + + Thanks to all the other Amarok and Clementine contributors. + Kiitos kaikille muille Amarokin ja Clementinen kehittäjille. + + + + AddStreamDialog + + Add Stream + Lisää virta + + + Enter the URL of a stream: + Syötä virran URL: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Kuvat (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Kuvat (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Kaikki tiedostot (*) + + + Load cover from disk... + Lataa kansikuva levyltä... + + + Save cover to disk... + Tallenna levyn kansikuva kiintolevylle... + + + Load cover from URL... + Lataa kansikuva osoitteesta... + + + Search for album covers... + Etsi kansikuvia... + + + Unset cover + Poista kansikuva + + + Delete cover + + + + Clear cover + + + + Show fullsize... + Näytä oikeassa koossa... + + + Search automatically + Etsi automaattisesti + + + Load cover from disk + Lataa kansikuva levyltä + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + tuntematon + + + Save album cover + Tallenna albumin kansikuva + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Vie kansikuvat + + + Output + Ulostulo + + + Enter a filename for exported covers (no extension): + Syötä tiedostonimi kansille (ei tiedostopäätettä): + + + Export downloaded covers + Vie ladatut kansikuvat + + + Export embedded covers + Vie upotetut kansikuvat + + + Existing covers + Olemassa olevat kansikuvat + + + Do not overwrite + Älä korvaa + + + O&verwrite all + + + + Overwrite s&maller ones only + + + + Size + Koko + + + Scale size + Skaalaa koko + + + Size: + Koko: + + + Pixel + Pikseli + + + + AlbumCoverManager + + Abort + Keskeytä + + + All albums + Kaikki albumit + + + Albums with covers + Albumit kansikuvineen + + + Albums without covers + Albumit vailla kansikuvia + + + Really cancel? + Haluatko todella perua? + + + Closing this window will stop searching for album covers. + Tämän ikkunan sulkeminen lopettaa albumikansien etsimisen. + + + Don't stop! + Älä lopeta! + + + All artists + Kaikki esittäjät + + + Various artists + Useita esittäjiä + + + Got %1 covers out of %2 (%3 failed) + Löydetty %1 / %2 kansikuvaa (%3 epäonnistui) + + + %1 transferred + %1 siirretty + + + Export finished + Vienti valmistui + + + No covers to export. + Ei kansikuvia vietäväksi. + + + Exported %1 covers out of %2 (%3 skipped) + Vietiin %1/%2 kansikuvaa (%3 ohitettu) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Kansikuvaselain + + + Artist + Esittäjä + + + Album + Albumi + + + Search + Etsi + + + Covers from %1 + Kansikuvat kohteesta %1 + + + Abort + Keskeytä + + + + AnalyzerContainer + + Framerate + Kuvanopeus + + + Low (%1 fps) + Hidas (%1 fps) + + + Medium (%1 fps) + Keskitaso (%1 fps) + + + High (%1 fps) + Nopea (%1 fps) + + + Super high (%1 fps) + Erittäin nopea (%1 fps) + + + No analyzer + Ei visualisointia + + + Block analyzer + + + + Boom analyzer + + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Ulkoasu + + + Style + Tyyli + + + Use system theme icons + Käytä järjestelmäteeman kuvakkeita + + + Settings require restart. + + + + Tabbar colors + Välilehtipalkin värit + + + &Use the system default color + Käytä järjestelmän oletusväriä + + + Use custom color + Käytä omaa väriä + + + Use gradient background + Käytä liukuväriä taustana + + + Select tabbar color: + + + + Background image + Taustakuva + + + Default bac&kground image + + + + &No background image + Ei taustakuvaa + + + The album cover of the currently playing song + Parhaillaan soivan kappaleen albumin kansikuva + + + Albu&m cover + Albu&min kansikuva + + + Custom image: + Omavalintainen kuva: + + + Browse... + Selaa... + + + Position + Sijainti + + + Upper Left + Vasen yläkulma + + + Upper Right + Oikea yläkulma + + + Middle + Keskellä + + + Bottom Left + Vasen alakulma + + + Bottom Right + Oikea alakulma + + + Max cover size + Kansikuvan maksimikoko + + + Stretch image to fill playlist + Venytä kuva soittolistan kokoiseksi + + + Keep aspect ratio + Säilytä kuvasuhde + + + Do not cut image + Älä leikkaa kuvaa + + + Blur amount + Sumennuksen määrä + + + 0px + + + + Opacity + Läpinäkyvyys + + + 40% + 40 % + + + Icon sizes + Kuvakkeen koot + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + Valitse taustakuva + + + + BackendSettingsPage + + Backend + + + + Audio output + Äänen ulostulo + + + Device + Laite + + + Output + Ulostulo + + + Engine + Moottori + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + Puskuri + + + ms + + + + Buffer duration + Puskurin kesto + + + High watermark + + + + Low watermark + Alaraja + + + Defaults + Oletusasetukset + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + Käytä Replay Gainin metatietoja, jos saatavilla + + + Replay Gain mode + Replay Gain -tila + + + Radio (equal loudness for all tracks) + Radio (sama äänenvoimakkuus kaikille kappaleille) + + + Album (ideal loudness for all tracks) + Albumi (ihanteellinen voimakkuus kaikille kappaleille) + + + Pre-amp + Esivahvistus + + + Apply compression to prevent clipping + Lisää vaimennusta äänisignaalin leikkautumisen estämiseksi + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Häivytys + + + Fade out when stopping a track + Häivytä, kun kappale pysäytetään + + + Cross-fade when changing tracks manually + Ristiinhäivytä kappaleet, kun käyttäjä vaihtaa kappaletta + + + Cross-fade when changing tracks automatically + Ristiinhäivytä kappaleet, kun kappale vaihtuu automaattisesti + + + Except between tracks on the same album or in the same CUE sheet + Älä käytä ristihäivytystä samalla albumilla tai samassa CUE-tiedostossa oleville kappaleille + + + Fading duration + Häivytyksen kesto + + + Fade out on pause / fade in on resume + Häivytä keskeyttäessä ja palauttaessa kappaleen toisto + + + + BehaviourSettingsPage + + Behavior + Toiminta + + + Show system tray icon + + + + Keep running in the background when the window is closed + Pidä käynnissä taustalla, kun ikkuna suljetaan + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + Jatka toistoa sovelluksen käynnistyttyä + + + Show playing widget + + + + On startup + Käynnistyksessä + + + Remember from &last time + Muista &viime kerrasta + + + Show the main window + Näytä pääikkuna + + + Hide the main window + Piilota pääikkuna + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + Kieli + + + Use the system default + Käytä järjestelmän oletusta + + + You will need to restart Strawberry if you change the language. + Strawberry tulee käynnistää uudelleen, jos vaihdat kieltä. + + + Using the menu to add a song will... + Valikon avulla kappaleen lisäys... + + + Never start playing + Älä koskaan aloita toistoa + + + Play if there is nothing already playing + Aloita toisto, jos mikään ei soi parhaillaan + + + Always start playing + Aloita aina toisto + + + Pressing "Previous" in player will... + Soittimen "Edellinen"-painiketta painettaessa... + + + Jump to previous song right away + Siirry edelliseen kappaleeseen välittömästi + + + Restart song, then jump to previous if pressed again + Käynnistä kappale uudelleen, siirry edelliseen jos painetaan uudellaan + + + Double clicking a song will... + Kappaleen kaksoisnapsautus... + + + Append to the playlist + Lisää soittolistalle + + + Replace the playlist + Korvaa soittolista + + + Open in new playlist + Avaa uudessa soittolistassa + + + Add to the queue + Lisää jonoon + + + Double clicking a song in the playlist will... + Soittolistalla olevaa kappaletta kaksoisnapsauttaessa... + + + Change the currently playing song + Vaihda parhaillaan toistettavaa kappaletta + + + Seeking using a keyboard shortcut or mouse wheel + Siirtyminen näppäimistön pikanäppäimiä tai hiiren rullaa käyttäen + + + Time step + Aikasiirtymä + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + CDDA-raitojen kysely epäonnistui. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + Kokoelmasuodatin + + + Enter search terms here + Etsi tästä + + + MenuPopupToolButton + + + + Entire collection + Koko kokoelma + + + Added today + Lisätty tänään + + + Added this week + Lisätty tällä viikolla + + + Added within three months + Lisätty kolmen kuukauden sisään + + + Added this year + Lisätty tänä vuonna + + + Added this month + Lisätty tässä kuussa + + + Save current grouping + Tallenna nykyinen ryhmittely + + + Manage saved groupings + Hallitse tallennettuja ryhmittelyjä + + + Show + Näytä + + + Group by + Järjestä + + + Display options + Näkymäasetukset + + + Group by Album artist/Album + Ryhmitä albumin esittäjän/albumin mukaan + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + Järjestä esittäjän/albumin mukaan + + + Group by Artist/Album - Disc + + + + Group by Artist/Year - Album + Järjestä esittäjän/vuoden - albumin mukaan + + + Group by Artist/Year - Album - Disc + + + + Group by Genre/Album artist/Album + + + + Group by Genre/Artist/Album + Järjestä tyylin/esittäjän/albumin mukaan + + + Group by Album Artist + Ryhmitä albumin esittäjän perusteella + + + Group by Artist + Järjestä esittäjän mukaan + + + Group by Album + Järjestä albumin mukaan + + + Group by Genre/Album + Järjestä tyylin/albumin mukaan + + + Advanced grouping... + Kirjaston tarkempi järjestely... + + + Grouping Name + Ryhmittelyn nimi + + + Grouping name: + Ryhmittelyn nimi: + + + + CollectionModel + + Various artists + Useita esittäjiä + + + Loading... + Ladataan... + + + Unknown + Tuntematon + + + + CollectionSettingsPage + + Collection + Kirjasto + + + These folders will be scanned for music to make up your collection + Seuraavista kansioista lisätään musiikkia kirjastoa varten + + + Add new folder... + Lisää uusi kansio... + + + Remove folder + Poista kansio + + + Automatic updating + Automaattinen päivitys + + + Update the collection when Strawberry starts + Päivitä kirjasto Strawberry käynnistyessä + + + Monitor the collection for changes + Tarkkaile kirjastoa muutosten varalta + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + Ensisijainen tiedostonimi albumikuvitukselle (pilkuin eroteltu) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Albumikuvitusta etsiessä Strawberry etsii kuvatiedostoja, jotka sisältävät yhden näistä sanoista. +Jos vastaavia tiedostoja ei löydy, Strawberry käyttää suurinta kansiossa olevaa kuvaa. + + + Display options + Näkymäasetukset + + + Automatically open single categories in the collection tree + Laajenna automaattisesti yhden alitason sisältävät kohteet kirjaston puunäkymässä + + + Show dividers + Näytä erottimet + + + Show album cover art in collection + + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Albumien kansikuvien välimuisti + + + Size + Koko + + + Enable Disk Cache + Ota levyvälimuisti käyttöön + + + Disk Cache Size + Levyvälimuistin koko + + + Current disk cache in use: + Levyvälimuistia käytössä: + + + Clear Disk Cache + Tyhjennä levyvälimuisti + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + + + + Add directory... + Lisää kansio... + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + Kirjasto on tyhjä! + + + Click here to add some music + Napsauta tästä lisätäksesi musiikkia + + + Append to current playlist + Lisää nykyiselle soittolistalle + + + Replace current playlist + Korvaa nykyinen soittolista + + + Open in new playlist + Avaa uudessa soittolistassa + + + Queue track + Aseta kappale jonoon + + + Queue to play next + Toistojonoon + + + Search for this + Hae tätä + + + Organize files... + + + + Copy to device... + Kopioi laitteelle... + + + Delete from disk... + Poista levyltä... + + + Edit track information... + Muokkaa kappaleen tietoja... + + + Edit tracks information... + Muokkaa kappaleen tietoja... + + + Show in file browser... + Näytä tiedostoselaimessa... + + + Rescan song(s) + + + + Show in various artists + Näytä kohdassa "Useita esittäjiä" + + + Don't show in various artists + Älä näytä kohdassa "Useita esittäjiä" + + + There are other songs in this album + Albumilla on muita kappaleita + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + Virhe + + + None of the selected songs were suitable for copying to a device + Yksikään valitsemistasi kappaleista ei sovellu kopioitavaksi laitteelle + + + + CollectionViewContainer + + Form + Lomake + + + + CollectionWatcher + + Updating collection + Päivitetään kirjastoa + + + Updating %1 + Päivitetään %1 + + + + Console + + Console + Konsoli + + + Run + Aja + + + + ContextSettingsPage + + Context + Konteksti + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + Nimi + + + Summary + Yhteenveto + + + Enable Items + + + + Album + Albumi + + + Technical Data + Tekniset tiedot + + + Song Lyrics + Laulunsanat + + + Automatically search for album cover + Etsin kansikuvia automaattisesti + + + Automatically search for song lyrics + Etsi laulunsanoja automaattisesti + + + Font for headline + Otsikon fontti + + + Font + Kirjasin + + + Font size + Fontin koko + + + pt + pt + + + Preview + Esikatselu + + + Font for data and lyrics + + + + Add song artist tag + Lisää tunniste kappaleen esittäjä + + + Add song album tag + Lisää tunniste levyn nimi + + + Add song title tag + Lisää tunniste kappaleen nimi + + + Add song albumartist tag + Lisää tunniste levyn esittäjä + + + Add song year tag + Lisää kappaleen levytysvuoden tunniste + + + Add song composer tag + Lisää tunniste kappaleen säveltäjä + + + Add song performer tag + Lisää tunniste kappaleen esittäjä + + + Add song grouping tag + Lisää tunniste kappaleen ryhmitys + + + Add song disc tag + Lisää levyn numeron tunniste + + + Add song track tag + Lisää tunniste + + + Add song genre tag + Lisää tunniste kappaleen kategoria + + + Add song length tag + Lisää tunniste kappaleen kesto + + + Add song play count + Lisää kappaleen toistolaskuri + + + Add song skip count + Lisää kappaleen keskeyttämislaskuri + + + Add a new line if supported by the notification type + Lisää uusi rivi, jos ilmoitustyyppi sen sallii + + + %filename% + + + + Add song filename + Lisää kappaleen tiedostonimi + + + %url% + + + + Add song URL + Lisää kappaleen osoite + + + %rating% + + + + Add song rating + Lisää kappaleelle arvosana + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + Tiedoston tyyppi + + + Length + Kesto + + + Samplerate + Näytteenottotaajuus + + + Bit depth + Bittisyys + + + Bitrate + Bittinopeus + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Näytä kansikuva + + + Show song technical data + Näytä kappaleen tekniset tiedot + + + Show song lyrics + Näytä laulunsanat + + + Automatically search for song lyrics + Etsi laulunsanoja automaattisesti + + + No song playing + + + + %1 song + %1 kappale + + + %1 songs + %1 kappaletta + + + %1 artist + %1 esittäjä + + + %1 artists + %1 esitäjää + + + %1 album + %1 albumi + + + %1 albums + %1 albumia + + + kbps + kb/s + + + + CoverFromURLDialog + + Load cover from URL + Lataa kansikuva osoitteesta + + + Enter a URL to download a cover from the Internet: + Kirjoita URL-osoite kansikuvien lataamiseen Internetistä: + + + Fetching cover error + Virhe kansikuvan noudossa + + + The site you requested does not exist! + Hakemaasi sivua ei ole olemassa! + + + The site you requested is not an image! + Hakemasi sivu ei ole kuva! + + + + CoverManager + + Cover Manager + Kansikuvaselain + + + Enter search terms here + Etsi tästä + + + MenuPopupToolButton + + + + View + Näkymä + + + Total albums: + Albumeja yhteensä: + + + Without cover: + Ilman kansikuvaa: + + + 0 + + + + Fetch Missing Covers + Nouda puuttuvat kansikuvat + + + Export Covers + Vie kansikuvat + + + Fetch automatically + Nouda automaattisesti + + + Load + Lataa + + + Add to playlist + Lisää soittolistaan + + + + CoverSearchStatisticsDialog + + Fetch completed + Nouto suoritettu + + + Got %1 covers out of %2 (%3 failed) + Löydetty %1 / %2 kansikuvaa (%3 epäonnistui) + + + Covers from %1 + Kansikuvat kohteesta %1 + + + Total network requests made + Yhteensä verkko pyyntöjä tehty + + + Average image size + Kuvatiedoston koko keskimäärin + + + Total bytes transferred + Yhteensä tavuja siirretty + + + + CoversSettingsPage + + Covers + Kansikuvat + + + Cover providers + Kansikuvien tarjoajat + + + Choose the providers you want to use when searching for covers. + Valitse kansikuvien hakemiseen käytettävät palvelut. + + + Move up + Siirrä ylös + + + Move down + Siirrä alas + + + Authentication + Tunnistautuminen + + + Login + Kirjaudu sisään + + + Album cover types + + + + Saving album covers + Tallennetaan kansikuvia + + + Save album covers in album directory + + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + Tiedostonimi: + + + Pattern + + + + Random + + + + Overwrite existing file + + + + Lowercase filename + Tiedoston nimi pienillä kirjaimilla + + + Replace spaces with dashes + Korvaa välilyönnit viivoilla + + + Use Tidal settings to authenticate. + Käytä Tidal-asetuksia tunnistautumiseen. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + %1 vaatii tunnistautumisen. + + + %1 does not need authentication. + %1 ei vaadi tunnistautumista. + + + No provider selected. + + + + Authentication failed + Tunnistautuminen epäonnistui + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Eheystarkistus + + + Database corruption detected. + Tietokanta on vioittunut. + + + Backing up database + Varmuuskopioidaan tietokantaa + + + + DeleteConfirmationDialog + + Delete files + Poista tiedostot + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + Haluatko varmasti jatkaa? + + + + DeleteFiles + + Deleting files + Poistetaan tiedostoja + + + + DeviceItemDelegate + + Updating %1%... + Päivitetään %1 %... + + + Not connected + Ei yhdistetty + + + Not mounted - double click to mount + Ei liitetty - kaksoisnapsauta liittääksesi + + + Double click to open + Kaksoisnapsauta avataksesi + + + %1 song%2 + %1 kappale%2 + + + + DeviceManager + + Connect device + Yhdistä laite + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Kytkit tämän laitteen tähän tietokoneeseen ensimmäistä kertaa. Strawberry etsii musiikkitiedostoja laitteesta - tämä saattaa kestää hetken. + + + This device will not work properly + Laite ei tule toimimaan kunnolla + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Kyseessä on MTP-laite, mutta Strawberry on käännetty ilman libmtp-tukea. + + + If you continue, this device will work slowly and songs copied to it may not work. + Jos jatkat, laite toimii hitaasti ja sille kopioidut kappaleet eivät välttämättä toimi. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Kyseessä on iPod, mutta Strawberry on käännetty ilman libgpod-tukea. + + + This type of device is not supported: %1 + Tämän tyyppinen laite ei ole tuettu: %1 + + + + DeviceProperties + + Device Properties + Laitteen ominaisuudet + + + Information + Tiedot + + + Name + Nimi + + + Icon + Kuvake + + + Hardware information + Laitetiedot + + + Hardware information is only available while the device is connected. + Laitetiedot on saatavilla vain laitteen ollessa yhdistettynä. + + + File formats + Tiedostomuodot + + + Supported formats + Tuetut muodot + + + This device supports the following file formats: + Laite tukee seuraavia tiedostomuotoja: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry voi automaattisesti muuntaa tähän laitteeseen kopioitavan musiikin sen ymmärtämään muotoon. + + + Do not convert any music + Älä muunna mitään musiikkia + + + Convert any music that the device can't play + Muuta musiikki, jota laite ei voi muuten toistaa + + + Convert all music + Muunna kaikki musiikki + + + Preferred format + Ensisijainen muoto + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Laitteen tulee olla yhdistettynä ja avattuna, jotta Strawberry voi tarkistaa, mitä tiedostomuotoja laite tukee. + + + Open device + Avaa laite + + + Querying device... + Kysytään tietoja laitteelta... + + + Model + Malli + + + Manufacturer + Valmistaja + + + + DeviceView + + Safely remove device + Poista laite turvallisesti + + + Forget device + Unohda laite + + + Device properties... + Laitteen ominaisuudet... + + + Append to current playlist + Lisää nykyiselle soittolistalle + + + Replace current playlist + Korvaa nykyinen soittolista + + + Open in new playlist + Avaa uudessa soittolistassa + + + Copy to collection... + Kopioi kirjastoon + + + Delete from device... + Poista laitteelta... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Laitteen unohtaminen poistaa sen listalta. Strawberry joutuu käydä laitteen kaikki kappaleet uudelleen läpi, kun laite seuraavan kerran yhdistetään. + + + Delete files + Poista tiedostot + + + These files will be deleted from the device, are you sure you want to continue? + Nämä tiedostot poistetaan laitteelta, haluatko varmasti jatkaa? + + + + DeviceViewContainer + + Form + Lomake + + + + DynamicPlaylistControls + + Dynamic mode is on + + + + New tracks will be added automatically. + + + + Expand + Laajenna + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + Muokkaa kappaleen tietoja + + + Summary + Yhteenveto + + + Date created + Luotu + + + Art Automatic + + + + Date modified + Muokattu + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + Tiedostotyyppi + + + Length + Kesto + + + Play count + Soittokertoja + + + Bit depth + Bittisyys + + + EBU R 128 integrated loudness + + + + Bit rate + Bittivirta + + + Skip count + Ohituskerrat + + + Sample rate + Näytteenottotaajuus + + + Path + + + + Filename + Tiedostonimi + + + Art Unset + + + + File size + Tiedostokoko + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + Nollaa soittokerrat + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + Levy + + + Grouping + Ryhmittely + + + Album artist + Albumin esittäjä + + + Album + Albumi + + + Year + Vuosi + + + Title + Nimi + + + Artist + Esittäjä + + + Composer + Säveltäjä + + + Complete tags automatically + Täydennä tunnisteet automaattisesti + + + Genre + Tyylilaji + + + Comment + Kommentti + + + Performer + Esittäjä + + + Compilation + Kokoelma + + + Track + Kappale + + + Rating + Arvio + + + Lyrics + Laulunsanat + + + Complete lyrics automatically + + + + Previous + Edellinen + + + Next + Seuraava + + + Saving tracks + Tallennetaan kappaleita + + + Loading tracks + Ladataan kappaleita + + + %1 songs selected. + + + + kbps + kb/s + + + Unknown + Tuntematon + + + Yes + + + + No + + + + None + Ei mitään + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Kansikuvaa ei ole asetettu + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + Ei koskaan + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Taajuuskorjain + + + Preset: + Asetus: + + + Save preset + Tallenna asetus + + + Delete preset + Poista asetus + + + Enable equalizer + Käytä taajuuskorjainta + + + Enable stereo balancer + + + + Left + Vasen + + + Balance + Tasapaino + + + Right + Oikea + + + Pre-amp + Esivahvistus + + + Custom + Oma + + + Classical + + + + Club + + + + Dance + + + + Full Bass + Täysi basso + + + Full Treble + Täysi diskantti + + + Full Bass + Treble + Täysi basso ja diskantti + + + Laptop/Headphones + Kannettava/kuulokkeet + + + Large Hall + Suuri halli + + + Live + + + + Party + + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + + + + Name + Nimi + + + Are you sure you want to delete the "%1" preset? + Haluatko varmasti poistaa asetuksen "%1"? + + + + EqualizerSlider + + Equalizer + Taajuuskorjain + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Strawberry-virhe + + + + FancyTabWidget + + Large sidebar + Suuri sivupalkki + + + Icons sidebar + + + + Small sidebar + Pieni sivupalkki + + + Plain sidebar + Pelkistetty sivupalkki + + + Tabs on top + Välilehdet ylhäällä + + + Icons on top + Kuvakkeet ylhäällä + + + + FileTypeItemDelegate + + Unknown + Tuntematon + + + + FileView + + Form + Lomake + + + + FileViewList + + Append to current playlist + Lisää nykyiselle soittolistalle + + + Replace current playlist + Korvaa nykyinen soittolista + + + Open in new playlist + Avaa uudessa soittolistassa + + + Copy to collection... + Kopioi kirjastoon + + + Move to collection... + Siirrä kirjastoon... + + + Copy to device... + Kopioi laitteelle... + + + Delete from disk... + Poista levyltä... + + + Edit track information... + Muokkaa kappaleen tietoja... + + + Show in file browser... + Näytä tiedostoselaimessa... + + + + FreeSpaceBar + + Available + Käytettävissä + + + New songs + Uudet kappaleet + + + Exceeded by + + + + Used + Käytetty + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Ladataan iPod-tietokantaa + + + An error occurred loading the iTunes database + iTunes-tietokantaa ladatessa tapahtui virhe + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + Avaa tämä sivu selaimessasi + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + Liitoskohta + + + Device + Laite + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Paina näppäintä + + + Press a key combination to use for %1... + Paina näppäinyhdistelmää käyttääksesi %1 ... + + + + GlobalShortcutsManager + + Play + Toista + + + Pause + Keskeytä + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + Edellinen kappale + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + Vaimenna + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + Tykkää + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + Avaa... + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Avaa Järjestelmän asetukset ja salli Strawberryn "<span style="font-style:italic">hallita tietokonettasi</span>" käyttääksesi Strawberryn yleisiä pikanäppäimiä. + + + Action + Category label + Toiminto + + + Shortcut + Pikanäppäin + + + Shortcut for %1 + Pikanäppäin toiminnolle %1 + + + &None + &Ei mitään + + + &Default + Oletus + + + &Custom + &Oma + + + Change shortcut... + Vaihda pikanäppäin... + + + The "%1" command could not be started. + "%1"-komentoa ei voitu suorittaa. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + X11-pikanäppäinten käyttöä ei %1 suositella ja se voi aiheuttaa näppäimistön muuttumisen reagoimattomaksi. + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + Kirjaston tarkennettu ryhmittely + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + Järjestä kirjasto... + + + First level + Ensimmäinen taso + + + None + Ei mitään + + + Artist + Esittäjä + + + Album artist + Albumin esittäjä + + + Album + Albumi + + + Album - Disc + Albumi - Levy + + + Disc + Levy + + + Format + Muoto + + + Genre + Tyylilaji + + + Year + Vuosi + + + Year - Album + Vuosi - Albumi + + + Year - Album - Disc + Vuosi - Albumi - Levy + + + Original year + Alkuperäinen vuosi + + + Original year - Album + Alkuperäinen vuosi - albumi + + + Composer + Säveltäjä + + + Performer + Esittäjä + + + Grouping + Ryhmittely + + + File type + Tiedostotyyppi + + + Sample rate + Näytteenottotaajuus + + + Bit depth + Bittisyys + + + Bitrate + Bittinopeus + + + Second level + Toinen taso + + + Third level + Kolmas taso + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Puskuroidaan + + + + LastFMImport + + Missing username, please login to last.fm first! + Käyttäjätunnus puuttuu, kirjaudu ensin last.fm:ään. + + + + LastFMImportDialog + + Import data from last.fm + Tuo tiedot last.fm-palvelusta + + + Choose data to import from last.fm + Valitse last.fm:stä tuotavat tiedot + + + Last played + + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + Sulje + + + Cancel + Peruuta + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + Ei koskaan + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz-tunnistautuminen + + + Please open this URL in your browser + Avaa tämä sivu selaimessasi + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Lomake + + + You are not signed in. + Et ole kirjautunut sisään + + + Sign out + Kirjaudu ulos + + + Signing in... + Kirjautuu sisään... + + + You are signed in. + Olet kirjautunut sisään. + + + You are signed in as %1. + Olet kirjautunut tunnuksella %1. + + + Expires on %1 + Vanhenee %1 + + + + LyricsSettingsPage + + Lyrics + Laulunsanat + + + Lyrics providers + Laulunsanojen tarjoajat + + + Choose the providers you want to use when searching for lyrics. + Valitse laulunsanojen hakemiseen käytettävät palvelut. + + + Move up + Siirrä ylös + + + Move down + Siirrä alas + + + Authentication + Tunnistautuminen + + + Login + Kirjaudu sisään + + + No provider selected. + + + + Authentication failed + Tunnistautuminen epäonnistui + + + + MainWindow + + Strawberry Music Player + Strawberry-musiikkisoitin + + + MenuPopupToolButton + + + + &Music + &Musiikki + + + P&laylist + Soitto&lista + + + Help + Ohje + + + &Tools + &Työkalut + + + Previous track + Edellinen kappale + + + F5 + + + + &Play + &Toista + + + F6 + + + + &Stop + Pysäytä + + + F7 + + + + &Next track + Seuraava kappale + + + F8 + + + + &Quit + &Lopeta + + + Ctrl+Q + + + + Stop after this track + Pysäytä toistettavan kappaleen jälkeen + + + Ctrl+Alt+V + + + + Love + Tykkää + + + &Clear playlist + Tyhjennä soittolista + + + Clear playlist + Tyhjennä soittolista + + + Ctrl+K + + + + Edit track information... + Muokkaa kappaleen tietoja... + + + Ctrl+E + + + + Renumber tracks in this order... + Numeroi kappaleet tässä järjestyksessä ... + + + Set value for all selected tracks... + Aseta arvo kaikille valituille kappaleille... + + + Edit tag... + Muokkaa tunnistetta... + + + &Settings... + A&setukset + + + Ctrl+P + + + + &About Strawberry + Tietoa Strawberrystä + + + F1 + + + + S&huffle playlist + + + + Ctrl+H + + + + &Add file... + Lisää tiedosto... + + + Ctrl+Shift+A + + + + &Open file... + Avaa tiedosto... + + + Open audio &CD... + Avaa audio-&CD + + + &Cover Manager + Kansikuvaselain + + + C&onsole + K&onsoli + + + &Shuffle mode + &Sekoita + + + &Repeat mode + Kertaa + + + Remove from playlist + Poista soittolistalta + + + &Equalizer + Taajuuskorjain + + + &Transcode Music + + + + Add &folder... + Lisää kansio... + + + &Jump to the currently playing track + + + + Ctrl+J + + + + &New playlist + Uusi soittolista + + + Ctrl+N + + + + Save &playlist... + + + + Ctrl+S + + + + &Load playlist... + &Lataa soittolista... + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Siirry seuraavaan soittolistaan + + + Go to previous playlist tab + Siirry edelliseen soittolistaan + + + &Update changed collection folders + + + + About &Qt + Tietoa &Qt:stä + + + &Mute + &Mykistä + + + Ctrl+M + + + + &Do a full collection rescan + Suorita koko kirjaston läpikäynti + + + Stop collection scan + + + + Complete tags automatically... + Täydennä tunnisteet automaattisesti... + + + Ctrl+T + + + + Toggle scrobbling + Valitse scrobbling + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + Lisää tiedosto(ja) muuntajaan + + + Add file to transcoder + Lisää tiedosto muuntajaan + + + Add stream... + Lisää virta... + + + Show sidebar + Näytä sivupalkki + + + Import data from last.fm... + Tuo tiedot last.fm-palvelusta... + + + All Files (*) + Kaikki tiedostot (*) + + + Context + Konteksti + + + Collection + Kirjasto + + + Queue + Jono + + + Playlists + Soittolistat + + + Smart playlists + Älykkäät soittolistat + + + Files + Tiedostot + + + Radios + + + + Devices + Laitteet + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Näytä kaikki kappaleet + + + Show only duplicates + Näytä vain kaksoiskappaleet + + + Show only untagged + Näytä vain vailla tunnistetta olevat + + + Configure collection... + Kirjaston asetukset... + + + Play + Toista + + + Toggle queue status + Vaihda jonon tila + + + Queue selected tracks to play next + Lisää valitut kappaleet jonoon + + + Toggle skip status + + + + Rescan song(s)... + + + + Copy URL(s)... + Kopioi URL(:t) + + + Show in collection... + Näytä kirjastossa... + + + Show in file browser... + Näytä tiedostoselaimessa... + + + Organize files... + + + + Copy to collection... + Kopioi kirjastoon + + + Move to collection... + Siirrä kirjastoon... + + + Copy to device... + Kopioi laitteelle... + + + Delete from disk... + Poista levyltä... + + + Check for updates... + Tarkista päivitykset... + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Keskeytä + + + Dequeue track + Poista kappale jonosta + + + Dequeue selected tracks + Poista valitut kappaleet jonosta + + + Queue track + Aseta kappale jonoon + + + Queue selected tracks + Aseta valitut kappaleet jonoon + + + Queue to play next + Toistojonoon + + + Unskip track + + + + Unskip selected tracks + + + + Skip track + Ohita kappale + + + Skip selected tracks + Ohita valitut kappaleet + + + Set %1 to "%2"... + Aseta %1 %2:een + + + Edit tag "%1"... + Muokkaa tunnistetta "%1"... + + + Add to another playlist + Lisää toiseen soittolistaan + + + New playlist + Uusi soittolista + + + Add file + Lisää tiedosto + + + Music + Musiikki + + + Add folder + Lisää kansio + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + Virhe + + + None of the selected songs were suitable for copying to a device + Yksikään valitsemistasi kappaleista ei sovellu kopioitavaksi laitteelle + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Versio, johon juuri päivitit Strawberryn, vaatii kirjaston täydellisen läpikäynnin alla listattujen uusien ominaisuuksien vuoksi: + + + Would you like to run a full rescan right now? + Haluatko suorittaa kirjaston läpikäynnin nyt? + + + Collection rescan notice + Ilmoitus kirjaston läpikäynnistä + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + Älä näytä tätä enää uudestaan. + + + + MimeData + + Playlist + Soittolista + + + + MoodbarProxyStyle + + Show moodbar + Näytä mielialapalkki + + + Moodbar style + Mielialapalkin tyyli + + + + MoodbarSettingsPage + + Moodbar + Mielialapalkki + + + Show a moodbar in the track progress bar + + + + Moodbar style + Mielialapalkin tyyli + + + Save the .mood files directly in the songs folders + Tallenna .mood-tiedostot suoraan kappaleen kansiossa + + + Enabled + + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Ladataan MTP-laitetta + + + Error connecting MTP device %1 + MTP-laitteen %1 yhdistämisessä tapahtui virhe + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Verkon välityspalvelin + + + &Use the system proxy settings + Käytä järjestelmän välityspalvelinasetuksia + + + Direct internet connection + Suora internetyhteys + + + &Manual proxy configuration + &Manuaaliset välityspalvelimen asetukset + + + HTTP proxy + HTTP-välityspalvelin + + + SOCKS proxy + SOCKS-välityspalvelin + + + Port + Portti + + + Use authentication + Käytä tunnistatumista + + + Username + Käyttäjätunnus + + + Password + Salasana + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + Ilmoitukset + + + Strawberry can show a message when the track changes. + Strawberry voi ilmoittaa, kun kappale vaihtuu. + + + Notification type + Ilmoituksen tyyppi + + + Disabled + Refers to a disabled notification type in Notification settings. + Ei käytössä + + + Show a &native desktop notification + Näytä &natiivi työpöytäilmoitus + + + Show a pretty OSD + Näytä kuvaruutunäyttö + + + Show a popup fro&m the system tray + + + + General settings + Yleiset asetukset + + + Popup duration + Ponnahdusikkunan kesto + + + seconds + sekuntia + + + Disable duration + Kytke kesto pois päältä + + + Show a notification when I change the volume + Näytä ilmoitus, kun vaihdan äänenvoimakkuutta + + + Show a notification when I change the repeat/shuffle mode + Näytä ilmoitus, kun vaihdan toiston tai sekoituksen tilaa + + + Show a notification when I pause playback + Näytä ilmoitus, kun keskeytän toiston + + + Show a notification when I resume playback + + + + Include album art in the notification + Näytä kansikuva ilmoituksen yhteydessä + + + Custom message settings + Omavalintaisen viestin asetukset + + + Use a custom message for notifications + Käytä omaa viestiä ilmoituksissa + + + Preview + Esikatselu + + + MenuPopupToolButton + + + + Summary + Yhteenveto + + + Body + Sisältö + + + Pretty OSD options + Kuvaruutunäytön valinnat + + + Background color + Taustaväri + + + Text options + Tekstivalinnat + + + Choose font... + Valitse kirjasin... + + + Choose color... + Valitse väri... + + + Background opacity + Taustan läpinäkyvyys + + + Basic Blue + Perussininen + + + Strawberry Red + Mansikanpunainen + + + Custom... + Mukautettu... + + + Enable fading + + + + Add song artist tag + Lisää tunniste kappaleen esittäjä + + + Add song album tag + Lisää tunniste levyn nimi + + + Add song title tag + Lisää tunniste kappaleen nimi + + + Add song albumartist tag + Lisää tunniste levyn esittäjä + + + Add song year tag + Lisää kappaleen levytysvuoden tunniste + + + Add song composer tag + Lisää tunniste kappaleen säveltäjä + + + Add song performer tag + Lisää tunniste kappaleen esittäjä + + + Add song grouping tag + Lisää tunniste kappaleen ryhmitys + + + Add song disc tag + Lisää levyn numeron tunniste + + + Add song track tag + Lisää tunniste + + + Add song genre tag + Lisää tunniste kappaleen kategoria + + + Add song length tag + Lisää tunniste kappaleen kesto + + + Add song play count + Lisää kappaleen toistolaskuri + + + Add song skip count + Lisää kappaleen keskeyttämislaskuri + + + Add song rating + Lisää kappaleelle arvosana + + + Add a new line if supported by the notification type + Lisää uusi rivi, jos ilmoitustyyppi sen sallii + + + %filename% + + + + Add song filename + Lisää kappaleen tiedostonimi + + + %url% + + + + Add song URL + Lisää kappaleen osoite + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + Kuvaruutunäytön esikatselu + + + Drag to reposition + Vaihda sijaintia vetämällä + + + + OSDBase + + disc %1 + levy %1 + + + track %1 + kappale %1 + + + Paused + Keskeytetty + + + Stopped + Pysäytetty + + + Stop playing after track: %1 + Lopeta toisto kappaleen jälkeen: %1 + + + On + Päällä + + + Off + Pois + + + Playlist finished + Soittolista soitettiin loppuun + + + Volume %1% + Äänenvoimakkuus %1 % + + + Don't shuffle + Älä sekoita + + + Shuffle all + Sekoita kaikki + + + Shuffle tracks in this album + Sekoita tämän albumin kappaleet + + + Shuffle albums + Sekoita albumit + + + Don't repeat + Älä kertaa + + + Repeat track + Kertaa kappale + + + Repeat album + Kertaa albumi + + + Repeat playlist + Kertaa soittolista + + + Stop after every track + + + + Intro tracks + Intro-kappaleet + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + Kohde + + + After copying... + Kopioinnin jälkeen... + + + Keep the original files + Säilytä alkuperäiset tiedostot + + + Delete the original files + Poista alkuperäiset tiedostot + + + Naming options + Nimeämisvalinnat + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Tietueet alkavat %-merkillä, esimerkiksi: %artist %album %title </p> + +<p>Jos ympäröit tietueen sisältävän tekstin aaltosulkeilla, se piilotetaan, jos tietue on tyhjä.</p> + + + Insert... + Lisää... + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + + + + Restrict characters to ASCII + + + + Allow extended ASCII characters + + + + Replace spaces with underscores + Korvaa välilyönnit alaviivoilla + + + Overwrite existing files + Korvaa olemassa olevat tiedostot + + + Copy album cover artwork + Kopioi albumien kansikuvat + + + Preview + Esikatselu + + + Loading... + Ladataan... + + + Safely remove the device after copying + Poista laite turvallisesti kopioinnin jälkeen + + + Title + Nimi + + + Album + Albumi + + + Artist + Esittäjä + + + Artist's initial + Esittäjän nimen ensimmäinen kirjain + + + Album artist + Albumin esittäjä + + + Composer + Säveltäjä + + + Performer + Esittäjä + + + Grouping + Ryhmittely + + + Track + Kappale + + + Disc + Levy + + + Year + Vuosi + + + Original year + Alkuperäinen vuosi + + + Genre + Tyylilaji + + + Comment + Kommentti + + + Length + Kesto + + + Bitrate + Refers to bitrate in file organize dialog. + Bittinopeus + + + Sample rate + Näytteenottotaajuus + + + Bit depth + Bittisyys + + + File extension + Tiedostopääte + + + + OrganizeErrorDialog + + Error copying songs + Virhe kappaleita kopioidessa + + + There were problems copying some songs. The following files could not be copied: + Kappaleita kopioitaessa ilmeni virheitä. Seuraavien kappaleiden kopiointi epäonnistui: + + + Error deleting songs + Virhe kappaleita poistaessa + + + There were problems deleting some songs. The following files could not be deleted: + Kappaleita poistaessa ilmeni virheitä. Seuraavien kappaleiden poisto epäonnistui: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Pieni kansikuva + + + Large album cover + Suuri kansikuva + + + Fit cover to width + Sovita kansi leveyteen + + + Show above status bar + Näytä tilapalkin yläpuolella + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Nimi + + + Artist + Esittäjä + + + Album + Albumi + + + Track + Kappale + + + Disc + Levy + + + Length + Kesto + + + Year + Vuosi + + + Original Year + + + + Genre + Tyylilaji + + + Album Artist + + + + Composer + Säveltäjä + + + Performer + Esittäjä + + + Grouping + Ryhmittely + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Bittinopeus + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Kommentti + + + Source + Lähde + + + Mood + Mieliala + + + Rating + Arvio + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Lomake + + + Undo + + + + Redo + + + + Playlist + Soittolista + + + Load playlist + Lataa soittolista + + + No matches found. Clear the search box to show the whole playlist again. + Ei osumia haulle. Tyhjennä hakukenttä näyttääksesi koko soittolistan uudelleen. + + + + PlaylistDelegateBase + + stop + pysäytä + + + + PlaylistGeneratorInserter + + Loading smart playlist + Ladataan älykästä soittolistaa + + + + PlaylistHeader + + &Hide... + Piilota... + + + &Stretch columns to fit window + &Sovita sarakkeet ikkunan leveyteen + + + &Reset columns to default + + + + &Lock rating + &Lukitse arvio + + + &Align text + &Tasaa teksti + + + &Left + &Vasemmalle + + + &Center + &Keskelle + + + &Right + &Oikealle + + + &Hide %1 + Piilota %1 + + + + PlaylistListContainer + + Form + Lomake + + + New folder + Uusi kansio + + + Delete + Poista + + + Save playlist + Save playlist menu action. + Tallenna soittolista + + + Copy to device... + Kopioi laitteelle... + + + Enter the name of the folder + Anna kansion nimi + + + Playlist + Soittolista + + + Copy to device + Kopioi laitteeseen + + + Playlist must be open first. + Soittolista täytyy avata ensin. + + + Remove playlists + Poista soittolistat + + + You are about to remove %1 playlists from your favorites, are you sure? + Haluatko varmasti poistaa %1 soittolistaa suosikeistasi? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Voit lisätä soittolistan suosikkeihin napsauttamalla tähteä soittolistan nimen vierestä + + + Favorited playlists will be saved here + Suosikkeihin lisätyt soittolistat tallennetaan tänne + + + + PlaylistManager + + Playlist + Soittolista + + + Couldn't create playlist + Soittolistan luominen epäonnistui + + + Save playlist + Title of the playlist save dialog. + Tallenna soittolista + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + valittuna %1 / + + + %n track(s) + + + + + + + Unknown + Tuntematon + + + Various artists + Useita esittäjiä + + + + PlaylistParser + + All playlists (%1) + Kaikki soittolistat (%1) + + + %1 playlists (%2) + %1-soittolistat (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Soittolistan valinnat + + + File paths + Tiedostopolut + + + This can be changed later through the preferences + Tämän voi muuttaa myöhemmin asetuksista + + + Remember my choice + Muista valintani + + + Automatic + Automaattinen + + + Relative + Suhteellisia + + + Absolute + Absoluuttisia + + + + PlaylistSequence + + Repeat + Kertaa + + + Shuffle + Sekoita + + + Don't repeat + Älä kertaa + + + Repeat track + Kertaa kappale + + + Repeat album + Kertaa albumi + + + Repeat playlist + Kertaa soittolista + + + Stop after each track + + + + Intro tracks + Intro-kappaleet + + + Don't shuffle + Älä sekoita + + + Shuffle tracks in this album + Sekoita tämän albumin kappaleet + + + Shuffle all + Sekoita kaikki + + + Shuffle albums + Sekoita albumit + + + + PlaylistSettingsPage + + Playlist + Soittolista + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Varoita suljettaessa soittolistan sisältävää välilehteä + + + Continue to the next item in the playlist if a song is unavailable + + + + Grey out unavailable songs in playlists on playback + + + + Grey out unavailable songs in playlists on startup + + + + Automatically select current playing track + + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + Soittolistoja tallennettaessa tiedostopolkujen tulee olla + + + A&utomatic + A&utomaattinen + + + Absolu&te + Absoluu&ttinen + + + Re&lative + Suhtee&llinen + + + As&k when saving + &Kysy tallennettaessa + + + Metadata + Metatiedot + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Jos käytössä, kappaleen napsauttaminen soittolistanäkymässä sallii tunnistearvon muokkauksen suoraan. + + + Enable song metadata inline edition with click + Käytä kappaleen metadatan muokkausta napsautuksella + + + Write metadata when saving playlists + Kirjoita metatiedot tallentaessa soittolista + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Sulje soittolista + + + Rename playlist... + Nimeä soittolista uudelleen... + + + Save playlist... + Tallenna soittolista... + + + Rename playlist + Nimeä soittolista uudelleen + + + Enter a new name for this playlist + Anna uusi nimi tälle soittolistalle + + + Remove playlist + Poista soittolista + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Olet aikeissa poistaa soittolistan, joka ei ole osa suosikkisoittolistojasi: soittolista poistetaan (toimintoa ei voi perua.) +Haluatko varmasti jatkaa? + + + Warn me when closing a playlist tab + Varoita suljettaessa soittolistan sisältävää välilehteä + + + This option can be changed in the "Behavior" preferences + Tämän valinnan voi vaihtaa asetuksien kohdasta "Toiminta". + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + Soittolista + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + lisää %n kappaletta + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + siirrä %n kappaletta + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + poista %n kappaletta + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + sekoita kappaleet + + + + PlaylistUndoCommands::SortItems + + sort songs + järjestä kappaleet + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + kb/s + + + + QObject + + Usage + Käyttötaso + + + options + valinnat + + + URL(s) + Osoite/osoitteet + + + Player options + Soittimen asetukset + + + Start the playlist currently playing + + + + Play if stopped, pause if playing + Aloittaa tai pysäyttää soittamisen + + + Pause playback + Keskeytä toisto + + + Stop playback + Pysäytä toisto + + + Stop playback after current track + + + + Skip backwards in playlist + Siirry soittolistan edelliseen kappaleeseen + + + Skip forwards in playlist + Siirry soittolistan seuraavaan kappaleeseen + + + Set the volume to <value> percent + Säädä äänenvoimakkuus <value> prosenttia + + + Increase the volume by 4 percent + Lisää äänenvoimakkuutta 4 prosentilla + + + Decrease the volume by 4 percent + Vähennä äänenvoimakkuutta 4 prosentilla + + + Increase the volume by <value> percent + Lisää äänenvoimakkuutta <value> prosentilla + + + Decrease the volume by <value> percent + Vähennä äänenvoimakkuutta <value> prosentilla + + + Seek the currently playing track to an absolute position + Siirry nykyisessä kappaleessa tiettyyn kohtaan + + + Seek the currently playing track by a relative amount + Siirry nykyisessä kappaleessa suhteellinen määrä + + + Restart the track, or play the previous track if within 8 seconds of start. + Toista kappale uudelleen, tai toista edellinen kappale, jos alle 8 sekunnin päästä alusta. + + + Playlist options + Soittolistan valinnat + + + Create a new playlist with files + + + + Append files/URLs to the playlist + Lisää tiedostoja/verkko-osoitteita soittolistalle + + + Loads files/URLs, replacing current playlist + Lataa tiedostoja tai verkko-osoitteita, korvaa samalla nykyinen soittolista + + + Play the <n>th track in the playlist + Soita soittolistan <n>. kappale + + + Play given playlist + + + + Other options + Muut valinnat + + + Display the on-screen-display + Näytä kuvaruutunäyttö + + + Toggle visibility for the pretty on-screen-display + Kuvaruutunäyttö päälle / pois + + + Change the language + Vaihda kieltä + + + Resize the window + + + + Equivalent to --log-levels *:1 + Vastaa --log-levels *:1 + + + Equivalent to --log-levels *:3 + Vastaa --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Pilkuin erotettu lista luokka:taso -määritteitä, jossa taso on väliltä 0-3 + + + Print out version information + Tulosta versiotiedot + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Tuntematon + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Tiedostoa %1 ei tunnistettu äänitiedostoksi. + + + 1 day + 1 päivä + + + %1 days + %1 päivää + + + Today + Tänään + + + Yesterday + Eilen + + + %1 days ago + %1 päivää sitten + + + Tomorrow + Huomenna + + + In %1 days + %1 päivässä + + + Next week + Ensi viikolla + + + In %1 weeks + %1 viikossa + + + Show in file browser + Näytä tiedostonhallinnassa + + + Too many songs selected. + Liian monta kappaletta valittu. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Tuntematon virhe + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + esittäjä + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Käytettävissä olevat kentät + + + after + jälkeen + + + before + ennen + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + välillä + + + contains + sisältää + + + does not contain + ei sisällä + + + starts with + + + + ends with + + + + greater than + suurempi kuin + + + less than + pienempi kuin + + + equals + yhtäsuuri + + + not equals + ei yhtä suuri kuin + + + empty + tyhjä + + + not empty + ei tyhjä + + + Comment + Kommentti + + + A-Z + A-Ö + + + Z-A + Ö-A + + + oldest first + vanhin ensin + + + newest first + uusin ensin + + + shortest first + lyhin ensin + + + longest first + pisin ensin + + + smallest first + pienin ensin + + + biggest first + suurin ensin + + + Hours + tuntia + + + Days + päivää + + + Weeks + viikkoa + + + Months + kuukautta + + + Years + vuotta + + + Normal + Tavallinen + + + Angry + Vihainen + + + Frozen + + + + Happy + Iloinen + + + System colors + Järjestelmän värit + + + + QWidget + + Clear + Tyhjennä + + + Reset + Oletukset + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Hakee... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Unknown error + Tuntematon virhe + + + + QobuzService + + Authenticating... + Tunnistaudutaan... + + + Maximum number of login attempts reached. + + + + Missing Qobuz app ID. + Qobuz-sovellustustunniste puuttuu. + + + Missing Qobuz username. + Gobuz-käyttäjätunnus puuttuu. + + + Missing Qobuz password. + Qobuz-salasana puuttuu. + + + Not authenticated with Qobuz. + + + + Missing Qobuz app ID or secret. + Qobuz-sovellustunniste tai -salaisuus puuttuu. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Ota käyttöön + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + Tunnistautuminen + + + App ID + Sovellus-ID + + + Username + Käyttäjätunnus + + + Password + Salasana + + + App Secret + Sovelluksen salaisuus + + + Login + Kirjaudu sisään + + + Preferences + Asetukset + + + Audio format + Äänimuoto + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + Lataa albumien kansikuvat + + + Base64 encoded secret + + + + Configuration incomplete + Asetukset keskeneräiset + + + Missing app id. + + + + Missing username. + Käyttäjätunnus puuttuu. + + + Missing password. + Salasana puuttuu. + + + Authentication failed + Tunnistautuminen epäonnistui + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Qobuz-sovellustunniste tai -salaisuus puuttuu. + + + Cancelled. + Peruutettu. + + + + Queue + + %n track(s) + + + + + + + + QueueView + + QueueView + + + + Move down + Siirrä alas + + + Ctrl+Up + + + + Move up + Siirrä ylös + + + Ctrl+Down + + + + Remove + Poista + + + Clear + Tyhjennä + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Lisää nykyiselle soittolistalle + + + Replace current playlist + Korvaa nykyinen soittolista + + + Open in new playlist + Avaa uudessa soittolistassa + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + Lomake + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + + + + Remove + Poista + + + Ctrl+Up + + + + Name + Nimi + + + First level + Ensimmäinen taso + + + Second Level + Toinen taso + + + Third Level + Kolmas taso + + + None + Ei mitään + + + Album artist + Albumin esittäjä + + + Artist + Esittäjä + + + Album + Albumi + + + Album - Disc + Albumi - Levy + + + Year - Album + Vuosi - Albumi + + + Year - Album - Disc + Vuosi - Albumi - Levy + + + Original year - Album + Alkuperäinen vuosi - albumi + + + Original year - Album - Disc + + + + Disc + Levy + + + Year + Vuosi + + + Original year + Alkuperäinen vuosi + + + Genre + Tyylilaji + + + Composer + Säveltäjä + + + Performer + Esittäjä + + + Grouping + Ryhmittely + + + File type + Tiedostotyyppi + + + Format + Muoto + + + Sample rate + Näytteenottotaajuus + + + Bit depth + Bittisyys + + + Bitrate + Bittinopeus + + + Unknown + Tuntematon + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Ota käyttöön + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + Näytä scrobble-painike + + + Show love button + Näytä tykkää-nappi + + + Submit scrobbles every + Lähetä scrobblet kerran + + + seconds + sekuntia + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + Kirjasto + + + Subsonic + + + + Local file + Paikallinen tiedosto + + + Tidal + + + + Device + Laite + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Suoratoisto + + + Radio Paradise + + + + Unknown + Tuntematon + + + Last.fm + + + + Login + Kirjaudu sisään + + + Libre.fm + + + + Listenbrainz + + + + User token: + + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 Scrobbler-tunnistautuminen + + + Open URL in web browser? + Avataanko osoite verkkoselaimessa? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + + + + Could not open URL. Please open this URL in your browser + URL-osoitetta ei voitu avata. Ole hyvä ja kokeile avata URL selaimessasi + + + Invalid reply from web browser. Missing token. + + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + Scrobbler %1 virhe: %2 + + + + SettingsDialog + + Settings + Asetukset + + + General + Yleiset + + + User interface + Käyttöliittymä + + + Streaming + Striimaus + + + + SmartPlaylistQuerySearchPage + + Form + Lomake + + + Search mode + + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + Hakusanat + + + + SmartPlaylistQuerySortPage + + Form + Lomake + + + Sorting + Lajittelu + + + Put songs in a random order + + + + Sort songs by + Lajitteluperuste + + + Limits + + + + Show all the songs + Näytä kaikki kappaleet + + + Only show the first + Näytä pelkästään ensimmäinen + + + songs + kappaleet + + + + SmartPlaylistQueryWizardPlugin + + Collection search + + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + Hakusanat + + + A song will be included in the playlist if it matches these conditions. + + + + Search options + Hakuasetukset + + + Choose how the playlist is sorted and how many songs it will contain. + Valitse montako kappaletta soittolista sisältää ja missä järjestyksessä. + + + + SmartPlaylistSearchPreview + + Form + Lomake + + + Preview + Esikatselu + + + Loading... + Ladataan... + + + %1 songs found (showing %2) + %1 kappaletta löytyi (näytetään %2) + + + %1 songs found + %1 kappaletta löytyi + + + + SmartPlaylistSearchTermWidget + + Form + Lomake + + + and + ja + + + ago + sitten + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Lisää hakusana + + + + SmartPlaylistWizard + + Smart playlist + Älykäs soittolista + + + Playlist type + Soittolistan tyyppi + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + + + + Finish + + + + Choose a name for your smart playlist + Valitse älykkäälle soittolistallesi nimi + + + + SmartPlaylistWizardFinishPage + + Form + Lomake + + + Name + Nimi + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + Uusimmat kappaleet + + + 50 random tracks + 50 satunnaista kappaletta + + + Ever played + + + + Never played + + + + Last played + + + + Most played + Eniten toistetut + + + Favourite tracks + Suosikkikappaleet + + + All tracks + Kaikki kappaleet + + + Dynamic random mix + + + + + SmartPlaylistsViewContainer + + New smart playlist + Uusi älykäs soittolista + + + Edit smart playlist + Muokkaa älykästä soittolistaa + + + Delete smart playlist + Poista älykäs soittolista + + + New smart playlist... + Uusi älykäs soittolista... + + + Append to current playlist + Lisää nykyiselle soittolistalle + + + Replace current playlist + Korvaa nykyinen soittolista + + + Open in new playlist + Avaa uudessa soittolistassa + + + Queue track + Aseta kappale jonoon + + + Play next + Toista seuraava + + + Edit smart playlist... + Muokkaa älykästä soittolistaa... + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + Tarvitset GStreamerin tätä URL-osoitetta varten. + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + CD-toisto on saatavilla vain GStreamer-moottorilla + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + + + + Loading tracks + Ladataan kappaleita + + + Loading tracks info + Lataa kappaleen tietoja + + + + SpotifyRequest + + Authenticating... + Tunnistaudutaan... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Hakee... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Spotify-tunnistautuminen + + + Please open this URL in your browser + Avaa tämä sivu selaimessasi + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Ota käyttöön + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Asetukset + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + Lataa albumien kansikuvat + + + Fetch entire albums when searching songs + Nouda koko albumi hakiessa kappaleita + + + Authentication failed + Tunnistautuminen epäonnistui + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + + + + Append to current playlist + Lisää nykyiselle soittolistalle + + + Replace current playlist + Korvaa nykyinen soittolista + + + Open in new playlist + Avaa uudessa soittolistassa + + + Queue track + Aseta kappale jonoon + + + Queue to play next + Toistojonoon + + + Remove from favorites + + + + + StreamingCollectionViewContainer + + Form + Lomake + + + Close + Sulje + + + Abort + Keskeytä + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + Useita esittäjiä + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + esittäjät + + + albums + albumit + + + songs + kappaleet + + + Enter search terms above to find music + + + + Configure %1... + %1 - asetukset... + + + Append to current playlist + Lisää nykyiselle soittolistalle + + + Replace current playlist + Korvaa nykyinen soittolista + + + Open in new playlist + Avaa uudessa soittolistassa + + + Queue track + Aseta kappale jonoon + + + Add to artists + Lisää esittäjiin + + + Add to albums + Lisää albumeihin + + + Add to songs + Lisää kappaleisiin + + + Search for this + Hae tätä + + + Group by + Järjestä + + + + StreamingSongsView + + Configure %1... + %1 - asetukset... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Esittäjät + + + Albums + Albumit + + + Songs + Kappaleet + + + Search + Etsi + + + Configure %1... + %1 - asetukset... + + + + SubsonicRequest + + Retrieving albums... + Haetaan albumeita... + + + Retrieving songs for %1 album... + + + + Retrieving songs for %1 albums... + + + + Retrieving album cover for %1 album... + + + + Retrieving album covers for %1 albums... + + + + Unknown error + Tuntematon virhe + + + + SubsonicService + + Server URL is invalid. + Palvelimen osoite ei kelpaa + + + Missing username or password. + Puuttuva käyttäjänimi tai salasana. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Ota käyttöön + + + Server URL + Palvelimen URL + + + Authentication + Tunnistautuminen + + + Username + Käyttäjätunnus + + + Password + Salasana + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Asetukset + + + Use HTTP/2 when possible + + + + Verify server certificate + Tarkista palvelimen varmenne + + + Download album covers + Lataa albumien kansikuvat + + + Server-side scrobbling + + + + Test + Testi + + + Delete songs + + + + Configuration incomplete + Asetukset keskeneräiset + + + Missing server url, username or password. + Puuttuva palvelimen osoite, käyttäjätunnus tai salasana + + + Configuration incorrect + + + + Server URL is invalid. + Palvelimen osoite ei kelpaa + + + Test successful! + Testi onnistui! + + + Test failed! + Testi epäonnistui + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Subsonic-palvelimen osoite ei kelpaa + + + Missing Subsonic username or password. + Subsonic-käyttäjätunnus tai -salasana puuttuu. + + + + SystemTrayIcon + + Pause + Keskeytä + + + Play + Toista + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Tunnistaudutaan... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Hakee... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + Tidalin API-avain puuttuu. + + + Missing Tidal username. + Puuttuva Tidal-käyttäjätunnus + + + Missing Tidal password. + Puuttuva Tidal-salasana + + + Not authenticated with Tidal and reached maximum number of login attempts. + + + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + Tidalin API-avain, käyttäjätunnus tai salasana puuttuu. + + + + TidalSettingsPage + + Tidal + + + + Enable + Ota käyttöön + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + Tunnistautuminen + + + Use OAuth + Käytä OAuthia + + + Client ID + Asiakas-ID + + + API Token + API-avain + + + Username + Käyttäjätunnus + + + Password + Salasana + + + Login + Kirjaudu sisään + + + Preferences + Asetukset + + + Audio quality + Äänenlaatu + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + Lataa albumien kansikuvat + + + Fetch entire albums when searching songs + Nouda koko albumi hakiessa kappaleita + + + Album cover size + Albumin kansikuvan koko + + + Stream URL method + Suoratoistomenetelmä (URL) + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + Asetukset keskeneräiset + + + Missing Tidal client ID. + Puuttuva Tidal-asiakas-ID + + + Missing API token. + API-avain puuttuu. + + + Missing username. + Käyttäjätunnus puuttuu. + + + Missing password. + Salasana puuttuu. + + + Authentication failed + Tunnistautuminen epäonnistui + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + Tidalin API-avain, käyttäjätunnus tai salasana puuttuu. + + + Cancelled. + Peruutettu. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + Tunnistenoutaja + + + Sorry + Pahoittelut + + + Strawberry was unable to find results for this file + Strawberry ei löytänyt tuloksia tälle tiedostolle + + + Select best possible match + Valitse paras mahdollinen vaihtoehto + + + Track + Kappale + + + Year + Vuosi + + + Title + Nimi + + + Artist + Esittäjä + + + Album + Albumi + + + Previous + Edellinen + + + Next + Seuraava + + + Original tags + Alkuperäiset tunnisteet + + + Suggested tags + Ehdotetut tunnisteet + + + Saving tracks + Tallennetaan kappaleita + + + + TrackSlider + + Form + Lomake + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Napsauta vaihtaaksesi näkymää: aikaa jäljellä / kokonaisaika + + + + TranscodeDialog + + Transcode Music + Muunna eri muotoon + + + Files to transcode + Muunnettavat tiedostot + + + Filename + Tiedostonimi + + + Directory + Kansio + + + Add... + Lisää... + + + Remove + Poista + + + Add all tracks from a directory and all its subdirectories + Lisää kaikki kappaleet kansiosta ja sen alakansioista + + + Import... + Tuo... + + + Output options + Muunnoksen asetukset + + + Audio format + Äänimuoto + + + Options... + Valinnat... + + + Destination + Kohde + + + Alongside the originals + Yhteen alkuperäisten kanssa + + + Select... + Valitse... + + + Progress + Edistyminen + + + Details... + Tiedot... + + + Clear + Tyhjennä + + + Start transcoding + Aloita muunnos + + + %n remaining + + %n jäljellä + + + + + %n finished + + %n valmistui + + + + + %n failed + + %n epäonnistui + + + + + Add files to transcode + Lisää tiedostoja muunnettavaksi + + + Music + Musiikki + + + Open a directory to import music from + Avaa kansio, josta musiikki tuodaan + + + Add folder + Lisää kansio + + + + TranscodeLogDialog + + Transcoder Log + Muunnosloki + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + GStreamer-elementin "%1" luonti epäonnistui - varmista, että kaikki vaaditut GStreamer-liitännäiset on asennettu + + + Successfully written %1 + Onnistuneesti kirjoitettu %1 + + + Transcoding %1 files using %2 threads + Muunnetaan %1 tiedostoa käyttäen %2 säiettä + + + Error processing %1: %2 + Virhe käsitellessä %1:%2 + + + Starting %1 + Aloittaa %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Ei löydetty %1 -enkooderia, tarkista että sinulla on oikeat GStreamer-liitännäiset asennettuna + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Ei löydetty %1 -multiplekseriä, tarkista että sinulla on oikeat GStreamer-liitännäiset asennettuna + + + + TranscoderOptionsAAC + + Form + Lomake + + + Bitrate + Bittinopeus + + + kbps + + + + Profile + Profiili + + + Main profile (MAIN) + Oletusprofiili (MAIN) + + + Low complexity profile (LC) + Low complexity -profiili (LC) + + + Scalable sampling rate profile (SSR) + Scalable sampling rate -profiili (SSR) + + + Long term prediction profile (LTP) + Long term prediction -profiili (LTP) + + + Use temporal noise shaping + Käytä väliaikaista melun muokkausta + + + Allow mid/side encoding + + + + Block type + Lohkotyyppi + + + Normal block type + Normaalilohkotyyppi + + + No short blocks + Ei lyhyitä lohkoja + + + No long blocks + Ei pitkiä lohkoja + + + + TranscoderOptionsASF + + Form + Lomake + + + Bitrate + Bittinopeus + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + Muunnosvalinnat + + + + TranscoderOptionsFLAC + + Form + Lomake + + + Quality + Sound quality + Laatu + + + Fast + Nopea + + + Best + Paras + + + + TranscoderOptionsMP3 + + Form + Lomake + + + Optimize for &quality + + + + Quality + Sound quality + Laatu + + + Opti&mize for bitrate + Opti&moi bittinopeus + + + Bitrate + Bittinopeus + + + kbps + + + + Constant bitrate + Pysyvä bittinopeus + + + Encoding engine quality + Koodausmoottorin laatu + + + Fast + Nopea + + + Standard + Normaali + + + High + Korkea + + + Force mono encoding + Pakota monokoodaus + + + + TranscoderOptionsOpus + + Form + Lomake + + + Bitrate + Bittinopeus + + + kbps + + + + + TranscoderOptionsSpeex + + Form + Lomake + + + Quality + Sound quality + Laatu + + + Bitrate + Bittinopeus + + + automatic + automaattinen + + + kbps + + + + Average bitrate + Keskimääräinen bittinopeus + + + disabled + pois käytöstä + + + Encoding mode + Koodaustila + + + Auto + + + + Ultra wide band (UWB) + Todella laaja kaista (UWB) + + + Wide band (WB) + Laajakaistainen (WB) + + + Narrow band (NB) + Kapeakaistainen (NB) + + + Variable bit rate + Muuttuva bittinopeus + + + Voice activity detection + Äänen havaitseminen + + + Discontinuous transmission + Keskeytyvä siirto + + + Encoding complexity + Enkoodauksen kompleksisuus + + + Frames per buffer + Kehyksiä per puskuri + + + + TranscoderOptionsVorbis + + Form + Lomake + + + Quality + Sound quality + Laatu + + + Use bitrate management engine + Käytä bittinopeuden hallintakonetta + + + Target bitrate + Tavoiteltava bittinopeus + + + kbps + + + + Minimum bitrate + Pienin bittinopeus + + + disabled + pois käytöstä + + + Maximum bitrate + Suurin bittinopeus + + + + TranscoderOptionsWavPack + + Form + Lomake + + + + TranscoderSettingsPage + + Transcoding + Muunnos + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Nämä asetukset ovat käytössä "Muunna eri muotoon"-ikkunassa, ja muunnettaessa musiikkia ennen laitteelle kopiointia. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + D-Bus-polku + + + Serial number + Sarjanumero + + + Mount points + Liitoskohdat + + + Partition label + Osion nimike + + + UUID + + + + + UserPassDialog + + Enter username and password + Syötä käyttäjätunnus ja salasana + + + Username + Käyttäjätunnus + + + Password + Salasana + + + diff --git a/src/translations/strawberry_fr_FR.ts b/src/translations/strawberry_fr_FR.ts new file mode 100644 index 00000000..895a78a1 --- /dev/null +++ b/src/translations/strawberry_fr_FR.ts @@ -0,0 +1,7569 @@ + + + + + About + + About + À propos de + + + About Strawberry + À propos de Strawberry + + + Version %1 + Version %1 + + + Strawberry is a music player and music collection organizer. + Strawberry est un lecteur audio et un organisateur de bibliothèques musicales. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + C'est un fork de Clementine publié en 2018 destiné aux collectionneurs de musique et aux audiophiles. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry est un logiciel libre sous les termes de la licence GPL. Le code source est disponible sur %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Vous devriez avoir reçu une copie de la licence publique générale (GPL) GNU avec ce programme. Dans le cas contraire, voir %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Si vous aimez ce logiciel Strawberry et que vous pouvez en faire usage, envisagez de sponsoriser ou de faire un don. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Vous pouvez sponsoriser l'auteur sur %1. Vous pouvez également effectuer un paiement unique via %2. + + + Author and maintainer + Auteur et mainteneur + + + Contributors + Contributeurs + + + Clementine authors + Auteurs de Clementine + + + Clementine contributors + Contributeurs de Clementine + + + Thanks to + Remerciements à + + + Thanks to all the other Amarok and Clementine contributors. + Remerciements à tous les autres contributeurs d'Amarok et Clementine. + + + + AddStreamDialog + + Add Stream + Ajouter un flux + + + Enter the URL of a stream: + Saisissez l'URL d'un flux : + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Tous les fichiers (*) + + + Load cover from disk... + Charger la pochette depuis le disque... + + + Save cover to disk... + Enregistrer la pochette sur le disque... + + + Load cover from URL... + Charger une pochette à partir d'une URL... + + + Search for album covers... + Rechercher des pochettes pour cet album... + + + Unset cover + Pochette non définie + + + Delete cover + Supprimer la pochette + + + Clear cover + Effacer la pochette + + + Show fullsize... + Afficher en taille réelle... + + + Search automatically + Rechercher automatiquement + + + Load cover from disk + Charger la pochette depuis le disque + + + Failed to open cover file %1 for reading: %2 + Impossible d'ouvrir la pochette %1 pour la lire : %2 + + + Cover file %1 is empty. + La pochette %1 est vide. + + + unknown + inconnu + + + Save album cover + Enregistrer les pochettes d'albums + + + Failed to open cover file %1 for writing: %2 + Impossible d'ouvrir la pochette %1 pour l'écrire : %2 + + + Failed writing cover to file %1: %2 + Impossible d'écrire la pochette dans le fichier %1: %2 + + + Failed writing cover to file %1. + Impossible d'écrire la pochette dans le fichier %1. + + + Failed to delete cover file %1: %2 + Impossible de supprimer la pochette %1 : %2 + + + Failed to write cover to file %1: %2 + Impossible d'écrire la pochette dans le fichier %1: %2 + + + Could not save cover to file %1. + Impossible de sauvegarder la pochette dans le fichier %1. + + + + AlbumCoverExport + + Export covers + Exporter les pochettes + + + Output + Sortie + + + Enter a filename for exported covers (no extension): + Saisissez un nom de fichier pour les pochettes exportées (sans extension) : + + + Export downloaded covers + Exporter les pochettes téléchargées + + + Export embedded covers + Exporter les pochettes embarquées + + + Existing covers + Pochettes existantes + + + Do not overwrite + Ne pas écraser + + + O&verwrite all + To&ut écraser + + + Overwrite s&maller ones only + Écraser uniquement les plus &petits + + + Size + Taille + + + Scale size + Taille redimensionnée + + + Size: + Taille : + + + Pixel + Pixel + + + + AlbumCoverManager + + Abort + Abandonner + + + All albums + Tous les albums + + + Albums with covers + Albums ayant une pochette + + + Albums without covers + Albums n'ayant pas de pochette + + + Really cancel? + Êtes-vous sûr(e) de vouloir annuler ? + + + Closing this window will stop searching for album covers. + Fermer cette fenêtre arrêtera la recherche de pochette d'albums. + + + Don't stop! + Ne pas arrêter ! + + + All artists + Tous les artistes + + + Various artists + Compilations d'artistes + + + Got %1 covers out of %2 (%3 failed) + %1 pochettes récupérées sur %2 (%3 échouées) + + + %1 transferred + %1 transférés + + + Export finished + Export terminé + + + No covers to export. + Aucune pochette à exporter. + + + Exported %1 covers out of %2 (%3 skipped) + %1 pochettes exportées sur %2 (%3 ignorées) + + + Could not save cover to file %1. + Impossible de sauvegarder la pochette dans le fichier %1. + + + + AlbumCoverSearcher + + Cover Manager + Gestionnaire de pochettes + + + Artist + Artiste + + + Album + Album + + + Search + Recherche + + + Covers from %1 + Pochettes depuis %1 + + + Abort + Abandonner + + + + AnalyzerContainer + + Framerate + Images par seconde + + + Low (%1 fps) + Faible (%1 fps) + + + Medium (%1 fps) + Moyen (%1 fps) + + + High (%1 fps) + Élevé (%1 fps) + + + Super high (%1 fps) + Très élevé (%1 fps) + + + No analyzer + Désactiver le spectrogramme + + + Block analyzer + Spectrogramme avec blocs + + + Boom analyzer + Spectrogramme « Boom » + + + Turbine + Turbine + + + Sonogram + Sonogramme + + + WaveRubber + WaveRubber + + + + AppearanceSettingsPage + + Appearance + Apparence + + + Style + Style + + + Use system theme icons + Utiliser le thème d'icônes du système + + + Settings require restart. + Les paramètres nécessitent un redémarrage. + + + Tabbar colors + Couleurs de la barre d'onglets + + + &Use the system default color + &Utiliser la couleur par défaut du système + + + Use custom color + Utiliser une couleur personnalisée + + + Use gradient background + Utiliser un fond en dégradé + + + Select tabbar color: + Sélectionner la couleur de la barre d'onglets : + + + Background image + Image d'arrière-plan + + + Default bac&kground image + Image d'arrière-&plan par défaut + + + &No background image + &Aucune image d'arrière plan + + + The album cover of the currently playing song + La pochette d'album du morceau en cours de lecture + + + Albu&m cover + &Pochette de l'album + + + Custom image: + Image personnalisée : + + + Browse... + Parcourir... + + + Position + Position + + + Upper Left + Haut gauche + + + Upper Right + Haut droit + + + Middle + Milieu + + + Bottom Left + Inférieur gauche + + + Bottom Right + Inférieur droit + + + Max cover size + Taille maximum de la pochette + + + Stretch image to fill playlist + Étirer l'image pour remplir la liste de lecture + + + Keep aspect ratio + Conserver les proportions + + + Do not cut image + Ne pas couper l'image + + + Blur amount + Niveau de flou + + + 0px + 0px + + + Opacity + Opacité + + + 40% + 40% + + + Icon sizes + Tailles des icônes + + + Playlist buttons + Boutons de liste de lecture + + + Tabbar large mode + Grande barre d'onglets + + + Play control buttons + Boutons de contrôle de lecture + + + Configure buttons + Configurer les boutons + + + Files, playlists and queue buttons + Boutons de fichiers, listes de lecture et file d'attente + + + Tabbar small mode + Petite barre d'onglets + + + Playlist playing song color + Couleur du morceau en lecture dans la playlist + + + System highlight color + Couleur de surbrillance du système + + + Custom color + Couleur personnalisée + + + Select playlist playing song color: + Sélectionner la couleur du morceau en lecture dans la playlist : + + + Select background image + Sélectionner une image d'arrière-plan + + + + BackendSettingsPage + + Backend + Arrière plan + + + Audio output + Sortie audio + + + Device + Périphérique + + + Output + Sortie + + + Engine + Moteur + + + ALSA plugin: + Plugin ALSA : + + + hw + hw + + + p&lughw + p&lughw + + + pcm + pcm + + + Exclusive mode (Experimental) + Mode exclusif (Expérimental) + + + Options + Options + + + Enable volume control + Activer le contrôle du volume + + + Upmix / downmix to + Remix à + + + channels + canaux + + + Improve headphone listening of stereo audio records (bs2b) + Amélioration de l'écoute sur casque des enregistrements stéréo (bs2b) + + + Enable HTTP/2 for streaming + Activer HTTP/2 pour le streaming + + + Use strict SSL mode + Utiliser le mode SSL strict + + + Buffer + Tampon + + + ms + ms + + + Buffer duration + Durée du tampon + + + High watermark + Filigrane fort + + + Low watermark + Filigrane fin + + + Defaults + Défauts + + + Audio normalization + Normalisation audio + + + No audio normalization + Aucune normalisation audio + + + Replay Gain + Ajusteur de gain + + + Use Replay Gain metadata if it is available + Utiliser la métadonnée Replay Gain si disponible + + + Replay Gain mode + Mode du Replay Gain + + + Radio (equal loudness for all tracks) + Radio (volume égalisé pour toutes les pistes) + + + Album (ideal loudness for all tracks) + Album (volume idéal pour toutes les pistes) + + + Pre-amp + Pré-ampli + + + Apply compression to prevent clipping + Appliquer une compression pour prévenir les coupures + + + Fallback-gain + Gain de repli + + + EBU R 128 Loudness Normalization + Normalisation de la Bruyance (EBU R 128) + + + Perform track loudness normalization + Normaliser la bruyance des pistes + + + Target Level + Niveau ciblé + + + Fading + Fondu + + + Fade out when stopping a track + Terminer par un fondu quand une piste s'arrête + + + Cross-fade when changing tracks manually + Appliquer un fondu lors des changements de piste manuels + + + Cross-fade when changing tracks automatically + Appliquer un fondu lors des changements de piste automatiques + + + Except between tracks on the same album or in the same CUE sheet + Excepté entre les pistes d'un même album ou d'une même CUE sheet + + + Fading duration + Durée du fondu + + + Fade out on pause / fade in on resume + Fondu lors de la mise en pause et de la reprise + + + + BehaviourSettingsPage + + Behavior + Comportement + + + Show system tray icon + Afficher l'icône dans la barre de tâche + + + Keep running in the background when the window is closed + Laisser tourner en arrière plan lorsque la fenêtre est fermée + + + Show song progress on system tray icon + Afficher l'avancée de la chanson dans la barre des tâches + + + Show song progress on taskbar + Afficher la progression de la piste dans la barre des tâches + + + Resume playback on start + Redémarrer la lecture au démarrage + + + Show playing widget + Afficher l'applet lecture + + + On startup + Au démarrage + + + Remember from &last time + Se souvenir de la fois &précédente + + + Show the main window + Afficher la fenêtre principale + + + Hide the main window + Masquer la fenêtre principale + + + Show the main window maximized + Afficher la fenêtre principale en plein écran + + + Show the main window minimized + Afficher la fenêtre principale en réduit + + + Language + Langue + + + Use the system default + Utiliser la langue par défaut du système + + + You will need to restart Strawberry if you change the language. + Vous devez redémarrer Strawberry si vous changez de langue. + + + Using the menu to add a song will... + Utiliser le menu pour ajouter un morceau aura comme effet de... + + + Never start playing + Ne jamais commencer la lecture + + + Play if there is nothing already playing + Lire s'il n'y a rien d'autre en cours de lecture + + + Always start playing + Toujours commencer la lecture + + + Pressing "Previous" in player will... + Appuyer sur « Précédent » du lecteur aura comme effet de... + + + Jump to previous song right away + Aller tout de suite à la piste précédente + + + Restart song, then jump to previous if pressed again + Redémarrer le morceau, puis aller au précédent si appuyé à nouveau + + + Double clicking a song will... + Double-cliquer sur un morceau aura comme effet de... + + + Append to the playlist + Ajouter à la liste de lecture + + + Replace the playlist + Remplacer la liste de lecture + + + Open in new playlist + Ouvrir dans une nouvelle liste de lecture + + + Add to the queue + Ajouter à la liste d'attente + + + Double clicking a song in the playlist will... + Double-cliquer sur un morceau dans la liste de lecture aura comme effet de... + + + Change the currently playing song + Changer le morceau en cours de lecture + + + Seeking using a keyboard shortcut or mouse wheel + Rechercher avec un raccourci clavier ou avec la roulette de la souris + + + Time step + Pas temporel + + + s + s + + + Volume Increment + Échelonnage du volume + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Erreur lors de la configuration du périphérique CDDA à l'état prêt. + + + Error while setting CDDA device to pause state. + Erreur lors de la configuration du périphérique CDDA à l'état pause. + + + Error while querying CDDA tracks. + Erreur lors de l'interrogation des pistes CDDA. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + Impossible d'exécuter la requête SQL de la collection : %1 + + + Failed SQL query: %1 + Échec de la requête SQL : %1 + + + Updating %1 database. + Mise à jour de la base de données %1. + + + + CollectionFilterWidget + + Collection Filter + Filtre de bibliothèque + + + Enter search terms here + Saisissez les termes à rechercher ici + + + MenuPopupToolButton + MenuPopupToolButton + + + Entire collection + Bibliothèque complète + + + Added today + Ajouté aujourd'hui + + + Added this week + Ajouté cette semaine + + + Added within three months + Ajouté au cours des 3 derniers mois + + + Added this year + Ajouté cette année + + + Added this month + Ajouté ce mois + + + Save current grouping + Enregistrer le regroupement + + + Manage saved groupings + Gérer les regroupement enregistrés + + + Show + Afficher + + + Group by + Grouper par + + + Display options + Options d'affichage + + + Group by Album artist/Album + Grouper par Artiste d'album/Album + + + Group by Album artist/Album - Disc + Grouper par Artiste d'album/Album - CD + + + Group by Album artist/Year - Album + Grouper par Artiste d'album/Année - Album + + + Group by Album artist/Year - Album - Disc + Grouper par Artiste d'album/Année - Album - CD + + + Group by Artist/Album + Grouper par Artiste/Album + + + Group by Artist/Album - Disc + Grouper par Artiste/Album - CD + + + Group by Artist/Year - Album + Grouper par Artiste/Année - Album + + + Group by Artist/Year - Album - Disc + Grouper par Artiste/Année - Album - CD + + + Group by Genre/Album artist/Album + Grouper par Genre/Artiste d'album/Album + + + Group by Genre/Artist/Album + Grouper par Genre/Artiste/Album + + + Group by Album Artist + Grouper par Artiste d'album + + + Group by Artist + Grouper par Artiste + + + Group by Album + Grouper par Album + + + Group by Genre/Album + Grouper par Genre/Album + + + Advanced grouping... + Groupement avancé... + + + Grouping Name + Nom du regroupement + + + Grouping name: + Nom du regroupement : + + + + CollectionModel + + Various artists + Compilations d'artistes + + + Loading... + Chargement... + + + Unknown + Inconnu + + + + CollectionSettingsPage + + Collection + Bibliothèque + + + These folders will be scanned for music to make up your collection + Ces dossiers seront analysés pour trouver les fichiers qui constitueront votre bibliothèque musicale + + + Add new folder... + Ajouter un nouveau dossier... + + + Remove folder + Supprimer un dossier + + + Automatic updating + Mise à jour automatique + + + Update the collection when Strawberry starts + Mettre à jour la bibliothèque au lancement de Strawberry + + + Monitor the collection for changes + Surveiller les modifications de la bibliothèque + + + Song fingerprinting and tracking + Empreinte et suivi des morceaux + + + Mark disappeared songs unavailable + Marquer les morceaux disparus comme indisponible + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + Faire l'analyse EBU R 128 de la piste (requis pour normaliser la bruyance selon la norme EBU R 128) + + + Expire unavailable songs after + Expirer les morceaux indisponibles après + + + days + jours + + + Preferred album art filenames (comma separated) + Noms de pochette préférés (liste séparée par des virgules) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Pendant la recherche de pochettes Strawberry utilisera d'abord les fichiers qui contiennent un de ces mots. +S'il n'en existe pas alors Strawberry utilisera la plus grande image du dossier. + + + Display options + Options d'affichage + + + Automatically open single categories in the collection tree + Ouvrir automatiquement les catégories seules dans l'arbre de la bibliothèque + + + Show dividers + Afficher les séparateurs + + + Show album cover art in collection + Afficher la pochette de l'album dans la bibliothèque + + + Use various artists for compilation albums + Utiliser divers artistes pour les albums de compilation + + + Skip leading articles ("the", "a", "an") when sorting artist names + Ignorer les déterminants ("Les", "Le/La", "un/une"…) lors du tri des noms d'artistes + + + Album cover pixmap cache + Cache pixmap de pochette d'album + + + Size + Taille + + + Enable Disk Cache + Activer le cache disque + + + Disk Cache Size + Taille du cache disque + + + Current disk cache in use: + Cache disque en cours d'utilisation : + + + Clear Disk Cache + Vider le cache disque + + + Song playcounts and ratings + Compteur d'écoutes et notations des morceaux + + + Save playcounts to song tags when possible + Enregistrer les compteur d'écoutes dans les tags de morceaux lorsque cela est possible + + + Save ratings to song tags when possible + Enregistrer les notations dans les tags de morceaux lorsque cela est possible + + + Overwrite database playcount when songs are re-read from disk + Remplacer le nombre de lectures de la base de données lorsque les morceaux sont relus à partir du disque + + + Overwrite database rating when songs are re-read from disk + Remplacer la notation de la base de données lorsque les morceaux sont relus à partir du disque + + + Save playcounts and ratings to files now + Enregistrer les compteur d'écoutes et les notations dans des fichiers maintenant + + + Enable delete files in the right click context menu + Activer la suppression des fichiers dans le menu contextuel du clic droit + + + Add directory... + Ajouter un dossier... + + + Write all playcounts and ratings to files + Écrire tous les compteur d'écoutes et notations dans les fichiers + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Êtes-vous sûr de vouloir écrire le compteur d'écoutes des morceaux et les notations dans un fichier pour tous les morceaux de votre bibliothèque ? + + + + CollectionView + + Your collection is empty! + Votre bibliothèque est vide ! + + + Click here to add some music + Cliquez ici pour créer votre bibliothèque musicale + + + Append to current playlist + Ajouter à la liste de lecture actuelle + + + Replace current playlist + Remplacer la liste de lecture actuelle + + + Open in new playlist + Ouvrir dans une nouvelle liste de lecture + + + Queue track + Mettre cette piste en liste d'attente + + + Queue to play next + Mettre en liste d'attente pour une lecture ultérieure + + + Search for this + Rechercher cela + + + Organize files... + Organisation des fichiers... + + + Copy to device... + Copier sur le périphérique... + + + Delete from disk... + Supprimer du disque... + + + Edit track information... + Modifier la description de la piste... + + + Edit tracks information... + Modifier la description des pistes... + + + Show in file browser... + Afficher dans le navigateur de fichiers... + + + Rescan song(s) + Réanalyser le morceau + + + Show in various artists + Classer dans la catégorie « Compilations d'artistes » + + + Don't show in various artists + Ne pas classer dans la catégorie « Compilations d'artistes » + + + There are other songs in this album + Il y a d'autres morceaux dans cet album + + + Would you like to move the other songs on this album to Various Artists as well? + Souhaitez-vous également déplacer les autres morceaux de cet album vers Compilations d'artistes ? + + + Error + Erreur + + + None of the selected songs were suitable for copying to a device + Aucun des morceaux sélectionnés n'était valide pour la copie vers un périphérique + + + + CollectionViewContainer + + Form + Forme + + + + CollectionWatcher + + Updating collection + Mise à jour de la bibliothèque + + + Updating %1 + Mise à jour %1 + + + + Console + + Console + Console + + + Run + Lancer + + + + ContextSettingsPage + + Context + Contexte + + + Custom text settings + Réglages de texte personnalisés + + + MenuPopupToolButton + MenuPopupToolButton + + + Title + Titre + + + Summary + Résumé + + + Enable Items + Activer les éléments + + + Album + Album + + + Technical Data + Données techniques + + + Song Lyrics + Paroles des morceaux + + + Automatically search for album cover + Rechercher automatiquement la pochette de l'album + + + Automatically search for song lyrics + Rechercher automatiquement les paroles des morceaux + + + Font for headline + Police pour le titre + + + Font + Police + + + Font size + Taille de police + + + pt + pt + + + Preview + Aperçu + + + Font for data and lyrics + Police pour les données et les paroles + + + Add song artist tag + Ajouter le tag artiste du morceau + + + Add song album tag + Ajouter le tag album du morceau + + + Add song title tag + Ajouter le tag titre du morceau + + + Add song albumartist tag + Ajouter le tag artiste de l'album du morceau + + + Add song year tag + Ajouter le tag année du morceau + + + Add song composer tag + Ajouter le tag compositeur du morceau + + + Add song performer tag + Ajouter un tag interprète + + + Add song grouping tag + Ajouter un tag de groupement de morceaux + + + Add song disc tag + Ajouter le tag numéro de disque du morceau + + + Add song track tag + Ajouter le tag piste du morceau + + + Add song genre tag + Ajouter le tag genre du morceau + + + Add song length tag + Ajouter la durée du morceau + + + Add song play count + Ajouter le compteur d'écoutes du morceau + + + Add song skip count + Ajouter le compteur de sauts du morceau + + + Add a new line if supported by the notification type + Ajouter un saut de ligne, si cela est supporté par le type de notification + + + %filename% + %filename% + + + Add song filename + Ajouter le nom de fichier du morceau + + + %url% + %url% + + + Add song URL + Ajouter l'url du morceau + + + %rating% + %rating% + + + Add song rating + Ajouter la note du morceau + + + %originalyear% + %originalyear% + + + Add song original year tag + Ajouter le tag année originale du morceau + + + + ContextView + + Filetype + Type de fichier + + + Length + Durée + + + Samplerate + Échantillonnage + + + Bit depth + Codage en bit + + + Bitrate + Débit + + + EBU R 128 Integrated Loudness + Bruyance Intégrée (EBU R 128) + + + EBU R 128 Loudness Range + Plage de Bruyance (EBU R 128) + + + Show album cover + Afficher la pochette de l'album + + + Show song technical data + Afficher les données techniques du morceau + + + Show song lyrics + Afficher les paroles + + + Automatically search for song lyrics + Rechercher automatiquement les paroles des morceaux + + + No song playing + Aucun morceau en cours de lecture + + + %1 song + %1 morceau + + + %1 songs + %1 morceaux + + + %1 artist + %1 artiste + + + %1 artists + %1 artistes + + + %1 album + %1 album + + + %1 albums + %1 albums + + + kbps + kbps + + + + CoverFromURLDialog + + Load cover from URL + Charger une pochette à partir d'une URL + + + Enter a URL to download a cover from the Internet: + Saisissez une URL pour télécharger une pochette depuis Internet : + + + Fetching cover error + Erreur lors de la récupération de la pochette + + + The site you requested does not exist! + Le site demandé n'existe pas ! + + + The site you requested is not an image! + Le site demandé n'est pas une image ! + + + + CoverManager + + Cover Manager + Gestionnaire de pochettes + + + Enter search terms here + Saisissez les termes à rechercher ici + + + MenuPopupToolButton + MenuPopupToolButton + + + View + Vue + + + Total albums: + Total albums : + + + Without cover: + Sans pochette : + + + 0 + 0 + + + Fetch Missing Covers + Récupérer les pochettes manquantes + + + Export Covers + Exporter les pochettes + + + Fetch automatically + Récupérer automatiquement + + + Load + Charger + + + Add to playlist + Ajouter à la liste de lecture + + + + CoverSearchStatisticsDialog + + Fetch completed + Récupération terminé + + + Got %1 covers out of %2 (%3 failed) + %1 pochettes récupérées sur %2 (%3 échouées) + + + Covers from %1 + Pochettes depuis %1 + + + Total network requests made + Nombre total de requêtes réseau effectuées + + + Average image size + Taille moyenne de l'image + + + Total bytes transferred + Nombre total d'octets transférés + + + + CoversSettingsPage + + Covers + Pochettes + + + Cover providers + Fournisseurs de pochette + + + Choose the providers you want to use when searching for covers. + Choisissez les fournisseurs que vous souhaitez utiliser lors de la recherche des pochettes. + + + Move up + Déplacer vers le haut + + + Move down + Déplacer vers le bas + + + Authentication + Authentification + + + Login + Se connecter + + + Album cover types + Types de pochette d'album + + + Saving album covers + Sauvegarde des pochettes d'album + + + Save album covers in album directory + Enregistrer les pochettes dans le dossier album + + + Save album covers in cache directory + Enregistrer les pochettes d'album dans le répertoire cache + + + Save album covers as embedded cover + Enregistrer les pochettes d'album en tant que pochette embarquée + + + Filename: + Nom de fichier : + + + Pattern + Motif + + + Random + Aléatoire + + + Overwrite existing file + Écraser le fichier existant + + + Lowercase filename + Nom de fichier en minuscule + + + Replace spaces with dashes + Remplacer les espaces par des tirets + + + Use Tidal settings to authenticate. + Utiliser les paramètres de Tidal pour vous authentifier. + + + Use Spotify settings to authenticate. + Utilisez les paramètres de Spotify pour vous authentifier. + + + Use Qobuz settings to authenticate. + Utiliser les paramètres de Qobuz pour vous authentifier. + + + %1 needs authentication. + %1 nécessite une authentification. + + + %1 does not need authentication. + %1 ne nécessite pas une authentification. + + + No provider selected. + Aucun fournisseur sélectionné. + + + Authentication failed + Échec de l'authentification + + + Manually unset (%1) + Manuellement non définie (%1) + + + Set through album cover search (%1) + Définir la recherche via la pochette d'album (%1) + + + Automatically picked up from album directory (%1) + Relève automatiquement dans le répertoire d'album (%1) + + + Embedded album cover art (%1) + Pochette d'album intégrée (%1) + + + + CueParser + + Saving CUE files is not supported. + L'enregistrement des fichiers CUE n'est pas pris en charge. + + + + Database + + Unable to execute SQL query: %1 + Impossible d'exécuter la requête SQL : %1 + + + Failed SQL query: %1 + Échec de la requête SQL : %1 + + + Integrity check + Vérification de l'intégrité + + + Database corruption detected. + Corruption de la base de données détectée. + + + Backing up database + Sauvegarde de la base de données + + + + DeleteConfirmationDialog + + Delete files + Supprimer les fichiers + + + The following files will be deleted from disk: + Les fichiers suivants seront supprimés du disque : + + + Are you sure you want to continue? + Êtes-vous sûr(e) de vouloir continuer ? + + + + DeleteFiles + + Deleting files + Suppression des fichiers + + + + DeviceItemDelegate + + Updating %1%... + Mise à jour %1%... + + + Not connected + Déconnecté + + + Not mounted - double click to mount + Non monté – double-cliquez pour monter + + + Double click to open + Double-cliquer pour ouvrir + + + %1 song%2 + %1 morceau %2 + + + + DeviceManager + + Connect device + Connexion du périphérique + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + C'est la première fois que vous connectez ce périphérique. Strawberry va analyser le périphérique pour trouver des fichiers musicaux - Ceci peu prendre un certain temps. + + + This device will not work properly + Ce périphérique ne fonctionne pas correctement + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Ceci est un périphérique MTP, mais vous avez compilé Strawberry sans le support libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Si vous continuez, ce périphérique fonctionnera lentement et les morceaux que vous y copiez pourraient ne pas fonctionner. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Ceci est un iPod, mais vous avez compilé Strawberry sans le support libgpod. + + + This type of device is not supported: %1 + Ce type de périphérique n'est pas supporté : %1 + + + + DeviceProperties + + Device Properties + Propriétés du périphérique + + + Information + Information + + + Name + Nom + + + Icon + Icône + + + Hardware information + Informations sur le matériel + + + Hardware information is only available while the device is connected. + Les informations sur le matériel sont disponibles uniquement lorsque le périphérique est connecté. + + + File formats + Formats de fichier + + + Supported formats + Formats supportés + + + This device supports the following file formats: + Ce périphérique supporte les formats suivant : + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry peut automatiquement convertir la musique que vous copiez sur ce périphérique dans un format qu'il peut lire. + + + Do not convert any music + Ne pas convertir la musique + + + Convert any music that the device can't play + Convertir la musique que le périphérique ne peut pas lire + + + Convert all music + Convertir toutes les musiques + + + Preferred format + Format préféré + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Ce périphérique doit être connecté et ouvert pour que Strawberry puisse voir les formats de fichier qu'il gère. + + + Open device + Ouvrir le périphérique + + + Querying device... + Requête du périphérique... + + + Model + Modèle + + + Manufacturer + Fabricant + + + + DeviceView + + Safely remove device + Enlever le périphérique en toute sécurité + + + Forget device + Oublier ce périphérique + + + Device properties... + Propriétés du périphérique... + + + Append to current playlist + Ajouter à la liste de lecture actuelle + + + Replace current playlist + Remplacer la liste de lecture actuelle + + + Open in new playlist + Ouvrir dans une nouvelle liste de lecture + + + Copy to collection... + Copier vers la bibliothèque... + + + Delete from device... + Supprimer du périphérique... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + « Oublier un périphérique » va supprimer le périphérique de cette liste et obligera Strawberry à rechercher à nouveau tous les morceaux qu'il contient la prochaine fois que vous le connecterez. + + + Delete files + Supprimer les fichiers + + + These files will be deleted from the device, are you sure you want to continue? + Ces fichiers vont être supprimés du périphérique, êtes-vous sûr(e) de vouloir continuer ? + + + + DeviceViewContainer + + Form + Forme + + + + DynamicPlaylistControls + + Dynamic mode is on + Le mode dynamique est activé + + + New tracks will be added automatically. + De nouvelles pistes seront ajoutées automatiquement. + + + Expand + Étendre + + + Repopulate + Rafraîchir + + + Turn off + Éteindre + + + + EditTagDialog + + Edit track information + Modifier la description de la piste + + + Summary + Résumé + + + Date created + Date de création + + + Art Automatic + Visuel automatique + + + Date modified + Date de modification + + + Art Embedded + Visuel embarqué + + + Last played + A playlist's tag. + Dernière écoute + + + File type + Type de fichier + + + Length + Durée + + + Play count + Compteur d'écoutes + + + Bit depth + Codage en bit + + + EBU R 128 integrated loudness + bruyance intégrée (EBU R 128) + + + Bit rate + Débit + + + Skip count + Compteur de morceaux sautés + + + Sample rate + Échantillonnage + + + Path + Emplacement + + + Filename + Nom du fichier + + + Art Unset + Visuel non définie + + + File size + Taille du fichier + + + Art Manual + Visuel manuel + + + EBU R 128 loudness range + plage de bruyance (EBU R 128) + + + Reset play counts + Réinitialiser le compteur de lecture + + + Tags + Tags + + + MenuPopupToolButton + MenuPopupToolButton + + + Change art + Changer le visuel + + + Embedded cover + Pochette embarquée + + + Disc + CD + + + Grouping + Groupement + + + Album artist + Artiste de l'album + + + Album + Album + + + Year + Année + + + Title + Titre + + + Artist + Artiste + + + Composer + Compositeur + + + Complete tags automatically + Compléter les tags automatiquement + + + Genre + Genre + + + Comment + Commentaire + + + Performer + Interprète + + + Compilation + Compilation + + + Track + Piste + + + Rating + Notation + + + Lyrics + Paroles + + + Complete lyrics automatically + Compléter les paroles automatiquement + + + Previous + Précédent + + + Next + Suivant + + + Saving tracks + Sauvegarde des pistes + + + Loading tracks + Chargement des pistes + + + %1 songs selected. + %1 morceaux sélectionnés. + + + kbps + kbps + + + Unknown + Inconnu + + + Yes + Oui + + + No + Non + + + None + Aucun + + + Cover is unset. + La pochette n'est pas définie. + + + Cover from embedded image. + Pochette de l'image intégrée. + + + Cover from %1 + Pochette de %1 + + + Cover art not set + Pochette non définie + + + Album cover editing is only available for collection songs. + L'édition de la pochette d'album n'est disponible que pour les morceaux de la bibliothèque. + + + Cover changed: Will be cleared when saved. + Pochette modifiée : sera effacée une fois enregistrée. + + + Cover changed: Will be unset when saved. + Pochette modifiée : ne sera pas définie une fois enregistrée. + + + Cover changed: Will be deleted when saved. + Pochette modifiée : sera supprimée une fois enregistrée. + + + Cover changed: Will set new when saved. + Pochette modifiée : sera définie comme nouvelle une fois enregistrée. + + + Never + Jamais + + + Reset song play statistics + Réinitialiser les statistiques de lecture du morceau + + + Are you sure you want to reset this song's play statistics? + Voulez-vous vraiment réinitialiser les statistiques de lecture de ce morceau ? + + + loading... + chargement... + + + Not found. + Non trouvé + + + Could not write metadata to %1 + Impossible d'écrire les métadonnées vers %1 + + + Could not write metadata to %1: %2 + Impossible d'écrire les métadonnées vers %1: %2 + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Égaliseur + + + Preset: + Préréglage : + + + Save preset + Enregistrer le pré-réglage + + + Delete preset + Effacer le pré-réglage + + + Enable equalizer + Activer l'égaliseur + + + Enable stereo balancer + Activer la balance stéréo + + + Left + Gauche + + + Balance + Balance + + + Right + Droite + + + Pre-amp + Pré-ampli + + + Custom + Personnalisé + + + Classical + Classique + + + Club + Club + + + Dance + Danse + + + Full Bass + Graves Max + + + Full Treble + Aigus Max + + + Full Bass + Treble + Graves + Aigus Max + + + Laptop/Headphones + Portable/Écouteurs + + + Large Hall + Large Salle + + + Live + En direct + + + Party + Soirée + + + Pop + Pop + + + Reggae + Reggae + + + Rock + Rock + + + Soft + Doux + + + Ska + Ska + + + Soft Rock + Soft Rock + + + Techno + Techno + + + Zero + Zéro + + + Name + Nom + + + Are you sure you want to delete the "%1" preset? + Êtes-vous sûr(e) de vouloir supprimer la valeur prédéfinie « %1 » ? + + + + EqualizerSlider + + Equalizer + Égaliseur + + + %1 dB + %1 dB + + + + ErrorDialog + + Strawberry Error + Erreur de Strawberry + + + + FancyTabWidget + + Large sidebar + Barre latérale large + + + Icons sidebar + Barre latérale des icônes + + + Small sidebar + Petite barre latérale + + + Plain sidebar + Barre latérale simple + + + Tabs on top + Onglets au dessus + + + Icons on top + Icônes au dessus + + + + FileTypeItemDelegate + + Unknown + Inconnu + + + + FileView + + Form + Forme + + + + FileViewList + + Append to current playlist + Ajouter à la liste de lecture actuelle + + + Replace current playlist + Remplacer la liste de lecture actuelle + + + Open in new playlist + Ouvrir dans une nouvelle liste de lecture + + + Copy to collection... + Copier vers la bibliothèque... + + + Move to collection... + Déplacer vers la bibliothèque... + + + Copy to device... + Copier sur le périphérique... + + + Delete from disk... + Supprimer du disque... + + + Edit track information... + Modifier la description de la piste... + + + Show in file browser... + Afficher dans le navigateur de fichiers... + + + + FreeSpaceBar + + Available + Disponible + + + New songs + Nouveaux morceaux + + + Exceeded by + Surpassé par + + + Used + Utilisé + + + + GPodDevice + + Could not copy %1 to %2: %3 + Impossible de copier %1 dans %2 : %3 + + + Writing database failed: %1 + L'écriture de la base de données a échoué : %1 + + + Writing database failed. + L'écriture de la base de données a échoué + + + + GPodLoader + + Loading iPod database + Chargement de la base de données iPod + + + An error occurred loading the iTunes database + Une erreur est survenue lors du chargement de la base de données iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Authentification Genius + + + Please open this URL in your browser + Veuillez ouvrir ce lien dans votre navigateur + + + Redirect missing token code! + Redirigé le code du jeton manquant ! + + + Received invalid reply from web browser. + Réponse invalide du navigateur internet. + + + Redirect from Genius is missing query items code or state. + Rediriger depuis Genius ne contient pas de code ou d'état des éléments de requête. + + + + GioLister + + Mount point + Point de montage + + + Device + Périphérique + + + URI + URI + + + + GlobalShortcutGrabber + + Press a key + Appuyez sur une touche + + + Press a key combination to use for %1... + Appuyez sur une combinaison de touches à utiliser pour %1... + + + + GlobalShortcutsManager + + Play + Lecture + + + Pause + Pause + + + Play/Pause + Lecture/Pause + + + Stop + Arrêt + + + Stop playing after current track + Arrêter la lecture après la piste en cours + + + Next track + Piste suivante + + + Previous track + Piste précédente + + + Restart or previous track + Redémarrer ou revenir à la piste précédente + + + Increase volume + Augmenter le volume + + + Decrease volume + Diminuer le volume + + + Mute + Sourdine + + + Seek forward + Chercher en avant + + + Seek backward + Chercher en arrière + + + Show/Hide + Afficher/Masquer + + + Show OSD + Afficher OSD + + + Toggle Pretty OSD + Basculer le panneau d'information stylisé + + + Change shuffle mode + Modifier le mode aléatoire + + + Change repeat mode + Modifier le mode répétition + + + Enable/disable scrobbling + Activer/Désactiver le scrobbling + + + Love + J'aime + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Raccourcis globaux + + + Use Gnome (GSD) shortcuts when available + Utilisez les raccourcis de Gnome (GSD) lorsque c'est possible + + + Open... + Ouvrir... + + + Use MATE shortcuts when available + Utiliser les raccourcis MATE lorsqu'ils sont disponibles + + + Use KDE (KGlobalAccel) shortcuts when available + Utilisez les raccourcis de KDE (KGlobalAccel) lorsque c'est possible + + + Use X11 shortcuts when available + Utilisez les raccourcis de X11 lorsque c'est possible + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Vous devez lancer les Préférences Système et permettre à Strawberry de « <span style="font-style:italic">contrôler votre ordinateur</span> » pour utiliser les raccourcis globaux de Strawberry. + + + Action + Category label + Action + + + Shortcut + Raccourci + + + Shortcut for %1 + Raccourci pour %1 + + + &None + Aucu&n + + + &Default + &Par défaut + + + &Custom + &Personnaliser + + + Change shortcut... + Changer le raccourci... + + + The "%1" command could not be started. + La commande « %1 » n'a pas pu être démarrée. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Utiliser les raccourcis X11 sur %1 n'est pas recommandé et peut rendre le clavier inopérant ! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Les raccourcis sur %1 sont généralement ceux de MPRIS et de KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Les raccourcis sur %1 sont généralement utilisés via Gnome Settings Daemon et doivent être configurés dans gnome-settings-daemon à la place. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Les raccourcis sur %1 sont généralement utilisés via Cinnamon Settings Daemon et doivent être configurés dans cinnamon-settings-daemon à la place. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Les raccourcis sur %1 sont généralement utilisés via MATE Settings Daemon et doivent être configurés ici à la place. + + + + GroupByDialog + + Collection advanced grouping + Groupement avancé de la bibliothèque + + + You can change the way the songs in the collection are organized. + Vous pouvez changer la façon dont les morceaux de la collection sont organisés. + + + Group Collection by... + Grouper la Bibliothèque par... + + + First level + Premier niveau + + + None + Aucun + + + Artist + Artiste + + + Album artist + Artiste de l'album + + + Album + Album + + + Album - Disc + Album - CD + + + Disc + CD + + + Format + Format + + + Genre + Genre + + + Year + Année + + + Year - Album + Année - Album + + + Year - Album - Disc + Année - Album - CD + + + Original year + Année d'origine + + + Original year - Album + Année d'origine - Album + + + Composer + Compositeur + + + Performer + Interprète + + + Grouping + Groupement + + + File type + Type de fichier + + + Sample rate + Échantillonnage + + + Bit depth + Codage en bit + + + Bitrate + Débit + + + Second level + Deuxième niveau + + + Third level + Troisième niveau + + + Separate albums by grouping tag + Séparer les albums en regroupant par tag + + + + GstEngine + + Buffering + Mise en mémoire tampon + + + + LastFMImport + + Missing username, please login to last.fm first! + Nom d'utilisateur manquant, veuillez d'abord vous connecter à last.fm ! + + + + LastFMImportDialog + + Import data from last.fm + Importer les données de last.fm + + + Choose data to import from last.fm + Choisissez les données à importer de last.fm + + + Last played + Dernière écoute + + + Play counts + Compteur d'écoutes + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Attention : Le compteur d'écoutes et la dernière lecture de last.fm remplaceront complètement les mêmes données pour les morceaux correspondants. Le compteur d'écoutes remplacera les données basées sur l'artiste et le titre du morceau pour les mêmes albums ! Veuillez sauvegarder votre base de données avant de commencer. + + + Go! + Aller ! + + + Close + Fermer + + + Cancel + Annuler + + + Receiving initial data from last.fm... + Réception des données initiales de last.fm... + + + Receiving playcount for %1 songs and last played for %2 songs. + Réception du compteur d'écoute pour %1 morceaux et de la dernière lecture pour %2 morceaux. + + + Receiving last played for %1 songs. + Réception de la dernière lecture de %1 morceaux. + + + Receiving playcounts for %1 songs. + Réception du compteur d'écoutes pour %1 morceaux. + + + Playcounts for %1 songs and last played for %2 songs received. + Compteur d'écoutes pour %1 morceaux et dernière lecture pour %2 morceaux reçus. + + + Last played for %1 songs received. + Dernière lecture pour %1 morceaux reçus. + + + Playcounts for %1 songs received. + Compteur d'écoutes pour %1 morceaux reçus. + + + + LastPlayedItemDelegate + + Never + Jamais + + + + Library + + Least favourite tracks + Pistes les moins préférées + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Authentification à ListenBrainz + + + Please open this URL in your browser + Veuillez ouvrir ce lien dans votre navigateur + + + Redirect missing token code! + Redirigé le code du jeton manquant ! + + + Received invalid reply from web browser. + Réponse invalide du navigateur internet. + + + Unable to scrobble %1 - %2 because of error: %3 + Impossible de scrobbler %1 - %2 à cause d'une erreur : %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + ID d'enregistrement MusicBrainz manquant pour %1 %2 %3 + + + ListenBrainz error: %1 + Erreur ListenBrainz %1 + + + + LoginStateWidget + + Form + Forme + + + You are not signed in. + Vous n'êtes pas connecté. + + + Sign out + Se déconnecter + + + Signing in... + Connexion... + + + You are signed in. + Vous êtes connecté. + + + You are signed in as %1. + Vous êtes connecté en tant que %1. + + + Expires on %1 + Expire au %1 + + + + LyricsSettingsPage + + Lyrics + Paroles + + + Lyrics providers + Fournisseurs des paroles + + + Choose the providers you want to use when searching for lyrics. + Choisissez les fournisseurs que vous souhaitez utiliser lors de la recherche des paroles. + + + Move up + Déplacer vers le haut + + + Move down + Déplacer vers le bas + + + Authentication + Authentification + + + Login + Se connecter + + + No provider selected. + Aucun fournisseur sélectionné. + + + Authentication failed + Échec de l'authentification + + + + MainWindow + + Strawberry Music Player + Lecteur audio Strawberry + + + MenuPopupToolButton + MenuPopupToolButton + + + &Music + &Musique + + + P&laylist + Liste de &lecture + + + Help + Aide + + + &Tools + &Outils + + + Previous track + Piste précédente + + + F5 + F5 + + + &Play + &Lecture + + + F6 + F6 + + + &Stop + &Stop + + + F7 + F7 + + + &Next track + &Piste suivante + + + F8 + F8 + + + &Quit + &Quitter + + + Ctrl+Q + Ctrl+Q + + + Stop after this track + Arrêter la lecture après cette piste + + + Ctrl+Alt+V + Ctrl+Alt+V + + + Love + J'aime + + + &Clear playlist + &Vider la liste de lecture + + + Clear playlist + Vider la liste de lecture + + + Ctrl+K + Ctrl+K + + + Edit track information... + Modifier la description de la piste... + + + Ctrl+E + Ctrl+E + + + Renumber tracks in this order... + Renuméroter les pistes dans cet ordre... + + + Set value for all selected tracks... + Définir une valeur pour toutes les pistes sélectionnées... + + + Edit tag... + Modifier le tag... + + + &Settings... + &Paramètres... + + + Ctrl+P + Ctrl+P + + + &About Strawberry + À propos de Strawberry + + + F1 + F1 + + + S&huffle playlist + Mélan&ger la liste de lecture + + + Ctrl+H + Ctrl+H + + + &Add file... + &Ajouter un fichier... + + + Ctrl+Shift+A + Ctrl+Maj+A + + + &Open file... + &Ouvrir un fichier... + + + Open audio &CD... + Ouvrir un &CD audio... + + + &Cover Manager + Gestionnaire de po&chettes + + + C&onsole + C&onsole + + + &Shuffle mode + &Mode aléatoire + + + &Repeat mode + Mode &répétition + + + Remove from playlist + Supprimer de la liste de lecture + + + &Equalizer + &Égaliseur + + + &Transcode Music + &Transcoder la musique + + + Add &folder... + Ajouter un &dossier... + + + &Jump to the currently playing track + &Aller à la piste en cours de lecture + + + Ctrl+J + Ctrl+J + + + &New playlist + &Nouvelle liste de lecture + + + Ctrl+N + Ctrl+N + + + Save &playlist... + Enregistrer la &liste de lecture... + + + Ctrl+S + Ctrl+S + + + &Load playlist... + &Charger une liste de lecture... + + + Ctrl+Shift+O + Ctrl+Maj+O + + + &Save all playlists... + &Enregistrer toutes les listes de lecture... + + + Go to next playlist tab + Aller à la liste de lecture suivante + + + Go to previous playlist tab + Aller à la liste de lecture précédente + + + &Update changed collection folders + &Mettre à jour les dossiers de la bibliothèque + + + About &Qt + À propos de &Qt + + + &Mute + &Sourdine + + + Ctrl+M + Ctrl+M + + + &Do a full collection rescan + &Refaire une analyse complète de la bibliothèque + + + Stop collection scan + Arrêter l'analyse de la bibliothèque + + + Complete tags automatically... + Compléter les tags automatiquement... + + + Ctrl+T + Ctrl+T + + + Toggle scrobbling + Basculer le scrobbling + + + Remove &duplicates from playlist + Supprimer les &doublons de la liste de lecture + + + Remove &unavailable tracks from playlist + Supprimer les pistes &indisponibles de la liste de lecture + + + Add file(s) to transcoder + Ajouter des fichiers à transcoder + + + Add file to transcoder + Ajouter un fichier à transcoder + + + Add stream... + Ajouter un flux... + + + Show sidebar + Afficher la barre latérale + + + Import data from last.fm... + Importer les données de last.fm... + + + All Files (*) + Tous les fichiers (*) + + + Context + Contexte + + + Collection + Bibliothèque + + + Queue + Liste d'attente + + + Playlists + Listes de lecture + + + Smart playlists + Listes de lecture intelligentes + + + Files + Fichiers + + + Radios + Radios + + + Devices + Périphériques + + + Subsonic + Subsonic + + + Tidal + Tidal + + + Spotify + Spotify + + + Qobuz + Qobuz + + + Show all songs + Afficher tous les morceaux + + + Show only duplicates + Afficher uniquement les doublons + + + Show only untagged + Afficher uniquement les morceaux sans tag + + + Configure collection... + Configurer votre bibliothèque... + + + Play + Lecture + + + Toggle queue status + Basculer l'état de la file d'attente + + + Queue selected tracks to play next + Mettre les pistes sélectionnées en liste d'attente pour une lecture ultérieure + + + Toggle skip status + Basculer le saut du statut + + + Rescan song(s)... + Réanalyse des morceaux... + + + Copy URL(s)... + Copie des URL(s)... + + + Show in collection... + Afficher dans la bibliothèque... + + + Show in file browser... + Afficher dans le navigateur de fichiers... + + + Organize files... + Organisation des fichiers... + + + Copy to collection... + Copier vers la bibliothèque... + + + Move to collection... + Déplacer vers la bibliothèque... + + + Copy to device... + Copier sur le périphérique... + + + Delete from disk... + Supprimer du disque... + + + Check for updates... + Vérifier les mises à jour... + + + Strawberry running under Rosetta + Strawberry fonctionnant sous Rosetta + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + Vous exécutez Strawberry sous Rosetta. L'exécution de Strawberry sous Rosetta n'est pas prise en charge et est connue pour avoir des problèmes. Vous devez télécharger Strawberry pour la bonne architecture du processeur à partir de %1 + + + Sponsoring Strawberry + Sponsor de Strawberry + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry est un logiciel libre et open source. Si vous aimez ce logiciel, envisagez de sponsoriser le projet. Pour plus d'informations sur le parrainage/sponsoring, consultez notre site Web %1 + + + Pause + Pause + + + Dequeue track + Enlever cette piste de la file d'attente + + + Dequeue selected tracks + Enlever les pistes sélectionnées de la file d'attente + + + Queue track + Mettre cette piste en liste d'attente + + + Queue selected tracks + Mettre les pistes sélectionnées en liste d'attente + + + Queue to play next + Mettre en liste d'attente pour une lecture ultérieure + + + Unskip track + Ne pas passer la piste + + + Unskip selected tracks + Ne pas passer les pistes sélectionnées + + + Skip track + Passer la piste + + + Skip selected tracks + Passer les pistes sélectionnées + + + Set %1 to "%2"... + Définir %1 à la valeur « %2 »... + + + Edit tag "%1"... + Modifier le tag « %1 »... + + + Add to another playlist + Ajouter à une autre liste de lecture + + + New playlist + Nouvelle liste de lecture + + + Add file + Ajouter un fichier + + + Music + Musique + + + Add folder + Ajouter un dossier + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + La liste de lecture contient %1 morceaux, trop volumineux pour être annulés. Voulez-vous vraiment effacer la liste de lecture ? + + + Error + Erreur + + + None of the selected songs were suitable for copying to a device + Aucun des morceaux sélectionnés n'était valide pour la copie vers un périphérique + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + La nouvelle version de Strawberry nécessite une mise à jour de votre bibliothèque pour supporter les nouvelles fonctionnalités suivantes : + + + Would you like to run a full rescan right now? + Souhaitez-vous effectuer une nouvelle analyse complète de la bibliothèque maintenant ? + + + Collection rescan notice + Avertissement de réanalyse de la bibliothèque + + + + MessageDialog + + Message Dialog + Boîte de dialogue des messages + + + Do not show this message again. + Ne plus afficher ce message. + + + + MimeData + + Playlist + Liste de lecture + + + + MoodbarProxyStyle + + Show moodbar + Afficher la barre d'humeur + + + Moodbar style + Style de la barre d'humeur + + + + MoodbarSettingsPage + + Moodbar + Barre d'humeur + + + Show a moodbar in the track progress bar + Afficher une barre d'humeur sur la barre de progression de la piste + + + Moodbar style + Style de la barre d'humeur + + + Save the .mood files directly in the songs folders + Sauvegarder les fichiers .mood dans les dossiers des morceaux + + + Enabled + Activé + + + + MtpConnection + + Invalid MTP device: %1 + Dispositif MTP non valide : %1 + + + Could not open MTP device. + Impossible d'ouvrir le périphérique MTP. + + + MTP error: %1 + Erreur MTP : %1 + + + MTP device not found. + Périphérique MTP introuvable. + + + + MtpLoader + + Loading MTP device + Chargement du périphérique MTP + + + Error connecting MTP device %1 + Erreur lors de la connexion au périphérique MTP %1 + + + Error connecting MTP device %1: %2 + Erreur de connexion du dispositif MTP %1 : %2 + + + + NetworkProxySettingsPage + + Network Proxy + Serveur mandataire (proxy) + + + &Use the system proxy settings + &Utiliser les paramètres proxy du système + + + Direct internet connection + Connexion directe à Internet + + + &Manual proxy configuration + Configuration &manuelle du proxy + + + HTTP proxy + Serveur mandataire HTTP + + + SOCKS proxy + Serveur mandataire SOCKS + + + Port + Port + + + Use authentication + Utiliser l'authentification + + + Username + Nom d'utilisateur + + + Password + Mot de passe + + + Use proxy settings for streaming + Utilisez les paramètres proxy pour diffuser en direct + + + + NotificationsSettingsPage + + Notifications + Notifications + + + Strawberry can show a message when the track changes. + Strawberry peut afficher un message lors des changements de pistes. + + + Notification type + Type de notification + + + Disabled + Refers to a disabled notification type in Notification settings. + Désactivé + + + Show a &native desktop notification + Afficher une notification native au bureau + + + Show a pretty OSD + Utiliser l'affichage à l'écran (OSD) + + + Show a popup fro&m the system tray + Afficher une pop-up depuis la &barre de tâche + + + General settings + Configuration générale + + + Popup duration + Durée d'affichage de la fenêtre + + + seconds + secondes + + + Disable duration + Désactiver la durée + + + Show a notification when I change the volume + Afficher une notification lorsque je change le volume + + + Show a notification when I change the repeat/shuffle mode + Afficher une notification lorsque je change le mode répétition/aléatoire + + + Show a notification when I pause playback + Afficher une notification lorsque je mets la lecture en pause + + + Show a notification when I resume playback + Afficher une notification lorsque je reprends la lecture + + + Include album art in the notification + Inclure la pochette de l'album à la notification + + + Custom message settings + Paramètres de message personnalisé + + + Use a custom message for notifications + Utiliser un message personnalisé pour les notifications + + + Preview + Aperçu + + + MenuPopupToolButton + MenuPopupToolButton + + + Summary + Résumé + + + Body + Corps + + + Pretty OSD options + Options de l'affichage à l'écran (OSD) + + + Background color + Couleur de l'arrière-plan + + + Text options + Options du texte + + + Choose font... + Choisir une police de caractères... + + + Choose color... + Choisir une couleur... + + + Background opacity + Opacité de l'arrière-plan + + + Basic Blue + Bleu standard + + + Strawberry Red + Rouge fraise + + + Custom... + Personnalisée... + + + Enable fading + Activer la décoloration + + + Add song artist tag + Ajouter le tag artiste du morceau + + + Add song album tag + Ajouter le tag album du morceau + + + Add song title tag + Ajouter le tag titre du morceau + + + Add song albumartist tag + Ajouter le tag artiste de l'album du morceau + + + Add song year tag + Ajouter le tag année du morceau + + + Add song composer tag + Ajouter le tag compositeur du morceau + + + Add song performer tag + Ajouter un tag interprète + + + Add song grouping tag + Ajouter un tag de groupement de morceaux + + + Add song disc tag + Ajouter le tag numéro de disque du morceau + + + Add song track tag + Ajouter le tag piste du morceau + + + Add song genre tag + Ajouter le tag genre du morceau + + + Add song length tag + Ajouter la durée du morceau + + + Add song play count + Ajouter le compteur d'écoutes du morceau + + + Add song skip count + Ajouter le compteur de sauts du morceau + + + Add song rating + Ajouter la note du morceau + + + Add a new line if supported by the notification type + Ajouter un saut de ligne, si cela est supporté par le type de notification + + + %filename% + %filename% + + + Add song filename + Ajouter le nom de fichier du morceau + + + %url% + %url% + + + Add song URL + Ajouter l'url du morceau + + + %originalyear% + %originalyear% + + + Add song original year tag + Ajouter le tag année originale du morceau + + + OSD Preview + Prévisualisation de l'affichage à l'écran (OSD) + + + Drag to reposition + Déplacer pour repositionner + + + + OSDBase + + disc %1 + CD %1 + + + track %1 + piste %1 + + + Paused + En pause + + + Stopped + Interrompu + + + Stop playing after track: %1 + Arrêter la lecture après la piste : %1 + + + On + Activé + + + Off + Désactivé + + + Playlist finished + Liste de lecture terminée + + + Volume %1% + Volume %1% + + + Don't shuffle + Aléatoire : désactivé + + + Shuffle all + Aléatoire : tout + + + Shuffle tracks in this album + Aléatoire : pistes de cet album + + + Shuffle albums + Aléatoire : albums + + + Don't repeat + Ne pas répéter + + + Repeat track + Répéter la piste + + + Repeat album + Répéter l'album + + + Repeat playlist + Répéter la liste de lecture + + + Stop after every track + Arrêter la lecture après chaque piste + + + Intro tracks + Introduction des pistes + + + + Organize + + Organizing files + Organisation des fichiers + + + + OrganizeDialog + + Organize Files + Organiser les fichiers + + + Destination + Destination + + + After copying... + Après avoir copié... + + + Keep the original files + Conserver les fichiers originaux + + + Delete the original files + Supprimer les fichiers originaux + + + Naming options + Options de nommage + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Les champs ont pour préfixe %. Exemples : %artist %album %title </p> + +<p>Si vous placez des accolades autour d'une portion de texte contenant un champ, celle-ci ne sera pas affichée si le contenu du champ n'est pas renseigné.</p> + + + Insert... + Insérer... + + + Remove problematic characters from filenames + Supprimer les caractères problématiques des noms de fichiers + + + Restrict to characters allowed on FAT filesystems + Limiter aux caractères autorisés sur les systèmes FAT + + + Restrict characters to ASCII + Limiter aux caractères ASCII + + + Allow extended ASCII characters + Autoriser le jeu étendu des caractères ASCII + + + Replace spaces with underscores + Remplacer les espaces par des traits de soulignement + + + Overwrite existing files + Écraser les fichiers existants + + + Copy album cover artwork + Copier la pochette de l'album + + + Preview + Aperçu + + + Loading... + Chargement... + + + Safely remove the device after copying + Enlever le périphérique en toute sécurité à la fin de la copie + + + Title + Titre + + + Album + Album + + + Artist + Artiste + + + Artist's initial + Initiale de l'artiste + + + Album artist + Artiste de l'album + + + Composer + Compositeur + + + Performer + Interprète + + + Grouping + Groupement + + + Track + Piste + + + Disc + CD + + + Year + Année + + + Original year + Année d'origine + + + Genre + Genre + + + Comment + Commentaire + + + Length + Durée + + + Bitrate + Refers to bitrate in file organize dialog. + Débit + + + Sample rate + Échantillonnage + + + Bit depth + Codage en bit + + + File extension + Extension de fichier + + + + OrganizeErrorDialog + + Error copying songs + Erreur lors de la copie des morceaux + + + There were problems copying some songs. The following files could not be copied: + Il y a eu un problème pour copier certains morceaux. Les fichiers suivant n'ont pas pu être copiés : + + + Error deleting songs + Erreur lors de la suppression des morceaux + + + There were problems deleting some songs. The following files could not be deleted: + Il y a eu un problème pour supprimer certains morceaux. Les fichiers suivant n'ont pas pu être supprimés : + + + + ParserBase + + Don't know how to handle %1 + Ne sais pas comment gérer %1 + + + + PlayingWidget + + Small album cover + Petite pochette d'album + + + Large album cover + Grande pochette d'album + + + Fit cover to width + Ajuster la pochette sur la largeur + + + Show above status bar + Afficher au dessus de la barre d'état + + + + Playlist + + Could not write metadata to %1 + Impossible d'écrire les métadonnées vers %1 + + + Could not write metadata to %1: %2 + Impossible d'écrire les métadonnées vers %1: %2 + + + Title + Titre + + + Artist + Artiste + + + Album + Album + + + Track + Piste + + + Disc + CD + + + Length + Durée + + + Year + Année + + + Original Year + Année d'origine + + + Genre + Genre + + + Album Artist + Artiste de l'album + + + Composer + Compositeur + + + Performer + Interprète + + + Grouping + Groupement + + + Play Count + Compteur d'écoutes + + + Skip Count + Compteur de morceaux sautés + + + Last Played + Dernière écoute + + + Sample Rate + Échantillonnage + + + Bit Depth + Codage en bit + + + Bitrate + Débit + + + File Name + Nom du fichier + + + File Name (without path) + Nom du fichier (sans l'emplacement) + + + File Size + Taille du fichier + + + File Type + Type de fichier + + + Date Modified + Date de modification + + + Date Created + Date de création + + + Comment + Commentaire + + + Source + Source + + + Mood + Humeur + + + Rating + Notation + + + CUE + CUE + + + Integrated Loudness + Intensité sonore intégrée + + + Loudness Range + Plage d'intensité sonore + + + + PlaylistContainer + + Form + Forme + + + Undo + Annuler + + + Redo + Refaire + + + Playlist + Liste de lecture + + + Load playlist + Charger une liste de lecture + + + No matches found. Clear the search box to show the whole playlist again. + Aucune correspondance trouvée. Videz le champ de recherche pour afficher à nouveau la totalité de la liste de lecture. + + + + PlaylistDelegateBase + + stop + arrêt + + + + PlaylistGeneratorInserter + + Loading smart playlist + Chargement de la liste de lecture intelligente + + + + PlaylistHeader + + &Hide... + &Masquer... + + + &Stretch columns to fit window + Étirer les &colonnes pour s'adapter à la fenêtre + + + &Reset columns to default + &Réinitialiser les colonnes aux valeurs par défaut + + + &Lock rating + &Verrouiller la notation + + + &Align text + &Aligner le texte + + + &Left + &Gauche + + + &Center + &Centrer + + + &Right + &Droite + + + &Hide %1 + &Masquer %1 + + + + PlaylistListContainer + + Form + Forme + + + New folder + Nouveau dossier + + + Delete + Supprimer + + + Save playlist + Save playlist menu action. + + + + Copy to device... + Copier sur le périphérique... + + + Enter the name of the folder + Saisissez le nom du dossier + + + Playlist + Liste de lecture + + + Copy to device + Copie vers le périphérique + + + Playlist must be open first. + La liste de lecture doit d'abord être ouverte. + + + Remove playlists + Supprimer les listes de lecture + + + You are about to remove %1 playlists from your favorites, are you sure? + Vous allez supprimer %1 listes de lecture de vos favoris. Êtes-vous sûr(e) ? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Vous pouvez ajouter les listes de lecture aux favoris en cliquant sur l'icône étoile à côté de leur nom + + + Favorited playlists will be saved here + Les listes de lecture favorites seront sauvegardées ici + + + + PlaylistManager + + Playlist + Liste de lecture + + + Couldn't create playlist + La liste de lecture n'a pas pu être créée + + + Save playlist + Title of the playlist save dialog. + + + + Unknown playlist extension + Extension de liste de lecture inconnue + + + Unknown file extension for playlist. + Extension de fichier inconnue pour la liste de lecture. + + + %1 selected of + %1 sélectionnés de + + + %n track(s) + + %n morceau(x) + + + + + Unknown + Inconnu + + + Various artists + Compilations d'artistes + + + + PlaylistParser + + All playlists (%1) + Toutes les listes de lecture (%1) + + + %1 playlists (%2) + %1 listes de lecture (%2) + + + Unknown filetype: %1 + Type de fichier inconnu : %1 + + + Could not open file %1 + Impossible d'ouvrir le fichier %1 + + + Directory %1 does not exist. + Le dossier %1 n'existe pas. + + + Failed to open %1 for writing. + Impossible d'ouvrir %1 en écriture. + + + + PlaylistSaveOptionsDialog + + Playlist options + Options de la liste de lecture + + + File paths + Emplacements des fichiers + + + This can be changed later through the preferences + Ceci peut être modifié plus tard dans les préférences + + + Remember my choice + Se souvenir de mon choix + + + Automatic + Automatique + + + Relative + Relatif + + + Absolute + Absolu + + + + PlaylistSequence + + Repeat + Répéter + + + Shuffle + Aléatoire + + + Don't repeat + Ne pas répéter + + + Repeat track + Répéter la piste + + + Repeat album + Répéter l'album + + + Repeat playlist + Répéter la liste de lecture + + + Stop after each track + Arrêter la lecture après chaque piste + + + Intro tracks + Introduction des pistes + + + Don't shuffle + Aléatoire : désactivé + + + Shuffle tracks in this album + Aléatoire : pistes de cet album + + + Shuffle all + Aléatoire : tout + + + Shuffle albums + Aléatoire : albums + + + + PlaylistSettingsPage + + Playlist + Liste de lecture + + + Use alternating row colors + Utiliser des couleurs de ligne alternées + + + Show bars on the currently playing track + Afficher les barres sur la piste en cours de lecture + + + Show a glowing animation on the currently playing track + Afficher une animation lumineuse sur la piste en cours de lecture + + + Warn me when closing a playlist tab + M'avertir lors de la fermeture d'un onglet de liste de lecture + + + Continue to the next item in the playlist if a song is unavailable + Passer à la piste suivante de la liste de lecture si un morceau est indisponible + + + Grey out unavailable songs in playlists on playback + Griser les morceaux indisponibles de la liste lors de la lecture + + + Grey out unavailable songs in playlists on startup + Griser les morceaux indisponibles de la liste de lecture au démarrage + + + Automatically select current playing track + Sélectionner automatiquement la piste en cours de lecture + + + Enable playlist toolbar + Activer la barre d'outils de la liste de lecture + + + Enable playlist clear button + Activer le bouton d'effacement de la liste de lecture + + + Enable delete files in the right click context menu + Activer la suppression des fichiers dans le menu contextuel du clic droit + + + Automatically sort playlist when inserting songs + Trier la liste automatique quand des morceaux sont insérés + + + When saving a playlist, file paths should be + Emplacement des fichiers lors de la sauvegarde d'une liste de lecture + + + A&utomatic + A&utomatique + + + Absolu&te + Absol&u + + + Re&lative + Re&latif + + + As&k when saving + Demander lors de la &sauvegarde + + + Metadata + Métadonnées + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Si cette option est activée, cliquer sur un morceau sélectionné dans la liste de lecture vous permettra d'éditer directement la valeur du tag + + + Enable song metadata inline edition with click + Permettre d'éditer les tags en cliquant sur un morceau, dans la liste de lecture + + + Write metadata when saving playlists + Écrire des métadonnées lors de la sauvegarde des listes de lecture + + + + PlaylistTabBar + + Star playlist + Liste de lecture favorite + + + Close playlist + Fermer la liste de lecture + + + Rename playlist... + Renommer la liste de lecture... + + + Save playlist... + Enregistrer la liste de lecture... + + + Rename playlist + Renommer la liste de lecture + + + Enter a new name for this playlist + Saisissez un nouveau nom pour cette liste de lecture + + + Remove playlist + Supprimer la liste de lecture + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Vous êtes sur le point de fermer une liste de lecture qui ne fait pas partie de vos favoris : cette liste de lecture va être supprimée (cette action ne peut pas être annulée). +Êtes-vous sûr(e) de vouloir continuer ? + + + Warn me when closing a playlist tab + M'avertir lors de la fermeture d'un onglet de liste de lecture + + + This option can be changed in the "Behavior" preferences + Cette option peut être modifiée dans les préférences de « Comportement » + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Double-cliquez ici pour ajouter cette liste de lecture à vos favoris afin qu'elle soit enregistrée et reste accessible via le panneau "Liste de lecture" dans la barre de gauche + + + Playlist + Liste de lecture + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + ajouter %n morceaux + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + déplacer %n morceaux + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + enlever %n morceaux + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + mélanger les morceaux + + + + PlaylistUndoCommands::SortItems + + sort songs + trier les morceaux + + + + PlaylistView + + Hz + Hz + + + Bit + Bit + + + kbps + kbps + + + + QObject + + Usage + Utilisation + + + options + options + + + URL(s) + URL(s) + + + Player options + Options du lecteur + + + Start the playlist currently playing + Commencer la liste de lecture en cours + + + Play if stopped, pause if playing + Lire ou mettre en pause, selon l'état courant + + + Pause playback + Mettre la lecture en pause + + + Stop playback + Arrêter la lecture + + + Stop playback after current track + Arrêter la lecture après ce morceau + + + Skip backwards in playlist + Lire la piste précédente + + + Skip forwards in playlist + Lire la piste suivante + + + Set the volume to <value> percent + Définir le volume à <value> pour-cent + + + Increase the volume by 4 percent + Augmenter le volume de 4 pour-cent + + + Decrease the volume by 4 percent + Diminuer le volume de 4 pour-cent + + + Increase the volume by <value> percent + Augmenter le volume de <value> pour-cent + + + Decrease the volume by <value> percent + Diminuer le volume de <value> pour-cent + + + Seek the currently playing track to an absolute position + Déplacer la lecture de la piste courante à une position absolue + + + Seek the currently playing track by a relative amount + Déplacer la lecture de la piste courante par une quantité relative + + + Restart the track, or play the previous track if within 8 seconds of start. + Redémarre le morceau ou lit le morceau précédent si utilisé durant les 8 premières secondes. + + + Playlist options + Options de la liste de lecture + + + Create a new playlist with files + Créer une nouvelle liste de lecture à partir des fichiers + + + Append files/URLs to the playlist + Ajouter des fichiers/URLs à la liste de lecture + + + Loads files/URLs, replacing current playlist + Charger des fichiers/URLs, et remplacer la liste de lecture actuelle + + + Play the <n>th track in the playlist + Lire la <n>ème piste de la liste de lecture + + + Play given playlist + Lire la liste de lecture donnée + + + Other options + Autres options + + + Display the on-screen-display + Afficher le menu à l'écran + + + Toggle visibility for the pretty on-screen-display + Basculer la visibilité de l'OSD + + + Change the language + Changer la langue + + + Resize the window + Redimensionner la fenêtre + + + Equivalent to --log-levels *:1 + Equivalent à --log-levels *:1 + + + Equivalent to --log-levels *:3 + Equivalent à --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Liste séparée par une virgule des classes:niveau, le niveau étant entre 1 et 3 + + + Print out version information + Afficher la version + + + Failed to create directory %1. + Échec de la création du répertoire %1. + + + Destination file %1 exists, but not allowed to overwrite. + Le fichier de destination %1 existe, mais il n'est pas autorisé à l'écraser. + + + Destination file %1 exists, but not allowed to overwrite + Le fichier de destination %1 existe, mais il n'est pas autorisé à l'écraser. + + + Could not copy file %1 to %2. + Impossible de copier le fichier %1 vers %2. + + + Unknown + Inconnu + + + LUFS + LUFS + + + LU + LU + + + File %1 is not recognized as a valid audio file. + Le fichier %1 n'est pas un fichier audio valide. + + + 1 day + 1 jour + + + %1 days + %1 jours + + + Today + Aujourd'hui + + + Yesterday + Hier + + + %1 days ago + Il y a %1 jours + + + Tomorrow + Demain + + + In %1 days + Dans %1 jours + + + Next week + La semaine prochaine + + + In %1 weeks + Dans %1 semaines + + + Show in file browser + Afficher dans l'explorateur de fichiers + + + Too many songs selected. + Trop de morceaux sélectionnés. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + %1 morceaux dans %2 répertoires différents sélectionnés, êtes-vous sûr(e) de vouloir tous les ouvrir ? + + + Failed to load image from data for %1 + Impossible de charger l'image depuis les données pour %1 + + + Success + Effectué + + + File is unsupported + Le fichier n'est pas pris en charge + + + Filename is missing + Le nom du fichier est manquant + + + File does not exist + Le fichier n’existe pas + + + File could not be opened + Le fichier n'a pas pu être ouvert + + + Could not parse file + Le fichier n'a pas pu être analysé + + + Could save file + Sauvegarde du fichier possible + + + Unknown error + Erreur inconnue + + + Prefix a search term with a field name to limit the search to that field, e.g.: + Préfixez un terme de recherche avec un nom de champ pour limiter la recherche de ce champ, par exemple : + + + artist + artiste + + + searches for all artists containing the word %1. + recherche tous les artistes contenant le mot %1. + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + Les termes de recherche pour les champs numériques peuvent être préfixés par %1 ou %2 pour affiner la recherche, par exemple : + + + rating + notation + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + Plusieurs termes de recherche peuvent également être combinés avec "%1" (par défaut) et "%2", ainsi que regroupés entre parenthèses. + + + Available fields + Champs disponibles + + + after + après + + + before + avant + + + on + allumé + + + not on + non allumé + + + in the last + à la fin + + + not in the last + pas en dernier + + + between + entre + + + contains + contient + + + does not contain + ne contient pas + + + starts with + commence par + + + ends with + fini par + + + greater than + plus grand que + + + less than + moins que + + + equals + est égal à + + + not equals + différent + + + empty + vide + + + not empty + non vide + + + Comment + Commentaire + + + A-Z + A-Z + + + Z-A + Z-A + + + oldest first + le plus ancien en premier + + + newest first + le plus récent + + + shortest first + le plus court en premier + + + longest first + le plus long d'abord + + + smallest first + le plus petit en premier + + + biggest first + le plus grand d'abord + + + Hours + Heures + + + Days + Jours + + + Weeks + Semaines + + + Months + Mois + + + Years + Années + + + Normal + Normal + + + Angry + En colère + + + Frozen + Gelé + + + Happy + Heureux + + + System colors + Couleurs du système + + + + QWidget + + Clear + Effacer + + + Reset + Réinitialiser + + + + QobuzRequest + + Receiving artists... + Réception des artistes... + + + Receiving albums... + Réception des albums... + + + Receiving songs... + Réception des morceaux... + + + Searching... + Recherche en cours... + + + Receiving albums for %1 artist... + Réception des albums pour l'artiste %1 ... + + + Receiving albums for %1 artists... + Réception des albums pour les artistes %1 ... + + + Receiving songs for %1 album... + Réception des morceaux pour l'album %1 ... + + + Receiving songs for %1 albums... + Réception des morceaux pour les albums %1 ... + + + Receiving album cover for %1 album... + Réception de la pochette pour l'album %1 ... + + + Receiving album covers for %1 albums... + Réception des pochettes pour les albums %1 ... + + + No match. + Aucune correspondance. + + + Unknown error + Erreur inconnue + + + + QobuzService + + Authenticating... + En cours d'authentification... + + + Maximum number of login attempts reached. + Nombre maximum de tentatives de connexion atteint. + + + Missing Qobuz app ID. + L'ID de l'app de Qobuz est manquant. + + + Missing Qobuz username. + Le nom d'utilisateur de Qobuz est manquant. + + + Missing Qobuz password. + Le mot de passe de Qobuz est manquant. + + + Not authenticated with Qobuz. + Aucune authentification sur Qobuz. + + + Missing Qobuz app ID or secret. + L'ID app ou le secret de Qobuz est manquant. + + + + QobuzSettingsPage + + Qobuz + Qobuz + + + Enable + Activer + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Le support Qobuz n'est pas officiel et nécessite un ID d'application d'API à partir d'une application enregistrée pour fonctionner. Nous ne pouvons pas vous aider à les obtenir. + + + Authentication + Authentification + + + App ID + ID App + + + Username + Nom d'utilisateur + + + Password + Mot de passe + + + App Secret + Secret d'application ("App secret") + + + Login + Se connecter + + + Preferences + Préférences + + + Audio format + Format audio + + + Search delay + Délais de recherche + + + ms + ms + + + Artists search limit + Limite de recherche d'artistes + + + Albums search limit + Limite de recherche d'albums + + + Songs search limit + Limite de recherche des morceaux + + + Download album covers + Télécharger des pochettes d'albums + + + Base64 encoded secret + Secret encodé en Base64 + + + Configuration incomplete + Configuration incomplète + + + Missing app id. + ID d'application manquant. + + + Missing username. + Nom d'utilisateur manquant. + + + Missing password. + Mot de passe manquant. + + + Authentication failed + Échec de l'authentification + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + L'ID app ou le secret de Qobuz est manquant. + + + Cancelled. + Annulé. + + + + Queue + + %n track(s) + + %n morceau(x) + + + + + + QueueView + + QueueView + Vue de la liste d'attente + + + Move down + Déplacer vers le bas + + + Ctrl+Up + Ctrl+Haut + + + Move up + Déplacer vers le haut + + + Ctrl+Down + Ctrl+Bas + + + Remove + Supprimer + + + Clear + Effacer + + + Ctrl+K + Ctrl+K + + + + RadioParadiseService + + Getting %1 channels + Obtiention %1 canaux + + + + RadioView + + Append to current playlist + Ajouter à la liste de lecture actuelle + + + Replace current playlist + Remplacer la liste de lecture actuelle + + + Open in new playlist + Ouvrir dans une nouvelle liste de lecture + + + Open homepage + Ouvrir la page d'accueil + + + Donate + Donation + + + Refresh channels + Actualiser les canaux + + + + RadioViewContainer + + Form + Forme + + + + SCollection + + Saving playcounts and ratings + Enregistrement des compteur d'écoutes et des notations + + + + SavePlaylistsDialog + + Select directory for saving playlists + Sélectionnez le répertoire pour enregistrer la liste de lecture + + + Type + Type + + + Select directory for the playlists + Sélectionnez le répertoire pour la liste de lecture + + + Directory does not exist. + Le répertoire n'existe pas. + + + + SavedGroupingManager + + Saved Grouping Manager + Gestionnaire des regroupements enregistrés + + + Remove + Supprimer + + + Ctrl+Up + Ctrl+Haut + + + Name + Nom + + + First level + Premier niveau + + + Second Level + Deuxième niveau + + + Third Level + Troisième niveau + + + None + Aucun + + + Album artist + Artiste de l'album + + + Artist + Artiste + + + Album + Album + + + Album - Disc + Album - CD + + + Year - Album + Année - Album + + + Year - Album - Disc + Année - Album - CD + + + Original year - Album + Année d'origine - Album + + + Original year - Album - Disc + Année d'origine - Album - CD + + + Disc + CD + + + Year + Année + + + Original year + Année d'origine + + + Genre + Genre + + + Composer + Compositeur + + + Performer + Interprète + + + Grouping + Groupement + + + File type + Type de fichier + + + Format + Format + + + Sample rate + Échantillonnage + + + Bit depth + Codage en bit + + + Bitrate + Débit + + + Unknown + Inconnu + + + + ScrobblerSettingsPage + + Scrobbler + Scrobbler + + + Enable + Activer + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Les musiques sont scrobblées si leurs métadonnées sont valides et n'ont pas plus de 30 secondes, ont été jouées pour un minimum de leur moitiés de leur longueur ou plus de 4 minutes (la première des conditions qui est vérifiée). + + + Work in offline mode (Only cache scrobbles) + Travailler en mode hors connexion (uniquement scrobbles en cache) + + + Show scrobble button + Afficher le bouton scrobble + + + Show love button + Afficher le bouton J'aime + + + Submit scrobbles every + Soumettre des scrobbles tous les + + + seconds + secondes + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (Il s'agit du délai entre le moment où une chanson est scrobbulée et celui où les scrobbles sont soumis au serveur. Si vous fixez ce délai à 0 seconde, les scrobbles seront soumis immédiatement. + + + Prefer album artist when sending scrobbles + Préférer l'artiste de l'album lors de l'envoi de scrobbles + + + Show dialog for errors + Afficher la boîte de dialogue pour les erreurs + + + Strip "remastered" and similar from album and title + Retirer "Remasterisé" et autres mots similaires des titres d'album et de pistes + + + Enable scrobbling for the following sources: + Activer le scrobbling pour les sources suivantes : + + + Collection + Bibliothèque + + + Subsonic + Subsonic + + + Local file + Fichier local + + + Tidal + Tidal + + + Device + Périphérique + + + Qobuz + Qobuz + + + CDDA + CDDA + + + SomaFM + SomaFM + + + Stream + Flux + + + Radio Paradise + Radio Paradise + + + Unknown + Inconnu + + + Last.fm + Last.fm + + + Login + Se connecter + + + Libre.fm + Libre.fm + + + Listenbrainz + Listenbrainz + + + User token: + Jeton utilisateur : + + + Enter your user token from + Entrez votre jeton d'utilisateur depuis + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 authentification Scrobbler + + + Open URL in web browser? + Ouvrir le lien dans le navigateur internet ? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Appuyez sur « Enregistrer » pour copier le lien dans le presse-papier et l'ouvrir manuellement dans un navigateur internet. + + + Could not open URL. Please open this URL in your browser + Impossible d'ouvrir le lien. Veuillez ouvrir ce lien dans votre navigateur + + + Invalid reply from web browser. Missing token. + Réponse invalide du navigateur. Jeton manquant. + + + Received invalid reply from web browser. Try another browser. + Réponse invalide reçue du navigateur Web. Essayez un autre navigateur. + + + Scrobbler %1 is not authenticated! + Scrobbler %1 n'est pas authentifié ! + + + Scrobbler %1 error: %2 + Erreur Scrobbler %1 : %2 + + + + SettingsDialog + + Settings + Paramètres + + + General + Général + + + User interface + Interface utilisateur + + + Streaming + Streaming + + + + SmartPlaylistQuerySearchPage + + Form + Forme + + + Search mode + Mode de recherche + + + Match every search term (AND) + Faire correspondre tous les termes de recherche (ET) + + + Match one or more search terms (OR) + Faire correspondre un ou plusieurs termes de recherche (OU) + + + Include all songs + Inclure tous les morceaux + + + Search terms + Thermes de recherche + + + + SmartPlaylistQuerySortPage + + Form + Forme + + + Sorting + Tri + + + Put songs in a random order + Placer les morceaux dans un ordre aléatoire + + + Sort songs by + Trier les morceaux par + + + Limits + Limites + + + Show all the songs + Afficher tous les morceaux + + + Only show the first + N'afficher que le premier + + + songs + morceaux + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Recherche de bibliothèque + + + Find songs in your collection that match the criteria you specify. + Trouvez des morceaux dans votre bibliothèque qui correspondent aux critères que vous spécifiez. + + + Search terms + Thermes de recherche + + + A song will be included in the playlist if it matches these conditions. + Un morceau sera inclus dans la liste de lecture si elle remplit ces conditions. + + + Search options + Options de recherche + + + Choose how the playlist is sorted and how many songs it will contain. + Choisissez comment la liste de lecture est triée et combien de morceaux elle contiendra. + + + + SmartPlaylistSearchPreview + + Form + Forme + + + Preview + Aperçu + + + Loading... + Chargement... + + + %1 songs found (showing %2) + %1 morceaux trouvés (affichage %2) + + + %1 songs found + %1 morceaux trouvés + + + + SmartPlaylistSearchTermWidget + + Form + Forme + + + and + et + + + ago + depuis + + + The second value must be greater than the first one! + La deuxième valeur doit être supérieure à la première ! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Ajouter un terme de recherche + + + + SmartPlaylistWizard + + Smart playlist + Liste de lecture intelligente + + + Playlist type + Type de liste de lecture + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Une liste de lecture intelligente est une liste dynamique de morceaux provenant de votre bibliothèque. Il existe différents types de listes de lecture intelligentes qui offrent différentes façons de sélectionner des morceaux. + + + Finish + Terminer + + + Choose a name for your smart playlist + Choisissez un nom pour votre liste de lecture intelligente + + + + SmartPlaylistWizardFinishPage + + Form + Forme + + + Name + Nom + + + Use dynamic mode + Utiliser le mode dynamique + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + En mode dynamique, de nouvelles pistes seront choisies et ajoutées à la liste de lecture à chaque fois qu'un morceau se termine. + + + + SmartPlaylists + + Newest tracks + Dernières pistes + + + 50 random tracks + 50 pistes aléatoires + + + Ever played + Jamais écouté + + + Never played + Jamais écouté + + + Last played + Dernière écoute + + + Most played + Le plus écouté + + + Favourite tracks + Pistes préférées + + + All tracks + Toutes les pistes + + + Dynamic random mix + Mix aléatoire dynamique + + + + SmartPlaylistsViewContainer + + New smart playlist + Nouvelle liste de lecture intelligente + + + Edit smart playlist + Modifier la liste de lecture intelligente + + + Delete smart playlist + Supprimer la liste de lecture intelligente + + + New smart playlist... + Nouvelle liste de lecture intelligente... + + + Append to current playlist + Ajouter à la liste de lecture actuelle + + + Replace current playlist + Remplacer la liste de lecture actuelle + + + Open in new playlist + Ouvrir dans une nouvelle liste de lecture + + + Queue track + Mettre cette piste en liste d'attente + + + Play next + Lecture suivante + + + Edit smart playlist... + Modifier la liste de lecture intelligente... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry est en cours d'exécution en tant que programme Snap + + + It is detected that Strawberry is running as a Snap + Nous avons détecté que Strawberry est en cours d'exécution en tant que programme Snap + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry est plus lent, et comporte des restrictions, lorsqu'il est exécuté en tant que programme Snap. Il sera impossible d'accéder à la partition root (/). D'autres restrictions peuvent survenir, comme l'incapacité à accéder à certains périphériques ou à des partages réseaux. + + + For Ubuntu there is an official PPA repository available at %1. + Pour Ubuntu, il existe un dépôt PPA officiel disponible sur %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Des paquetages officiels sont disponibles pour Debian et Ubuntu, et fonctionnent aussi sur la plupart de leurs dérivés. Voir %1 pour plus d'informations. + + + For a better experience please consider the other options above. + Pour améliorer l'expérience de l'utilisateur, veuillez envisager l'une des options ci-dessus. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Copiez vos fichiers strawberry.conf et strawberry.db depuis votre répertoire ~/snap pour éviter de perdre la configuration avant de désinstaller le composant logiciel enfichable : + + + Uninstall the snap with: + Désinstallez le snap avec : + + + Install strawberry through PPA: + Installer strawberry via PPA : + + + + SomaFMService + + Getting %1 channels + Obtiention %1 canaux + + + + SongLoader + + You need GStreamer for this URL. + GStreamer est nécessaire pour ce lien. + + + Preload function was not set for blocking operation. + La fonction de préchargement n'a pas été définie pour l'opération bloquante. + + + File %1 does not exist. + Le fichier %1 n'existe pas. + + + CD playback is only available with the GStreamer engine. + Lecture de CD disponible uniquement avec le moteur GStreamer. + + + Could not open file %1 for reading: %2 + Impossible d'ouvrir le fichier %1 pour la lecture : %2 + + + Could not open CUE file %1 for reading: %2 + Impossible d'ouvrir le fichier CUE %1 pour la lecture : %2 + + + Could not open playlist file %1 for reading: %2 + Impossible d'ouvrir le fichier %1 de la liste de lecture en lecture : %2 + + + Couldn't create GStreamer source element for %1 + Impossible de créer l'élément source GStreamer pour %1 + + + Couldn't create GStreamer typefind element for %1 + Impossible de créer l'élément typefind GStreamer pour %1 + + + Couldn't create GStreamer fakesink element for %1 + Impossible de créer l'élément fakesink GStreamer pour %1 + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + Impossible de lier les éléments source, typefind et fakesink de GStreamer pour %1 + + + + SongLoaderInserter + + Error while loading audio CD. + Erreur lors du chargement du CD audio. + + + Loading tracks + Chargement des pistes + + + Loading tracks info + Chargement des info des pistes + + + + SpotifyRequest + + Authenticating... + En cours d'authentification... + + + Receiving artists... + Réception des artistes... + + + Receiving albums... + Réception des albums... + + + Receiving songs... + Réception des morceaux... + + + Searching... + Recherche en cours... + + + Receiving albums for %1 artist... + Réception des albums pour l'artiste %1 ... + + + Receiving albums for %1 artists... + Réception des albums pour les artistes %1 ... + + + Receiving songs for %1 album... + Réception des morceaux pour l'album %1 ... + + + Receiving songs for %1 albums... + Réception des morceaux pour les albums %1 ... + + + Receiving album cover for %1 album... + Réception de la pochette pour l'album %1 ... + + + Receiving album covers for %1 albums... + Réception des pochettes pour les albums %1 ... + + + No match. + Aucune correspondance. + + + Data missing error + Erreur de donnée manquante + + + + SpotifyService + + Spotify Authentication + Authentification Spotify + + + Please open this URL in your browser + Veuillez ouvrir ce lien dans votre navigateur + + + Redirect missing token code or state! + Redirigé le code ou l'état du jeton manquant ! + + + Received invalid reply from web browser. + Réponse invalide du navigateur internet. + + + Not authenticated with Spotify. + Aucune authentification sur Spotify. + + + + SpotifySettingsPage + + Spotify + Spotify + + + Enable + Activer + + + Basic authentication + Authentification de base + + + Authenticate + Authentification + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + <html><head/><body><p>Le plugin GStreamer Spotify n'est pas détecté, sans lui vous ne pourrez pas diffuser des morceaux via Spotify. Consultez : <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> pour des instructions sur comment installer le plugin.</p></body></html> + + + Preferences + Préférences + + + Search delay + Délais de recherche + + + ms + ms + + + Artists search limit + Limite de recherche d'artistes + + + Albums search limit + Limite de recherche d'albums + + + Songs search limit + Limite de recherche des morceaux + + + Download album covers + Télécharger des pochettes d'albums + + + Fetch entire albums when searching songs + Récupérer les albums entiers lors d'une recherche de morceau + + + Authentication failed + Échec de l'authentification + + + + StreamingCollectionView + + The streaming collection is empty! + La bibliothèque de streaming est vide ! + + + Click here to retrieve music + Cliquez ici pour récupérer la musique + + + Append to current playlist + Ajouter à la liste de lecture actuelle + + + Replace current playlist + Remplacer la liste de lecture actuelle + + + Open in new playlist + Ouvrir dans une nouvelle liste de lecture + + + Queue track + Mettre cette piste en liste d'attente + + + Queue to play next + Mettre en liste d'attente pour une lecture ultérieure + + + Remove from favorites + Supprimer des favoris + + + + StreamingCollectionViewContainer + + Form + Forme + + + Close + Fermer + + + Abort + Abandonner + + + Refresh catalogue + Actualiser le catalogue + + + + StreamingSearchModel + + Various artists + Compilations d'artistes + + + + StreamingSearchView + + Streaming Search View + Vue de recherche de streaming + + + MenuPopupToolButton + MenuPopupToolButton + + + artists + artistes + + + albums + albums + + + songs + morceaux + + + Enter search terms above to find music + Saisissez ci-dessus les termes de votre recherche pour trouver de la musique + + + Configure %1... + Configurer %1... + + + Append to current playlist + Ajouter à la liste de lecture actuelle + + + Replace current playlist + Remplacer la liste de lecture actuelle + + + Open in new playlist + Ouvrir dans une nouvelle liste de lecture + + + Queue track + Mettre cette piste en liste d'attente + + + Add to artists + Ajouter aux artistes + + + Add to albums + Ajouter aux albums + + + Add to songs + Ajouter aux morceaux + + + Search for this + Rechercher cela + + + Group by + Grouper par + + + + StreamingSongsView + + Configure %1... + Configurer %1... + + + + StreamingTabsView + + Streaming Tabs View + Vue des onglets de streaming + + + Artists + Artistes + + + Albums + Albums + + + Songs + Morceaux + + + Search + Recherche + + + Configure %1... + Configurer %1... + + + + SubsonicRequest + + Retrieving albums... + Récupération des albums... + + + Retrieving songs for %1 album... + Récupération des morceaux pour l'album %1 ... + + + Retrieving songs for %1 albums... + Récupération des morceaux pour les albums %1 ... + + + Retrieving album cover for %1 album... + Récupération de la pochette pour l'album %1 ... + + + Retrieving album covers for %1 albums... + Récupération des pochettes pour les albums %1 ... + + + Unknown error + Erreur inconnue + + + + SubsonicService + + Server URL is invalid. + L'URL du serveur est invalide. + + + Missing username or password. + Le nom d'utilisateur ou le mot de passe est manquant. + + + + SubsonicSettingsPage + + Subsonic + Subsonic + + + Enable + Activer + + + Server URL + L'URL du serveur + + + Authentication + Authentification + + + Username + Nom d'utilisateur + + + Password + Mot de passe + + + Authentication method: + Méthode d'authentification : + + + Hex + Hex + + + MD5 token (Recommended) + Jeton MD5 (Recommandé) + + + Preferences + Préférences + + + Use HTTP/2 when possible + Utilisez HTTP/2 si possible + + + Verify server certificate + Vérifier le certificat du serveur + + + Download album covers + Télécharger des pochettes d'albums + + + Server-side scrobbling + Scrobbling côté serveur + + + Test + Test + + + Delete songs + Supprimer des morceaux + + + Configuration incomplete + Configuration incomplète + + + Missing server url, username or password. + L'URL du serveur, le nom d'utilisateur ou le mot de passe est manquant. + + + Configuration incorrect + Configuration incorrecte + + + Server URL is invalid. + L'URL du serveur est invalide. + + + Test successful! + Test réussi ! + + + Test failed! + Test échoué ! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + L'URL du serveur Subsonic est invalide. + + + Missing Subsonic username or password. + Le nom d'utilisateur ou le mot de passe de Subsonic est manquant. + + + + SystemTrayIcon + + Pause + Pause + + + Play + Lecture + + + + TagFetcher + + Identifying song + Identification du morceau + + + Fingerprinting song + Morceau d'empreinte digitale + + + Downloading metadata + Téléchargement des métadonnées + + + + TidalRequest + + Authenticating... + En cours d'authentification... + + + Receiving artists... + Réception des artistes... + + + Receiving albums... + Réception des albums... + + + Receiving songs... + Réception des morceaux... + + + Searching... + Recherche en cours... + + + Receiving albums for %1 artist... + Réception des albums pour l'artiste %1 ... + + + Receiving albums for %1 artists... + Réception des albums pour les artistes %1 ... + + + Receiving songs for %1 album... + Réception des morceaux pour l'album %1 ... + + + Receiving songs for %1 albums... + Réception des morceaux pour les albums %1 ... + + + Receiving album cover for %1 album... + Réception de la pochette pour l'album %1 ... + + + Receiving album covers for %1 albums... + Réception des pochettes pour les albums %1 ... + + + No match. + Aucune correspondance. + + + + TidalService + + Reply from Tidal is missing query items. + La réponse de Tidal est : élément de requête manquante. + + + Missing Tidal API token. + Le jeton de l'API Tidal est manquant. + + + Missing Tidal username. + Le nom d'utilisateur de Tidal est manquant. + + + Missing Tidal password. + Le mot de passe de Tidal est manquant. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Aucune authentification sur Tidal et nombre maximum de tentatives de connexion atteint. + + + Not authenticated with Tidal. + Aucune authentification sur Tidal. + + + Missing Tidal API token, username or password. + Le jeton de l'API Tidal, le nom d'utilisateur ou le mot de passe est manquant. + + + + TidalSettingsPage + + Tidal + Tidal + + + Enable + Activer + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Le support Tidal n'est pas officiel et nécessite un jeton d'API à partir d'une application enregistrée pour fonctionner. Nous ne pouvons pas vous aider à les obtenir. + + + Authentication + Authentification + + + Use OAuth + Utiliser OAuth + + + Client ID + Identifiant client + + + API Token + Jeton API + + + Username + Nom d'utilisateur + + + Password + Mot de passe + + + Login + Se connecter + + + Preferences + Préférences + + + Audio quality + Qualité audio + + + Search delay + Délais de recherche + + + ms + ms + + + Artists search limit + Limite de recherche d'artistes + + + Albums search limit + Limite de recherche d'albums + + + Songs search limit + Limite de recherche des morceaux + + + Download album covers + Télécharger des pochettes d'albums + + + Fetch entire albums when searching songs + Récupérer les albums entiers lors d'une recherche de morceau + + + Album cover size + Taille de la pochette des albums + + + Stream URL method + Méthode des flux + + + Append explicit to album title for explicit albums + Ajouter explicite au titre de l'album pour les albums explicites + + + Configuration incomplete + Configuration incomplète + + + Missing Tidal client ID. + L'ID du client Tidal est manquant. + + + Missing API token. + Jeton de l'API manquant. + + + Missing username. + Nom d'utilisateur manquant. + + + Missing password. + Mot de passe manquant. + + + Authentication failed + Échec de l'authentification + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Aucune authentification sur Tidal. + + + Missing Tidal API token, username or password. + Le jeton de l'API Tidal, le nom d'utilisateur ou le mot de passe est manquant. + + + Cancelled. + Annulé. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Réception d'une URL avec un flux crypté %1 depuis Tidal. Strawberry ne prend actuellement pas en charge les flux cryptés. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Réception d'une URL avec un flux crypté depuis Tidal. Strawberry ne prend actuellement pas en charge les flux cryptés. + + + + TrackSelectionDialog + + Tag fetcher + Compléteur de balises + + + Sorry + Désolé + + + Strawberry was unable to find results for this file + Strawberry n'a pu trouver aucun résultat pour ce fichier + + + Select best possible match + Sélectionner le meilleur résultat possible + + + Track + Piste + + + Year + Année + + + Title + Titre + + + Artist + Artiste + + + Album + Album + + + Previous + Précédent + + + Next + Suivant + + + Original tags + Tags originaux + + + Suggested tags + Tags suggérés + + + Saving tracks + Sauvegarde des pistes + + + + TrackSlider + + Form + Forme + + + 0:00:00 + 0:00:00 + + + Click to toggle between remaining time and total time + Cliquez pour basculer entre le temps restant et le temps total + + + + TranscodeDialog + + Transcode Music + Transcoder de la musique + + + Files to transcode + Fichiers à convertir + + + Filename + Nom du fichier + + + Directory + Dossier + + + Add... + Ajouter... + + + Remove + Supprimer + + + Add all tracks from a directory and all its subdirectories + Ajouter toutes les pistes d'un répertoire et de tous ses sous-répertoires + + + Import... + Importer... + + + Output options + Options de sortie + + + Audio format + Format audio + + + Options... + Options... + + + Destination + Destination + + + Alongside the originals + A côté des originaux + + + Select... + Sélectionner... + + + Progress + Progression + + + Details... + Détails... + + + Clear + Effacer + + + Start transcoding + Commencer le transcodage + + + %n remaining + + %n restant + + + + + %n finished + + %n terminé + + + + + %n failed + + %n échoué + + + + + Add files to transcode + Ajouter des fichiers à transcoder + + + Music + Musique + + + Open a directory to import music from + Ouvrir un répertoire pour en importer la musique + + + Add folder + Ajouter un dossier + + + + TranscodeLogDialog + + Transcoder Log + Journal du transcodeur + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Impossible de créer l'élément GStreamer « %1 » - vérifier que les modules externes GStreamer nécessaires sont installés + + + Successfully written %1 + %1 écrit avec succès + + + Transcoding %1 files using %2 threads + Transcodage de %1 fichiers en utilisant %2 threads + + + Error processing %1: %2 + Erreur lors du traitement de %1 : %2 + + + Starting %1 + Lancement de %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Impossible de trouver un encodeur pour %1, vérifiez que les bons modules externes GStreamer sont installés + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Impossible de trouver un multiplexeur pour %1, vérifiez que les bons modules externes GStreamer sont installés + + + + TranscoderOptionsAAC + + Form + Forme + + + Bitrate + Débit + + + kbps + kbps + + + Profile + Profil + + + Main profile (MAIN) + Profil principal (MAIN) + + + Low complexity profile (LC) + Profile à faible complexité (FC) + + + Scalable sampling rate profile (SSR) + Profil du taux d'échantillonnage + + + Long term prediction profile (LTP) + Profil de prédiction à long terme (PLT) + + + Use temporal noise shaping + Utiliser le mode de changement temporaire du bruit + + + Allow mid/side encoding + Autoriser l'encodage mid/side + + + Block type + Type de bloc + + + Normal block type + Type de bloc normal + + + No short blocks + Aucun bloc court + + + No long blocks + Aucun bloc long + + + + TranscoderOptionsASF + + Form + Forme + + + Bitrate + Débit + + + kbps + kbps + + + + TranscoderOptionsDialog + + Transcoding options + Option de transcodage + + + + TranscoderOptionsFLAC + + Form + Forme + + + Quality + Sound quality + Qualité + + + Fast + Rapide + + + Best + Meilleur + + + + TranscoderOptionsMP3 + + Form + Forme + + + Optimize for &quality + Optimiser pour la &qualité + + + Quality + Sound quality + Qualité + + + Opti&mize for bitrate + Opti&miser pour le débit + + + Bitrate + Débit + + + kbps + kbps + + + Constant bitrate + Débit constant + + + Encoding engine quality + Qualité du moteur d’encodage + + + Fast + Rapide + + + Standard + Standard + + + High + Élevé + + + Force mono encoding + Forcer l’encodage en mono + + + + TranscoderOptionsOpus + + Form + Forme + + + Bitrate + Débit + + + kbps + kbps + + + + TranscoderOptionsSpeex + + Form + Forme + + + Quality + Sound quality + Qualité + + + Bitrate + Débit + + + automatic + automatique + + + kbps + kbps + + + Average bitrate + Débit moyen + + + disabled + désactivé + + + Encoding mode + Mode d’encodage + + + Auto + Auto + + + Ultra wide band (UWB) + Très large bande (UWB) + + + Wide band (WB) + Large bande (WB) + + + Narrow band (NB) + Bande étroite (NB) + + + Variable bit rate + Débit variable + + + Voice activity detection + Détecteur d’activité vocale + + + Discontinuous transmission + Transmission discontinue + + + Encoding complexity + Complexité de l’encodage + + + Frames per buffer + Images par tampon + + + + TranscoderOptionsVorbis + + Form + Forme + + + Quality + Sound quality + Qualité + + + Use bitrate management engine + Utiliser le moteur de gestion du débit + + + Target bitrate + Débit cible + + + kbps + kbps + + + Minimum bitrate + Débit minimum + + + disabled + désactivé + + + Maximum bitrate + Débit maximum + + + + TranscoderOptionsWavPack + + Form + Forme + + + + TranscoderSettingsPage + + Transcoding + Transcodage + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Ces paramètres sont utilisés dans la boîte de dialogue « Transcoder de la musique » ou lors de la conversion de musique, avant de la copier sur un périphérique. + + + FLAC + FLAC + + + WavPack + WavPack + + + Vorbis + Vorbis + + + Opus + Opus + + + Speex + Speex + + + AAC + AAC + + + ASF (WMA) + ASF (WMA) + + + MP3 + MP3 + + + + Udisks2Lister + + D-Bus path + Chemin D-Bus + + + Serial number + Numéro de série + + + Mount points + Points de montage + + + Partition label + Intitulé de la partition + + + UUID + UUID + + + + UserPassDialog + + Enter username and password + Entrer le nom d'utilisateur et le mot de passe + + + Username + Nom d'utilisateur + + + Password + Mot de passe + + + diff --git a/src/translations/strawberry_hu_HU.ts b/src/translations/strawberry_hu_HU.ts new file mode 100644 index 00000000..475603fd --- /dev/null +++ b/src/translations/strawberry_hu_HU.ts @@ -0,0 +1,7562 @@ + + + + + About + + About + Névjegy + + + About Strawberry + A Strawberry névjegye + + + Version %1 + Verzió: %1 + + + Strawberry is a music player and music collection organizer. + A Strawberry egy zenelejátszó és zenegyűjtemény-kezelő. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Ez a Clementine egy forkja, amely 2018-ban jelent meg, és a zenegyűjtőket és a vájtfülűeket célozza. + + + Strawberry is free software released under GPL. The source code is available on %1 + A Strawberry GPL licenc alatt közzétett szabad szoftver. A forráskód itt érhető el: %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + A programmal meg kellett kapnia a GNU General Public License egy példányát is. Ha nem látogassa meg: %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Ha tetszik a Strawberry, és ki tudja használni, fontolja meg a szponzorálást vagy az adományozást. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + A szerzőt itt szponzorálhatja: %1. Egyszeri összeggel ezen az oldalon támogathat: %2. + + + Author and maintainer + Szerző és karbantartó + + + Contributors + Közreműködők + + + Clementine authors + A Clementine szerzői + + + Clementine contributors + A Clementine közreműködői + + + Thanks to + Köszönet a következőknek + + + Thanks to all the other Amarok and Clementine contributors. + Köszönet az Amarok és a Clementine közreműködőinek. + + + + AddStreamDialog + + Add Stream + Közvetítés hozzáadása + + + Enter the URL of a stream: + Közvetítés URL-jének megadása: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Képek (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Képek (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Minden fájl (*) + + + Load cover from disk... + Borító betöltése lemezről… + + + Save cover to disk... + Borító mentése lemezre… + + + Load cover from URL... + Borító letöltése webcímről… + + + Search for album covers... + Albumborítók keresése… + + + Unset cover + Borító törlése + + + Delete cover + Borító törlése + + + Clear cover + Borító törlése + + + Show fullsize... + Megjelenítés teljes méretben… + + + Search automatically + Automatikus keresés + + + Load cover from disk + Borító betöltése lemezről + + + Failed to open cover file %1 for reading: %2 + Nem sikerült olvasásra megnyitni a(z) %1 borítófájlt: %2 + + + Cover file %1 is empty. + A(z) %1 borítófájl üres. + + + unknown + ismeretlen + + + Save album cover + Albumborító mentése + + + Failed to open cover file %1 for writing: %2 + Nem sikerült írásra megnyitni a(z) %1 borítófájlt: %2 + + + Failed writing cover to file %1: %2 + Nem sikerült a(z) %1 fájlba írni a borítót: %2 + + + Failed writing cover to file %1. + Nem sikerült a(z) %1 fájlba írni a borítót. + + + Failed to delete cover file %1: %2 + A(z) %1 borítófájl törlése sikertelen: %2 + + + Failed to write cover to file %1: %2 + Nem sikerült írni a(z) %1 borítófájlt: %2 + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Borítók exportálása + + + Output + Kimenet + + + Enter a filename for exported covers (no extension): + Adja meg az exportálandó borítók nevét (kiterjesztés nélkül): + + + Export downloaded covers + Letöltött borítók exportálása + + + Export embedded covers + Beágyazott borítók exportálása + + + Existing covers + Meglévő borítók + + + Do not overwrite + Ne írja felül + + + O&verwrite all + Össz&es felülírása + + + Overwrite s&maller ones only + &Csak a kisebbek felülírása + + + Size + Méret + + + Scale size + Skála mérete + + + Size: + Méret: + + + Pixel + Képpont + + + + AlbumCoverManager + + Abort + Megszakítás + + + All albums + Minden album + + + Albums with covers + Albumok borítóval + + + Albums without covers + Albumok borító nélkül + + + Really cancel? + Biztos, hogy megszakítja? + + + Closing this window will stop searching for album covers. + Ezen ablak bezárása megszakítja az albumborítók keresését. + + + Don't stop! + Ne álljon meg. + + + All artists + Minden előadó + + + Various artists + Különböző előadók + + + Got %1 covers out of %2 (%3 failed) + %1 / %2 borító letöltve (%3 sikertelen) + + + %1 transferred + %1 átküldve + + + Export finished + Exportálás befejezve + + + No covers to export. + Nincs exportálandó borító. + + + Exported %1 covers out of %2 (%3 skipped) + %1 borító exportálva ennyiből %2 (%3 sikertelen) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Borítókezelő + + + Artist + Előadó + + + Album + + + + Search + Keresés + + + Covers from %1 + Borítók innen: %1 + + + Abort + Megszakítás + + + + AnalyzerContainer + + Framerate + Frissítési gyakoriság + + + Low (%1 fps) + Alacsony (%1 fps) + + + Medium (%1 fps) + Közepes (%1 fps) + + + High (%1 fps) + Magas (%1 fps) + + + Super high (%1 fps) + Nagyon magas (%1 fps) + + + No analyzer + Nincs elemző + + + Block analyzer + Blokkelemző + + + Boom analyzer + + + + Turbine + + + + Sonogram + Szonogram + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Megjelenés + + + Style + Stílus + + + Use system theme icons + Rendszerikonok használata + + + Settings require restart. + A beállítások újraindítást igényelnek. + + + Tabbar colors + Lapsáv színei + + + &Use the system default color + &Rendszer alapértelmezett színének használata + + + Use custom color + Egyéni szín használata + + + Use gradient background + Átmenetes háttérszín + + + Select tabbar color: + Lapsáv színének kiválasztása: + + + Background image + Háttérkép + + + Default bac&kground image + A&lapértelmezett háttérkép + + + &No background image + &Nincs háttérkép + + + The album cover of the currently playing song + A jelenleg játszott szám albumborítója + + + Albu&m cover + &Albumborító + + + Custom image: + Egyéni kép: + + + Browse... + Tallózás… + + + Position + Helyzet + + + Upper Left + Balra fent + + + Upper Right + Jobbra fent + + + Middle + Középen + + + Bottom Left + Balra lent + + + Bottom Right + Jobbra lent + + + Max cover size + Legnagyobb borítóméret + + + Stretch image to fill playlist + Kép nyújtása a lejátszólista kitöltéséhez + + + Keep aspect ratio + Képarány megtartása + + + Do not cut image + Ne legyen levágva a képből + + + Blur amount + Elmosás mértéke + + + 0px + 0 px + + + Opacity + Átlátszatlanság + + + 40% + + + + Icon sizes + Ikonméret + + + Playlist buttons + Lejátszólista gombok + + + Tabbar large mode + Nagy módú lapsáv + + + Play control buttons + Lejátszásvezérlő gombok + + + Configure buttons + Gombok beállítása + + + Files, playlists and queue buttons + Fájl, lejátszólista és lejátszási sor gombok + + + Tabbar small mode + Kis módú lapsáv + + + Playlist playing song color + A lejátszott szám színe a lejátszólistán + + + System highlight color + Rendszer kiemelőszíne + + + Custom color + Egyéni szín + + + Select playlist playing song color: + Válassza ki a lejátszott szám színét a lejátszólistán + + + Select background image + Háttérkép kiválasztása + + + + BackendSettingsPage + + Backend + Háttérprogram + + + Audio output + Hangkimenet + + + Device + Eszköz + + + Output + Kimenet + + + Engine + Motor + + + ALSA plugin: + ALSA bővítmény: + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + Beállítások + + + Enable volume control + Hangerőszabályzás engedélyezése + + + Upmix / downmix to + Felkeverés/lekeverés + + + channels + csatorna + + + Improve headphone listening of stereo audio records (bs2b) + A sztereó hangfelvételek fejhallgatós hallgatásának javítása (bs2b) + + + Enable HTTP/2 for streaming + HTTPS/2 engedélyezése a közvetítésekhez + + + Use strict SSL mode + Szigorú SSL mód használata + + + Buffer + Puffer + + + ms + + + + Buffer duration + Puffer hossza + + + High watermark + Magas vízjel + + + Low watermark + Alacsony vízjel + + + Defaults + Alapértelmezett + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + Hangerő-kiegyenlítés (Replay Gain) + + + Use Replay Gain metadata if it is available + Hangerő kiegyenlítési metaadatok használata, ha elérhető + + + Replay Gain mode + Hangerő-kiegyenlítés módja + + + Radio (equal loudness for all tracks) + Rádió (egyenlő hangerő minden számhoz) + + + Album (ideal loudness for all tracks) + Album (ideális hangerő minden számhoz) + + + Pre-amp + Előerősítő + + + Apply compression to prevent clipping + Tömörítés engedélyezése a túlvezérlés elkerülése érdekében + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Elhalkulás + + + Fade out when stopping a track + Elhalkulás a szám megállításakor + + + Cross-fade when changing tracks manually + Áttűnés használata a számok kézi váltásánál + + + Cross-fade when changing tracks automatically + Áttűnés használata a számok automatikus váltásánál + + + Except between tracks on the same album or in the same CUE sheet + Kivéve az azonos albumon vagy azonos CUE fájlban lévő számok között + + + Fading duration + Elhalkulás hossza + + + Fade out on pause / fade in on resume + Áttűnés a szünet megnyomásakor és a folytatáskor + + + + BehaviourSettingsPage + + Behavior + Működés + + + Show system tray icon + Tálcaikon megjelenítése + + + Keep running in the background when the window is closed + Bezárt ablak esetén futás a háttérben + + + Show song progress on system tray icon + Lejátszási folyamatjelző megjelenítése a rendszertálca ikonon + + + Show song progress on taskbar + + + + Resume playback on start + Lejátszás folytatása induláskor + + + Show playing widget + Albumborító megjelenítése az oldalsávban + + + On startup + Indításkor + + + Remember from &last time + Ahogy &legutoljára volt + + + Show the main window + Főablak megjelenítése + + + Hide the main window + Főablak elrejtése + + + Show the main window maximized + Főablak megjelenítése maximalizálva + + + Show the main window minimized + Főablak megjelenítése minimalizálva + + + Language + Nyelv + + + Use the system default + Rendszer alapértelmezésének használata + + + You will need to restart Strawberry if you change the language. + A nyelv megváltoztatásához újra kell indítani a Strawberryt. + + + Using the menu to add a song will... + Szám hozzáadásakor a menü használatával... + + + Never start playing + Soha ne indítsa el a lejátszást + + + Play if there is nothing already playing + Lejátszás, ha nincs lejátszás folyamatban + + + Always start playing + Mindig indítsa el a lejátszást + + + Pressing "Previous" in player will... + Az „Előző” gomb megnyomásakor… + + + Jump to previous song right away + Ugrás az előző számra + + + Restart song, then jump to previous if pressed again + Szám újraindítása és újbóli megnyomáskor ugrás az előzőre + + + Double clicking a song will... + Dupla kattintásra egy szám… + + + Append to the playlist + Hozzáadás a lejátszólistához + + + Replace the playlist + Lejátszólista cseréje + + + Open in new playlist + Megnyitás új lejátszólistában + + + Add to the queue + Hozzáadás a lejátszási sorhoz + + + Double clicking a song in the playlist will... + Dupla kattintásra egy szám a lejátszólistában… + + + Change the currently playing song + Váltás a legutóbb játszott számra + + + Seeking using a keyboard shortcut or mouse wheel + Léptetés gyorsbillentyűvel vagy egérgörgővel + + + Time step + Léptetés ideje + + + s + mp + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Hiba történt a CDDA eszköz készre állításakor. + + + Error while setting CDDA device to pause state. + Hiba történt a CDDA-eszköz szünetre állításakor. + + + Error while querying CDDA tracks. + Hiba történt a CDDA számok lekérdezésekor + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + Nem lehet végrehajtani a gyűjtemény SQL lekérdezését: %1 + + + Failed SQL query: %1 + Sikertelen SQL lekérdezés: %1 + + + Updating %1 database. + %1 adatbázis frissítése. + + + + CollectionFilterWidget + + Collection Filter + Gyűjtemény szűrő + + + Enter search terms here + Adja meg a keresett kifejezést + + + MenuPopupToolButton + + + + Entire collection + Teljes gyűjtemény + + + Added today + Hozzáadva ma + + + Added this week + Hozzáadva ezen a héten + + + Added within three months + Hozzáadva három hónapon belül + + + Added this year + Hozzáadva ebben az évben + + + Added this month + Hozzáadva ebben a hónapban + + + Save current grouping + Jelenlegi csoportosítás mentése + + + Manage saved groupings + Mentett csoportosítások kezelése + + + Show + Megjelenítés + + + Group by + Csoportosítás + + + Display options + Megjelenítési beállítások + + + Group by Album artist/Album + Csoportosítás albumelőadó/album szerint + + + Group by Album artist/Album - Disc + Csoportosítás albumelőadó/album - lemez szerint + + + Group by Album artist/Year - Album + Csoportosítás albumelőadó/év - album szerint + + + Group by Album artist/Year - Album - Disc + Csoportosítás albumelőadó/év - album - lemez szerint + + + Group by Artist/Album + Csoportosítás előadó/album szerint + + + Group by Artist/Album - Disc + Csoportosítás előadó/album - lemez szerint + + + Group by Artist/Year - Album + Csoportosítás előadó/év - album szerint + + + Group by Artist/Year - Album - Disc + Csoportosítás előadó/év - album - lemez szerint + + + Group by Genre/Album artist/Album + Csoportosítás műfaj/albumelőadó/album szerint + + + Group by Genre/Artist/Album + Csoportosítás műfaj/előadó/album szerint + + + Group by Album Artist + Csoportosítás albumelőadó szerint + + + Group by Artist + Csoportosítás előadó szerint + + + Group by Album + Csoportosítás album szerint + + + Group by Genre/Album + Csoportosítás műfaj/album szerint + + + Advanced grouping... + Speciális csoportosítás… + + + Grouping Name + Csoportosítás neve + + + Grouping name: + Csoportosítás neve: + + + + CollectionModel + + Various artists + Különböző előadók + + + Loading... + Betöltés… + + + Unknown + Ismeretlen + + + + CollectionSettingsPage + + Collection + Gyűjtemény + + + These folders will be scanned for music to make up your collection + Ezek a mappák lesznek átvizsgálva a gyűjtemény feltöltéséhez + + + Add new folder... + Új mappa hozzáadása… + + + Remove folder + Mappa eltávolítása + + + Automatic updating + Automatikus frissítés + + + Update the collection when Strawberry starts + Gyűjtemény frissítése a Strawberry indításakor + + + Monitor the collection for changes + Gyűjtemény figyelése változások után + + + Song fingerprinting and tracking + Ujjlenyomat készítése a számokhoz, és azok követése + + + Mark disappeared songs unavailable + Eltűnt számok megjelölése nem elérhetőként + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + Nem elérhető számok elévülése ennyi idő után + + + days + nap + + + Preferred album art filenames (comma separated) + Előnyben részesített albumborító-fájlnevek (vesszővel elválasztva) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Amikor a Strawberry albumborítót keres, először azokat a fájlokat ellenőrzi, melyek neve tartalmazza az alábbi szavakat. +Ha nincs egyezés, akkor a legnagyobb képet veszi a könyvtárból. + + + Display options + Megjelenítési beállítások + + + Automatically open single categories in the collection tree + Egyelemű kategóriák automatikus listázása a gyűjteményben + + + Show dividers + Elválasztók megjelenítése + + + Show album cover art in collection + Albumborító megjelenítése a gyűjteményben + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Albumborító-gyorsítótár + + + Size + Méret + + + Enable Disk Cache + Lemezgyorsítótár engedélyezése + + + Disk Cache Size + Lemezgyorsítótár mérete + + + Current disk cache in use: + Jelenleg használt lemezgyorsítótár: + + + Clear Disk Cache + Lemezgyorsítótár törlése + + + Song playcounts and ratings + Számok lejátszásszáma és értékelése + + + Save playcounts to song tags when possible + A lejátszásszámok számcímkékbe írása, ha lehetséges + + + Save ratings to song tags when possible + Az értékelések számcímkékbe írása, ha lehetséges + + + Overwrite database playcount when songs are re-read from disk + Az adatbázisban lévő lejátszásszámok felülírása, ha a számok újra vannak olvasva a lemezről + + + Overwrite database rating when songs are re-read from disk + Az adatbázisban lévő értékelések felülírása, ha a számok újra vannak olvasva a lemezről + + + Save playcounts and ratings to files now + A lejátszásszámok és az értékelések azonnali fájlba írása + + + Enable delete files in the right click context menu + Fájlok törlésének engedélyezése a jobb-kattintásos menüből + + + Add directory... + Könyvtár hozzáadása… + + + Write all playcounts and ratings to files + Az összes lejátszásszám és értékelés fájlba írása + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Biztos, hogy felülírja a gyűjteményében szereplő összes szám lejátszási számát és értékelését? + + + + CollectionView + + Your collection is empty! + Az Ön gyűjteménye üres. + + + Click here to add some music + Zene hozzáadásához kattintson ide + + + Append to current playlist + Hozzáfűzés a jelenlegi lejátszólistához + + + Replace current playlist + Jelenlegi lejátszólista cseréje + + + Open in new playlist + Megnyitás új lejátszólistában + + + Queue track + Szám hozzáadása a lejátszási sorhoz + + + Queue to play next + Lejátszás következőként + + + Search for this + Keresés erre + + + Organize files... + Fájlok rendszerezése… + + + Copy to device... + Másolás eszközre… + + + Delete from disk... + Törlés a lemezről… + + + Edit track information... + Száminformációk szerkesztése… + + + Edit tracks information... + Száminformációk szerkesztése… + + + Show in file browser... + Megnyitás a fájlböngészőben… + + + Rescan song(s) + Számok újraellenőrzése + + + Show in various artists + Megjelenítés a különböző előadók között + + + Don't show in various artists + Ne jelenítse meg a különböző előadók között + + + There are other songs in this album + Más számok is vannak ebben az albumban + + + Would you like to move the other songs on this album to Various Artists as well? + Áthelyezi az album többi számát is a különböző előadókhoz? + + + Error + Hiba + + + None of the selected songs were suitable for copying to a device + Egy kiválasztott szám sem alkalmas az eszközre való másoláshoz + + + + CollectionViewContainer + + Form + Űrlap + + + + CollectionWatcher + + Updating collection + Gyűjtemény frissítése + + + Updating %1 + %1 frissítése + + + + Console + + Console + Konzol + + + Run + Futtatás + + + + ContextSettingsPage + + Context + Környezet + + + Custom text settings + Egyéni szövegbeállítások + + + MenuPopupToolButton + + + + Title + Cím + + + Summary + Összegzés + + + Enable Items + Elemek engedélyezése + + + Album + + + + Technical Data + Műszaki adatok + + + Song Lyrics + Dalszöveg + + + Automatically search for album cover + Albumborító automatikus keresése + + + Automatically search for song lyrics + Dalszövegek automatikus keresése + + + Font for headline + Cím betűkészlete + + + Font + Betűkészlet + + + Font size + Betűméret + + + pt + + + + Preview + Előnézet + + + Font for data and lyrics + Adatok és dalszöveg betűkészlete + + + Add song artist tag + Előadó hozzáadása + + + Add song album tag + Album hozzáadása + + + Add song title tag + Cím címke hozzáadása + + + Add song albumartist tag + Albumelőadó címke hozzáadása + + + Add song year tag + Szám évének hozzáadása + + + Add song composer tag + Zeneszerző hozzáadása + + + Add song performer tag + Számelőadó címke hozzáadása + + + Add song grouping tag + Számcsoportosítási címke hozzáadása + + + Add song disc tag + Lemez címke hozzáadása + + + Add song track tag + Szám sorszám címke hozzáadása + + + Add song genre tag + Műfaj hozzáadása + + + Add song length tag + Számhossz címke hozzáadása + + + Add song play count + Lejátszásszámláló hozzáadása + + + Add song skip count + Számkihagyás számláló hozzáadása + + + Add a new line if supported by the notification type + Sortörés hozzáadása, ha az értesítéstípus támogatja + + + %filename% + + + + Add song filename + Szám fájlnevének hozzáadása + + + %url% + + + + Add song URL + Szám URL hozzáadása + + + %rating% + + + + Add song rating + Számértékelés hozzáadása + + + %originalyear% + + + + Add song original year tag + Eredeti év címke hozzáadása a számhoz + + + + ContextView + + Filetype + Fájltípus + + + Length + Időtartam + + + Samplerate + Mintavétel + + + Bit depth + Bitmélység + + + Bitrate + Bitráta + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Albumborító megjelenítése + + + Show song technical data + Műszaki adatok megjelenítése + + + Show song lyrics + Dalszöveg megjelenítése + + + Automatically search for song lyrics + Dalszövegek automatikus keresése + + + No song playing + Nincs lejátszott szám + + + %1 song + %1 szám + + + %1 songs + %1 szám + + + %1 artist + %1 előadó + + + %1 artists + %1 előadó + + + %1 album + + + + %1 albums + %1 album + + + kbps + kb/s + + + + CoverFromURLDialog + + Load cover from URL + Borító letöltése webcímről + + + Enter a URL to download a cover from the Internet: + Albumborító letöltése az alábbi URL-ről: + + + Fetching cover error + Hiba a borító lekérése során + + + The site you requested does not exist! + A kért oldal nem létezik! + + + The site you requested is not an image! + A kért oldal nem egy kép! + + + + CoverManager + + Cover Manager + Borítókezelő + + + Enter search terms here + Adja meg a keresett kifejezést + + + MenuPopupToolButton + + + + View + Nézet + + + Total albums: + Összes album: + + + Without cover: + Borító nélkül: + + + 0 + + + + Fetch Missing Covers + Hiányzó borítók letöltése + + + Export Covers + Borítók exportálása + + + Fetch automatically + Letöltés automatikusan + + + Load + Betöltés + + + Add to playlist + Hozzáadás lejátszólistához + + + + CoverSearchStatisticsDialog + + Fetch completed + Letöltés sikeres + + + Got %1 covers out of %2 (%3 failed) + %1 / %2 borító letöltve (%3 sikertelen) + + + Covers from %1 + Borítók innen: %1 + + + Total network requests made + Összes hálózati kérés + + + Average image size + Átlagos képméret + + + Total bytes transferred + Összes átküldött bájt + + + + CoversSettingsPage + + Covers + Borítók + + + Cover providers + Borító szolgáltatók + + + Choose the providers you want to use when searching for covers. + Válassza ki az albumborítók keresésénél használandó szolgáltatókat. + + + Move up + Mozgatás felfelé + + + Move down + Mozgatás lefelé + + + Authentication + Hitelesítés + + + Login + Bejelentkezés + + + Album cover types + + + + Saving album covers + Albumborítók mentése + + + Save album covers in album directory + Albumborítók mentése az album könyvtárába + + + Save album covers in cache directory + Albumborítók mentése a gyorsítótár könyvtárába + + + Save album covers as embedded cover + Albumborítók mentése beágyazott borítóként + + + Filename: + Fájlnév: + + + Pattern + Minta + + + Random + Véletlenszerű + + + Overwrite existing file + Létező fájl felülírása + + + Lowercase filename + Kisbetűs fájlnevek + + + Replace spaces with dashes + Szóközök lecserélése kötőjelekre + + + Use Tidal settings to authenticate. + Tidal beállítások használata a hitelesítéshez. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Qobuz beállítások használata a hitelesítéshez. + + + %1 needs authentication. + A(z) %1 hitelesítést igényel. + + + %1 does not need authentication. + A(z) %1 nem igényel hitelesítést. + + + No provider selected. + Nincs szolgáltató kiválasztva. + + + Authentication failed + A hitelesítés sikertelen + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + Nem lehet végrehajtani az SQL lekérdezést: %1 + + + Failed SQL query: %1 + Sikertelen SQL lekérdezés: %1 + + + Integrity check + Sértetlenség-ellenőrzés + + + Database corruption detected. + Adatbázis-sérülés észlelve. + + + Backing up database + Adatbázis biztonsági mentése + + + + DeleteConfirmationDialog + + Delete files + Fájlok törlése + + + The following files will be deleted from disk: + A következő fájlok lesznek törölve a lemezről: + + + Are you sure you want to continue? + Biztos, hogy folytatja? + + + + DeleteFiles + + Deleting files + Fájlok törlése + + + + DeviceItemDelegate + + Updating %1%... + Frissítés: %1%… + + + Not connected + Nincs kapcsolat + + + Not mounted - double click to mount + Nincs csatolva – kattintson duplán a csatoláshoz + + + Double click to open + Dupla kattintás a megnyitáshoz + + + %1 song%2 + %1 szám%2 + + + + DeviceManager + + Connect device + Eszköz csatlakoztatása + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Ez az első alkalom, hogy csatlakoztatta ezt az eszközt. A Strawberry átvizsgálja zenefájlokat keresve, ez eltarthat egy ideig. + + + This device will not work properly + Az eszköz nem fog megfelelően működni + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Ez egy MTP-eszköz, de a Strawberry libmtp támogatás nélkül lett lefordítva. + + + If you continue, this device will work slowly and songs copied to it may not work. + Ha folytatja, az eszköz lassan fog működni és a rá másolt számok használhatatlanok lehetnek. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Ez egy iPod, de a Strawberry libgpod támogatás nélkül lett lefordítva. + + + This type of device is not supported: %1 + Ez az eszköztípus nem támogatott: %1 + + + + DeviceProperties + + Device Properties + Eszköztulajdonságok + + + Information + Információ + + + Name + Név + + + Icon + Ikon + + + Hardware information + Hardverjellemzők + + + Hardware information is only available while the device is connected. + A hardverjellemzők csak csatlakoztatott eszköz esetén tekinthetők meg. + + + File formats + Fájlformátumok + + + Supported formats + Támogatott formátumok + + + This device supports the following file formats: + Ez az eszköz az alábbi fájlformátumokat támogatja: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + A Strawberry automatikusan az eszköz által is támogatott formátumba tudja alakítani a számokat másolás előtt. + + + Do not convert any music + Ne konvertáljon egy zenét sem + + + Convert any music that the device can't play + Az eszköz által nem támogatott zenék konvertálása + + + Convert all music + Összes zene konvertálása + + + Preferred format + Előnyben részesített formátum + + + This device must be connected and opened before Strawberry can see what file formats it supports. + A Strawberry csak az eszköz csatlakoztatása és megnyitása után képes megállapítani, hogy az milyen fájlformátumokat támogat. + + + Open device + Eszköz megnyitása + + + Querying device... + Eszköz lekérdezése… + + + Model + Modell + + + Manufacturer + Gyártó + + + + DeviceView + + Safely remove device + Eszköz biztonságos eltávolítása + + + Forget device + Eszköz elfelejtése + + + Device properties... + Eszköztulajdonságok… + + + Append to current playlist + Hozzáfűzés a jelenlegi lejátszólistához + + + Replace current playlist + Jelenlegi lejátszólista cseréje + + + Open in new playlist + Megnyitás új lejátszólistában + + + Copy to collection... + Másolás a gyűjteménybe… + + + Delete from device... + Törlés az eszközről… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Egy eszköz elfelejtésekor a Strawberry törli erről a listáról, és újra be kell olvasnia róla minden számot, ha legközelebb csatlakoztatja. + + + Delete files + Fájlok törlése + + + These files will be deleted from the device, are you sure you want to continue? + Ezek a fájlok törölve lesznek az eszközről. Biztos, hogy folytatja? + + + + DeviceViewContainer + + Form + Űrlap + + + + DynamicPlaylistControls + + Dynamic mode is on + Dinamikus mód be + + + New tracks will be added automatically. + Az új számok automatikusan hozzá lesznek adva. + + + Expand + Kibontás + + + Repopulate + Újrafeltöltés + + + Turn off + Kikapcsolás + + + + EditTagDialog + + Edit track information + Száminformációk szerkesztése + + + Summary + Összegzés + + + Date created + Létrehozás dátuma + + + Art Automatic + Automatikus albumborító + + + Date modified + Módosítás dátuma + + + Art Embedded + + + + Last played + A playlist's tag. + Legutóbb játszott + + + File type + Fájltípus + + + Length + Időtartam + + + Play count + Lejátszásszám + + + Bit depth + Bitmélység + + + EBU R 128 integrated loudness + + + + Bit rate + Bitráta + + + Skip count + Kihagyások száma + + + Sample rate + Mintavételi gyakoriság + + + Path + Elérési út + + + Filename + Fájlnév + + + Art Unset + + + + File size + Fájlméret + + + Art Manual + Kézi albumborító + + + EBU R 128 loudness range + + + + Reset play counts + Lejátszásszámok lenullázása + + + Tags + Címkék + + + MenuPopupToolButton + + + + Change art + Borító módosítása + + + Embedded cover + Beágyazott albumborító + + + Disc + Lemez + + + Grouping + Csoportosítás + + + Album artist + Albumelőadó + + + Album + + + + Year + Év + + + Title + Cím + + + Artist + Előadó + + + Composer + Zeneszerző + + + Complete tags automatically + Címkék automatikus kiegészítése + + + Genre + Műfaj + + + Comment + Megjegyzés + + + Performer + Előadó + + + Compilation + Összeállítás + + + Track + Szám + + + Rating + Értékelés + + + Lyrics + Dalszöveg + + + Complete lyrics automatically + + + + Previous + Előző + + + Next + Következő + + + Saving tracks + Számok mentése + + + Loading tracks + Számok betöltése + + + %1 songs selected. + %1 szám kiválasztva. + + + kbps + kb/s + + + Unknown + Ismeretlen + + + Yes + + + + No + + + + None + Egyik sem + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Albumborító nincs beállítva + + + Album cover editing is only available for collection songs. + Az albumborító szerkesztése csak a gyűjteményben lévő számoknál érhető el. + + + Cover changed: Will be cleared when saved. + A borító megváltozott: mentéskor le lesz véve. + + + Cover changed: Will be unset when saved. + A borító megváltozott: mentéskor nem lesz beállítva. + + + Cover changed: Will be deleted when saved. + A borító megváltozott: mentéskor törölve lesz. + + + Cover changed: Will set new when saved. + A borító megváltozott: mentéskor az új lesz beállítva. + + + Never + Soha + + + Reset song play statistics + Lejátszásszámlálók lenullázása + + + Are you sure you want to reset this song's play statistics? + Biztos, hogy lenullázza a szám statisztikáit? + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Hangszínszabályzó + + + Preset: + Előbeállítás: + + + Save preset + Beállítás mentése + + + Delete preset + Előbeállítás törlése + + + Enable equalizer + Hangszínszabályzó engedélyezése + + + Enable stereo balancer + Hangegyensúly engedélyezése + + + Left + Bal + + + Balance + Egyensúly + + + Right + Jobb + + + Pre-amp + Előerősítő + + + Custom + Egyéni + + + Classical + Klasszikus + + + Club + Klub + + + Dance + + + + Full Bass + Teljes basszus + + + Full Treble + Teljes magas + + + Full Bass + Treble + Teljes basszus + Magas + + + Laptop/Headphones + Laptop/fejhallgató + + + Large Hall + Nagy terem + + + Live + Élő + + + Party + Parti + + + Pop + + + + Reggae + + + + Rock + + + + Soft + Lágy + + + Ska + + + + Soft Rock + Soft rock + + + Techno + + + + Zero + Nulla + + + Name + Név + + + Are you sure you want to delete the "%1" preset? + Biztos, hogy törli a(z) „%1” előbeállítást? + + + + EqualizerSlider + + Equalizer + Hangszínszabályzó + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Strawberry hiba + + + + FancyTabWidget + + Large sidebar + Nagy oldalsáv + + + Icons sidebar + + + + Small sidebar + Kis oldalsáv + + + Plain sidebar + Egyszerű oldalsáv + + + Tabs on top + Fülek felül + + + Icons on top + Ikonok felül + + + + FileTypeItemDelegate + + Unknown + Ismeretlen + + + + FileView + + Form + Űrlap + + + + FileViewList + + Append to current playlist + Hozzáfűzés a jelenlegi lejátszólistához + + + Replace current playlist + Jelenlegi lejátszólista cseréje + + + Open in new playlist + Megnyitás új lejátszólistában + + + Copy to collection... + Másolás a gyűjteménybe… + + + Move to collection... + Áthelyezés a gyűjteménybe… + + + Copy to device... + Másolás eszközre… + + + Delete from disk... + Törlés a lemezről… + + + Edit track information... + Száminformációk szerkesztése… + + + Show in file browser... + Megnyitás a fájlböngészőben… + + + + FreeSpaceBar + + Available + Elérhető + + + New songs + Új számok + + + Exceeded by + + + + Used + Használt + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + iPod adatbázis betöltése + + + An error occurred loading the iTunes database + Hiba történt az iTunes adatbázis betöltésekor + + + + GeniusLyricsProvider + + Genius Authentication + Genius hitelesítés + + + Please open this URL in your browser + Nyissa meg ezt a webcímet a böngészőben + + + Redirect missing token code! + Az átirányításból hiányzik a token kód. + + + Received invalid reply from web browser. + Érvénytelen válasz érkezett a böngészőből. + + + Redirect from Genius is missing query items code or state. + A Genius átirányításnál hiányzik a lekérdezett elemek kódja vagy állapota. + + + + GioLister + + Mount point + Csatolási pont + + + Device + Eszköz + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Nyomjon meg egy billentyűt + + + Press a key combination to use for %1... + Nyomja meg a(z) %1 funkcióhoz használandó billentyűkombinációt… + + + + GlobalShortcutsManager + + Play + Lejátszás + + + Pause + Szünet + + + Play/Pause + Lejátszás/szüneteltetés + + + Stop + Leállítás + + + Stop playing after current track + Lejátszás leállítása a jelenlegi szám után + + + Next track + Következő szám + + + Previous track + Előző szám + + + Restart or previous track + + + + Increase volume + Hangerő növelése + + + Decrease volume + Hangerő csökkentése + + + Mute + Némítás + + + Seek forward + Előretekerés + + + Seek backward + Visszatekerés + + + Show/Hide + Megjelenítés/elrejtés + + + Show OSD + OSD megjelenítése + + + Toggle Pretty OSD + Saját OSD be/ki + + + Change shuffle mode + Keverési mód módosítása + + + Change repeat mode + Ismétlési mód módosítása + + + Enable/disable scrobbling + Scrobble funkció be/ki + + + Love + Kedvenc + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Globális gyorsbillentyűk + + + Use Gnome (GSD) shortcuts when available + Gnome (GSD) gyorsbillentyűk használata, ha elérhető + + + Open... + Megnyitás… + + + Use MATE shortcuts when available + MATE gyorsbillentyűk használata, ha elérhető + + + Use KDE (KGlobalAccel) shortcuts when available + KDE (KGlobalAccel) gyorsbillentyűk használata, ha elérhető + + + Use X11 shortcuts when available + X11 gyorsbillentyűk használata, ha elérhető + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + A Rendszerbeállításokban engedélyeznie kell a „<span style="font-style:italic">számítógép irányítása</span>” beállítást a globális gyorsbillentyűk használatához a Strawberryben. + + + Action + Category label + Művelet + + + Shortcut + Gyorsbillentyű + + + Shortcut for %1 + Gyorsbillentyű ehhez: %1 + + + &None + &Nincs + + + &Default + &Alapértelmezett + + + &Custom + &Egyéni + + + Change shortcut... + Gyorsbillentyű módosítása… + + + The "%1" command could not be started. + A(z) „%1” parancsot nem lehetett elindítani. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Az X11 gyorsbillentyűk használata %1 esetén nem ajánlott, és lehet, hogy a billentyűzet nem fog reagálni. + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + A %1 gyorsbillentyűi általában az MPRIS és a KGlobalAccel összetevőkön keresztül használatosak. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + A %1 gyorsbillentyűi általában a GNOME Beállításdémonon keresztül használatosak, és a gnome-settings-daemon használatával kell őket beállítani. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + A %1 gyorsbillentyűi általában a GNOME Beállításdémonon keresztül használatosak, és a cinnamon-settings-daemon használatával kell őket beállítani. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + A %1 gyorsbillentyűi általában a MATE Beállításdémonon keresztül használatosak, így annak használatával kell őket beállítani. + + + + GroupByDialog + + Collection advanced grouping + Gyűjtemény speciális csoportosítása + + + You can change the way the songs in the collection are organized. + Megváltoztathatja, hogy milyen módon legyenek a számok rendezve a gyűjteményben. + + + Group Collection by... + Gyűjtemény csoportosítása… + + + First level + Első szinten + + + None + Egyik sem + + + Artist + Előadó + + + Album artist + Albumelőadó + + + Album + + + + Album - Disc + Album - Lemez + + + Disc + Lemez + + + Format + Formátum + + + Genre + Műfaj + + + Year + Év + + + Year - Album + Év - Album + + + Year - Album - Disc + Év - Album - Lemez + + + Original year + Eredeti megjelenés éve + + + Original year - Album + Eredeti megjelenés éve - Album + + + Composer + Zeneszerző + + + Performer + Előadó + + + Grouping + Csoportosítás + + + File type + Fájltípus + + + Sample rate + Mintavételi gyakoriság + + + Bit depth + Bitmélység + + + Bitrate + Bitráta + + + Second level + Második szinten + + + Third level + Harmadik szinten + + + Separate albums by grouping tag + Albumok szétválasztása csoportosítási címkével + + + + GstEngine + + Buffering + Pufferelés + + + + LastFMImport + + Missing username, please login to last.fm first! + Hiányzó felhasználónév, először jelentkezzen be a last.fm-be! + + + + LastFMImportDialog + + Import data from last.fm + Adatok importálása last.fm-ből + + + Choose data to import from last.fm + A last.fm-ből importálandó adatok kiválasztása + + + Last played + Legutóbb játszott + + + Play counts + Lejátszásszámok + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Figyelmeztetés: A last.fm-ből származó lejátszásszámok és legutóbbi lejátszási időpontok lecserélik az egyező számok megfelelő adatait. A lejátszásszámok felváltják az egyező albumok adatait az előadó és a szám címe alapján. Mielőtt elindítaná, készítsen biztonsági másolatot az adatbázisáról. + + + Go! + Ugrás! + + + Close + Bezárás + + + Cancel + Mégse + + + Receiving initial data from last.fm... + Kezdeti adatok fogadása a last.fm-től… + + + Receiving playcount for %1 songs and last played for %2 songs. + Lejátszásszám fogadása %1 számhoz, és a legutóbbi lejátszás fogadása %2 számhoz. + + + Receiving last played for %1 songs. + Legutóbbi lejátszás fogadása %1 számhoz. + + + Receiving playcounts for %1 songs. + Lejátszások számának fogadása %1 számhoz. + + + Playcounts for %1 songs and last played for %2 songs received. + Lejátszásszám fogadva %1 számhoz, és a legutóbbi lejátszás fogadva %2 számhoz. + + + Last played for %1 songs received. + Legutóbbi lejátszások fogadva %1 számhoz. + + + Playcounts for %1 songs received. + Lejátszásszám fogadva %1 számhoz. + + + + LastPlayedItemDelegate + + Never + Soha + + + + Library + + Least favourite tracks + Legkevésbé kedvelt számok + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz hitelesítés + + + Please open this URL in your browser + Nyissa meg ezt a webcímet a böngészőben + + + Redirect missing token code! + Az átirányításból hiányzik a token kód. + + + Received invalid reply from web browser. + Érvénytelen válasz érkezett a böngészőből. + + + Unable to scrobble %1 - %2 because of error: %3 + Hibás scrobble a(z) %1 – %2 számnál: %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + Hiányzó MusicBrains felvételazonosító a következőnél: %1 %2 %3 + + + ListenBrainz error: %1 + ListenBrainz hiba: %1 + + + + LoginStateWidget + + Form + Űrlap + + + You are not signed in. + Nincs bejelentkezve. + + + Sign out + Kijelentkezés + + + Signing in... + Belépés… + + + You are signed in. + Be van jelentkezve. + + + You are signed in as %1. + Be van jelentkezve mint %1. + + + Expires on %1 + Lejár ekkor: %1 + + + + LyricsSettingsPage + + Lyrics + Dalszöveg + + + Lyrics providers + Dalszöveg-szolgáltatók + + + Choose the providers you want to use when searching for lyrics. + Válassza ki a dalszövegek kereséséhez használandó szolgáltatókat. + + + Move up + Mozgatás felfelé + + + Move down + Mozgatás lefelé + + + Authentication + Hitelesítés + + + Login + Bejelentkezés + + + No provider selected. + Nincs szolgáltató kiválasztva. + + + Authentication failed + A hitelesítés sikertelen + + + + MainWindow + + Strawberry Music Player + Strawberry zenelejátszó + + + MenuPopupToolButton + + + + &Music + &Zene + + + P&laylist + &Lejátszólista + + + Help + Súgó + + + &Tools + &Eszközök + + + Previous track + Előző szám + + + F5 + + + + &Play + &Lejátszás + + + F6 + + + + &Stop + &Leállítás + + + F7 + + + + &Next track + Kö&vetkező szám + + + F8 + + + + &Quit + &Kilépés + + + Ctrl+Q + + + + Stop after this track + Leállítás a jelenlegi szám után + + + Ctrl+Alt+V + + + + Love + Kedvenc + + + &Clear playlist + Lejátszólista tö&rlése + + + Clear playlist + Lejátszólista törlése + + + Ctrl+K + + + + Edit track information... + Száminformációk szerkesztése… + + + Ctrl+E + + + + Renumber tracks in this order... + Számok újraszámozása ebben a sorrendben… + + + Set value for all selected tracks... + Az érték beállítása az összes kiválasztott számhoz… + + + Edit tag... + Címke szerkesztése… + + + &Settings... + B&eállítások… + + + Ctrl+P + + + + &About Strawberry + A &Strawberry névjegye + + + F1 + + + + S&huffle playlist + Lejátszólista összeke&verése + + + Ctrl+H + + + + &Add file... + &Fájl hozzáadása… + + + Ctrl+Shift+A + + + + &Open file... + &Fájl megnyitása… + + + Open audio &CD... + Zenei &CD megnyitása… + + + &Cover Manager + &Borítókezelő + + + C&onsole + &Konzol + + + &Shuffle mode + &Keverési mód + + + &Repeat mode + &Ismétlés + + + Remove from playlist + Eltávolítás a lejátszólistáról + + + &Equalizer + &Hangszínszabályzó + + + &Transcode Music + &Zene átkódolása + + + Add &folder... + &Mappa hozzáadása… + + + &Jump to the currently playing track + &Ugrás a most játszott számra + + + Ctrl+J + + + + &New playlist + Ú&j lejátszólista + + + Ctrl+N + + + + Save &playlist... + Leját&szólista mentése… + + + Ctrl+S + + + + &Load playlist... + &Lejátszólista betöltése… + + + Ctrl+Shift+O + + + + &Save all playlists... + Ö&sszes lejátszólista mentése… + + + Go to next playlist tab + Váltás a következő lejátszólista lapra + + + Go to previous playlist tab + Váltás az előző lejátszólista lapra + + + &Update changed collection folders + Gyű&jtemény megváltozott mappáinak frissítése + + + About &Qt + A &Qt névjegye + + + &Mute + &Némítás + + + Ctrl+M + + + + &Do a full collection rescan + &Gyűjtemény teljes újraellenőrzése + + + Stop collection scan + + + + Complete tags automatically... + Címkék automatikus kiegészítése… + + + Ctrl+T + + + + Toggle scrobbling + Scrobble funkció be/ki + + + Remove &duplicates from playlist + Más&olatok törlése a lejátszólistáról + + + Remove &unavailable tracks from playlist + &Nem elérhető számok törlése a lejátszólistáról + + + Add file(s) to transcoder + Fájl(ok) hozzáadása az átkódoláshoz + + + Add file to transcoder + Fájl hozzáadása az átkódoláshoz + + + Add stream... + Közvetítés hozzáadása… + + + Show sidebar + Oldalsáv megjelenítése + + + Import data from last.fm... + Adatok importálása last.fm-ből… + + + All Files (*) + Minden fájl (*) + + + Context + Környezet + + + Collection + Gyűjtemény + + + Queue + Lejátszási sor + + + Playlists + Lejátszólisták + + + Smart playlists + Okos lejátszólisták + + + Files + Fájlok + + + Radios + Rádiók + + + Devices + Eszközök + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Összes szám megjelenítése + + + Show only duplicates + Csak a másolatok megjelenítése + + + Show only untagged + Csak a címke nélküliek megjelenítése + + + Configure collection... + Gyűjtemény beállítása... + + + Play + Lejátszás + + + Toggle queue status + Lejátszási sor állapotának átváltása + + + Queue selected tracks to play next + Kijelölt számok lejátszása következőként + + + Toggle skip status + Kihagyási állapot be/ki + + + Rescan song(s)... + Számok újraellenőrzése… + + + Copy URL(s)... + URL(-ek) másolása… + + + Show in collection... + Megjelenítés a gyűjteményben… + + + Show in file browser... + Megnyitás a fájlböngészőben… + + + Organize files... + Fájlok rendszerezése… + + + Copy to collection... + Másolás a gyűjteménybe… + + + Move to collection... + Áthelyezés a gyűjteménybe… + + + Copy to device... + Másolás eszközre… + + + Delete from disk... + Törlés a lemezről… + + + Check for updates... + Frissítés keresése… + + + Strawberry running under Rosetta + A Strawberry Rosetta alatt fut + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Szünet + + + Dequeue track + Szám eltávolítása a lejátszási sorból + + + Dequeue selected tracks + Kijelölt számok eltávolítása a lejátszási sorból + + + Queue track + Szám hozzáadása a lejátszási sorhoz + + + Queue selected tracks + Kijelölt számok hozzáadása a lejátszási sorhoz + + + Queue to play next + Lejátszás következőként + + + Unskip track + Szám kihagyásának visszavonása + + + Unskip selected tracks + A kiválasztott számok kihagyásának visszavonása + + + Skip track + Szám kihagyása + + + Skip selected tracks + Kiválasztott számok kihagyása + + + Set %1 to "%2"... + A(z) %1 beállítása erre: „%2”… + + + Edit tag "%1"... + A(z) „%1” címke szerkesztése… + + + Add to another playlist + Hozzáadás másik lejátszólistához + + + New playlist + Új lejátszólista + + + Add file + Fájl hozzáadása + + + Music + Zene + + + Add folder + Mappa hozzáadása + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + %1 dal van a lejátszólistán, túl nagy ahhoz, hogy visszavonja, biztosan törli a lejátszólistát? + + + Error + Hiba + + + None of the selected songs were suitable for copying to a device + Egy kiválasztott szám sem alkalmas az eszközre való másoláshoz + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + A Strawberry most frissült verziójának szüksége van a teljes gyűjtemény újraolvasására az alább sorolt új funkciók használatához: + + + Would you like to run a full rescan right now? + Futtat most egy teljes újraolvasást? + + + Collection rescan notice + Gyűjtemény újraolvasási figyelmeztetés + + + + MessageDialog + + Message Dialog + Üzenet párbeszédablaka + + + Do not show this message again. + Ne jelenítse meg újra ezt az üzenetet. + + + + MimeData + + Playlist + Lejátszólista + + + + MoodbarProxyStyle + + Show moodbar + Hangulatsáv megjelenítése + + + Moodbar style + Hangulatsáv stílusa + + + + MoodbarSettingsPage + + Moodbar + Hangulatsáv + + + Show a moodbar in the track progress bar + Hangulatsáv megjelenítése a folyamatjelző sávban + + + Moodbar style + Hangulatsáv stílusa + + + Save the .mood files directly in the songs folders + A .mood fájlok mentése a számok mappáiba + + + Enabled + Engedélyezve + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + MTP eszköz betöltése + + + Error connecting MTP device %1 + Hiba az MTP-eszköz csatlakoztatásakor: %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Hálózati proxy + + + &Use the system proxy settings + &Rendszer proxybeállításainak használata + + + Direct internet connection + Közvetlen internetkapcsolat + + + &Manual proxy configuration + &Kézi proxybeállítás + + + HTTP proxy + + + + SOCKS proxy + + + + Port + + + + Use authentication + Hitelesítés használata + + + Username + Felhasználónév + + + Password + Jelszó + + + Use proxy settings for streaming + Proxybeállítások használata a közvetítésekhez + + + + NotificationsSettingsPage + + Notifications + Értesítések + + + Strawberry can show a message when the track changes. + A Strawberry felbukkanó üzenetben tudja jelezni, ha számot vált. + + + Notification type + Értesítés típusa + + + Disabled + Refers to a disabled notification type in Notification settings. + Letiltva + + + Show a &native desktop notification + &Natív asztali értesítés megjelenítése + + + Show a pretty OSD + Saját OSD megjelenítése + + + Show a popup fro&m the system tray + A rendszertálcáról &felugró értesítés megjelenítése + + + General settings + Általános beállítások + + + Popup duration + Értesítés időtartama + + + seconds + másodperc + + + Disable duration + Időtartam letiltása + + + Show a notification when I change the volume + Értesítés megjelenítése a hangerő változtatásakor + + + Show a notification when I change the repeat/shuffle mode + Értesítés megjelenítése, ha megváltoztatom az ismétlést/keverést + + + Show a notification when I pause playback + Értesítés megjelenítése szüneteltetéskor + + + Show a notification when I resume playback + Értesítés megjelenítése a lejátszás folytatásához + + + Include album art in the notification + Albumborító megjelenítése az értesítésben + + + Custom message settings + Egyéni üzenetbeállítások + + + Use a custom message for notifications + Egyéni üzenet használata az értesítéseknél + + + Preview + Előnézet + + + MenuPopupToolButton + + + + Summary + Összegzés + + + Body + Törzs + + + Pretty OSD options + Saját OSD beállításai + + + Background color + Háttérszín + + + Text options + Szövegbeállítások + + + Choose font... + Betűtípus kiválasztása… + + + Choose color... + Szín kiválasztása… + + + Background opacity + Háttér áttetszősége + + + Basic Blue + Egyszerű kék + + + Strawberry Red + Szamócapiros + + + Custom... + Egyéni… + + + Enable fading + Elhalkulás engedélyezése + + + Add song artist tag + Előadó hozzáadása + + + Add song album tag + Album hozzáadása + + + Add song title tag + Cím címke hozzáadása + + + Add song albumartist tag + Albumelőadó címke hozzáadása + + + Add song year tag + Szám évének hozzáadása + + + Add song composer tag + Zeneszerző hozzáadása + + + Add song performer tag + Számelőadó címke hozzáadása + + + Add song grouping tag + Számcsoportosítási címke hozzáadása + + + Add song disc tag + Lemez címke hozzáadása + + + Add song track tag + Szám sorszám címke hozzáadása + + + Add song genre tag + Műfaj hozzáadása + + + Add song length tag + Számhossz címke hozzáadása + + + Add song play count + Lejátszásszámláló hozzáadása + + + Add song skip count + Számkihagyás számláló hozzáadása + + + Add song rating + Számértékelés hozzáadása + + + Add a new line if supported by the notification type + Sortörés hozzáadása, ha az értesítéstípus támogatja + + + %filename% + + + + Add song filename + Szám fájlnevének hozzáadása + + + %url% + + + + Add song URL + Szám URL hozzáadása + + + %originalyear% + + + + Add song original year tag + Eredeti év címke hozzáadása a számhoz + + + OSD Preview + OSD előnézet + + + Drag to reposition + Húzza el az áthelyezéshez + + + + OSDBase + + disc %1 + %1. lemez + + + track %1 + %1. szám + + + Paused + Szüneteltetve + + + Stopped + Leállítva + + + Stop playing after track: %1 + Leállítás a jelenlegi szám után: %1 + + + On + Be + + + Off + Ki + + + Playlist finished + A lejátszólista befejezve + + + Volume %1% + Hangerő %1% + + + Don't shuffle + Nincs keverés + + + Shuffle all + Az összes véletlenszerűen + + + Shuffle tracks in this album + Zeneszámok összekeverése az albumokban + + + Shuffle albums + Albumok összekeverése + + + Don't repeat + Nincs ismétlés + + + Repeat track + Szám ismétlése + + + Repeat album + Album ismétlése + + + Repeat playlist + Lejátszólista ismétlése + + + Stop after every track + Leállítás minden szám után + + + Intro tracks + Bevezető számok + + + + Organize + + Organizing files + Fájlok rendszerezése + + + + OrganizeDialog + + Organize Files + Fájlok rendszerezése + + + Destination + Cél + + + After copying... + Másolás után… + + + Keep the original files + Eredeti fájlok megőrzése + + + Delete the original files + Eredeti fájlok törlése + + + Naming options + Elnevezési lehetőségek + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>A száminformációk behelyettesítéséhez a címkék % jellel kezdődnek, például: %artist %album %title</p> + +<p>Ha egy szövegrészt kapcsos zárójelek közé tesz, akkor az el lesz rejtve, ha a benne lévő címke helyére semmi sem helyettesíthető be.</p> + + + Insert... + Beszúrás… + + + Remove problematic characters from filenames + Problémás karakterek eltávolítása a fájlnevekből + + + Restrict to characters allowed on FAT filesystems + Csak a FAT fájlrendszerekben engedélyezett karakterek használata + + + Restrict characters to ASCII + Csak az ASCII-ban engedélyezett karakterek használata + + + Allow extended ASCII characters + Bővített ASCII karakterek engedélyezése + + + Replace spaces with underscores + Szóközök lecserélése aláhúzásjelekre + + + Overwrite existing files + Létező fájlok felülírása + + + Copy album cover artwork + Albumborító másolása + + + Preview + Előnézet + + + Loading... + Betöltés… + + + Safely remove the device after copying + Eszköz biztonságos eltávolítása másolás után + + + Title + Cím + + + Album + + + + Artist + Előadó + + + Artist's initial + Előadó monogramja + + + Album artist + Albumelőadó + + + Composer + Zeneszerző + + + Performer + Előadó + + + Grouping + Csoportosítás + + + Track + Szám + + + Disc + Lemez + + + Year + Év + + + Original year + Eredeti megjelenés éve + + + Genre + Műfaj + + + Comment + Megjegyzés + + + Length + Időtartam + + + Bitrate + Refers to bitrate in file organize dialog. + Bitráta + + + Sample rate + Mintavételi gyakoriság + + + Bit depth + Bitmélység + + + File extension + Fájlkiterjesztés + + + + OrganizeErrorDialog + + Error copying songs + Hiba történt a számok másolásakor + + + There were problems copying some songs. The following files could not be copied: + Néhány szám másolása közben hiba lépett fel. Az alábbi fájlokat nem sikerült másolni: + + + Error deleting songs + Hiba történt a számok törlésekor + + + There were problems deleting some songs. The following files could not be deleted: + Néhány szám törlése közben hiba lépett fel. Az alábbi fájlokat nem sikerült törölni: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Kis albumborító + + + Large album cover + Nagy albumborító + + + Fit cover to width + Albumborító átméretezése szélesség szerint + + + Show above status bar + Megjelenítés az állapotsáv felett + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Cím + + + Artist + Előadó + + + Album + + + + Track + Szám + + + Disc + Lemez + + + Length + Időtartam + + + Year + Év + + + Original Year + + + + Genre + Műfaj + + + Album Artist + + + + Composer + Zeneszerző + + + Performer + Előadó + + + Grouping + Csoportosítás + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Bitráta + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Megjegyzés + + + Source + Forrás + + + Mood + Hangulat + + + Rating + Értékelés + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Űrlap + + + Undo + Visszavonás + + + Redo + Újra + + + Playlist + Lejátszólista + + + Load playlist + Lejátszólista betöltése + + + No matches found. Clear the search box to show the whole playlist again. + Nincs egyezés. Törölje a keresési feltételeket, hogy újra lássa a teljes lejátszólistát. + + + + PlaylistDelegateBase + + stop + leállítás + + + + PlaylistGeneratorInserter + + Loading smart playlist + Okos lejátszólista betöltése + + + + PlaylistHeader + + &Hide... + &Elrejtés… + + + &Stretch columns to fit window + &Oszlopok nyújtása, hogy kitöltsék az ablakot + + + &Reset columns to default + &Oszlopok visszaállítása + + + &Lock rating + É&rtékelés zárolása + + + &Align text + &Szöveg igazítása + + + &Left + &Balra + + + &Center + &Középre + + + &Right + &Jobbra + + + &Hide %1 + %1 &elrejtése + + + + PlaylistListContainer + + Form + Űrlap + + + New folder + Új mappa + + + Delete + Törlés + + + Save playlist + Save playlist menu action. + Lejátszólista mentése + + + Copy to device... + Másolás eszközre… + + + Enter the name of the folder + Adja meg a mappa nevét + + + Playlist + Lejátszólista + + + Copy to device + Másolás eszközre + + + Playlist must be open first. + Előbb meg kell nyitni a lejátszólistát. + + + Remove playlists + Lejátszólisták eltávolítása + + + You are about to remove %1 playlists from your favorites, are you sure? + Biztos, hogy törölni szeretné a(z) %1 lejátszólistát a kedvencek közül? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + A lejátszólista kedvenccé tételéhez kattintson a lista neve melletti csillag ikonra + + + Favorited playlists will be saved here + A kedvenc lejátszólisták ide lesznek elmentve + + + + PlaylistManager + + Playlist + Lejátszólista + + + Couldn't create playlist + Nem lehet létrehozni a lejátszólistát + + + Save playlist + Title of the playlist save dialog. + Lejátszólista mentése + + + Unknown playlist extension + Ismeretlen lejátszólista-kiterjesztés + + + Unknown file extension for playlist. + Ismeretlen fájlkiterjesztés a lejátszólistánál. + + + %1 selected of + %1 kiválasztva ennyiből: + + + %n track(s) + + + + + + Unknown + Ismeretlen + + + Various artists + Különböző előadók + + + + PlaylistParser + + All playlists (%1) + Minden lejátszólista (%1) + + + %1 playlists (%2) + %1 lejátszólista (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Lejátszólista beállításai + + + File paths + Fájlútvonalak + + + This can be changed later through the preferences + Ez később megváltoztatható a beállításokban + + + Remember my choice + Választás megjegyzése + + + Automatic + Automatikus + + + Relative + Relatív + + + Absolute + Abszolút + + + + PlaylistSequence + + Repeat + Ismétlés + + + Shuffle + Keverés + + + Don't repeat + Nincs ismétlés + + + Repeat track + Szám ismétlése + + + Repeat album + Album ismétlése + + + Repeat playlist + Lejátszólista ismétlése + + + Stop after each track + Leállítás az egyes számok után + + + Intro tracks + Bevezető számok + + + Don't shuffle + Nincs keverés + + + Shuffle tracks in this album + Zeneszámok összekeverése az albumokban + + + Shuffle all + Az összes véletlenszerűen + + + Shuffle albums + Albumok összekeverése + + + + PlaylistSettingsPage + + Playlist + Lejátszólista + + + Use alternating row colors + Felváltott sorszínek használata + + + Show bars on the currently playing track + Sávok megjelenítése a jelenlegi játszott számon + + + Show a glowing animation on the currently playing track + Ragyogás animáció megjelenítése a jelenleg játszott számon + + + Warn me when closing a playlist tab + Figyelmeztetés a lejátszólista bezárásakor + + + Continue to the next item in the playlist if a song is unavailable + Folytatás a következő elemtől a lejátszólistában, ha a szám nem érhető el + + + Grey out unavailable songs in playlists on playback + Nem elérhető számok kiszürkítése lejátszáskor + + + Grey out unavailable songs in playlists on startup + Nem elérhető számok kiszürkítése induláskor + + + Automatically select current playing track + A legutóbbi szám automatikus kiválasztása + + + Enable playlist toolbar + Lejátszólista eszköztár engedélyezése + + + Enable playlist clear button + Lejátszólista törlése gomb engedélyezése + + + Enable delete files in the right click context menu + Fájlok törlésének engedélyezése a jobb-kattintásos menüből + + + Automatically sort playlist when inserting songs + Lejátszólista automatikus rendezése számok beillesztésekor + + + When saving a playlist, file paths should be + A lejátszólista mentésekor a fájl elérési útvonala + + + A&utomatic + A&utomatikus + + + Absolu&te + Abszolú&t + + + Re&lative + Re&latív + + + As&k when saving + &Rákérdezés mentéskor + + + Metadata + Metaadatok + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Ha engedélyezve van, a kijelölt szám címkéje szerkeszthető lesz a lejátszólistán + + + Enable song metadata inline edition with click + Számok metaadatainak szerkesztése kattintásra + + + Write metadata when saving playlists + Metaadatok írása a lejátszólisták mentésekor + + + + PlaylistTabBar + + Star playlist + Lejátszólista csillagozása + + + Close playlist + Lejátszólista bezárása + + + Rename playlist... + Lejátszólista átnevezése… + + + Save playlist... + Lejátszólista mentése… + + + Rename playlist + Lejátszólista átnevezése + + + Enter a new name for this playlist + Adjon új nevet ennek a lejátszólistának + + + Remove playlist + Lejátszólista eltávolítása + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + A lejátszólista nem tartozik a kedvencek közé, a törlés után a listát nem lehet visszaállítani. +Biztos, hogy folytatja? + + + Warn me when closing a playlist tab + Figyelmeztetés a lejátszólista bezárásakor + + + This option can be changed in the "Behavior" preferences + Ez a beállítás változtatható a „Viselkedés” menüben + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Dupla kattintással kedvenccé teheti a lejátszólistát, így elmenti és elérhető lesz a bal oldali sávban „Lejátszólisták” panelen keresztül + + + Playlist + Lejátszólista + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + %n szám hozzáadása + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + %n szám áthelyezése + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + %n szám eltávolítása + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + számok keverése + + + + PlaylistUndoCommands::SortItems + + sort songs + számok rendezése + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + kb/s + + + + QObject + + Usage + Használat + + + options + beállítások + + + URL(s) + Webcím(ek) + + + Player options + Lejátszó beállításai + + + Start the playlist currently playing + A jelenleg játszott lejátszólista indítása + + + Play if stopped, pause if playing + Lejátszás, ha le van állítva, különben szünet + + + Pause playback + Lejátszás szüneteltetése + + + Stop playback + Lejátszás leállítása + + + Stop playback after current track + Leállítás a jelenlegi szám után + + + Skip backwards in playlist + Visszaléptetés a lejátszólistában + + + Skip forwards in playlist + Előreléptetés a lejátszólistában + + + Set the volume to <value> percent + A hangerő <value> százalékra állítása + + + Increase the volume by 4 percent + Hangerő növelése 4 százalékkal + + + Decrease the volume by 4 percent + Hangerő csökkentése 4 százalékkal + + + Increase the volume by <value> percent + Hangerő növelése <value> százalékkal + + + Decrease the volume by <value> percent + Hangerő csökkentése <value> százalékkal + + + Seek the currently playing track to an absolute position + A lejátszott szám adott pozícióra tekerése + + + Seek the currently playing track by a relative amount + A jelenleg játszott szám relatív mértékű tekerése + + + Restart the track, or play the previous track if within 8 seconds of start. + Szám újraindítása, vagy az előző szám lejátszása, ha a kezdetétől számított 8 másodpercen belül volt. + + + Playlist options + Lejátszólista beállításai + + + Create a new playlist with files + Új lejátszólista létrehozása fájlokkal + + + Append files/URLs to the playlist + Fájlok/URL-ek hozzáfűzése a lejátszólistához + + + Loads files/URLs, replacing current playlist + Fájlok/webcímek betöltése, lejátszólista cseréje + + + Play the <n>th track in the playlist + A(z) <n>. szám lejátszása a lejátszólistában + + + Play given playlist + Adott lejátszólista lejátszása + + + Other options + Egyéb beállítások + + + Display the on-screen-display + OSD megjelenítése + + + Toggle visibility for the pretty on-screen-display + Saját OSD láthatósága be/ki + + + Change the language + Nyelv módosítása + + + Resize the window + Ablak átméretezése + + + Equivalent to --log-levels *:1 + Megegyezik a --log-levels *:1 kapcsolóval + + + Equivalent to --log-levels *:3 + Megegyezik a --log-levels *:3 kapcsolóval + + + Comma separated list of class:level, level is 0-3 + Vesszővel elválasztott lista az osztály:szint pároknak, a szintek 0-3 értékeket vehetnek fel + + + Print out version information + Verzióinformáció megjelenítése + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Ismeretlen + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + A(z) %1 fájl nem ismerhető fel érvényes hangfájlként. + + + 1 day + 1 nap + + + %1 days + %1 nap + + + Today + Ma + + + Yesterday + Tegnap + + + %1 days ago + %1 nappal ezelőtt + + + Tomorrow + Holnap + + + In %1 days + %1 napon belül + + + Next week + Következő héten + + + In %1 weeks + %1 héten belül + + + Show in file browser + Megnyitás a fájlböngészőben + + + Too many songs selected. + Túl sok szám van kiválasztva. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + %1 szám van %2 különböző könyvtárból kiválasztva, biztos, hogy meg szeretné nyitni az összeset? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Ismeretlen hiba + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + előadó + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Elérhető mezők + + + after + utána + + + before + előtte + + + on + rajta van + + + not on + nincs rajta + + + in the last + a végén + + + not in the last + nincs a végén + + + between + között + + + contains + tartalmazza + + + does not contain + nem tartalmazza + + + starts with + ezzel kezdődik + + + ends with + ezzel végződik + + + greater than + nagyobb mint + + + less than + kisebb mint + + + equals + egyenlő + + + not equals + nem egyenlő + + + empty + üres + + + not empty + nem üres + + + Comment + Megjegyzés + + + A-Z + + + + Z-A + + + + oldest first + legrégebbi először + + + newest first + legújabb először + + + shortest first + legrövidebb először + + + longest first + leghosszabb elöl + + + smallest first + legkisebb először + + + biggest first + legnagyobb először + + + Hours + Óra + + + Days + Napok + + + Weeks + Hetek + + + Months + Hónapok + + + Years + Évek + + + Normal + Normál + + + Angry + Dühös + + + Frozen + Fagyos + + + Happy + Vidám + + + System colors + Rendszerszínek + + + + QWidget + + Clear + Ürítés + + + Reset + Visszaállítás + + + + QobuzRequest + + Receiving artists... + Előadók fogadása… + + + Receiving albums... + Albumok fogadása… + + + Receiving songs... + Számok fogadása… + + + Searching... + Keresés… + + + Receiving albums for %1 artist... + Albumok fogadása %1 előadóhoz… + + + Receiving albums for %1 artists... + Albumok fogadása %1 előadóhoz... + + + Receiving songs for %1 album... + Számok fogadása %1 albumhoz… + + + Receiving songs for %1 albums... + Számok fogadása %1 albumhoz… + + + Receiving album cover for %1 album... + Albumborító fogadása %1 albumhoz… + + + Receiving album covers for %1 albums... + Albumborítók fogadása %1 albumhoz… + + + No match. + Nincs egyezés. + + + Unknown error + Ismeretlen hiba + + + + QobuzService + + Authenticating... + Hitelesítés… + + + Maximum number of login attempts reached. + A bejelentkezési próbálkozások legnagyobb száma elérve. + + + Missing Qobuz app ID. + Hiányzó Qoboz alkalmazásazonosító. + + + Missing Qobuz username. + Hiányzó Qobuz felhasználónév. + + + Missing Qobuz password. + Hiányzó Qobuz jelszó. + + + Not authenticated with Qobuz. + Nincs hitelesítve a Qobuzzal. + + + Missing Qobuz app ID or secret. + Hiányzó Qobuz alkalmazásazonosító vagy -titok + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Engedélyezés + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + A Qobuz-támogatás nem hivatalos, és ahhoz, hogy működjön, API alkalmazásazonosító és titok szükséges egy regisztrált alkalmazásból. Ezek beszerzésében nem tudunk segíteni. + + + Authentication + Hitelesítés + + + App ID + Alkalmazás azonosító + + + Username + Felhasználónév + + + Password + Jelszó + + + App Secret + Alkalmazás titok + + + Login + Bejelentkezés + + + Preferences + Beállítások + + + Audio format + Hangformátum + + + Search delay + Keresés késleltetése + + + ms + ms + + + Artists search limit + Előadó keresési korlát + + + Albums search limit + Album keresési korlát + + + Songs search limit + Számkeresési korlát + + + Download album covers + Albumborítók letöltése + + + Base64 encoded secret + Base64 kódolású titok + + + Configuration incomplete + A konfiguráció hiányos + + + Missing app id. + Hiányzó alkalmazásazonosító. + + + Missing username. + Hiányzó felhasználónév. + + + Missing password. + Hiányzó jelszó. + + + Authentication failed + A hitelesítés sikertelen + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Hiányzó Qobuz alkalmazásazonosító vagy -titok + + + Cancelled. + Megszakítva. + + + + Queue + + %n track(s) + + + + + + + QueueView + + QueueView + Lejátszási sor nézet + + + Move down + Mozgatás lefelé + + + Ctrl+Up + Ctrl+Fel + + + Move up + Mozgatás felfelé + + + Ctrl+Down + Ctrl+Le + + + Remove + Eltávolítás + + + Clear + Ürítés + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + %1 csatorna lekérése + + + + RadioView + + Append to current playlist + Hozzáfűzés a jelenlegi lejátszólistához + + + Replace current playlist + Jelenlegi lejátszólista cseréje + + + Open in new playlist + Megnyitás új lejátszólistában + + + Open homepage + Honlap megnyitása + + + Donate + Adományozás + + + Refresh channels + Csatornák frissítése + + + + RadioViewContainer + + Form + Űrlap + + + + SCollection + + Saving playcounts and ratings + Lejátszásszámok és értékelések mentése + + + + SavePlaylistsDialog + + Select directory for saving playlists + Válasszon könyvtárat a lejátszólisták mentéséhez + + + Type + Típus + + + Select directory for the playlists + Válasszon könyvtárat a lejátszólistákhoz + + + Directory does not exist. + A könyvtár nem létezik. + + + + SavedGroupingManager + + Saved Grouping Manager + Csoportosításkezelő mentése + + + Remove + Eltávolítás + + + Ctrl+Up + Ctrl+Fel + + + Name + Név + + + First level + Első szinten + + + Second Level + Második szint + + + Third Level + Harmadik szint + + + None + Egyik sem + + + Album artist + Albumelőadó + + + Artist + Előadó + + + Album + + + + Album - Disc + Album - Lemez + + + Year - Album + Év - Album + + + Year - Album - Disc + Év - Album - Lemez + + + Original year - Album + Eredeti megjelenés éve - Album + + + Original year - Album - Disc + Eredeti megjelenés éve - Album - Lemez + + + Disc + Lemez + + + Year + Év + + + Original year + Eredeti megjelenés éve + + + Genre + Műfaj + + + Composer + Zeneszerző + + + Performer + Előadó + + + Grouping + Csoportosítás + + + File type + Fájltípus + + + Format + Formátum + + + Sample rate + Mintavételi gyakoriság + + + Bit depth + Bitmélység + + + Bitrate + Bitráta + + + Unknown + Ismeretlen + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Engedélyezés + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + A számok akkor lesznek scrobble-ozva, ha érvényes metaadataik vannak, 30 +másodpercnél hosszabbak, illetve legalább a felükig vagy 4 percig vannak lejátszva (amelyik korábban teljesül). + + + Work in offline mode (Only cache scrobbles) + Működés kapcsolat nélküli módban (csak gyorsítótárazás) + + + Show scrobble button + Scrobble gomb megjelenítése + + + Show love button + Kedvenc gomb megjelenítése + + + Submit scrobbles every + Scrobble-ok beküldése minden + + + seconds + másodperc + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (Ez a szám scrobble-ozása és a scrobble kiszolgáló felé elküldése közti késleltetés. Az idő 0-ra állítása azt eredményezi, hogy azonnal elküldi.) + + + Prefer album artist when sending scrobbles + Albumelőadó előnyben részesítése a scrobble-ok beküldésénél + + + Show dialog for errors + Párbeszédablak megjelenítése hibák esetén + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Scrobble funkció engedélyezése a következő forrásokhoz: + + + Collection + Gyűjtemény + + + Subsonic + + + + Local file + Helyi fájl + + + Tidal + + + + Device + Eszköz + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Közvetítés + + + Radio Paradise + + + + Unknown + Ismeretlen + + + Last.fm + + + + Login + Bejelentkezés + + + Libre.fm + + + + Listenbrainz + + + + User token: + Felhasználói token: + + + Enter your user token from + Adja meg az itteni felhasználói tokenjét: + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 scrobbler hitelesítés + + + Open URL in web browser? + Webcím megnyitása böngészőben? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Nyomja meg a „Mentés” gombot a webcím vágólapra másolásához és megnyitásához egy böngészőben. + + + Could not open URL. Please open this URL in your browser + Nem lehet megnyitni az URL-t. Próbálja meg böngészőben megnyitni + + + Invalid reply from web browser. Missing token. + Érvénytelen válasz a böngészőből. Hiányzó token. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + A(z) %1 scrobbler nincs hitelesítve! + + + Scrobbler %1 error: %2 + Scrobbler %1 hiba: %2 + + + + SettingsDialog + + Settings + Beállítások + + + General + Általános + + + User interface + Felhasználói felület + + + Streaming + Közvetítés + + + + SmartPlaylistQuerySearchPage + + Form + Űrlap + + + Search mode + Keresési mód + + + Match every search term (AND) + Összes keresési feltétellel egyezzen (ÉS) + + + Match one or more search terms (OR) + Legalább egy keresési feltétellel egyezzen (VAGY) + + + Include all songs + Tartalmazza az összes számot + + + Search terms + Keresési kifejezések + + + + SmartPlaylistQuerySortPage + + Form + Űrlap + + + Sorting + Rendezés + + + Put songs in a random order + Számok véletlenszerű sorrendbe helyezése + + + Sort songs by + Számok rendezése eszerint + + + Limits + Korlátok + + + Show all the songs + Összes szám megjelenítése + + + Only show the first + Csak az első megjelenítése + + + songs + számok + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Keresés a gyűjteményben + + + Find songs in your collection that match the criteria you specify. + Számok keresése a gyűjteményében, melyek megfelelnek a megadott kritériumoknak. + + + Search terms + Keresési kifejezések + + + A song will be included in the playlist if it matches these conditions. + A lejátszólista tartalmazni fogja a számot, ha az megfelel a feltételeknek. + + + Search options + Keresési beállítások + + + Choose how the playlist is sorted and how many songs it will contain. + Válassza ki, hogy a lejátszólista hogyan legyen rendezve, és hány számot tartalmazzon. + + + + SmartPlaylistSearchPreview + + Form + Űrlap + + + Preview + Előnézet + + + Loading... + Betöltés… + + + %1 songs found (showing %2) + %1 szám található (%2 megjelenítése) + + + %1 songs found + %1 szám található + + + + SmartPlaylistSearchTermWidget + + Form + Űrlap + + + and + és + + + ago + óta + + + The second value must be greater than the first one! + A második értéknek nagyobbnak kell lennie, mint az elsőnek! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Keresési kifejezés hozzáadása + + + + SmartPlaylistWizard + + Smart playlist + Okos lejátszólista + + + Playlist type + Lejátszólista típusa + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Az okos lejátszólista a gyűjteményéből származó számok dinamikus listája. Különböző típusú okos lejátszólisták léteznek, amelyek a számok kiválasztásának különböző módjait kínálják. + + + Finish + Befejezés + + + Choose a name for your smart playlist + Válasszon nevet az okos lejátszólistának + + + + SmartPlaylistWizardFinishPage + + Form + Űrlap + + + Name + Név + + + Use dynamic mode + Dinamikus mód használata + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + A dinamikus módban az új számok akkor lesznek kiválasztva és hozzáadva a lejátszólistához, amikor egy szám befejeződik. + + + + SmartPlaylists + + Newest tracks + Legújabb számok + + + 50 random tracks + 50 véletlenszerű szám + + + Ever played + Valaha játszott + + + Never played + Sosem játszott + + + Last played + Legutóbb játszott + + + Most played + Legtöbbet játszott + + + Favourite tracks + Kedvenc számok + + + All tracks + Minden szám + + + Dynamic random mix + Dinamikus véletlen keverés + + + + SmartPlaylistsViewContainer + + New smart playlist + Új okos lejátszólista + + + Edit smart playlist + Okos lejátszólista szerkesztése + + + Delete smart playlist + Okos lejátszólista törlése + + + New smart playlist... + Új okos lejátszólista… + + + Append to current playlist + Hozzáfűzés a jelenlegi lejátszólistához + + + Replace current playlist + Jelenlegi lejátszólista cseréje + + + Open in new playlist + Megnyitás új lejátszólistában + + + Queue track + Szám hozzáadása a lejátszási sorhoz + + + Play next + Lejátszás következőként + + + Edit smart playlist... + Okos lejátszólista szerkesztése… + + + + SnapDialog + + Strawberry is running as a Snap + A Strawberry snapként fut + + + It is detected that Strawberry is running as a Snap + A Strawberry azt észlelte, hogy snapként fut + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + A Strawberry lassabb, és korlátozott, ha snapként fut. Nem fogja elérni a fájlrendszer gyökerét (/). Lehetnek egyéb korlátai is, például nem fog tudni elérni egyes eszközöket vagy hálózati megosztásokat. + + + For Ubuntu there is an official PPA repository available at %1. + Az Ubuntuhoz itt érhető el a hivatalos PPA tároló: %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Hivatalos kiadások a Debianhoz és az Ubuntuhoz érhetők el, amelyek a legtöbb leszármazott disztribúción is működnek. További információkért keresse fel ezt: %1. + + + For a better experience please consider the other options above. + A jobb élményért fontolja meg a fenti lehetőségeket. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Másolja ki a strawberry.conf és a strawberry.db fájlokat a ~/snap könyvtárból, hogy elkerülje a konfiguráció elvesztését a snap eltávolítása előtt: + + + Uninstall the snap with: + Snap eltávolítása ezzel: + + + Install strawberry through PPA: + A strawberry telepítése PPA-ból: + + + + SomaFMService + + Getting %1 channels + %1 csatorna lekérése + + + + SongLoader + + You need GStreamer for this URL. + Ehhez az URL-hez szüksége van a GStreamerre. + + + Preload function was not set for blocking operation. + Nem volt előtöltési függvény beállítva a blokkoló művelethez. + + + File %1 does not exist. + A(z) %1 fájl nem létezik. + + + CD playback is only available with the GStreamer engine. + A CD-lejátszás csak a GStreamer motorral érhető el. + + + Could not open file %1 for reading: %2 + Nem sikerült olvasásra megnyitni a(z) %1 fájlt: %2 + + + Could not open CUE file %1 for reading: %2 + Nem sikerült olvasásra megnyitni a(z) %1 CUE-fájlt: %2 + + + Could not open playlist file %1 for reading: %2 + Nem sikerült olvasásra megnyitni a(z) %1 lejátszólistafájlt: %2 + + + Couldn't create GStreamer source element for %1 + Nem sikerült létrehozni a GStreamer source elemet a(z) %1 számára + + + Couldn't create GStreamer typefind element for %1 + Nem sikerült létrehozni a GStreamer typefind elemet a(z) %1 számára + + + Couldn't create GStreamer fakesink element for %1 + Nem sikerült létrehozni a GStreamer fakesink elemet a(z) %1 számára + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + Nem sikerült a GStreamer source, typefind és fakesink elemek hivatkozása a(z) %1 számára + + + + SongLoaderInserter + + Error while loading audio CD. + Hiba a zenei CD betöltésekor. + + + Loading tracks + Számok betöltése + + + Loading tracks info + Száminformációk betöltése + + + + SpotifyRequest + + Authenticating... + Hitelesítés… + + + Receiving artists... + Előadók fogadása… + + + Receiving albums... + Albumok fogadása… + + + Receiving songs... + Számok fogadása… + + + Searching... + Keresés… + + + Receiving albums for %1 artist... + Albumok fogadása %1 előadóhoz… + + + Receiving albums for %1 artists... + Albumok fogadása %1 előadóhoz... + + + Receiving songs for %1 album... + Számok fogadása %1 albumhoz… + + + Receiving songs for %1 albums... + Számok fogadása %1 albumhoz… + + + Receiving album cover for %1 album... + Albumborító fogadása %1 albumhoz… + + + Receiving album covers for %1 albums... + Albumborítók fogadása %1 albumhoz… + + + No match. + Nincs egyezés. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Spotify hitelesítés + + + Please open this URL in your browser + Nyissa meg ezt a webcímet a böngészőben + + + Redirect missing token code or state! + Az átirányításból hiányzik a token kód vagy az állapot. + + + Received invalid reply from web browser. + Érvénytelen válasz érkezett a böngészőből. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Engedélyezés + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Beállítások + + + Search delay + Keresés késleltetése + + + ms + ms + + + Artists search limit + Előadó keresési korlát + + + Albums search limit + Album keresési korlát + + + Songs search limit + Számkeresési korlát + + + Download album covers + Albumborítók letöltése + + + Fetch entire albums when searching songs + Számok keresésekor a teljes albumok letöltése + + + Authentication failed + A hitelesítés sikertelen + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Kattintson ide a zenék lekéréséhez + + + Append to current playlist + Hozzáfűzés a jelenlegi lejátszólistához + + + Replace current playlist + Jelenlegi lejátszólista cseréje + + + Open in new playlist + Megnyitás új lejátszólistában + + + Queue track + Szám hozzáadása a lejátszási sorhoz + + + Queue to play next + Lejátszás következőként + + + Remove from favorites + Eltávolítás a kedvencek közül + + + + StreamingCollectionViewContainer + + Form + Űrlap + + + Close + Bezárás + + + Abort + Megszakítás + + + Refresh catalogue + Katalógus frissítése + + + + StreamingSearchModel + + Various artists + Különböző előadók + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + előadók + + + albums + albumok + + + songs + számok + + + Enter search terms above to find music + Írja be a fenti keresési kifejezéseket a zene kereséséhez + + + Configure %1... + %1 beállítása… + + + Append to current playlist + Hozzáfűzés a jelenlegi lejátszólistához + + + Replace current playlist + Jelenlegi lejátszólista cseréje + + + Open in new playlist + Megnyitás új lejátszólistában + + + Queue track + Szám hozzáadása a lejátszási sorhoz + + + Add to artists + Hozzáadás előadókhoz + + + Add to albums + Hozzáadás albumokhoz + + + Add to songs + Hozzáadás a számokhoz + + + Search for this + Keresés erre + + + Group by + Csoportosítás + + + + StreamingSongsView + + Configure %1... + %1 beállítása… + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Előadók + + + Albums + Albumok + + + Songs + Számok + + + Search + Keresés + + + Configure %1... + %1 beállítása… + + + + SubsonicRequest + + Retrieving albums... + Albumok lekérése… + + + Retrieving songs for %1 album... + Számok lekérése %1 albumhoz… + + + Retrieving songs for %1 albums... + Számok lekérése %1 albumhoz… + + + Retrieving album cover for %1 album... + Albumborító lekérése %1 albumhoz… + + + Retrieving album covers for %1 albums... + Albumborítók lekérése %1 albumhoz… + + + Unknown error + Ismeretlen hiba + + + + SubsonicService + + Server URL is invalid. + A kiszolgáló webcíme érvénytelen. + + + Missing username or password. + Hiányzó felhasználónév vagy jelszó. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Engedélyezés + + + Server URL + Kiszolgáló webcíme + + + Authentication + Hitelesítés + + + Username + Felhasználónév + + + Password + Jelszó + + + Authentication method: + Hitelesítési mód: + + + Hex + Hexa + + + MD5 token (Recommended) + + + + Preferences + Beállítások + + + Use HTTP/2 when possible + HTTP/2 használata, ha lehetséges + + + Verify server certificate + Kiszolgáló tanúsítványának ellenőrzése + + + Download album covers + Albumborítók letöltése + + + Server-side scrobbling + Kiszolgálóoldali scrobble funkció + + + Test + Teszt + + + Delete songs + Számok törlése + + + Configuration incomplete + A konfiguráció hiányos + + + Missing server url, username or password. + Hiányzó kiszolgáló-webcím, felhasználónév vagy jelszó. + + + Configuration incorrect + A konfiguráció hibás + + + Server URL is invalid. + A kiszolgáló webcíme érvénytelen. + + + Test successful! + A teszt sikeres! + + + Test failed! + A teszt sikertelen! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + A Subsonic kiszolgáló webcíme érvénytelen. + + + Missing Subsonic username or password. + Hiányzó Subsonic felhasználónév vagy jelszó. + + + + SystemTrayIcon + + Pause + Szünet + + + Play + Lejátszás + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Hitelesítés… + + + Receiving artists... + Előadók fogadása… + + + Receiving albums... + Albumok fogadása… + + + Receiving songs... + Számok fogadása… + + + Searching... + Keresés… + + + Receiving albums for %1 artist... + Albumok fogadása %1 előadóhoz… + + + Receiving albums for %1 artists... + Albumok fogadása %1 előadóhoz... + + + Receiving songs for %1 album... + Számok fogadása %1 albumhoz… + + + Receiving songs for %1 albums... + Számok fogadása %1 albumhoz… + + + Receiving album cover for %1 album... + Albumborító fogadása %1 albumhoz… + + + Receiving album covers for %1 albums... + Albumborítók fogadása %1 albumhoz… + + + No match. + Nincs egyezés. + + + + TidalService + + Reply from Tidal is missing query items. + A Tidal válaszából hiányoznak a lekérdezett elemek. + + + Missing Tidal API token. + Hiányzó Tidal API token. + + + Missing Tidal username. + Hiányzó Tidal felhasználónév. + + + Missing Tidal password. + Hiányzó Tidal jelszó. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Nincs hitelesítve a Tidallal, és elérte a bejelentkezési kísérletek legnagyobb számát. + + + Not authenticated with Tidal. + Nincs hitelesítve a Tidallal. + + + Missing Tidal API token, username or password. + Hiányzó Tidal API token, felhasználónév vagy jelszó. + + + + TidalSettingsPage + + Tidal + + + + Enable + Engedélyezés + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + A Tidal támogatása nem hivatalos, és ahhoz, hogy működjön, regisztrált alkalmazás API-token szükséges. Nem tudunk segíteni ennek a beszerzésében. + + + Authentication + Hitelesítés + + + Use OAuth + OAuth használata + + + Client ID + Kliens azonosító + + + API Token + API token + + + Username + Felhasználónév + + + Password + Jelszó + + + Login + Bejelentkezés + + + Preferences + Beállítások + + + Audio quality + Hangminőség + + + Search delay + Keresés késleltetése + + + ms + ms + + + Artists search limit + Előadó keresési korlát + + + Albums search limit + Album keresési korlát + + + Songs search limit + Számkeresési korlát + + + Download album covers + Albumborítók letöltése + + + Fetch entire albums when searching songs + Számok keresésekor a teljes albumok letöltése + + + Album cover size + Albumborító mérete + + + Stream URL method + Közvetítési webcím metódusa + + + Append explicit to album title for explicit albums + Szókimondó felirat hozzáfűzése a korhatáros albumokhoz + + + Configuration incomplete + A konfiguráció hiányos + + + Missing Tidal client ID. + Hiányzó Tidal kliensazonosító. + + + Missing API token. + Hiányzó API token. + + + Missing username. + Hiányzó felhasználónév. + + + Missing password. + Hiányzó jelszó. + + + Authentication failed + A hitelesítés sikertelen + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Nincs hitelesítve a Tidallal. + + + Missing Tidal API token, username or password. + Hiányzó Tidal API token, felhasználónév vagy jelszó. + + + Cancelled. + Megszakítva. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + %1 titkosított közvetítést tartalmazó webcím fogadva a Tidaltól. A Strawberry jelenleg nem támogatja a titkosított közvetítéseket. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Titkosított közvetítést tartalmazó webcím fogadva a Tidaltól. A Strawberry jelenleg nem támogatja a titkosított közvetítéseket. + + + + TrackSelectionDialog + + Tag fetcher + Címkeletöltő + + + Sorry + Elnézést + + + Strawberry was unable to find results for this file + A Strawberry nem talált semmit ehhez a fájlhoz + + + Select best possible match + A legjobb egyezés választása + + + Track + Szám + + + Year + Év + + + Title + Cím + + + Artist + Előadó + + + Album + + + + Previous + Előző + + + Next + Következő + + + Original tags + Eredeti címkék + + + Suggested tags + Javasolt címkék + + + Saving tracks + Számok mentése + + + + TrackSlider + + Form + Űrlap + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Kattintson a hátralévő és a teljes idő kijelzése közti váltáshoz + + + + TranscodeDialog + + Transcode Music + Zene átkódolása + + + Files to transcode + Átkódolandó fájlok + + + Filename + Fájlnév + + + Directory + Könyvtár + + + Add... + Hozzáadás… + + + Remove + Eltávolítás + + + Add all tracks from a directory and all its subdirectories + Az összes szám hozzáadása a könyvtárból és az alkönyvtáraktból + + + Import... + Importálás… + + + Output options + Kimenet beállításai + + + Audio format + Hangformátum + + + Options... + Beállítások… + + + Destination + Cél + + + Alongside the originals + Az eredetiek mellé + + + Select... + Kiválasztás… + + + Progress + Folyamat + + + Details... + Részletek… + + + Clear + Ürítés + + + Start transcoding + Átkódolás indítása + + + %n remaining + + %n hátralévő + + + + %n finished + + %n befejezve + + + + %n failed + + %n sikertelen + + + + Add files to transcode + Fájlok hozzáadása átkódoláshoz + + + Music + Zene + + + Open a directory to import music from + Mappa megnyitása zene importáláshoz + + + Add folder + Mappa hozzáadása + + + + TranscodeLogDialog + + Transcoder Log + Átkódolási napló + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Nem hozható létre a(z) „%1” GStreamer elem – győződjön meg róla, hogy telepített-e minden szükséges GStreamer bővítményt + + + Successfully written %1 + A(z) %1 sikeresen írva + + + Transcoding %1 files using %2 threads + %1 fájl átkódolása %2 szálon + + + Error processing %1: %2 + Hiba a(z) %1 feldolgozásakor: %2 + + + Starting %1 + %1 indítása + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Nem található kódoló a(z) %1 számára, győződjön meg róla, hogy telepített-e minden szükséges GStreamer bővítményt + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Nem található muxer a(z) %1 számára, győződjön meg róla, hogy telepített-e minden szükséges GStreamer bővítményt + + + + TranscoderOptionsAAC + + Form + Űrlap + + + Bitrate + Bitráta + + + kbps + kbit/s + + + Profile + Profil + + + Main profile (MAIN) + Fő profil (MAIN) + + + Low complexity profile (LC) + Alacsony komplexitású profil (LC) + + + Scalable sampling rate profile (SSR) + Skálázható mintavételezési profil (SSR) + + + Long term prediction profile (LTP) + Hosszú távú előrejelzésen alapuló profil (LTP) + + + Use temporal noise shaping + Időbeli zajformázás alkalmazása + + + Allow mid/side encoding + Mid/side kódolás engedélyezése + + + Block type + Blokktípus + + + Normal block type + Normál blokkok + + + No short blocks + Rövid blokkok nélkül + + + No long blocks + Hosszú blokkok nélkül + + + + TranscoderOptionsASF + + Form + Űrlap + + + Bitrate + Bitráta + + + kbps + kbit/s + + + + TranscoderOptionsDialog + + Transcoding options + Átkódolási beállítások + + + + TranscoderOptionsFLAC + + Form + Űrlap + + + Quality + Sound quality + Minőség + + + Fast + Gyors + + + Best + Legjobb + + + + TranscoderOptionsMP3 + + Form + Űrlap + + + Optimize for &quality + Optimalizálás &minőségre + + + Quality + Sound quality + Minőség + + + Opti&mize for bitrate + Opti&malizálás bitrátára + + + Bitrate + Bitráta + + + kbps + kbit/s + + + Constant bitrate + Állandó bitráta + + + Encoding engine quality + Kódolás minősége + + + Fast + Gyors + + + Standard + Normál + + + High + Magas + + + Force mono encoding + Mono kódolás kényszerítése + + + + TranscoderOptionsOpus + + Form + Űrlap + + + Bitrate + Bitráta + + + kbps + kbit/s + + + + TranscoderOptionsSpeex + + Form + Űrlap + + + Quality + Sound quality + Minőség + + + Bitrate + Bitráta + + + automatic + automatikus + + + kbps + kbit/s + + + Average bitrate + Átlagos bitráta + + + disabled + kikapcsolva + + + Encoding mode + Kódolási mód + + + Auto + Automatikus + + + Ultra wide band (UWB) + Ultra szélessávú (UWB) + + + Wide band (WB) + Szélessávú (WB) + + + Narrow band (NB) + Keskenysávú (NB) + + + Variable bit rate + Változó bitráta + + + Voice activity detection + Hangtevékenység észlelése + + + Discontinuous transmission + Szakaszos átvitel + + + Encoding complexity + Kódolás összetettsége + + + Frames per buffer + Képkockák pufferenként + + + + TranscoderOptionsVorbis + + Form + Űrlap + + + Quality + Sound quality + Minőség + + + Use bitrate management engine + Bitráta-kezelőszolgáltatás használata + + + Target bitrate + Cél bitráta + + + kbps + kbit/s + + + Minimum bitrate + Legkisebb bitráta + + + disabled + kikapcsolva + + + Maximum bitrate + Legnagyobb bitráta + + + + TranscoderOptionsWavPack + + Form + Űrlap + + + + TranscoderSettingsPage + + Transcoding + Átkódolás + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Ezek a beállítások a „Zene átkódolása” ablakban használatosak, illetve amikor zenéket alakít át egy eszközre másolás előtt. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + D-Bus elérési út + + + Serial number + Sorozatszám + + + Mount points + Csatolási pontok + + + Partition label + Partíció címkéje + + + UUID + + + + + UserPassDialog + + Enter username and password + Felhasználónév és jelszó megadása + + + Username + Felhasználónév + + + Password + Jelszó + + + diff --git a/src/translations/strawberry_id_ID.ts b/src/translations/strawberry_id_ID.ts new file mode 100644 index 00000000..c62d8c65 --- /dev/null +++ b/src/translations/strawberry_id_ID.ts @@ -0,0 +1,7561 @@ + + + + + About + + About + + + + About Strawberry + Tentang Strawberry + + + Version %1 + + + + Strawberry is a music player and music collection organizer. + + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + + + + Contributors + + + + Clementine authors + + + + Clementine contributors + + + + Thanks to + + + + Thanks to all the other Amarok and Clementine contributors. + + + + + AddStreamDialog + + Add Stream + + + + Enter the URL of a stream: + + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Gambar (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Gambar (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Semua berkas (*) + + + Load cover from disk... + Muat sampul dari diska... + + + Save cover to disk... + Simpan sampul ke diska... + + + Load cover from URL... + Muat sampul dari URL... + + + Search for album covers... + Cari sampul album... + + + Unset cover + Tak set sampul + + + Delete cover + + + + Clear cover + + + + Show fullsize... + Tampilkan ukuran penuh... + + + Search automatically + Cari secara otomatis + + + Load cover from disk + Muat sampul dari diska + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + tidak diketahui + + + Save album cover + Simpan sampul album + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Ekspor sampul + + + Output + Keluaran + + + Enter a filename for exported covers (no extension): + Masukkan nama berkas untuk sampul yang diekspor (tanpa ekstensi): + + + Export downloaded covers + Ekspor sampul yang sudah diunduh + + + Export embedded covers + Ekspor sampul yang tertanam + + + Existing covers + Sampul yang tersedia + + + Do not overwrite + Jangan timpa + + + O&verwrite all + T&impa semua + + + Overwrite s&maller ones only + Hanya ti&mpa yang lebih kecil + + + Size + Ukuran + + + Scale size + Ukuran skala + + + Size: + Ukuran: + + + Pixel + Piksel + + + + AlbumCoverManager + + Abort + Batal + + + All albums + Semua album + + + Albums with covers + Album dengan sampul + + + Albums without covers + Album tanpa sampul + + + Really cancel? + Benar-benar membatalkan? + + + Closing this window will stop searching for album covers. + Menutup jendela ini akan menghentikan pencarian sampul album. + + + Don't stop! + Jangan berhenti! + + + All artists + Semua artis + + + Various artists + Artis beraga + + + Got %1 covers out of %2 (%3 failed) + Mendapatkan %1 sampul dari %2 ( %3 gagal) + + + %1 transferred + %1 telah ditransfer + + + Export finished + Ekspor selesai + + + No covers to export. + Tidak ada sampul untuk diekspor. + + + Exported %1 covers out of %2 (%3 skipped) + Mengekspor %1 sampul dari %2 (%3 dilewati) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Pengelola Sampul + + + Artist + Artis + + + Album + + + + Search + Cari + + + Covers from %1 + Sampul dari %1 + + + Abort + Batal + + + + AnalyzerContainer + + Framerate + Lajubingkai + + + Low (%1 fps) + Rendah (%1 fps) + + + Medium (%1 fps) + Sedang (%1 fps) + + + High (%1 fps) + Tinggi (%1 fps) + + + Super high (%1 fps) + Sangat tinggi (%1 fps) + + + No analyzer + Tidak ada penganalisis + + + Block analyzer + Penganalisis blok + + + Boom analyzer + Penganalisis dentuman + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Penampilan + + + Style + + + + Use system theme icons + Gunakan ikon tema sistem + + + Settings require restart. + + + + Tabbar colors + Warna tabbar + + + &Use the system default color + G&unakan warna standar sistem + + + Use custom color + Gunakan warna kustom + + + Use gradient background + Gunakan latar belakang gradien + + + Select tabbar color: + Pilih warna tabbar: + + + Background image + Gambar latar belakang + + + Default bac&kground image + Gambar latar bela&kang standar + + + &No background image + &Tidak ada gambar latar belakang + + + The album cover of the currently playing song + Sampul album dari lagu yang diputar saat ini + + + Albu&m cover + Sa&mpul album + + + Custom image: + Gambar ubahsuai: + + + Browse... + Ramban... + + + Position + Posisi + + + Upper Left + Kiri Atas + + + Upper Right + Kanan Atas + + + Middle + Tengah + + + Bottom Left + Kiri Bawah + + + Bottom Right + Kanan Bawah + + + Max cover size + Ukuran sampul maksimum + + + Stretch image to fill playlist + Regangkan gambar hingga memenuhi daftar putar + + + Keep aspect ratio + Jaga aspek ratio + + + Do not cut image + Jangan potong gambar + + + Blur amount + Besaran kekaburan + + + 0px + + + + Opacity + Kelegapan + + + 40% + + + + Icon sizes + + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + Pilih gambar latar belakang + + + + BackendSettingsPage + + Backend + + + + Audio output + Keluaran audio + + + Device + Perangkat + + + Output + Keluaran + + + Engine + Mesin + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + Fungsikan kontrol volume + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + md + + + Buffer duration + Durasi Bufer + + + High watermark + + + + Low watermark + + + + Defaults + + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + Gunakan metadata Replay Gain jika tersedia + + + Replay Gain mode + Mode Replay Gain + + + Radio (equal loudness for all tracks) + Radio (kenyaringan sama untuk semua trek) + + + Album (ideal loudness for all tracks) + Album (kenyaringan ideal untuk semua trek) + + + Pre-amp + + + + Apply compression to prevent clipping + Terapkan kompresi untuk mencegah clipping + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Melesap + + + Fade out when stopping a track + Lesap senyap saat menghentikan trek + + + Cross-fade when changing tracks manually + Lesap-silang ketika mengubah trek secara manual + + + Cross-fade when changing tracks automatically + Lesap-silang ketika mengubah trek secara otomatis + + + Except between tracks on the same album or in the same CUE sheet + Kecuali antara trek pada album yang sama atau di lembar CUE yang sama + + + Fading duration + Durasi lesap + + + Fade out on pause / fade in on resume + Lesap senyap saat jeda / lesap jelma saat melanjutkan + + + + BehaviourSettingsPage + + Behavior + Perilaku + + + Show system tray icon + Tampilkan ikon baki sistem + + + Keep running in the background when the window is closed + Tetap jalankan di belakang layar ketika jendela ditutup + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + Lanjutkan pemutaran saat memulai Strawberry + + + Show playing widget + Tampilkan widget berputar + + + On startup + Saat membuka + + + Remember from &last time + Ingat dari terakhir ka&li + + + Show the main window + + + + Hide the main window + + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + Bahasa + + + Use the system default + Gunakan bawaan sistem + + + You will need to restart Strawberry if you change the language. + Anda perlu memulai ulang Strawberry jika Anda mengubah bahasa. + + + Using the menu to add a song will... + Menggunakan menu untuk menambah lagu akan... + + + Never start playing + Jangan mulai memutar + + + Play if there is nothing already playing + Putar jika tidak ada yang sedang diputar + + + Always start playing + Selalu mulai memutar + + + Pressing "Previous" in player will... + Menekan "Sebelumnya" pada pemutar akan... + + + Jump to previous song right away + Lompat ke lagu sebelumnya sesegera + + + Restart song, then jump to previous if pressed again + Mulai ulang lagu, lalu lompat ke yang sebelumnya jika ditekan lagi + + + Double clicking a song will... + Klik ganda pada lagu akan... + + + Append to the playlist + Tambahkan ke daftar putar + + + Replace the playlist + Ganti daftar putar + + + Open in new playlist + Buka di daftar putar baru + + + Add to the queue + Tambahkan ke antrean + + + Double clicking a song in the playlist will... + Klik ganda pada lagu dalam daftar putar akan... + + + Change the currently playing song + Ganti lagu yang diputar saat ini + + + Seeking using a keyboard shortcut or mouse wheel + Menjangkau menggunakan pintasan keyboard atau roda mouse + + + Time step + Selang waktu + + + s + d + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + + + + Enter search terms here + Masukkan lema pencarian di sini + + + MenuPopupToolButton + + + + Entire collection + Semua koleksi + + + Added today + Ditambahkan hari ini + + + Added this week + Ditambahkan minggu ini + + + Added within three months + Ditambahkan pada tiga bulan terakhir + + + Added this year + Ditambahkan tahun ini + + + Added this month + Ditambahkan bulan ini + + + Save current grouping + Simpan pengelompokan saat ini + + + Manage saved groupings + Kelola pengelompokan tersimpan + + + Show + Tampilkan + + + Group by + Grup berdasarkan + + + Display options + Opsi tampilan + + + Group by Album artist/Album + Grup berdasarkan Artis album/Album + + + Group by Album artist/Album - Disc + Grup berdasarkan Artis album/Album - Cakram + + + Group by Album artist/Year - Album + Grup berdasarkan Artis album/Tahun - Album + + + Group by Album artist/Year - Album - Disc + Grup berdasarkan Artis album/Tahun - Album - Cakram + + + Group by Artist/Album + Grup berdasarkan Artis/Album + + + Group by Artist/Album - Disc + Grup berdasarkan Artis/Album - Cakram + + + Group by Artist/Year - Album + Grup berdasarkan Artis/Tahun - Album + + + Group by Artist/Year - Album - Disc + Grup berdasarkan Artis/Tahun - Album - Cakram + + + Group by Genre/Album artist/Album + Grup berdasarkan Genre/Artis album/Album + + + Group by Genre/Artist/Album + Grup berdasarkan Genre/Artis/Album + + + Group by Album Artist + Grup berdasarkan Artis Album + + + Group by Artist + Grup berdasarkan Artis + + + Group by Album + Grup berdasarkan Album + + + Group by Genre/Album + Grup berdasarkan Genre/Album + + + Advanced grouping... + Pengelompokkan lanjut... + + + Grouping Name + Nama Pengelompokan + + + Grouping name: + Nama pengelompokan: + + + + CollectionModel + + Various artists + Artis beraga + + + Loading... + Memuat... + + + Unknown + Tidak diketahui + + + + CollectionSettingsPage + + Collection + Pustakascan + + + These folders will be scanned for music to make up your collection + Folder berikut akan dipindai untuk musik untuk membuat pustaka Anda + + + Add new folder... + Tambah folder baru... + + + Remove folder + Buang folder + + + Automatic updating + Pembaruan otomatis + + + Update the collection when Strawberry starts + Perbarui pustaka ketika memulai Strawberry + + + Monitor the collection for changes + Monitor perubahan pustaka + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + Tandai lagu yang hilang sebagai tidak tersedia + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + Nama berkas sampul album yang diinginkan (dipisahkan koma) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Ketika mencari sampul album, Strawberry akan lebih dulu mencari berkas gambar yang mengandung satu dari kata berikut. +Jika tidak ada yang cocok maka akan menggunakan gambar terbesar dalam direktori. + + + Display options + Opsi tampilan + + + Automatically open single categories in the collection tree + Secara otomatis membuka kategori tunggal di pohon pustaka + + + Show dividers + Tampilkan pembagi + + + Show album cover art in collection + Tampilkan sampul album di pustaka + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + + + + Size + Ukuran + + + Enable Disk Cache + + + + Disk Cache Size + + + + Current disk cache in use: + + + + Clear Disk Cache + + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + + + + Add directory... + Tambah direktori... + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + Pustaka Anda kosong! + + + Click here to add some music + Klik di sini untuk menambahkan musik + + + Append to current playlist + Tambahkan ke daftar putar saat ini + + + Replace current playlist + Ganti daftar putar saat ini + + + Open in new playlist + Buka di daftar putar baru + + + Queue track + Antre trek + + + Queue to play next + Antre untuk diputar selanjutnya + + + Search for this + Cari ini + + + Organize files... + + + + Copy to device... + Salin ke perangkat... + + + Delete from disk... + Hapus dari diska... + + + Edit track information... + Sunting informasi trek... + + + Edit tracks information... + Sunting informasi trek... + + + Show in file browser... + Tampilkan di peramban berkas... + + + Rescan song(s) + Pindai ulang lagu + + + Show in various artists + Tampilkan di artis beragam + + + Don't show in various artists + Jangan tampilkan di artis beragam + + + There are other songs in this album + Ada lagu lainnya di dalam album ini + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + Kesalahan + + + None of the selected songs were suitable for copying to a device + Tidak satu pun dari lagu yang dipilih cocok untuk disalin ke perangkat + + + + CollectionViewContainer + + Form + + + + + CollectionWatcher + + Updating collection + Memperbarui pustaka + + + Updating %1 + Memperbarui %1 + + + + Console + + Console + Konsol + + + Run + Jalankan + + + + ContextSettingsPage + + Context + Konteks + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + Judul + + + Summary + Ringkasan + + + Enable Items + + + + Album + + + + Technical Data + + + + Song Lyrics + + + + Automatically search for album cover + + + + Automatically search for song lyrics + + + + Font for headline + + + + Font + + + + Font size + + + + pt + + + + Preview + Pratinjau + + + Font for data and lyrics + + + + Add song artist tag + Tambahkan nama artis + + + Add song album tag + Tambahkan nama album + + + Add song title tag + Tambahkan judul lagu + + + Add song albumartist tag + Tambahkan nama album artis + + + Add song year tag + Tambahkan tahun rilis + + + Add song composer tag + Tambahkan nama komposer + + + Add song performer tag + Tambahkan nama penampil + + + Add song grouping tag + Tambahkan kelompok + + + Add song disc tag + Tambahkan nomor cakram + + + Add song track tag + Tambahkan nomor trek + + + Add song genre tag + Tambahkan genre + + + Add song length tag + Tambahkan durasi lagu + + + Add song play count + Tambahkan jumlah pemutaran + + + Add song skip count + Tambahkan jumlah lewatan + + + Add a new line if supported by the notification type + Tambah baris baru jika didukung oleh tipe notifikasi + + + %filename% + + + + Add song filename + Tambahkan nama berkas + + + %url% + + + + Add song URL + + + + %rating% + + + + Add song rating + Tambahkan peringkat + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + Tipe berkas + + + Length + Durasi + + + Samplerate + Lajusampel + + + Bit depth + Kedalaman bit + + + Bitrate + Lajubit + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + + + + Show song technical data + Tampilkan data teknis lagu + + + Show song lyrics + Tampilkan lirik lagu + + + Automatically search for song lyrics + + + + No song playing + Tidak ada lagu yang berputar + + + %1 song + + + + %1 songs + + + + %1 artist + + + + %1 artists + + + + %1 album + + + + %1 albums + + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + Muat sampul dari URL + + + Enter a URL to download a cover from the Internet: + Masukkan URL untuk mengunduh sampul dari Internet: + + + Fetching cover error + Terjadi kesalahan saat mengambil sampul + + + The site you requested does not exist! + Situs yang Anda minta tidak ada! + + + The site you requested is not an image! + Situs yang Anda minta bukan sebuah gambar! + + + + CoverManager + + Cover Manager + Pengelola Sampul + + + Enter search terms here + Masukkan lema pencarian di sini + + + MenuPopupToolButton + + + + View + Tampilan + + + Total albums: + Total album: + + + Without cover: + Tanpa sampul: + + + 0 + + + + Fetch Missing Covers + Ambil Sampul yang Hilang + + + Export Covers + Ekspor Sampul + + + Fetch automatically + Ambil secara otomatis + + + Load + Muat + + + Add to playlist + Tambahkan ke daftar putar + + + + CoverSearchStatisticsDialog + + Fetch completed + Pengambilan selesai + + + Got %1 covers out of %2 (%3 failed) + Mendapatkan %1 sampul dari %2 ( %3 gagal) + + + Covers from %1 + Sampul dari %1 + + + Total network requests made + Total permintaan jaringan yang dibuat + + + Average image size + Ukuran gambar rerata + + + Total bytes transferred + Jumlah byte yang ditransfer + + + + CoversSettingsPage + + Covers + + + + Cover providers + + + + Choose the providers you want to use when searching for covers. + + + + Move up + Pindah naik + + + Move down + Pindah turun + + + Authentication + Otentikasi + + + Login + Masuk + + + Album cover types + + + + Saving album covers + Menyimpan sampul album + + + Save album covers in album directory + Simpan sampul album di direktori album + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + Nama berkas: + + + Pattern + + + + Random + + + + Overwrite existing file + Timpa berkas yang sudah ada + + + Lowercase filename + Nama berkas huruf kecil + + + Replace spaces with dashes + Ganti spasi dengan garis strip + + + Use Tidal settings to authenticate. + + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + + + + %1 does not need authentication. + + + + No provider selected. + + + + Authentication failed + Otentikasi gagal + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Periksa integritas + + + Database corruption detected. + Kerusakan basis data terdeteksi. + + + Backing up database + Membuat cadangan basis data + + + + DeleteConfirmationDialog + + Delete files + Hapus berkas + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + + + + + DeleteFiles + + Deleting files + Menghapus berkas + + + + DeviceItemDelegate + + Updating %1%... + Memperbarui %1%... + + + Not connected + Tidak terhubung + + + Not mounted - double click to mount + Tidak terkait - klik ganda untuk mengait + + + Double click to open + Kilk ganda untuk membuka + + + %1 song%2 + %1 lagu%2 + + + + DeviceManager + + Connect device + Sambungkan perangkat + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Ini adalah pertama kalinya Anda menyambungkan perangkat ini. Strawberry sekarang akan memindai perangkat untuk mencari berkas musik - ini mungkin memakan waktu. + + + This device will not work properly + Perangkat ini tidak akan bekerja dengan baik + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Ini adalah perangkat MTP, tetapi Anda mengompilasi Strawberry tanpa dukungan libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Jika Anda lanjutkan, perangkat ini akan bekerja lambat dan lagu-lagu yang disalin mungkin tidak bekerja. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Ini adalah iPod, tetapi Anda mengompilasi Strawberry tanpa dukungan libgpod. + + + This type of device is not supported: %1 + Tipe perangkat ini tidak didukung: %1 + + + + DeviceProperties + + Device Properties + Properti Perangkat + + + Information + Informasi + + + Name + Nama + + + Icon + Ikon + + + Hardware information + Informasi perangkat keras + + + Hardware information is only available while the device is connected. + Informasi hardware hanya tersedia ketika perangkat tersambung. + + + File formats + Format berkas + + + Supported formats + Format yang didukung + + + This device supports the following file formats: + Perangkat ini mendukung format berkas berikut: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry dapat secara otomatis mengonversi musik yang Anda salin ke perangkat ini ke dalam format yang dapat diputar. + + + Do not convert any music + Jangan konversi musik apapun + + + Convert any music that the device can't play + Konversi semua musik yang tidak dapat diputar oleh perangkat. + + + Convert all music + Konversi semua musik + + + Preferred format + Format yang diinginkan + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Perangkat ini harus tersambung dan dibuka sebelum Strawberry dapat melihat format berkas apa yang didukungnya. + + + Open device + Buka perangkat + + + Querying device... + Meminta perangkat... + + + Model + + + + Manufacturer + Produsen + + + + DeviceView + + Safely remove device + Secara aman melepas perangkat + + + Forget device + Lupakan perangkat + + + Device properties... + Properti perangkat... + + + Append to current playlist + Tambahkan ke daftar putar saat ini + + + Replace current playlist + Ganti daftar putar saat ini + + + Open in new playlist + Buka di daftar putar baru + + + Copy to collection... + Salin ke pustaka... + + + Delete from device... + Hapus dari perangkat... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Melupakan perangkat akan membuangnya dari daftar ini dan Strawberry harus memindai ulang semua lagu ketika Anda menyambungkannya lagi. + + + Delete files + Hapus berkas + + + These files will be deleted from the device, are you sure you want to continue? + Berkas-berkas ini akan dihapus dari perangkat, apakah Anda yakin ingin melanjutkan? + + + + DeviceViewContainer + + Form + + + + + DynamicPlaylistControls + + Dynamic mode is on + + + + New tracks will be added automatically. + + + + Expand + + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + Sunting informasi trek + + + Summary + Ringkasan + + + Date created + Tanggal dibuat + + + Art Automatic + + + + Date modified + Tanggal diubah + + + Art Embedded + + + + Last played + A playlist's tag. + Terakhir diputar + + + File type + Jenis berkas + + + Length + Durasi + + + Play count + Jumlah putar + + + Bit depth + Kedalaman bit + + + EBU R 128 integrated loudness + + + + Bit rate + Laju bit + + + Skip count + Lewati hitungan + + + Sample rate + Laju sampel + + + Path + + + + Filename + Nama berkas + + + Art Unset + + + + File size + Ukuran berkas + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + Setel-ulang jumlah putar + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + Cakram + + + Grouping + Pengelompokan + + + Album artist + Album artis + + + Album + + + + Year + Tahun + + + Title + Judul + + + Artist + Artis + + + Composer + Komposer + + + Complete tags automatically + Lengkapi tag secara otomatis + + + Genre + + + + Comment + Komentar + + + Performer + Penampil + + + Compilation + + + + Track + Trek + + + Rating + + + + Lyrics + Lirik + + + Complete lyrics automatically + + + + Previous + Sebelumnya + + + Next + Lanjut + + + Saving tracks + Menyimpan trek + + + Loading tracks + Memuat trek + + + %1 songs selected. + + + + kbps + + + + Unknown + Tidak diketahui + + + Yes + + + + No + + + + None + Nihil + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Sampul tidak diset + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + Tidak Pernah + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Ekualiser + + + Preset: + Prasetel: + + + Save preset + Simpan prasetel + + + Delete preset + Hapus prasetel + + + Enable equalizer + Fungsikan ekualiser + + + Enable stereo balancer + Fungsikan penyeimbang stereo + + + Left + Kiri + + + Balance + Seimbang + + + Right + Kanan + + + Pre-amp + + + + Custom + Ubahsuai + + + Classical + Klasik + + + Club + Klub + + + Dance + Dansa + + + Full Bass + Bass Penuh + + + Full Treble + Treble Penuh + + + Full Bass + Treble + Bass + Treble Penuh + + + Laptop/Headphones + Laptop/Fonkepala + + + Large Hall + Balai Besar + + + Live + Langsung + + + Party + Pesta + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + Tekno + + + Zero + Nol + + + Name + Nama + + + Are you sure you want to delete the "%1" preset? + Apakah Anda yakin ingin menghapus prasetel "%1"? + + + + EqualizerSlider + + Equalizer + Ekualiser + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Kesalahan dengan Strawberry + + + + FancyTabWidget + + Large sidebar + Bilah sisi besar + + + Icons sidebar + + + + Small sidebar + Bilah sisi kecil + + + Plain sidebar + Bilah sisi polos + + + Tabs on top + Tab di puncak + + + Icons on top + Ikon di atas + + + + FileTypeItemDelegate + + Unknown + Tidak diketahui + + + + FileView + + Form + + + + + FileViewList + + Append to current playlist + Tambahkan ke daftar putar saat ini + + + Replace current playlist + Ganti daftar putar saat ini + + + Open in new playlist + Buka di daftar putar baru + + + Copy to collection... + Salin ke pustaka... + + + Move to collection... + Pindah ke pustaka... + + + Copy to device... + Salin ke perangkat... + + + Delete from disk... + Hapus dari diska... + + + Edit track information... + Sunting informasi trek... + + + Show in file browser... + Tampilkan di peramban berkas... + + + + FreeSpaceBar + + Available + Tersedia + + + New songs + Lagu baru + + + Exceeded by + + + + Used + Bekas + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Memuat basis data iPod + + + An error occurred loading the iTunes database + Sebuah galat terjadi saat memuat basis data iTunes + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + Alihkan kode token yang tidak tersedia! + + + Received invalid reply from web browser. + Balasan yang tidak benar diterima dari peramban web. + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + Titik kait + + + Device + Perangkat + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Tekan tombol + + + Press a key combination to use for %1... + Tekan kombinasi tombol untuk menggunakan %1... + + + + GlobalShortcutsManager + + Play + Putar + + + Pause + Jeda + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + Trek sebelumnya + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + Bisu + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + Suka + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + Buka... + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Anda perlu meluncurkan Preferensi Sistem dan mengizinkan Strawberry untuk "<span style="font-style:italic;">mengendalikan komputer Anda</span>" untuk menggunakan pintasan global di Strawberry. + + + Action + Category label + Tindakan + + + Shortcut + Pintasan + + + Shortcut for %1 + Pintasan untuk %1 + + + &None + &Nihil + + + &Default + Stan&dar + + + &Custom + &Ubahsuai + + + Change shortcut... + Ubah pintasan... + + + The "%1" command could not be started. + Perintah "%1" tidak dapat dimulai. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Menggunakan pintasan X11 pada %1 tidak direkomendasikan dan dapat membuat keyboard tidak responsif! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + Pengelompokan pustaka lanjutan + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + Grup Pustaka berdasarkan... + + + First level + Level pertama + + + None + Nihil + + + Artist + Artis + + + Album artist + Album artis + + + Album + + + + Album - Disc + Album - Cakram + + + Disc + Cakram + + + Format + + + + Genre + + + + Year + Tahun + + + Year - Album + Tahun - Album + + + Year - Album - Disc + Tahun - Album - Cakram + + + Original year + Tahun asli + + + Original year - Album + Tahun asli - Album + + + Composer + Komposer + + + Performer + Penampil + + + Grouping + Pengelompokan + + + File type + Jenis berkas + + + Sample rate + Laju sampel + + + Bit depth + Kedalaman bit + + + Bitrate + Lajubit + + + Second level + Level kedua + + + Third level + Level ketiga + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Membufer... + + + + LastFMImport + + Missing username, please login to last.fm first! + + + + + LastFMImportDialog + + Import data from last.fm + + + + Choose data to import from last.fm + + + + Last played + Terakhir diputar + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + Tutup + + + Cancel + + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + Tidak Pernah + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Otentikasi ListenBrainz + + + Please open this URL in your browser + + + + Redirect missing token code! + Alihkan kode token yang tidak tersedia! + + + Received invalid reply from web browser. + Balasan yang tidak benar diterima dari peramban web. + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + + + + You are not signed in. + Anda belum masuk. + + + Sign out + Keluar + + + Signing in... + Sedang masuk... + + + You are signed in. + Anda sudah masuk. + + + You are signed in as %1. + Anda masuk sebagai %1. + + + Expires on %1 + Kedaluwarsa pada %1 + + + + LyricsSettingsPage + + Lyrics + Lirik + + + Lyrics providers + + + + Choose the providers you want to use when searching for lyrics. + + + + Move up + Pindah naik + + + Move down + Pindah turun + + + Authentication + Otentikasi + + + Login + Masuk + + + No provider selected. + + + + Authentication failed + Otentikasi gagal + + + + MainWindow + + Strawberry Music Player + Pemutar Musik Strawberry + + + MenuPopupToolButton + + + + &Music + &Musik + + + P&laylist + D&aftar putar + + + Help + Bantuan + + + &Tools + &Perkakas + + + Previous track + Trek sebelumnya + + + F5 + + + + &Play + &Putar + + + F6 + + + + &Stop + Ber&henti + + + F7 + + + + &Next track + &Trek berikutnya + + + F8 + + + + &Quit + &Keluar + + + Ctrl+Q + + + + Stop after this track + Berhenti setelah trek ini + + + Ctrl+Alt+V + + + + Love + Suka + + + &Clear playlist + &Bersihkan daftar putar + + + Clear playlist + Bersihkan daftar putar + + + Ctrl+K + + + + Edit track information... + Sunting informasi trek... + + + Ctrl+E + + + + Renumber tracks in this order... + Beri nomor baru trek dalam urutan ini... + + + Set value for all selected tracks... + Tetapkan nilai untuk semua trek terpilih... + + + Edit tag... + Sunting tag... + + + &Settings... + &Pengaturan... + + + Ctrl+P + + + + &About Strawberry + &Tentang Strawberry + + + F1 + + + + S&huffle playlist + A&cak daftar putar + + + Ctrl+H + + + + &Add file... + &Tambah file... + + + Ctrl+Shift+A + + + + &Open file... + &Buka berkas... + + + Open audio &CD... + Buka &CD audio... + + + &Cover Manager + Pengelola &Sampul + + + C&onsole + K&onsol + + + &Shuffle mode + Mode &Acak + + + &Repeat mode + Mode pe&rulangan + + + Remove from playlist + Buang dari daftar putar + + + &Equalizer + + + + &Transcode Music + &Transkode Musik + + + Add &folder... + Tambah &folder... + + + &Jump to the currently playing track + &Lompat ke trek yang sedang berputar + + + Ctrl+J + + + + &New playlist + &Daftar putar baru + + + Ctrl+N + + + + Save &playlist... + Simpan &daftar putar... + + + Ctrl+S + + + + &Load playlist... + &Muat daftar putar... + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Buka tab daftar putar selanjutnya + + + Go to previous playlist tab + Buka tab daftar putar sebelumnya + + + &Update changed collection folders + Perbar&ui folder pustaka yang telah diubah + + + About &Qt + Tentang &Qt + + + &Mute + &Bisukan + + + Ctrl+M + + + + &Do a full collection rescan + Lakukan pemin&daian ulang seluruh pustaka + + + Stop collection scan + + + + Complete tags automatically... + Lengkapi tag secara otomatis... + + + Ctrl+T + + + + Toggle scrobbling + Alihkan scrobbling + + + Remove &duplicates from playlist + Buang &duplikat dari daftar putar + + + Remove &unavailable tracks from playlist + B&uang trek yang tidak tersedia dari daftar putar + + + Add file(s) to transcoder + Tambah berkas ke transkoder + + + Add file to transcoder + Tambah berkas ke transkoder + + + Add stream... + + + + Show sidebar + + + + Import data from last.fm... + + + + All Files (*) + Semua Berkas (*) + + + Context + Konteks + + + Collection + Pustakascan + + + Queue + Antrean + + + Playlists + Daftar putar + + + Smart playlists + + + + Files + Berkas + + + Radios + + + + Devices + Perangkat + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Tampilkan semua lagu + + + Show only duplicates + Tampilkan hanya duplikat + + + Show only untagged + Tampilkan hanya tidak bertag + + + Configure collection... + Konfigurasi pustaka... + + + Play + Putar + + + Toggle queue status + Alihkan status antrean + + + Queue selected tracks to play next + Antre trek terpilih untuk diputar selanjutnya + + + Toggle skip status + Alihkan status melewati + + + Rescan song(s)... + + + + Copy URL(s)... + + + + Show in collection... + Tampilkan di pustaka... + + + Show in file browser... + Tampilkan di peramban berkas... + + + Organize files... + + + + Copy to collection... + Salin ke pustaka... + + + Move to collection... + Pindah ke pustaka... + + + Copy to device... + Salin ke perangkat... + + + Delete from disk... + Hapus dari diska... + + + Check for updates... + Periksa pembaruan... + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Jeda + + + Dequeue track + Buang antrean trek + + + Dequeue selected tracks + Buang antrean trek terpilih + + + Queue track + Antre trek + + + Queue selected tracks + Antre trek terpilih + + + Queue to play next + Antre untuk diputar selanjutnya + + + Unskip track + Taklewati trek + + + Unskip selected tracks + Taklewati trek yang dipilih + + + Skip track + Lewati trek + + + Skip selected tracks + Lewati trek yang dipilih + + + Set %1 to "%2"... + Tetapkan %1 ke "%2"... + + + Edit tag "%1"... + Sunting tag "%1"... + + + Add to another playlist + Tambahkan ke daftar putar lainnya + + + New playlist + Daftar putar baru + + + Add file + Tambah berkas + + + Music + Musik + + + Add folder + Tambah folder + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + Kesalahan + + + None of the selected songs were suitable for copying to a device + Tidak satu pun dari lagu yang dipilih cocok untuk disalin ke perangkat + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Versi Strawberry yang baru saja Anda perbarui membutuhkan pemindaian ulang pustaka menyeluruh karena fitur baru yang tercantum di bawah ini: + + + Would you like to run a full rescan right now? + Apakah Anda ingin menjalankan pemindaian ulang menyeluruh sekarang? + + + Collection rescan notice + Pemberitahuan pemindaian ulang pustaka + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + + + + + MimeData + + Playlist + Daftar putar + + + + MoodbarProxyStyle + + Show moodbar + Tampilkan moodbar + + + Moodbar style + Gaya moodbar + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + Tampilkan moodbar di bilah kemajuan trek + + + Moodbar style + Gaya moodbar + + + Save the .mood files directly in the songs folders + Simpan berkas .mood di folder lagu + + + Enabled + Terfungsikan + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Memuat perangkat MTP + + + Error connecting MTP device %1 + Terjadi kesalahan saat menyambungkan perangkat MTP %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Proxy Jaringan + + + &Use the system proxy settings + G&unakan pengaturan proxy sistem + + + Direct internet connection + Sambungan internet langsung + + + &Manual proxy configuration + Konfigurasi proxy &manual + + + HTTP proxy + Proxy HTTP + + + SOCKS proxy + Proxy SOCKS + + + Port + + + + Use authentication + Gunakan otentikasi + + + Username + Nama pengguna + + + Password + Sandi + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + Notifikasi + + + Strawberry can show a message when the track changes. + Strawberry dapat menampilkan pesan ketika trek berubah. + + + Notification type + Tipe notifikasi + + + Disabled + Refers to a disabled notification type in Notification settings. + Nonfungsi + + + Show a &native desktop notification + Tampilkan &notifikasi desktop asli + + + Show a pretty OSD + Tampilkan OSD cantik + + + Show a popup fro&m the system tray + Tampilkan popup dari baki siste&m + + + General settings + Setelan umum + + + Popup duration + Durasi sembulan + + + seconds + detik + + + Disable duration + Nonfungsikan durasi + + + Show a notification when I change the volume + Tampilkan notifikasi ketika saya mengubah volume + + + Show a notification when I change the repeat/shuffle mode + Tampilkan notifikasi ketika saya mengubah mode ulang/karau + + + Show a notification when I pause playback + Tampilkan sebuah notifikasi ketika saya jeda pemutaran + + + Show a notification when I resume playback + Tampilkan notifikasi saat Saya meneruskan pemutaran + + + Include album art in the notification + Sertakan sampul album di dalam pemberitahuan + + + Custom message settings + Setelan pesan ubahsuai + + + Use a custom message for notifications + Gunakan pesan ubahsuai untuk pemberitahuan + + + Preview + Pratinjau + + + MenuPopupToolButton + + + + Summary + Ringkasan + + + Body + Badan + + + Pretty OSD options + Opsi Pretty OSD + + + Background color + Warna latar belakang + + + Text options + Opsi teks + + + Choose font... + Pilih huruf... + + + Choose color... + Pilih warna... + + + Background opacity + Kelegapan latar belakang + + + Basic Blue + Biru Dasar + + + Strawberry Red + + + + Custom... + Ubahsuai... + + + Enable fading + + + + Add song artist tag + Tambahkan nama artis + + + Add song album tag + Tambahkan nama album + + + Add song title tag + Tambahkan judul lagu + + + Add song albumartist tag + Tambahkan nama album artis + + + Add song year tag + Tambahkan tahun rilis + + + Add song composer tag + Tambahkan nama komposer + + + Add song performer tag + Tambahkan nama penampil + + + Add song grouping tag + Tambahkan kelompok + + + Add song disc tag + Tambahkan nomor cakram + + + Add song track tag + Tambahkan nomor trek + + + Add song genre tag + Tambahkan genre + + + Add song length tag + Tambahkan durasi lagu + + + Add song play count + Tambahkan jumlah pemutaran + + + Add song skip count + Tambahkan jumlah lewatan + + + Add song rating + Tambahkan peringkat + + + Add a new line if supported by the notification type + Tambah baris baru jika didukung oleh tipe notifikasi + + + %filename% + + + + Add song filename + Tambahkan nama berkas + + + %url% + + + + Add song URL + + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + Pratinjau OSD + + + Drag to reposition + Seret untuk reposisi + + + + OSDBase + + disc %1 + cakram %1 + + + track %1 + trek %1 + + + Paused + Jeda + + + Stopped + Berhenti + + + Stop playing after track: %1 + Berhenti memutar setelah trek: %1 + + + On + Nyala + + + Off + Mati + + + Playlist finished + Daftar putar selesai + + + Volume %1% + + + + Don't shuffle + Jangan karau + + + Shuffle all + Karau semua + + + Shuffle tracks in this album + Karau trek di dalam album ini + + + Shuffle albums + Karau album + + + Don't repeat + Jangan ulang + + + Repeat track + Ulang trek + + + Repeat album + Ulang album + + + Repeat playlist + Ulang daftar putar + + + Stop after every track + Berhenti setelah setiap trek + + + Intro tracks + Trek intro + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + Tujuan + + + After copying... + Setelah menyalin... + + + Keep the original files + Simpan berkas yang asli + + + Delete the original files + Hapus berkas yang asli + + + Naming options + Opsi penamaan + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Token dimulai dengan %, sebagai contoh: %artist %album %title </p> + +<p>Jika Anda mengurung bagian dari teks yang mengandung token dengan kurung kurawal, maka bagian tersebut akan disembunyikan jika token tersebut kosong.</p> + + + Insert... + Sisipkan... + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + Bataskan ke karakter yang diperbolehkan oleh sistem file FAT + + + Restrict characters to ASCII + Bataskan ke karakter ASCII + + + Allow extended ASCII characters + Perbolehkan karakter ASCII diperpanjang + + + Replace spaces with underscores + Ganti spasi dengan garis bawah + + + Overwrite existing files + Timpa berkas yang ada + + + Copy album cover artwork + Salin sampul album + + + Preview + Pratinjau + + + Loading... + Memuat... + + + Safely remove the device after copying + Secara aman melepas perangkat setelah menyalin + + + Title + Judul + + + Album + + + + Artist + Artis + + + Artist's initial + Inisial artis + + + Album artist + Album artis + + + Composer + Komposer + + + Performer + Penampil + + + Grouping + Pengelompokan + + + Track + Trek + + + Disc + Cakram + + + Year + Tahun + + + Original year + Tahun asli + + + Genre + + + + Comment + Komentar + + + Length + Durasi + + + Bitrate + Refers to bitrate in file organize dialog. + Lajubit + + + Sample rate + Laju sampel + + + Bit depth + Kedalaman bit + + + File extension + Ekstensi berkas + + + + OrganizeErrorDialog + + Error copying songs + Terjadi kesalahan saat menyalin lagu + + + There were problems copying some songs. The following files could not be copied: + Ada masalah penyalinan pada beberapa lagu. Berkas-berkas berikut tidak dapat disalin: + + + Error deleting songs + Terjadi kesalahan saat menghapus lagu + + + There were problems deleting some songs. The following files could not be deleted: + Ada masalah dalam menghapus beberapa lagu. Berkas-berkas berikut tidak dapat dihapus: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Sampul album kecil + + + Large album cover + Sampul album besar + + + Fit cover to width + Paskan sampul ke lebar + + + Show above status bar + Tampilkan di atas bilah status + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Judul + + + Artist + Artis + + + Album + + + + Track + Trek + + + Disc + Cakram + + + Length + Durasi + + + Year + Tahun + + + Original Year + + + + Genre + + + + Album Artist + + + + Composer + Komposer + + + Performer + Penampil + + + Grouping + Pengelompokan + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Lajubit + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Komentar + + + Source + Sumber + + + Mood + + + + Rating + + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + + + + Undo + + + + Redo + + + + Playlist + Daftar putar + + + Load playlist + Muat daftar putar + + + No matches found. Clear the search box to show the whole playlist again. + Tidak ada yang cocok. Kosongkan kotak pencarian untuk menampilkan lagi seluruh daftar putar. + + + + PlaylistDelegateBase + + stop + berhenti + + + + PlaylistGeneratorInserter + + Loading smart playlist + + + + + PlaylistHeader + + &Hide... + &Sembunyikan... + + + &Stretch columns to fit window + &Regang kolom agar pas dengan jendela + + + &Reset columns to default + Atu&r ulang kolom ke pengaturan standar + + + &Lock rating + + + + &Align text + Sej&ajarkan teks + + + &Left + &Kiri + + + &Center + &Tengah + + + &Right + &Kanan + + + &Hide %1 + &Sembunyikan %1 + + + + PlaylistListContainer + + Form + + + + New folder + Folder baru + + + Delete + Hapus + + + Save playlist + Save playlist menu action. + Simpan daftar putar + + + Copy to device... + Salin ke perangkat... + + + Enter the name of the folder + Masukkan nama folder + + + Playlist + Daftar putar + + + Copy to device + + + + Playlist must be open first. + + + + Remove playlists + Buang daftar putar + + + You are about to remove %1 playlists from your favorites, are you sure? + Anda akan membuang %1 daftar putar dari favorit Anda, apakah Anda yakin? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Anda dapat memfavoritkan daftar putar dengan mengklik ikon bintang di sebelah nama daftar putar + + + Favorited playlists will be saved here + Daftar putar yang difavoritkan akan disimpan di sini + + + + PlaylistManager + + Playlist + Daftar putar + + + Couldn't create playlist + Tidak bisa membuat daftar putar + + + Save playlist + Title of the playlist save dialog. + Simpan daftar putar + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + %1 terpilih dari + + + %n track(s) + + + + + + Unknown + Tidak diketahui + + + Various artists + Artis beraga + + + + PlaylistParser + + All playlists (%1) + Semua daftar putar (%1) + + + %1 playlists (%2) + %1 daftar putar (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Opsi daftar putar + + + File paths + Lokasi berkas + + + This can be changed later through the preferences + Ini dapat diubah kemudian melalui preferensi + + + Remember my choice + Ingat pilihan saya + + + Automatic + Otomatis + + + Relative + Relatif + + + Absolute + Absolut + + + + PlaylistSequence + + Repeat + Ulang + + + Shuffle + Karau + + + Don't repeat + Jangan ulang + + + Repeat track + Ulang trek + + + Repeat album + Ulang album + + + Repeat playlist + Ulang daftar putar + + + Stop after each track + Berhenti setelah masing-masing trek + + + Intro tracks + Trek intro + + + Don't shuffle + Jangan karau + + + Shuffle tracks in this album + Karau trek di dalam album ini + + + Shuffle all + Karau semua + + + Shuffle albums + Karau album + + + + PlaylistSettingsPage + + Playlist + Daftar putar + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Peringatkan saya ketika menutup tab daftar putar + + + Continue to the next item in the playlist if a song is unavailable + Lanjutkan ke lagu berikutnya jika suatu lagu di daftar putar tidak tersedia + + + Grey out unavailable songs in playlists on playback + Abu-abukan lagu yang tidak tersedia di daftar putar saat pemutaran + + + Grey out unavailable songs in playlists on startup + Abu-abukan lagu yang tidak tersedia di daftar putar saat membuka + + + Automatically select current playing track + Pilih trek yang sedang diputar secara otomatis + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + Ketika menyimpan daftar putar, lokasi berkas sebaiknya + + + A&utomatic + &Otomatis + + + Absolu&te + Absolu&t + + + Re&lative + Re&latif + + + As&k when saving + Tanya&kan saat menyimpan + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Jika diaktifkan, mengklik lagu yang dipilih di dalam tampilan daftar putar memperbolehkan Anda menyunting nilai tag secara langsung + + + Enable song metadata inline edition with click + Fungsikan edisi metadata lagu sebaris dengan mengkliknya + + + Write metadata when saving playlists + Tulis metadata saat menyimpan daftar putar + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Tutup daftar putar + + + Rename playlist... + Ubah nama daftar putar.. + + + Save playlist... + Simpan daftar putar... + + + Rename playlist + Ubah nama daftar putar + + + Enter a new name for this playlist + Masukkan nama baru untuk daftar putar ini + + + Remove playlist + Buang daftar putar + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Anda akan membuang daftar putar yang bukan bagian dari daftar putar favorit Anda: daftar putar ini akan dihapus (tindakan ini tidak dapat diurungkan). +Apakah Anda yakin ingin melanjutkan? + + + Warn me when closing a playlist tab + Peringatkan saya ketika menutup tab daftar putar + + + This option can be changed in the "Behavior" preferences + Opsi ini dapat diubah di pengaturan "Perilaku" + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + Daftar putar + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + tambahkan %n lagu + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + pindah %n lagu + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + buang %n lagu + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + karau lagu + + + + PlaylistUndoCommands::SortItems + + sort songs + urutkan lagu + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + Penggunaan + + + options + opsi + + + URL(s) + URL + + + Player options + Opsi pemutar + + + Start the playlist currently playing + Mulai daftar putar yang berputar saat ini + + + Play if stopped, pause if playing + Putar jika berhenti, jeda jika berputar + + + Pause playback + Jeda pemutaran + + + Stop playback + Hentikan pemutaran + + + Stop playback after current track + Hentikan pemutaran setelah trek saat ini + + + Skip backwards in playlist + Lewati mundur di dalam daftar putar + + + Skip forwards in playlist + Lewati maju di dalam daftar putar + + + Set the volume to <value> percent + Tetapkan volume ke <value> persen + + + Increase the volume by 4 percent + Naikkan volume 4 persen + + + Decrease the volume by 4 percent + Kurangi volume 4 persen + + + Increase the volume by <value> percent + Naikkan volume <value> persen + + + Decrease the volume by <value> percent + Kurangi volume <value> persen + + + Seek the currently playing track to an absolute position + Jangkau yang sedang diputar ke posisi mutlak + + + Seek the currently playing track by a relative amount + Jangkau trek yang sedang diputar berdasarkan nilai relatif + + + Restart the track, or play the previous track if within 8 seconds of start. + Mulai ulang trek, atau putar trek sebelumnya jika masih dalam 8 detik sejak mulai. + + + Playlist options + Opsi daftar putar + + + Create a new playlist with files + Buat daftar putar baru dengan berkas + + + Append files/URLs to the playlist + Tambahkan berkas/URL ke daftar putar + + + Loads files/URLs, replacing current playlist + Muat berkas/URL, menggantikan daftar putar saat ini + + + Play the <n>th track in the playlist + Putar trek ke <n> dalam daftar putar + + + Play given playlist + + + + Other options + Opsi lainnya + + + Display the on-screen-display + Tampilkan tampilan-pada-layar + + + Toggle visibility for the pretty on-screen-display + Alihkan kenampakan tampilan-pada-layar cantik + + + Change the language + Ubah bahasa + + + Resize the window + + + + Equivalent to --log-levels *:1 + Setara dengan --log-level *: 1 + + + Equivalent to --log-levels *:3 + Setara dengan --log-level *: 3 + + + Comma separated list of class:level, level is 0-3 + Daftar yang dipisahkan koma dari kelas:level, level adalah 0-3 + + + Print out version information + Cetak informasi versi + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Tidak diketahui + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Berkas %1 bukanlah berkas audio yang benar. + + + 1 day + 1 hari + + + %1 days + %1 hari + + + Today + Hari Ini + + + Yesterday + Kemarin + + + %1 days ago + %1 hari yang lalu + + + Tomorrow + Besok + + + In %1 days + Dalam %1 hari + + + Next week + Minggu depan + + + In %1 weeks + Dalam %1 minggu + + + Show in file browser + Tampilkan di peramban berkas + + + Too many songs selected. + Terlalu banyak lagu yang terpilih. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Kesalahan tak terduga + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + + + + after + + + + before + + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + + + + contains + + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + + + + not empty + + + + Comment + Komentar + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + + + + Days + + + + Weeks + + + + Months + + + + Years + + + + Normal + + + + Angry + Marah + + + Frozen + Beku + + + Happy + Senang + + + System colors + Warna sistem + + + + QWidget + + Clear + Bersihkan + + + Reset + Setel-ulang + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Mencari... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Tidak ada yang cocok. + + + Unknown error + Kesalahan tak terduga + + + + QobuzService + + Authenticating... + Mengautentikasi... + + + Maximum number of login attempts reached. + Jumlah maksimum upaya masuk tercapai. + + + Missing Qobuz app ID. + App ID Qobuz tidak tersedia. + + + Missing Qobuz username. + Nama pengguna Qobuz tidak tersedia. + + + Missing Qobuz password. + Kata sandi Qobuz tidak tersedia. + + + Not authenticated with Qobuz. + Tidak terautentikasi dengan Qobuz. + + + Missing Qobuz app ID or secret. + App ID atau secret Qobuz tidak tersedia. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Fungsikan + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + Otentikasi + + + App ID + + + + Username + Nama pengguna + + + Password + Sandi + + + App Secret + + + + Login + Masuk + + + Preferences + Preferensi + + + Audio format + Format audio + + + Search delay + Jeda pencarian + + + ms + + + + Artists search limit + Batasan pencarian artis + + + Albums search limit + Batasan pencarian album + + + Songs search limit + Batasan pencarian lagu + + + Download album covers + Unduh sampul album + + + Base64 encoded secret + + + + Configuration incomplete + Konfigurasi tidak lengkap + + + Missing app id. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Otentikasi gagal + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + App ID atau secret Qobuz tidak tersedia. + + + Cancelled. + Dibatalkan. + + + + Queue + + %n track(s) + + + + + + + QueueView + + QueueView + + + + Move down + Pindah turun + + + Ctrl+Up + + + + Move up + Pindah naik + + + Ctrl+Down + + + + Remove + Buang + + + Clear + Bersihkan + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Tambahkan ke daftar putar saat ini + + + Replace current playlist + Ganti daftar putar saat ini + + + Open in new playlist + Buka di daftar putar baru + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Pengelola Pengelompokan Tersimpan + + + Remove + Buang + + + Ctrl+Up + + + + Name + Nama + + + First level + Level pertama + + + Second Level + Level Kedua + + + Third Level + Level Ketiga + + + None + Nihil + + + Album artist + Album artis + + + Artist + Artis + + + Album + + + + Album - Disc + Album - Cakram + + + Year - Album + Tahun - Album + + + Year - Album - Disc + Tahun - Album - Cakram + + + Original year - Album + Tahun asli - Album + + + Original year - Album - Disc + + + + Disc + Cakram + + + Year + Tahun + + + Original year + Tahun asli + + + Genre + + + + Composer + Komposer + + + Performer + Penampil + + + Grouping + Pengelompokan + + + File type + Jenis berkas + + + Format + + + + Sample rate + Laju sampel + + + Bit depth + Kedalaman bit + + + Bitrate + Lajubit + + + Unknown + Tidak diketahui + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Fungsikan + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Lagu akan di-scrobble jika memiliki metadata yang benar dan lebih panjang dari 30 detik, sudah berputar setidaknya setengah dari durasinya atau 4 menit (yang mana terdahulu terjadi). + + + Work in offline mode (Only cache scrobbles) + Bekerja di modus offline (Hanya cache scrobble) + + + Show scrobble button + Tampilkan tombol scrobble + + + Show love button + Tampilkan tombol suka + + + Submit scrobbles every + Kirimkan scrobble setiap + + + seconds + detik + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + Kemukakan artis album saat scrobble + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + Pustakascan + + + Subsonic + + + + Local file + + + + Tidal + + + + Device + Perangkat + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Strim + + + Radio Paradise + + + + Unknown + Tidak diketahui + + + Last.fm + + + + Login + Masuk + + + Libre.fm + + + + Listenbrainz + + + + User token: + Token pengguna: + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 Autentikasi Scrobbler + + + Open URL in web browser? + + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + + + + Could not open URL. Please open this URL in your browser + + + + Invalid reply from web browser. Missing token. + Balasan tidak benar dari peramban web. Token tidak tersedia. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + Scrobbler %1 tidak terautentikasi! + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + Setelan + + + General + Umum + + + User interface + Antarmuka + + + Streaming + + + + + SmartPlaylistQuerySearchPage + + Form + + + + Search mode + + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + + + + + SmartPlaylistQuerySortPage + + Form + + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + + + + Show all the songs + + + + Only show the first + + + + songs + + + + + SmartPlaylistQueryWizardPlugin + + Collection search + + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + + + + A song will be included in the playlist if it matches these conditions. + + + + Search options + + + + Choose how the playlist is sorted and how many songs it will contain. + + + + + SmartPlaylistSearchPreview + + Form + + + + Preview + Pratinjau + + + Loading... + Memuat... + + + %1 songs found (showing %2) + + + + %1 songs found + + + + + SmartPlaylistSearchTermWidget + + Form + + + + and + + + + ago + + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + + + + + SmartPlaylistWizard + + Smart playlist + + + + Playlist type + + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + + + + Finish + + + + Choose a name for your smart playlist + + + + + SmartPlaylistWizardFinishPage + + Form + + + + Name + Nama + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + + + + 50 random tracks + + + + Ever played + + + + Never played + + + + Last played + Terakhir diputar + + + Most played + + + + Favourite tracks + + + + All tracks + + + + Dynamic random mix + + + + + SmartPlaylistsViewContainer + + New smart playlist + + + + Edit smart playlist + + + + Delete smart playlist + + + + New smart playlist... + + + + Append to current playlist + Tambahkan ke daftar putar saat ini + + + Replace current playlist + Ganti daftar putar saat ini + + + Open in new playlist + Buka di daftar putar baru + + + Queue track + Antre trek + + + Play next + + + + Edit smart playlist... + + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + Anda memerlukan GStreamer untuk URL ini. + + + Preload function was not set for blocking operation. + Fungsi preload tidak diatur untuk operasi memblokir. + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + Pemutaran CD hanya tersedia dengan mesin GStreamer. + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + Terjadi kesalahan saat memuat CD audio. + + + Loading tracks + Memuat trek + + + Loading tracks info + Memuat info trek + + + + SpotifyRequest + + Authenticating... + Mengautentikasi... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Mencari... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Tidak ada yang cocok. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + Balasan yang tidak benar diterima dari peramban web. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Fungsikan + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Preferensi + + + Search delay + Jeda pencarian + + + ms + + + + Artists search limit + Batasan pencarian artis + + + Albums search limit + Batasan pencarian album + + + Songs search limit + Batasan pencarian lagu + + + Download album covers + Unduh sampul album + + + Fetch entire albums when searching songs + Ambil seluruh album saat mencari lagu + + + Authentication failed + Otentikasi gagal + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Klik di sini untuk menerima musik + + + Append to current playlist + Tambahkan ke daftar putar saat ini + + + Replace current playlist + Ganti daftar putar saat ini + + + Open in new playlist + Buka di daftar putar baru + + + Queue track + Antre trek + + + Queue to play next + Antre untuk diputar selanjutnya + + + Remove from favorites + Buang dari favorit + + + + StreamingCollectionViewContainer + + Form + + + + Close + Tutup + + + Abort + Batal + + + Refresh catalogue + Segarkan katalog + + + + StreamingSearchModel + + Various artists + Artis beraga + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + + + + albums + + + + songs + + + + Enter search terms above to find music + Masukkan kata pencarian di atas untuk mencari musik + + + Configure %1... + Konfigurasi %1... + + + Append to current playlist + Tambahkan ke daftar putar saat ini + + + Replace current playlist + Ganti daftar putar saat ini + + + Open in new playlist + Buka di daftar putar baru + + + Queue track + Antre trek + + + Add to artists + Tambahkan ke artis + + + Add to albums + Tambahkan ke album + + + Add to songs + Tambahkan ke lagu + + + Search for this + Cari ini + + + Group by + Grup berdasarkan + + + + StreamingSongsView + + Configure %1... + Konfigurasi %1... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Artis + + + Albums + Album + + + Songs + Lagu + + + Search + Cari + + + Configure %1... + Konfigurasi %1... + + + + SubsonicRequest + + Retrieving albums... + Mengambil album... + + + Retrieving songs for %1 album... + Mengambil lagu untuk %1 album... + + + Retrieving songs for %1 albums... + Mengambil lagu untuk %1 album... + + + Retrieving album cover for %1 album... + Mengambil sampul album untuk %1 album... + + + Retrieving album covers for %1 albums... + Mengambil sampul album untuk %1 album... + + + Unknown error + Kesalahan tak terduga + + + + SubsonicService + + Server URL is invalid. + URL server tidak benar. + + + Missing username or password. + Nama pengguna atau kata sandi tidak tersedia. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Fungsikan + + + Server URL + URL server + + + Authentication + Otentikasi + + + Username + Nama pengguna + + + Password + Sandi + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Preferensi + + + Use HTTP/2 when possible + + + + Verify server certificate + Verifikasi sertifikat server + + + Download album covers + Unduh sampul album + + + Server-side scrobbling + + + + Test + Tes + + + Delete songs + + + + Configuration incomplete + Konfigurasi tidak lengkap + + + Missing server url, username or password. + URL server, nama pengguna atau kata sandi tidak tersedia. + + + Configuration incorrect + Konfigurasi tidak benar + + + Server URL is invalid. + URL server tidak benar. + + + Test successful! + Tes berhasil! + + + Test failed! + Tes gagal! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + URL server Subsonic tidak benar. + + + Missing Subsonic username or password. + Nama pengguna atau kata sandi Subsonic tidak tersedia. + + + + SystemTrayIcon + + Pause + Jeda + + + Play + Putar + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Mengautentikasi... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Mencari... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Tidak ada yang cocok. + + + + TidalService + + Reply from Tidal is missing query items. + Balasan dari Tidal tidak memiliki artikel yang diminta. + + + Missing Tidal API token. + Token API Tidal tidak tersedia. + + + Missing Tidal username. + Nama pengguna Tidal tidak tersedia. + + + Missing Tidal password. + Kata sandi Tidal tidak tersedia. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Tidak terautentikasi dengan Tidal dan jumlah maksimum upaya masuk tercapai. + + + Not authenticated with Tidal. + Tidak terautentikasi dengan Tidal. + + + Missing Tidal API token, username or password. + + + + + TidalSettingsPage + + Tidal + + + + Enable + Fungsikan + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + Otentikasi + + + Use OAuth + Gunakan OAuth + + + Client ID + + + + API Token + Token API + + + Username + Nama pengguna + + + Password + Sandi + + + Login + Masuk + + + Preferences + Preferensi + + + Audio quality + Kualitas audio + + + Search delay + Jeda pencarian + + + ms + + + + Artists search limit + Batasan pencarian artis + + + Albums search limit + Batasan pencarian album + + + Songs search limit + Batasan pencarian lagu + + + Download album covers + Unduh sampul album + + + Fetch entire albums when searching songs + Ambil seluruh album saat mencari lagu + + + Album cover size + Ukuran sampul album + + + Stream URL method + Metode URL Stream + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + Konfigurasi tidak lengkap + + + Missing Tidal client ID. + Client ID Tidal tidak tersedia. + + + Missing API token. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Otentikasi gagal + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Tidak terautentikasi dengan Tidal. + + + Missing Tidal API token, username or password. + + + + Cancelled. + Dibatalkan. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + Pengambil tag + + + Sorry + Maaf + + + Strawberry was unable to find results for this file + Strawberry tidak dapat menemukan hasil untuk berkas ini + + + Select best possible match + Pilih kecocokan yang terbaik + + + Track + Trek + + + Year + Tahun + + + Title + Judul + + + Artist + Artis + + + Album + + + + Previous + Sebelumnya + + + Next + Lanjut + + + Original tags + Tag asli + + + Suggested tags + Tag yang disarankan + + + Saving tracks + Menyimpan trek + + + + TrackSlider + + Form + + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Klik untuk beralih antara waktu tersisa dan total waktu + + + + TranscodeDialog + + Transcode Music + Transkode Musik + + + Files to transcode + Berkas untuk ditranskode + + + Filename + Nama berkas + + + Directory + Direktori + + + Add... + Tambah... + + + Remove + Buang + + + Add all tracks from a directory and all its subdirectories + Tambah semua trek dari sebuah direktori dan semua subdirektorinya + + + Import... + Impor... + + + Output options + Opsi keluaran + + + Audio format + Format audio + + + Options... + Opsi... + + + Destination + Tujuan + + + Alongside the originals + Bersama dengan yang asli + + + Select... + Pilih... + + + Progress + Kemajuan + + + Details... + Detail... + + + Clear + Bersihkan + + + Start transcoding + Mulai transkode + + + %n remaining + + %n tersisa + + + + %n finished + + %n telah selesai + + + + %n failed + + %n gagal + + + + Add files to transcode + Tambah berkas untuk ditranskode + + + Music + Musik + + + Open a directory to import music from + Buka sebuah direktori untuk mengimpor musik dari + + + Add folder + Tambah folder + + + + TranscodeLogDialog + + Transcoder Log + Log Transkoder + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Tidak dapat membuat elemen GStreamer "%1" - pastikan Anda memiliki semua plugin GStreamer yang dibutuhkan terpasang + + + Successfully written %1 + Berhasil menulis %1 + + + Transcoding %1 files using %2 threads + Transkode berkas %1 menggunakan %2 thread + + + Error processing %1: %2 + Terjadi kesalahan saat memproses %1: %2 + + + Starting %1 + Memulai %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Tidak dapat menemukan enkoder untuk %1, periksa apakah Anda memiliki plugin GStreamer yang benar terpasang + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Tidak dapat menemukan muxer untuk %1, periksa apakah Anda memiliki plugin GStreamer yang benar terpasang + + + + TranscoderOptionsAAC + + Form + + + + Bitrate + Lajubit + + + kbps + + + + Profile + Profil + + + Main profile (MAIN) + Profil utama (MAIN) + + + Low complexity profile (LC) + Profil kompleksitas rendah (LC) + + + Scalable sampling rate profile (SSR) + Profil laju sampel terukur (LST) + + + Long term prediction profile (LTP) + Profil prediksi jangka panjang (LTP) + + + Use temporal noise shaping + Gunakan pengasah derau temporal + + + Allow mid/side encoding + Izinkan enkode tengah/sisi + + + Block type + Tipe blok + + + Normal block type + Tipe blok normal + + + No short blocks + Tanpa blok pendek + + + No long blocks + Tanpa blok panjang + + + + TranscoderOptionsASF + + Form + + + + Bitrate + Lajubit + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + Opsi transkode + + + + TranscoderOptionsFLAC + + Form + + + + Quality + Sound quality + Kualitas + + + Fast + Cepat + + + Best + Terbaik + + + + TranscoderOptionsMP3 + + Form + + + + Optimize for &quality + Optimasi untuk &kualitas + + + Quality + Sound quality + Kualitas + + + Opti&mize for bitrate + Opti&masi untuk lajubit + + + Bitrate + Lajubit + + + kbps + + + + Constant bitrate + Lajubit konstan + + + Encoding engine quality + Kualitas mesin enkode + + + Fast + Cepat + + + Standard + Standar + + + High + Tinggi + + + Force mono encoding + Paksa enkode mono + + + + TranscoderOptionsOpus + + Form + + + + Bitrate + Lajubit + + + kbps + + + + + TranscoderOptionsSpeex + + Form + + + + Quality + Sound quality + Kualitas + + + Bitrate + Lajubit + + + automatic + otomatis + + + kbps + + + + Average bitrate + Lajubit rerata + + + disabled + nonfungsi + + + Encoding mode + Mode enkode + + + Auto + + + + Ultra wide band (UWB) + Pita ultra lebar (UWB) + + + Wide band (WB) + Pita lebar (WB) + + + Narrow band (NB) + Pita sempit (NB) + + + Variable bit rate + Laju bit beragam + + + Voice activity detection + Deteksi aktivitas suara + + + Discontinuous transmission + Transmisi putus-putus + + + Encoding complexity + Kompleksitas enkode + + + Frames per buffer + Bingkai per bufer + + + + TranscoderOptionsVorbis + + Form + + + + Quality + Sound quality + Kualitas + + + Use bitrate management engine + Gunakan mesin pengelolaan lajubit + + + Target bitrate + Target lajubit + + + kbps + + + + Minimum bitrate + Lajubit minimum + + + disabled + nonfungsi + + + Maximum bitrate + Lajubit maksimum + + + + TranscoderOptionsWavPack + + Form + + + + + TranscoderSettingsPage + + Transcoding + Transkode + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Setelan ini digunakan dalam dialog "Transkode Musik", dan ketika mengonversi musik sebelum menyalinnya ke perangkat. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + Lokasi D-Bus + + + Serial number + Nomor seri + + + Mount points + Titik kait + + + Partition label + Label partisi + + + UUID + + + + + UserPassDialog + + Enter username and password + + + + Username + Nama pengguna + + + Password + Sandi + + + diff --git a/src/translations/strawberry_it_IT.ts b/src/translations/strawberry_it_IT.ts new file mode 100644 index 00000000..b991d060 --- /dev/null +++ b/src/translations/strawberry_it_IT.ts @@ -0,0 +1,7584 @@ + + + + + About + + About + Info programma + + + About Strawberry + Informazioni su Strawberry + + + Version %1 + Versione %1 + + + Strawberry is a music player and music collection organizer. + Strawberry è un riproduttore musicale ed un organizzatore di raccolte musicali. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + È un fork di Clementine pubblicato nel 2018 rivolto a collezionisti di musica e audiofili. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry è un software gratuito rilasciato sotto licenza GPL. +Il codice sorgente è disponibile su '%1' + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Dovresti aver ricevuto una copia della GNU General Public License insieme a questo programma. In caso contrario, vedi '%1' + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Se ti piace Strawberry e puoi farne uso, prendi in considerazione la sponsorizzazione o la donazione. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Puoi sponsorizzare l'autore su '%1'. +Puoi anche effettuare un pagamento una tantum tramite '%2'. + + + Author and maintainer + Autore e manutentore + + + Contributors + Contributori + + + Clementine authors + Autori di Clementine + + + Clementine contributors + Contributori di Clementine + + + Thanks to + Grazie a + + + Thanks to all the other Amarok and Clementine contributors. + Grazie a tutti gli altri contributori di Amarok e Clementine. + + + + AddStreamDialog + + Add Stream + Aggiungi flusso + + + Enter the URL of a stream: + Inserisci URL del flusso: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Immagini (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Immagini (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Tutti i file (*) + + + Load cover from disk... + Carica copertina dal disco... + + + Save cover to disk... + Salva copertina nel disco... + + + Load cover from URL... + Carica copertina da URL... + + + Search for album covers... + Cerca copertine album... + + + Unset cover + Rimuovi copertina + + + Delete cover + Elimina copertina + + + Clear cover + Rimuovi copertina + + + Show fullsize... + Visualizza a dimensioni originali... + + + Search automatically + Cerca automaticamente + + + Load cover from disk + Carica copertina dal disco + + + Failed to open cover file %1 for reading: %2 + Impossibile aprire il file copertina '%1' in lettura: '%2' + + + Cover file %1 is empty. + Il file copertina '%1' è vuoto. + + + unknown + sconosciuto + + + Save album cover + Salva copertina album + + + Failed to open cover file %1 for writing: %2 + Impossibile aprire il file copertina '%1' in scrittura: '%2' + + + Failed writing cover to file %1: %2 + Impossibile scrivere la copertina nel file '%1': '%2' + + + Failed writing cover to file %1. + Impossibile scrivere la copertina nel file '%1'. + + + Failed to delete cover file %1: %2 + Impossibile eliminare il file copertina '%1': '%2' + + + Failed to write cover to file %1: %2 + Impossibile scrivere la copertina nel file '%1': '%2' + + + Could not save cover to file %1. + Impossibile salvare la copertina nel file %1. + + + + AlbumCoverExport + + Export covers + Esporta copertine + + + Output + Uscita + + + Enter a filename for exported covers (no extension): + Digita un nome file per le copertine esportate (nessuna estensione): + + + Export downloaded covers + Esporta copertine scaricate + + + Export embedded covers + Esporta copertine integrate + + + Existing covers + Copertine esistenti + + + Do not overwrite + Non sovrascrivere + + + O&verwrite all + So&vrascrivi tutto + + + Overwrite s&maller ones only + Sovrascrivi solamente i più &piccoli + + + Size + Dimensioni + + + Scale size + Dimensione scala + + + Size: + Dimensioni: + + + Pixel + + + + + AlbumCoverManager + + Abort + Interrompi + + + All albums + Tutti gli album + + + Albums with covers + Album con copertina + + + Albums without covers + Album senza copertina + + + Really cancel? + Vuoi davvero annullare? + + + Closing this window will stop searching for album covers. + La chiusura di questa finestra fermerà la ricerca delle copertine. + + + Don't stop! + Non fermare! + + + All artists + Tutti gli artisti + + + Various artists + Artisti vari + + + Got %1 covers out of %2 (%3 failed) + Ottenute %1 copertine su %2 (%3 non riuscite) + + + %1 transferred + %1 trasferiti + + + Export finished + Esportazione completata + + + No covers to export. + Nessuna copertina da esportare. + + + Exported %1 covers out of %2 (%3 skipped) + Esportate '%1' copertine di '%2' (%3 saltate) + + + Could not save cover to file %1. + Impossibile salvare la copertina nel file %1. + + + + AlbumCoverSearcher + + Cover Manager + Gestione copertine + + + Artist + Artista + + + Album + + + + Search + Cerca + + + Covers from %1 + Copertine da '%1' + + + Abort + Interrompi + + + + AnalyzerContainer + + Framerate + Velocità fotogrammi + + + Low (%1 fps) + Basso (%1 fps) + + + Medium (%1 fps) + Medio (%1 fps) + + + High (%1 fps) + Alto (%1 fps) + + + Super high (%1 fps) + Molto alto (%1 fps) + + + No analyzer + Nessun analizzatore + + + Block analyzer + Analizzatore a blocchi + + + Boom analyzer + Analizzatore boom + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Aspetto + + + Style + Stile + + + Use system theme icons + Usa icone del tema di sistema + + + Settings require restart. + Le impostazioni richiedono il riavvio. + + + Tabbar colors + Colori scheda + + + &Use the system default color + &Usa colori predefiniti di sistema + + + Use custom color + Usa colore personalizzato + + + Use gradient background + Usa sfondo sfumato + + + Select tabbar color: + Seleziona colore scheda: + + + Background image + Immagine di sfondo + + + Default bac&kground image + Immagine di sf&ondo predefinita + + + &No background image + &Nessuna immagine di sfondo + + + The album cover of the currently playing song + La copertina dell'album del brano attualmente in riproduzione + + + Albu&m cover + Copertina albu&m + + + Custom image: + Immagine personalizzata: + + + Browse... + Sfoglia... + + + Position + Posizione + + + Upper Left + Superiore sinistro + + + Upper Right + Superiore destro + + + Middle + Al centro + + + Bottom Left + In basso a sinistra + + + Bottom Right + In basso a destra + + + Max cover size + Dimensione massima copertina + + + Stretch image to fill playlist + Allarga l'immagine per riempire la playlist + + + Keep aspect ratio + Mantieni proporzioni + + + Do not cut image + Non ritagliare l'immagine + + + Blur amount + Sfocatura + + + 0px + + + + Opacity + Opacità + + + 40% + + + + Icon sizes + Dimensioni icona + + + Playlist buttons + Pulsanti playlist + + + Tabbar large mode + Modalità barre schede grandi + + + Play control buttons + Pulsanti controllo riproduzione + + + Configure buttons + Configura pulsanti + + + Files, playlists and queue buttons + Pulsanti file, playlist e coda + + + Tabbar small mode + Modalità barra schede piccola + + + Playlist playing song color + Colore brano in riproduzione della playlist + + + System highlight color + Colore evidenziazione sistema + + + Custom color + Colore personalizzato + + + Select playlist playing song color: + Seleziona colore brano playlist in riproduzione: + + + Select background image + Seleziona immagine di sfondo + + + + BackendSettingsPage + + Backend + Sistema + + + Audio output + Uscita audio + + + Device + Dispositivo + + + Output + Uscita + + + Engine + Motore + + + ALSA plugin: + Plugin ALSA: + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + Opzioni + + + Enable volume control + Abilita controllo volume + + + Upmix / downmix to + Upmix / downmix in + + + channels + canali + + + Improve headphone listening of stereo audio records (bs2b) + Migliorare l'ascolto in cuffia di registrazioni audio stereo (bs2b) + + + Enable HTTP/2 for streaming + Abilita HTTP/2 per lo streaming + + + Use strict SSL mode + Usa modalità SSL rigorosa + + + Buffer + + + + ms + + + + Buffer duration + Durata buffer + + + High watermark + Filigrana grande + + + Low watermark + Filigrana bassa + + + Defaults + Predefiniti + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + Guadagno di riproduzione + + + Use Replay Gain metadata if it is available + Usa i metadati del guadagno di riproduzione se disponibili + + + Replay Gain mode + Modalità Guadagno di riproduzione + + + Radio (equal loudness for all tracks) + Radio (volume uguale per tutte le tracce) + + + Album (ideal loudness for all tracks) + Album (volume ideale per tutte le tracce) + + + Pre-amp + Preamplificazione + + + Apply compression to prevent clipping + Applica la compressione per evitare il fruscio + + + Fallback-gain + Guadagno fallback + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Dissolvenza + + + Fade out when stopping a track + Dissolvenza all'interruzione di una traccia + + + Cross-fade when changing tracks manually + Dissolvenza incrociata al cambio manuale di traccia + + + Cross-fade when changing tracks automatically + Dissolvenza incrociata al cambio automatico di traccia + + + Except between tracks on the same album or in the same CUE sheet + Ad eccezione delle tracce dello stesso album o dello stesso CUE sheet + + + Fading duration + Durata dissolvenza + + + Fade out on pause / fade in on resume + Dissolvenza in uscita in pausa / dissolvenza in entrata al ripristino + + + + BehaviourSettingsPage + + Behavior + Comportamento + + + Show system tray icon + Visualizza l'icona nella barra di notifica + + + Keep running in the background when the window is closed + Quando la finestra è chiusa mantieni l'esecuzione sullo sfondo + + + Show song progress on system tray icon + Visualizza avanzamento del brano nell'icona della barra applicazioni + + + Show song progress on taskbar + + + + Resume playback on start + Riprendi la riproduzione all'avvio + + + Show playing widget + Visualizza il widget di riproduzione + + + On startup + All'avvio + + + Remember from &last time + Ricorda &l'ultima sessione + + + Show the main window + Visualizza finestra principale + + + Hide the main window + Nascondi la finestra principale + + + Show the main window maximized + Visualizza finestra principale massimizzata + + + Show the main window minimized + Visualizza finestra principale ridotta a icona + + + Language + Lingua + + + Use the system default + Usa valori predefiniti di sistema + + + You will need to restart Strawberry if you change the language. + Se modifichi la lingua dell'interfaccia per applicare le modifiche dovrai riavviare Strawberry . + + + Using the menu to add a song will... + L'uso del menu per aggiungere un brano... + + + Never start playing + Non iniziare mai la riproduzione + + + Play if there is nothing already playing + Riproduci se non c'è altro in riproduzione + + + Always start playing + Inizia sempre la riproduzione + + + Pressing "Previous" in player will... + La pressione di "Precedente" nel lettore... + + + Jump to previous song right away + Vai subito al brano precedente + + + Restart song, then jump to previous if pressed again + Riavvia il brano, poi salta al precedente se premuto ancora + + + Double clicking a song will... + Con un doppio clic su un brano... + + + Append to the playlist + Aggiungi alla playlist + + + Replace the playlist + Sostituisci la playlist + + + Open in new playlist + Apri in nuova playlist + + + Add to the queue + Aggiungi alla coda + + + Double clicking a song in the playlist will... + Il doppio clic in un brano nella playlist... + + + Change the currently playing song + Modifica il brano attualmente in riproduzione + + + Seeking using a keyboard shortcut or mouse wheel + Posizionamento usando una scorciatoia da tastiera o la rotella del mouse + + + Time step + Intervallo di tempo + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Errore durante l'impostazione del dispositivo CDDA nello stato pronto. + + + Error while setting CDDA device to pause state. + Errore durante l'impostazione del dispositivo CDDA nello stato di pausa. + + + Error while querying CDDA tracks. + Errore durante l'interrogazione delle tracce CDDA. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + Impossibile eseguire l'interrogazione di collezione SQL: %1 + + + Failed SQL query: %1 + Interrogazione SQL non riuscita: %1 + + + Updating %1 database. + Aggiornamento database '%1'. + + + + CollectionFilterWidget + + Collection Filter + Filtro raccolta + + + Enter search terms here + Inserisci qui i termini di ricerca + + + MenuPopupToolButton + + + + Entire collection + Raccolta completa + + + Added today + Aggiunti oggi + + + Added this week + Aggiunti questa settimana + + + Added within three months + Aggiunti negli ultimi tre mesi + + + Added this year + Aggiunti quest'anno + + + Added this month + Aggiunti questo mese + + + Save current grouping + Salva raggruppamento attuale + + + Manage saved groupings + Gestisci raggruppamenti salvati + + + Show + Visualizza + + + Group by + Raggruppa per + + + Display options + Opzioni visualizzazione + + + Group by Album artist/Album + Raggruppa per artista album/album + + + Group by Album artist/Album - Disc + Raggruppa per artista album/disco - album + + + Group by Album artist/Year - Album + Raggruppa per artista album/anno - album + + + Group by Album artist/Year - Album - Disc + Raggruppa per artista album/anno - album - disco + + + Group by Artist/Album + Raggruppa per artista/album + + + Group by Artist/Album - Disc + Raggruppa per artista/album - disco + + + Group by Artist/Year - Album + Raggruppa per artista/anno - album + + + Group by Artist/Year - Album - Disc + Raggruppa per artista/anno - album - disco + + + Group by Genre/Album artist/Album + Raggruppa per genere/artista album/album + + + Group by Genre/Artist/Album + Raggruppa per genere/artista/album + + + Group by Album Artist + Raggruppa per artista album + + + Group by Artist + Raggruppa per artista + + + Group by Album + Raggruppa per album + + + Group by Genre/Album + Raggruppa per genere/album + + + Advanced grouping... + Raggruppamento avanzato... + + + Grouping Name + Nome raggruppamento + + + Grouping name: + Nome raggruppamento: + + + + CollectionModel + + Various artists + Artisti vari + + + Loading... + Caricamento... + + + Unknown + Sconosciuto + + + + CollectionSettingsPage + + Collection + Raccolta + + + These folders will be scanned for music to make up your collection + Queste cartelle saranno analizzate alla ricerca di musica per creare la raccolta + + + Add new folder... + Aggiungi nuova cartella... + + + Remove folder + Rimuovi cartella + + + Automatic updating + Aggiornamento automatico + + + Update the collection when Strawberry starts + Aggiorna la raccolta all'avvio di Strawberry + + + Monitor the collection for changes + Monitora cambiamenti raccolta + + + Song fingerprinting and tracking + Impronta digitale e tracciamento brani + + + Mark disappeared songs unavailable + Segna i brani scomparsi come non disponibili + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + Fai scadere i brani non disponibili dopo + + + days + giorni + + + Preferred album art filenames (comma separated) + Nomi file copertina preferiti (separati da virgole) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Quando cercherà la copertina di un album, Strawberry analizzerà prima le immagini che contengono una queste parole nel nome del file. +Se non ci saranno corrispondenze, userà l'immagine più grande che si trova nella cartella. + + + Display options + Opzioni visualizzazione + + + Automatically open single categories in the collection tree + Apri automaticamente categorie singole nella struttura raccolta + + + Show dividers + Visualizza separatori + + + Show album cover art in collection + Visualizza copertina album nella collezione + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Cache pixmap copertina album + + + Size + Dimensioni + + + Enable Disk Cache + Abilita cache disco + + + Disk Cache Size + Dimensioni cache disco + + + Current disk cache in use: + Cache del disco attualmente in uso: + + + Clear Disk Cache + Svuota cache disco + + + Song playcounts and ratings + Numero riproduzioni e valutazioni dei brani + + + Save playcounts to song tags when possible + Salva numeri riproduzioni nei tag brani quando possibile + + + Save ratings to song tags when possible + Salva valutazioni nei tag dei brani quando possibile + + + Overwrite database playcount when songs are re-read from disk + Sovrascrivi il numero di riproduzioni nel database quando i brani vengono riletti dal disco + + + Overwrite database rating when songs are re-read from disk + Sovrascrivi la valutazione nel database quando i brani vengono riletti dal disco + + + Save playcounts and ratings to files now + Salva numero riproduzioni e valutazioni file + + + Enable delete files in the right click context menu + Abilita l'eliminazione file nel menu contestuale tasto destro + + + Add directory... + Aggiungi cartella... + + + Write all playcounts and ratings to files + Scrivi tutti i numeri riproduzioni e valutazioni nei file + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Sei sicuro di voler scrivere per tutti i brani della raccolta il numero di riproduzioni e le classificazioni dei brani in un file? + + + + CollectionView + + Your collection is empty! + La raccolta è vuota! + + + Click here to add some music + Fai clic qui per aggiungere della musica + + + Append to current playlist + Aggiungi alla playlist attuale + + + Replace current playlist + Sostituisci playlist attuale + + + Open in new playlist + Apri in nuova playlist + + + Queue track + Accoda la traccia + + + Queue to play next + Accoda cosa riprodurre dopo + + + Search for this + Cerca questo + + + Organize files... + Organizza file... + + + Copy to device... + Copia nel dispositivo... + + + Delete from disk... + Elimina dal disco... + + + Edit track information... + Modifica informazioni traccia... + + + Edit tracks information... + Modifica le informazioni tracce... + + + Show in file browser... + Visualizza nel navigatore file... + + + Rescan song(s) + Riscansione brano/i + + + Show in various artists + Visualizza in artisti vari + + + Don't show in various artists + Non mostrare in artisti vari + + + There are other songs in this album + Ci sono altri brani in questo album + + + Would you like to move the other songs on this album to Various Artists as well? + Vuoi spostare anche gli altri brani di questo album in 'Artisti vari'? + + + Error + Errore + + + None of the selected songs were suitable for copying to a device + Nessuno dei brani selezionati era adatto alla copia in un dispositivo + + + + CollectionViewContainer + + Form + Modulo + + + + CollectionWatcher + + Updating collection + Aggiornamento raccolta + + + Updating %1 + Aggiornamento di %1 + + + + Console + + Console + + + + Run + Esegui + + + + ContextSettingsPage + + Context + Contesto + + + Custom text settings + Impostazioni testo personalizzato + + + MenuPopupToolButton + + + + Title + Titolo + + + Summary + Riepilogo + + + Enable Items + Abilita elementi + + + Album + + + + Technical Data + Dati tecnici + + + Song Lyrics + Testo brano + + + Automatically search for album cover + Cerca automaticamente copertina album + + + Automatically search for song lyrics + Cerca automaticamente i testi dei brani + + + Font for headline + Carattere per il titolo + + + Font + Carattere + + + Font size + Dimensione carattere + + + pt + + + + Preview + Anteprima + + + Font for data and lyrics + Carattere per dati e testi + + + Add song artist tag + Aggiungi tag artista al brano + + + Add song album tag + Aggiungi tag album al brano + + + Add song title tag + Aggiungi tag titolo al brano + + + Add song albumartist tag + Aggiungi tag artista album al brano + + + Add song year tag + Aggiungi tag anno al brano + + + Add song composer tag + Aggiungi tag compositore al brano + + + Add song performer tag + Aggiungi tag del musicista del brano + + + Add song grouping tag + Aggiungi tag del gruppo del brano + + + Add song disc tag + Aggiungi tag disco al brano + + + Add song track tag + Aggiungi tag traccia al brano + + + Add song genre tag + Aggiungi tag genere al brano + + + Add song length tag + Aggiungi tag durata al brano + + + Add song play count + Aggiungi tag numero riproduzioni al brano + + + Add song skip count + Aggiungi numero salti al brano + + + Add a new line if supported by the notification type + Aggiungi una nuova riga se supportato dal tipo di notifica + + + %filename% + + + + Add song filename + Aggiungi nome file del brano + + + %url% + + + + Add song URL + Aggiungi URL brano + + + %rating% + + + + Add song rating + Aggiungi valutazione brano + + + %originalyear% + + + + Add song original year tag + Aggiungi tag anno originale del brano + + + + ContextView + + Filetype + Tipo di file + + + Length + Durata + + + Samplerate + Freq. campionamento + + + Bit depth + Profondità bit + + + Bitrate + + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Visualizza copertina album + + + Show song technical data + Visualizza i dati tecnici del brano + + + Show song lyrics + Visualizza il testo del brano + + + Automatically search for song lyrics + Cerca automaticamente i testi dei brani + + + No song playing + Nessuna brano in riproduzione + + + %1 song + %1 brano + + + %1 songs + %1 brani + + + %1 artist + %1 artista + + + %1 artists + %1 artisti + + + %1 album + + + + %1 albums + %1 album + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + Carica copertina da URL + + + Enter a URL to download a cover from the Internet: + Inserisci una URL per scaricare una copertina da Internet: + + + Fetching cover error + Errore recupero copertina + + + The site you requested does not exist! + Il sito richiesto non esiste! + + + The site you requested is not an image! + Il sito richiesto non è un'immagine! + + + + CoverManager + + Cover Manager + Gestione copertine + + + Enter search terms here + Inserisci qui i termini di ricerca + + + MenuPopupToolButton + + + + View + Visualizza + + + Total albums: + Album totali: + + + Without cover: + Senza copertina: + + + 0 + + + + Fetch Missing Covers + Recupera copertine mancanti + + + Export Covers + Esporta copertine + + + Fetch automatically + Recupera automaticamente + + + Load + Carica + + + Add to playlist + Aggiungi alla playlist + + + + CoverSearchStatisticsDialog + + Fetch completed + Recupero completato + + + Got %1 covers out of %2 (%3 failed) + Ottenute %1 copertine su %2 (%3 non riuscite) + + + Covers from %1 + Copertine da '%1' + + + Total network requests made + Totale richieste di rete effettuate + + + Average image size + Dimensione media immagine + + + Total bytes transferred + Totale byte trasferiti + + + + CoversSettingsPage + + Covers + Copertine + + + Cover providers + Fornitori copertine + + + Choose the providers you want to use when searching for covers. + Scegli i fornitori che vuoi usare durante la ricerca di copertine. + + + Move up + Sposta in alto + + + Move down + Sposta in basso + + + Authentication + Autenticazione + + + Login + Accedi + + + Album cover types + Tipo copertina album + + + Saving album covers + Salvataggio copertine album + + + Save album covers in album directory + Salva copertine album nella cartella album + + + Save album covers in cache directory + Salva le copertine degli album nella cartella della cache + + + Save album covers as embedded cover + Salva le copertine degli album come copertina incorporata + + + Filename: + Nome file: + + + Pattern + Modello + + + Random + Casuale + + + Overwrite existing file + Sovrascrivi file esistente + + + Lowercase filename + Nome file in minuscolo + + + Replace spaces with dashes + Sostituisci spazi con trattini + + + Use Tidal settings to authenticate. + Usaper l'autenticazione le impostazioni di Tidal. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Usa le impostazioni di Qobuz per l'autenticazione. + + + %1 needs authentication. + '%1' richiede l'autenticazione. + + + %1 does not need authentication. + '%1' non necessita di autenticazione. + + + No provider selected. + Nessun forrnitore selezionato. + + + Authentication failed + Autenticazione non riuscita + + + Manually unset (%1) + Manualmente disabilitata (%1) + + + Set through album cover search (%1) + Impostato tramite la ricerca della copertina dell'album (%1) + + + Automatically picked up from album directory (%1) + Prelevato automaticamente dalla cartella dell'album (%1) + + + Embedded album cover art (%1) + Copertina incorporata nell'album (%1) + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + Impossibile eseguire l'interrogazione SQL: %1 + + + Failed SQL query: %1 + Interrogazione SQL non riuscita: %1 + + + Integrity check + Controllo integrità + + + Database corruption detected. + Rilevato danneggiamento del database. + + + Backing up database + Backup database + + + + DeleteConfirmationDialog + + Delete files + Elimina i file + + + The following files will be deleted from disk: + Verranno eliminati dal disco i seguenti file: + + + Are you sure you want to continue? + Sei sicuro di voler continuare? + + + + DeleteFiles + + Deleting files + Eliminazione file + + + + DeviceItemDelegate + + Updating %1%... + Aggiornamento %1%... + + + Not connected + Non connesso + + + Not mounted - double click to mount + Non montato - doppio clic per montare + + + Double click to open + Doppio clic per aprire + + + %1 song%2 + %1 brano%2 + + + + DeviceManager + + Connect device + Connetti dispositivo + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + È la prima volta che si connette questo dispositivo. +Strawberry effettuerà una scansione del dispositivo alla ricerca di file musicali - l'operazione potrebbe richiedere del tempo. + + + This device will not work properly + Il dispositivo non funzionerà correttamente + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Questo è un dispositivo MTP, ma hai compilato Strawberry senza il supporto a libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Se continui, il dispositivo funzionerà lentamente e i brani copiati su di esso potrebbero non essere riproducibili. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Questo è un iPod, ma hai compilato Strawberry senza il supporto a libgpod. + + + This type of device is not supported: %1 + Questi tipo di dispositivo non è supportato: '%1' + + + + DeviceProperties + + Device Properties + Proprietà dispositivo + + + Information + Informazioni + + + Name + Nome + + + Icon + Icona + + + Hardware information + Informazioni hardware + + + Hardware information is only available while the device is connected. + Le informazioni hardware sono disponibili solo quando il dispositivo è connesso. + + + File formats + Formati di file + + + Supported formats + Formati supportati + + + This device supports the following file formats: + Questo dispositivo usa i seguenti formati file: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry può convertire automaticamente la musica che copi nel dispositivo in un formato riproducibile. + + + Do not convert any music + Non convertire nessuna musica + + + Convert any music that the device can't play + Converti qualsiasi musica che il dispositivo non può riprodurre + + + Convert all music + Converti tutta la musica + + + Preferred format + Formato preferito + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Il dispositivo deve essere collegato e aperto prima che Strawberry possa rilevare i formati supportati. + + + Open device + Apri dispositivo + + + Querying device... + Interrogazione dispositivo... + + + Model + Modello + + + Manufacturer + Produttore + + + + DeviceView + + Safely remove device + Rimuovi il dispositivo in sicurezza + + + Forget device + Elimina dispositivo + + + Device properties... + Proprietà dispositivo... + + + Append to current playlist + Aggiungi alla playlist attuale + + + Replace current playlist + Sostituisci playlist attuale + + + Open in new playlist + Apri in nuova playlist + + + Copy to collection... + Copia nella raccolta... + + + Delete from device... + Elimina da dispositivo... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + L'eliminazione di un dispositivo lo rimuoverà da questo elenco e Strawberry al successivo collegamento dovrà effettuare una nuova scansione di tutti i brani. + + + Delete files + Elimina i file + + + These files will be deleted from the device, are you sure you want to continue? + Questi file saranno eliminati dal dispositivo, sei sicuro di voler continuare? + + + + DeviceViewContainer + + Form + Modulo + + + + DynamicPlaylistControls + + Dynamic mode is on + La modalità dinamica è attiva + + + New tracks will be added automatically. + Le nuove tracce verranno aggiunte automaticamente. + + + Expand + Espandi + + + Repopulate + Ripopola + + + Turn off + Disabilita + + + + EditTagDialog + + Edit track information + Modifica informazioni traccia + + + Summary + Riepilogo + + + Date created + Data modifica + + + Art Automatic + Arte automatica + + + Date modified + Data creazione + + + Art Embedded + Copertina incorporata + + + Last played + A playlist's tag. + Ultima riproduzione + + + File type + Tipo di file + + + Length + Durata + + + Play count + Contatore riproduzione + + + Bit depth + Profondità bit + + + EBU R 128 integrated loudness + + + + Bit rate + Bitrate + + + Skip count + Salta il conteggio + + + Sample rate + Freq. campionamento + + + Path + Percorso + + + Filename + Nome file + + + Art Unset + Copertina non impostata + + + File size + Dimensione file + + + Art Manual + Arte manuale + + + EBU R 128 loudness range + + + + Reset play counts + Azzera contatori riproduzione + + + Tags + Tag + + + MenuPopupToolButton + + + + Change art + Modifica copertina + + + Embedded cover + Copertina incorporata + + + Disc + Disco + + + Grouping + Gruppo + + + Album artist + Artista album + + + Album + + + + Year + Anno + + + Title + Titolo + + + Artist + Artista + + + Composer + Compositore + + + Complete tags automatically + Completa automaticamente i tag + + + Genre + Genere + + + Comment + Commento + + + Performer + Musicista + + + Compilation + + + + Track + Traccia + + + Rating + Valutazione + + + Lyrics + Testi + + + Complete lyrics automatically + + + + Previous + Precedente + + + Next + Successivo + + + Saving tracks + Salvataggio tracce + + + Loading tracks + Caricamento tracce + + + %1 songs selected. + '%1' brani selezionati. + + + kbps + + + + Unknown + Sconosciuto + + + Yes + + + + No + + + + None + Nessuna + + + Cover is unset. + Copertina non impostata + + + Cover from embedded image. + Copertina dall'immagine incorporata. + + + Cover from %1 + Copertina da %1 + + + Cover art not set + Copertina non impostata + + + Album cover editing is only available for collection songs. + La modifica della copertina dell'album è disponibile solo per i brani della raccolta. + + + Cover changed: Will be cleared when saved. + Copertina modificata: verrà cancellata quando verrà salvata. + + + Cover changed: Will be unset when saved. + Copertina modificata: verrà annullata quando verrà salvata. + + + Cover changed: Will be deleted when saved. + Copertina modificata: verrà eliminata quando verrà salvata. + + + Cover changed: Will set new when saved. + Copertina modificata: verrà impostata una nuova quando verrà salvata. + + + Never + Mai + + + Reset song play statistics + Ripristina statistiche riproduzione brano + + + Are you sure you want to reset this song's play statistics? + Sei sicuro di voler reimpostare le statistiche di riproduzione di questo brano? + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Equalizzatore + + + Preset: + Preimpostazione: + + + Save preset + Salva preimpostazione + + + Delete preset + Elimina preimpostazione + + + Enable equalizer + Abilita equalizzatore + + + Enable stereo balancer + Abilita bilanciatore stereo + + + Left + Sinistra + + + Balance + Bilanciamento + + + Right + Destra + + + Pre-amp + Preamplificazione + + + Custom + Personalizzato + + + Classical + Classica + + + Club + + + + Dance + + + + Full Bass + Bassi al massimo + + + Full Treble + Alti al massimo + + + Full Bass + Treble + Bassi e alti al massimo + + + Laptop/Headphones + Portatile/cuffie + + + Large Hall + Sala grande + + + Live + + + + Party + + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + Rock leggero + + + Techno + + + + Zero + + + + Name + Nome + + + Are you sure you want to delete the "%1" preset? + Sei sicuro di voler eliminare la preimpostazione '%1'? + + + + EqualizerSlider + + Equalizer + Equalizzatore + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Errore di Strawberry + + + + FancyTabWidget + + Large sidebar + Pannello laterale grande + + + Icons sidebar + + + + Small sidebar + Pannello laterale piccolo + + + Plain sidebar + Barra laterale semplice + + + Tabs on top + Schede in alto + + + Icons on top + Icone in alto + + + + FileTypeItemDelegate + + Unknown + Sconosciuto + + + + FileView + + Form + Modulo + + + + FileViewList + + Append to current playlist + Aggiungi alla playlist attuale + + + Replace current playlist + Sostituisci playlist attuale + + + Open in new playlist + Apri in nuova playlist + + + Copy to collection... + Copia nella raccolta... + + + Move to collection... + Sposta nella raccolta... + + + Copy to device... + Copia nel dispositivo... + + + Delete from disk... + Elimina dal disco... + + + Edit track information... + Modifica informazioni traccia... + + + Show in file browser... + Visualizza nel navigatore file... + + + + FreeSpaceBar + + Available + Disponibile + + + New songs + Nuovi brani + + + Exceeded by + + + + Used + Usato + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Caricamento database iPod + + + An error occurred loading the iTunes database + Si è verificato un errore durante il caricamento del database di iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Autenticazione Genius + + + Please open this URL in your browser + Apri questa URL nel browser + + + Redirect missing token code! + Manca il codice del token per il reindirizzamento! + + + Received invalid reply from web browser. + Ricevuta una risposta non valida dal browser web. + + + Redirect from Genius is missing query items code or state. + Nel reindirizzamento da Genius mancano il codice o lo stato degli elementi della richiesta. + + + + GioLister + + Mount point + Punto di montaggio + + + Device + Dispositivo + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Premi un tasto + + + Press a key combination to use for %1... + Premi una combinazione di tasto da usare per '%1'... + + + + GlobalShortcutsManager + + Play + Riproduci + + + Pause + Pausa + + + Play/Pause + Riproduci/pausa + + + Stop + Interrompi + + + Stop playing after current track + Interrompi riproduzione dopo il brano attuale + + + Next track + Traccia successiva + + + Previous track + Traccia precedente + + + Restart or previous track + + + + Increase volume + Aumenta volume + + + Decrease volume + Diminuisci volume + + + Mute + Silenzia + + + Seek forward + Vai avanti + + + Seek backward + Vai indietro + + + Show/Hide + Visualizza/nascondi + + + Show OSD + Visualizza OSD + + + Toggle Pretty OSD + Attiva/disattiva OSD gradevole + + + Change shuffle mode + Modifica modalità casuale + + + Change repeat mode + Modifica modalità ripetizione + + + Enable/disable scrobbling + Abilita/disabilita scrobbling + + + Love + Amore + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Scorciatoie globali + + + Use Gnome (GSD) shortcuts when available + Usa le scorciatoie di Gnome (GSD) quando disponibili + + + Open... + Apri... + + + Use MATE shortcuts when available + Usa le scorciatoie MATE quando disponibili + + + Use KDE (KGlobalAccel) shortcuts when available + Usa le scorciatoie di KDE (KGlobalAccel) quando disponibili + + + Use X11 shortcuts when available + Usa le scorciatoie X11 quando disponibili + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Per usare le scorciatoie globali in Strawberry devi eseguire le preferenze di sistema e consentire a Strawberry di "<span style="font-style:italic">controllare il computer</span>". + + + Action + Category label + Azione + + + Shortcut + Scorciatoia + + + Shortcut for %1 + Scorciatoia per '%1' + + + &None + &Nessuna + + + &Default + &Predefinito + + + &Custom + &Personalizzata + + + Change shortcut... + Modifica scorciatoia... + + + The "%1" command could not be started. + Il comando '%1' non può essere avviato. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + L'uso delle scorciatoie di sistema in '%1' non è raccomandato e potrebbe rendere non reattiva la tastiera! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Le scorciatoie in '%1' sono solitamente usate tramite MPRIS e KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Le scorciatoie in '%1' vengono solitamente usate tramite il demone delle impostazioni di Gnome e dovrebbero invece essere configurate in gnome-settings-daemon. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Le scorciatoie in '%1' vengono solitamente usate tramite il demone delle impostazioni di Gnome e dovrebbero essere configurate invece in cinnamon-settings-daemon. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Le scorciatoie in '%1' vengono solitamente usate tramite il demone delle impostazioni MATE e dovrebbero invece essere configurate lì. + + + + GroupByDialog + + Collection advanced grouping + Raggruppamento avanzato della raccolta + + + You can change the way the songs in the collection are organized. + Puoi modificare il modo in cui sono organizzati i brani nella raccolta. + + + Group Collection by... + Raggruppa raccolta per... + + + First level + Primo livello + + + None + Nessuna + + + Artist + Artista + + + Album artist + Artista album + + + Album + + + + Album - Disc + Album - Disco + + + Disc + Disco + + + Format + Formato + + + Genre + Genere + + + Year + Anno + + + Year - Album + Anno - album + + + Year - Album - Disc + Anno - album - disco + + + Original year + Anno originale + + + Original year - Album + Anno originale - album + + + Composer + Compositore + + + Performer + Musicista + + + Grouping + Gruppo + + + File type + Tipo di file + + + Sample rate + Freq. campionamento + + + Bit depth + Profondità bit + + + Bitrate + + + + Second level + Secondo livello + + + Third level + Terzo livello + + + Separate albums by grouping tag + Separa gli album raggruppando i tag + + + + GstEngine + + Buffering + Riempimento buffer + + + + LastFMImport + + Missing username, please login to last.fm first! + Nome utente mancante, accedi prima a last.fm! + + + + LastFMImportDialog + + Import data from last.fm + Importa dati da last.fm + + + Choose data to import from last.fm + Scegli i dati da importare da last.fm + + + Last played + Ultima riproduzione + + + Play counts + Numero riproduzioni + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Attenzione: i numeri delle riproduzioni e l'ultima riproduzione da last.fm sostituiranno completamente gli stessi dati per i brani abbinati. +I numeri delle riproduzioni sostituiranno i dati basati su artista e titolo del brano per gli stessi album! +Prima di iniziare ti suggeriamo di eseguire il backup del database. + + + Go! + Vai! + + + Close + Chiudi + + + Cancel + Annulla + + + Receiving initial data from last.fm... + Ricezione dati iniziali da last.fm... + + + Receiving playcount for %1 songs and last played for %2 songs. + Ricezione numero riproduzioni per '%1' brani e ultima riproduzione per '%2' brani. + + + Receiving last played for %1 songs. + Ricezione ultimi brani riprodotti per '%1'. + + + Receiving playcounts for %1 songs. + Ricezione numero riproduzioni per '%1' brani. + + + Playcounts for %1 songs and last played for %2 songs received. + Numero di riproduzioni per '%1' brani e ultima riproduzione per '%2' brani ricevuti. + + + Last played for %1 songs received. + Ultima riproduzione per %1 brani ricevuti. + + + Playcounts for %1 songs received. + Numero di riproduzioni per '%1' brani ricevuti. + + + + LastPlayedItemDelegate + + Never + Mai + + + + Library + + Least favourite tracks + Tracce meno preferite + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Autenticazione ListenBrainz + + + Please open this URL in your browser + Apri questa URL nel browser + + + Redirect missing token code! + Manca il codice del token per il reindirizzamento! + + + Received invalid reply from web browser. + Ricevuta una risposta non valida dal browser web. + + + Unable to scrobble %1 - %2 because of error: %3 + Impossibile effettuare lo scrobble '%1' - '%2' a causa dell'errore: %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + ID registrazione MusicBrainz mancante per %1 %2 %3 + + + ListenBrainz error: %1 + Errore di ListenBrainz: %1 + + + + LoginStateWidget + + Form + Modulo + + + You are not signed in. + Non sei registrato. + + + Sign out + Disconnetti + + + Signing in... + Registrazione... + + + You are signed in. + Sei registrato. + + + You are signed in as %1. + Sei registrato come %1. + + + Expires on %1 + Scade il %1 + + + + LyricsSettingsPage + + Lyrics + Testi + + + Lyrics providers + Fornitori di testi + + + Choose the providers you want to use when searching for lyrics. + Scegli i fornitori che vuoi usare durante la ricerca dei testi. + + + Move up + Sposta in alto + + + Move down + Sposta in basso + + + Authentication + Autenticazione + + + Login + Accedi + + + No provider selected. + Nessun forrnitore selezionato. + + + Authentication failed + Autenticazione non riuscita + + + + MainWindow + + Strawberry Music Player + Riproduttore musicale Strawberry + + + MenuPopupToolButton + + + + &Music + &Musica + + + P&laylist + + + + Help + Aiuto + + + &Tools + S&trumenti + + + Previous track + Traccia precedente + + + F5 + + + + &Play + &Riproduci + + + F6 + + + + &Stop + &Ferma + + + F7 + + + + &Next track + &Prossima traccia + + + F8 + + + + &Quit + &Esci + + + Ctrl+Q + + + + Stop after this track + Ferma dopo questa traccia + + + Ctrl+Alt+V + + + + Love + Amore + + + &Clear playlist + Pulis&ci playlist + + + Clear playlist + Azzera playlist + + + Ctrl+K + + + + Edit track information... + Modifica informazioni traccia... + + + Ctrl+E + + + + Renumber tracks in this order... + Ricorda l'ordine delle tracce... + + + Set value for all selected tracks... + Imposta valore per tutte le tracce selezionate... + + + Edit tag... + Modifica tag... + + + &Settings... + Impo&stazioni... + + + Ctrl+P + + + + &About Strawberry + Inform&azioni su Strawberry + + + F1 + + + + S&huffle playlist + M&escola playlist + + + Ctrl+H + + + + &Add file... + &Aggiungi file... + + + Ctrl+Shift+A + + + + &Open file... + &Apri file... + + + Open audio &CD... + Apri un &CD audio… + + + &Cover Manager + Gestione &copertine + + + C&onsole + + + + &Shuffle mode + Modalità ca&suale + + + &Repeat mode + Modalità &ripetizione + + + Remove from playlist + Rimuovi dalla playlist + + + &Equalizer + &Equalizzatore + + + &Transcode Music + &Converti musica + + + Add &folder... + Aggiungi &cartella... + + + &Jump to the currently playing track + &Vai alla traccia attualmente in esecuzione + + + Ctrl+J + + + + &New playlist + &Nuova playlist + + + Ctrl+N + + + + Save &playlist... + Salva &playlist... + + + Ctrl+S + + + + &Load playlist... + &Carica playlist... + + + Ctrl+Shift+O + + + + &Save all playlists... + &Salva tutte le playlist... + + + Go to next playlist tab + Vai alla scheda della playlist successiva + + + Go to previous playlist tab + Vai alla scheda della playlist precedente + + + &Update changed collection folders + &Aggiorna le cartelle modificate della raccolta + + + About &Qt + Informazioni su &Qt + + + &Mute + &Silenzia + + + Ctrl+M + + + + &Do a full collection rescan + &Esegui una nuova scansione della raccolta + + + Stop collection scan + + + + Complete tags automatically... + Completa automaticamente i tag... + + + Ctrl+T + + + + Toggle scrobbling + Attiva/disattiova scrobbling + + + Remove &duplicates from playlist + Rimuovi &duplicati dalla playlist + + + Remove &unavailable tracks from playlist + Rimuovi tracce &non disponibili dalla playlist + + + Add file(s) to transcoder + Aggiungi file al convertitore + + + Add file to transcoder + Aggiungi file al convertitore + + + Add stream... + Aggiungi flusso... + + + Show sidebar + Visualizza barra laterale + + + Import data from last.fm... + Importa dati da last.fm... + + + All Files (*) + Tutti i file (*) + + + Context + Contesto + + + Collection + Raccolta + + + Queue + Coda + + + Playlists + Playlist + + + Smart playlists + Playlist intelligenti + + + Files + File + + + Radios + Radio + + + Devices + Dispositivi + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Visualizza tutti i brani + + + Show only duplicates + Visualizza solo i duplicati + + + Show only untagged + Visualizza solo i brani senza tag + + + Configure collection... + Configura raccolta... + + + Play + Riproduci + + + Toggle queue status + Modifica lo stato della coda + + + Queue selected tracks to play next + Accoda i brani selezionati per riprodurli successivamente + + + Toggle skip status + Attiva/disattiva stato salto + + + Rescan song(s)... + Nuova scansione brani... + + + Copy URL(s)... + Copia URL... + + + Show in collection... + Visualizza nella raccolta... + + + Show in file browser... + Visualizza nel navigatore file... + + + Organize files... + Organizza file... + + + Copy to collection... + Copia nella raccolta... + + + Move to collection... + Sposta nella raccolta... + + + Copy to device... + Copia nel dispositivo... + + + Delete from disk... + Elimina dal disco... + + + Check for updates... + Controlla aggiornamenti... + + + Strawberry running under Rosetta + Strawberry in esecuzione tramite Rosetta + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Pausa + + + Dequeue track + Rimuovi tracce dalla coda + + + Dequeue selected tracks + Rimuovi tracce selezionate dalla coda + + + Queue track + Accoda la traccia + + + Queue selected tracks + Accoda le tracce selezionate + + + Queue to play next + Accoda cosa riprodurre dopo + + + Unskip track + Ripristina traccia + + + Unskip selected tracks + Ripristina tracce selezionate + + + Skip track + Salta la traccia + + + Skip selected tracks + Salta le tracce selezionate + + + Set %1 to "%2"... + Imposta '%1' a '%2'... + + + Edit tag "%1"... + Modifica tag '%1'... + + + Add to another playlist + Aggiungi ad un'altra playlist + + + New playlist + Nuova playlist + + + Add file + Aggiungi file + + + Music + Musica + + + Add folder + Aggiungi cartella + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + La playlist contiene '%1' brani, troppo grande per essere annullata, sei sicuro di voler pulire la playlist? + + + Error + Errore + + + None of the selected songs were suitable for copying to a device + Nessuno dei brani selezionati era adatto alla copia in un dispositivo + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + La versione di Strawberry appena aggiornata richiede una scansione completa della raccolta, a causa delle nuove funzionalità elencate di seguito: + + + Would you like to run a full rescan right now? + Vuoi eseguire subito una nuova scansione completa? + + + Collection rescan notice + Notifica nuova scansione della raccolta + + + + MessageDialog + + Message Dialog + Finestra di messaggio + + + Do not show this message again. + Non visualizzare più questo messaggio. + + + + MimeData + + Playlist + + + + + MoodbarProxyStyle + + Show moodbar + Visualizza la barra dell'umore + + + Moodbar style + Stile barra dell'umore + + + + MoodbarSettingsPage + + Moodbar + Barra umore + + + Show a moodbar in the track progress bar + Visualizza una barra dell'umore nella barra di avanzamento della traccia + + + Moodbar style + Stile barra dell'umore + + + Save the .mood files directly in the songs folders + Salva i file .mood direttamente nelle cartelle brani + + + Enabled + Abilitato + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Caricamento dispositivo MTP + + + Error connecting MTP device %1 + Errore durante la connessione MTP al dispositivo '%1' + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Proxy di rete + + + &Use the system proxy settings + &Usa le impostazioni proxy di sistema + + + Direct internet connection + Connessione diretta a Internet + + + &Manual proxy configuration + Configurazione proxy &manuale + + + HTTP proxy + Proxy HTTP + + + SOCKS proxy + Proxy SOCKS + + + Port + Porta + + + Use authentication + Usa autenticazione + + + Username + Nome utente + + + Password + + + + Use proxy settings for streaming + Usa impostazioni di proxy per lo streaming + + + + NotificationsSettingsPage + + Notifications + Notifiche + + + Strawberry can show a message when the track changes. + Strawberry può visualizzare un messaggio al cambiamento di traccia. + + + Notification type + Tipo di notifica + + + Disabled + Refers to a disabled notification type in Notification settings. + Disabilitata + + + Show a &native desktop notification + Visualizza una notifica del desktop &nativa + + + Show a pretty OSD + Visualizza un OSD gradevole + + + Show a popup fro&m the system tray + Visualizza una notifica d&alla barra notifiche + + + General settings + Impostazioni generali + + + Popup duration + Durata notifica a comparsa + + + seconds + secondi + + + Disable duration + Disabilita durata + + + Show a notification when I change the volume + Visualizza una notifica quando regolo il volume + + + Show a notification when I change the repeat/shuffle mode + Visualizza una notifica quando cambio la modalità di ripetizione/mescolamento + + + Show a notification when I pause playback + Visualizza una notifica quando sospendo la riproduzione + + + Show a notification when I resume playback + Visualizza una notifica quando riparte la riproduzione + + + Include album art in the notification + Includi copertina nella notifica + + + Custom message settings + Impostazioni messaggio personalizzato + + + Use a custom message for notifications + Usa un messaggio personalizzato per le notifiche + + + Preview + Anteprima + + + MenuPopupToolButton + + + + Summary + Riepilogo + + + Body + Corpo + + + Pretty OSD options + Opzioni OSD gradevole + + + Background color + Colore di fondo + + + Text options + Opzioni testo + + + Choose font... + Scegli carattere... + + + Choose color... + Scegli colore... + + + Background opacity + Opacità sfondo + + + Basic Blue + Blu di base + + + Strawberry Red + + + + Custom... + Personalizzato... + + + Enable fading + Abilita dissolvenza + + + Add song artist tag + Aggiungi tag artista al brano + + + Add song album tag + Aggiungi tag album al brano + + + Add song title tag + Aggiungi tag titolo al brano + + + Add song albumartist tag + Aggiungi tag artista album al brano + + + Add song year tag + Aggiungi tag anno al brano + + + Add song composer tag + Aggiungi tag compositore al brano + + + Add song performer tag + Aggiungi tag del musicista del brano + + + Add song grouping tag + Aggiungi tag del gruppo del brano + + + Add song disc tag + Aggiungi tag disco al brano + + + Add song track tag + Aggiungi tag traccia al brano + + + Add song genre tag + Aggiungi tag genere al brano + + + Add song length tag + Aggiungi tag durata al brano + + + Add song play count + Aggiungi tag numero riproduzioni al brano + + + Add song skip count + Aggiungi numero salti al brano + + + Add song rating + Aggiungi valutazione brano + + + Add a new line if supported by the notification type + Aggiungi una nuova riga se supportato dal tipo di notifica + + + %filename% + + + + Add song filename + Aggiungi nome file del brano + + + %url% + + + + Add song URL + Aggiungi URL brano + + + %originalyear% + + + + Add song original year tag + Aggiungi tag anno originale del brano + + + OSD Preview + Anteprima OSD + + + Drag to reposition + Trascina per riposizionare + + + + OSDBase + + disc %1 + disco %1 + + + track %1 + traccia %1 + + + Paused + In pausa + + + Stopped + Fermato + + + Stop playing after track: %1 + Ferma la riproduzione dopo la traccia: %1 + + + On + Attivato + + + Off + Disattivato + + + Playlist finished + Playlist terminata + + + Volume %1% + + + + Don't shuffle + Non mescolare + + + Shuffle all + Mescola tutti + + + Shuffle tracks in this album + Mescola le tracce di questo album + + + Shuffle albums + Mescola album + + + Don't repeat + Non ripetere + + + Repeat track + Ripeti traccia + + + Repeat album + Ripeti album + + + Repeat playlist + Ripeti playlist + + + Stop after every track + Ferma dopo tutte le tracce + + + Intro tracks + Tracce introduzione + + + + Organize + + Organizing files + Organizzazione file + + + + OrganizeDialog + + Organize Files + Organizza file + + + Destination + Destinazione + + + After copying... + Dopo la copia... + + + Keep the original files + Mantieni i file originali + + + Delete the original files + Elimina i file originali + + + Naming options + Opzioni assegnazione nomi + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Le variabili iniziano con %, ad esempio: %artist %album %title </p> + +<p>Se racchiudi sezioni di testo che contengono una variabile tra parentesi graffe, queste sezioni saranno nascoste se la variabile non contiene alcun valore.</p> + + + Insert... + Inserisci... + + + Remove problematic characters from filenames + Rimuovi dai nomi dei file i caratteri problematici + + + Restrict to characters allowed on FAT filesystems + Limita i caratteri a quelli permessi dal file system FAT + + + Restrict characters to ASCII + Limita i caratteri ad ASCII + + + Allow extended ASCII characters + Consenti i caratteri ASCII estesi + + + Replace spaces with underscores + Sostituisci spazzi con trattini bassi + + + Overwrite existing files + Sovrascrivi file esistenti + + + Copy album cover artwork + Copia copertina album + + + Preview + Anteprima + + + Loading... + Caricamento... + + + Safely remove the device after copying + Rimuovi il dispositivo in sicurezza al termine della copia + + + Title + Titolo + + + Album + + + + Artist + Artista + + + Artist's initial + Iniziale artista + + + Album artist + Artista album + + + Composer + Compositore + + + Performer + Musicista + + + Grouping + Gruppo + + + Track + Traccia + + + Disc + Disco + + + Year + Anno + + + Original year + Anno originale + + + Genre + Genere + + + Comment + Commento + + + Length + Durata + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + Freq. campionamento + + + Bit depth + Profondità bit + + + File extension + Estensione file + + + + OrganizeErrorDialog + + Error copying songs + Errore durante la copia dei brani + + + There were problems copying some songs. The following files could not be copied: + Si sono verificati dei problemi durante la copia di alcuni brani. +Non è stato possibile copiare i seguenti file: + + + Error deleting songs + Errore durante l'eliminazione dei brani + + + There were problems deleting some songs. The following files could not be deleted: + Si sono verificati dei problemi durante l'eliminazione di alcuni brani. +Non è stato possibile eliminare i seguenti file: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Copertine piccole + + + Large album cover + Copertina grande + + + Fit cover to width + Adatta la copertina alla larghezza + + + Show above status bar + Visualizza barra di stato superiore + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Titolo + + + Artist + Artista + + + Album + + + + Track + Traccia + + + Disc + Disco + + + Length + Durata + + + Year + Anno + + + Original Year + + + + Genre + Genere + + + Album Artist + + + + Composer + Compositore + + + Performer + Musicista + + + Grouping + Gruppo + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Commento + + + Source + Sorgente + + + Mood + Umore + + + Rating + Valutazione + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Modulo + + + Undo + Annulla operazione + + + Redo + Ripeti operazione + + + Playlist + + + + Load playlist + Carica playlist + + + No matches found. Clear the search box to show the whole playlist again. + Nessuna corrispondenza trovata. Per visualizzare nuovamente la playlist completa svuota il campo di ricerca. + + + + PlaylistDelegateBase + + stop + ferma + + + + PlaylistGeneratorInserter + + Loading smart playlist + Caricamento playlist intelligente + + + + PlaylistHeader + + &Hide... + &Nascondi... + + + &Stretch columns to fit window + &Allunga le colonne per adattarle alla finestra + + + &Reset columns to default + &Ripristina colonne ai valori predefiniti + + + &Lock rating + &Blocca valutazione + + + &Align text + &Allinea il testo + + + &Left + &Sinistra + + + &Center + Al &centro + + + &Right + Dest&ra + + + &Hide %1 + &Nascondi %1 + + + + PlaylistListContainer + + Form + Modulo + + + New folder + Nuova cartella + + + Delete + Elimina + + + Save playlist + Save playlist menu action. + Salva playlist + + + Copy to device... + Copia nel dispositivo... + + + Enter the name of the folder + Digita il nome della cartella + + + Playlist + + + + Copy to device + Copia nel dispositivo + + + Playlist must be open first. + Prima è necessario aprire la playlist. + + + Remove playlists + Rimuovi playlist + + + You are about to remove %1 playlists from your favorites, are you sure? + Stai per rimuovere %1 playlist dai preferiti, sei sicuro? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Puoi creare le playlist preferite facendo clic sulla stella accanto al nome della playlist + + + Favorited playlists will be saved here + Le playlist preferite saranno salvate qui + + + + PlaylistManager + + Playlist + + + + Couldn't create playlist + Impossibile creare la playlist + + + Save playlist + Title of the playlist save dialog. + Salva playlist + + + Unknown playlist extension + Estensione playlist sconosciuta + + + Unknown file extension for playlist. + Estensione file playlist sconosciuta. + + + %1 selected of + %1 selezionate di + + + %n track(s) + + + + + + + Unknown + Sconosciuto + + + Various artists + Artisti vari + + + + PlaylistParser + + All playlists (%1) + Tutte le scalette (%1) + + + %1 playlists (%2) + %1 playlist (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Opzioni playlist + + + File paths + Percorsi file + + + This can be changed later through the preferences + Può essere modificata successivamente tramite le preferenze + + + Remember my choice + Ricorda la mia scelta + + + Automatic + Automatico + + + Relative + Relativo + + + Absolute + Assoluto + + + + PlaylistSequence + + Repeat + Ripeti + + + Shuffle + Mescola + + + Don't repeat + Non ripetere + + + Repeat track + Ripeti traccia + + + Repeat album + Ripeti album + + + Repeat playlist + Ripeti playlist + + + Stop after each track + Ferma dopo ogni traccia + + + Intro tracks + Tracce introduzione + + + Don't shuffle + Non mescolare + + + Shuffle tracks in this album + Mescola le tracce di questo album + + + Shuffle all + Mescola tutti + + + Shuffle albums + Mescola album + + + + PlaylistSettingsPage + + Playlist + + + + Use alternating row colors + Usa colori alternati per le righe + + + Show bars on the currently playing track + Visualizza barre sulla traccia attualmente in riproduzione + + + Show a glowing animation on the currently playing track + Visualizza un'animazione luminosa sulla traccia attualmente in riproduzione + + + Warn me when closing a playlist tab + Avvisami alla chiusura di una scheda della playlist + + + Continue to the next item in the playlist if a song is unavailable + Continua con il prossimo elemento della playlist se un brano non è disponibile + + + Grey out unavailable songs in playlists on playback + Disabilita i brani non disponibili nelle playlist durante la riproduzione + + + Grey out unavailable songs in playlists on startup + Disabilita i brani non disponibili nelle playlist all'avvio + + + Automatically select current playing track + Seleziona automaticamente la traccia che è in riproduzione + + + Enable playlist toolbar + Abilita barra strumenti playlist + + + Enable playlist clear button + Abilita pulsante cancellazione playlist + + + Enable delete files in the right click context menu + Abilita l'eliminazione file nel menu contestuale tasto destro + + + Automatically sort playlist when inserting songs + Ordina automaticamente playlist durante l'inserimento brani + + + When saving a playlist, file paths should be + Quando salvi una playlist, i percorsi dei file dovrebbero essere + + + A&utomatic + A&utomatico + + + Absolu&te + Assolu&to + + + Re&lative + Re&lativo + + + As&k when saving + &Chiedi durante il salvataggio + + + Metadata + Metadati + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Se attivata, il clic su un brano selezionato nella vista della playlist ti consentirà di modificare direttamente il valore di un tag + + + Enable song metadata inline edition with click + Abilita la modifica in linea dei metadati di un brano con un clic + + + Write metadata when saving playlists + Quando si salvano le playlist scrivi i metadati + + + + PlaylistTabBar + + Star playlist + Stella playlist + + + Close playlist + Chiudi playlist + + + Rename playlist... + Rinomina playlist... + + + Save playlist... + Salva playlist... + + + Rename playlist + Rinomina playlist + + + Enter a new name for this playlist + Inserisci un nuovo nome per questa playlist + + + Remove playlist + Rimuovi playlist + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Stai per rimuovere una playlist che non fa parte delle playlist preferite: la playlist sarà eliminata (questa azione non può essere annullata). +Sei sicuro di voler continuare? + + + Warn me when closing a playlist tab + Avvisami alla chiusura di una scheda della playlist + + + This option can be changed in the "Behavior" preferences + Questa opzione può essere modificata nelle preferenze di "Comportamento" + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Doppio clic qui per aggiungere questa playlist ai preferiti in modo che venga salvata e rimanga accessibile tramite il pannello "Playlist" nella barra laterale sinistra + + + Playlist + + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + aggiungi %n brani + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + sposta %n brani + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + rimuovi %n brani + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + mescola i brani + + + + PlaylistUndoCommands::SortItems + + sort songs + ordina brani + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + Uso + + + options + opzioni + + + URL(s) + URL + + + Player options + Opzioni riproduttore + + + Start the playlist currently playing + Avvia la playlist attualmente in riproduzione + + + Play if stopped, pause if playing + Riproduci se fermata, sospendi se in riproduzione + + + Pause playback + Sospendi riproduzione + + + Stop playback + Ferma riproduzione + + + Stop playback after current track + Ferma la riproduzione dopo la traccia attuale + + + Skip backwards in playlist + Salta indietro nella playlist + + + Skip forwards in playlist + Salta in avanti nella playlist + + + Set the volume to <value> percent + Imposta il volume al <value> % + + + Increase the volume by 4 percent + Aumenta il volume del 4 % + + + Decrease the volume by 4 percent + Diminuisce il volume del 4 % + + + Increase the volume by <value> percent + Aumenta il volume del <value> % + + + Decrease the volume by <value> percent + Riduci il volume del <value> % + + + Seek the currently playing track to an absolute position + Sposta la traccia in riproduzione in una posizione assoluta + + + Seek the currently playing track by a relative amount + Sposta la traccia in riproduzione di una quantità relativa + + + Restart the track, or play the previous track if within 8 seconds of start. + Riavvia la traccia, o riproduci la traccia precedente se entro 8 secondi dall'avvio. + + + Playlist options + Opzioni playlist + + + Create a new playlist with files + Crea una nuova playlist con i file + + + Append files/URLs to the playlist + Aggiungi file/URL alla playlist + + + Loads files/URLs, replacing current playlist + Carica file/URL, sostituendo la playlist attuale + + + Play the <n>th track in the playlist + Riproduci la traccia numero <n> della playlist + + + Play given playlist + Riproduci una determinata playlist + + + Other options + Altre opzioni + + + Display the on-screen-display + Visualizza notifiche a schermo (OSD) + + + Toggle visibility for the pretty on-screen-display + Attiva/disattiva visibilità OSD gradevole + + + Change the language + Modifica lingua interfaccia + + + Resize the window + Ridimensiona la finestra + + + Equivalent to --log-levels *:1 + Equivalente a --log-levels *:1 + + + Equivalent to --log-levels *:3 + Equivalente a --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Elenco separato da virgole (classe:livello, dove livello è 0-3) + + + Print out version information + Visualizza informazioni versione + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Sconosciuto + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Il file '%1' non è stato riconosciuto come un file audio valido. + + + 1 day + un giorno + + + %1 days + %1 giorni + + + Today + Oggi + + + Yesterday + Ieri + + + %1 days ago + %1 giorni fa + + + Tomorrow + Domani + + + In %1 days + Tra %1 giorni + + + Next week + Settimana prossima + + + In %1 weeks + Tra %1 settimane + + + Show in file browser + Visualizza nel navigatore file + + + Too many songs selected. + Troppi brani selezionati. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + '%1' brani in '%2' diverse cartelle selezionate, sei sicuro di volerli aprire tutti? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Errore sconosciuto + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + artista + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Campi disponibili + + + after + dopo + + + before + prima + + + on + in + + + not on + non in + + + in the last + nell'ultimo + + + not in the last + non nell'ultimo + + + between + tra + + + contains + contiene + + + does not contain + non contiene + + + starts with + inizia con + + + ends with + finisce con + + + greater than + più grande di + + + less than + meno di + + + equals + equivale + + + not equals + non uguale + + + empty + vuoto + + + not empty + non vuoto + + + Comment + Commento + + + A-Z + + + + Z-A + + + + oldest first + prima i più vecchi + + + newest first + prima i più nuovi + + + shortest first + prima il più breve + + + longest first + più lungo prima + + + smallest first + prima il più piccolo + + + biggest first + più grande prima + + + Hours + Ore + + + Days + Giorni + + + Weeks + Settimane + + + Months + Mesi + + + Years + Anni + + + Normal + Normale + + + Angry + Arrabbiato + + + Frozen + Congelato + + + Happy + Felice + + + System colors + Colori sistema + + + + QWidget + + Clear + Svuota + + + Reset + Ripristina + + + + QobuzRequest + + Receiving artists... + Ricezione artisti... + + + Receiving albums... + Ricezione album... + + + Receiving songs... + Ricezione brani... + + + Searching... + Ricerca... + + + Receiving albums for %1 artist... + Ricezione album per '%1' artista... + + + Receiving albums for %1 artists... + Receiving albums for '%1' artists... + + + Receiving songs for %1 album... + Ricezione brani per '%1' album... + + + Receiving songs for %1 albums... + Ricezione brani per '%1' album... + + + Receiving album cover for %1 album... + Ricezione copertina album per '%1' album... + + + Receiving album covers for %1 albums... + Ricezione copertine album per' %1' album... + + + No match. + Nessuna corrispondenza. + + + Unknown error + Errore sconosciuto + + + + QobuzService + + Authenticating... + Autenticazione... + + + Maximum number of login attempts reached. + Raggiunto numero massimo tentativi di accesso. + + + Missing Qobuz app ID. + ID app Qobuz mancante. + + + Missing Qobuz username. + Nome utente Qobuz mancante. + + + Missing Qobuz password. + Password Qobuz mancante. + + + Not authenticated with Qobuz. + Non sei autenticato su Qobuz. + + + Missing Qobuz app ID or secret. + ID app (o segreto) Qobuz mancante. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Abilita + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Il supporto Qobuz non è ufficiale e richiede per funzionare un ID app API e un segreto da un'applicazione registrata. +Non possiamo aiutarti a procurarteli. + + + Authentication + Autenticazione + + + App ID + ID app + + + Username + Nome utente + + + Password + + + + App Secret + Segreto app + + + Login + Accedi + + + Preferences + Preferenze + + + Audio format + Formato audio + + + Search delay + Ritardo ricerca + + + ms + + + + Artists search limit + Limite di ricerca artisti + + + Albums search limit + Limite di ricerca album + + + Songs search limit + Limite ricerca brani + + + Download album covers + Scarica copertine album + + + Base64 encoded secret + Segreto codificato in base64 + + + Configuration incomplete + Configurazione non completa + + + Missing app id. + ID app mancante. + + + Missing username. + Nome utente mancante. + + + Missing password. + Password mancante. + + + Authentication failed + Autenticazione non riuscita + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + ID app (o segreto) Qobuz mancante. + + + Cancelled. + Annullato. + + + + Queue + + %n track(s) + + + + + + + + QueueView + + QueueView + Vista coda + + + Move down + Sposta in basso + + + Ctrl+Up + Ctrl+Sù + + + Move up + Sposta in alto + + + Ctrl+Down + Ctrl+Giù + + + Remove + Rimuovi + + + Clear + Svuota + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + Ottieni %1 canali + + + + RadioView + + Append to current playlist + Aggiungi alla playlist attuale + + + Replace current playlist + Sostituisci playlist attuale + + + Open in new playlist + Apri in nuova playlist + + + Open homepage + Apri sito web + + + Donate + Dona + + + Refresh channels + Aggiorna canali + + + + RadioViewContainer + + Form + Modulo + + + + SCollection + + Saving playcounts and ratings + Salvataggio numero riproduzioni valutazioni + + + + SavePlaylistsDialog + + Select directory for saving playlists + Seleziona cartella salvataggio playlist + + + Type + Tipo + + + Select directory for the playlists + Seleziona cartella per la playlist + + + Directory does not exist. + La cartella non esiste. + + + + SavedGroupingManager + + Saved Grouping Manager + Gestione raggruppamenti salvati + + + Remove + Rimuovi + + + Ctrl+Up + Ctrl+Sù + + + Name + Nome + + + First level + Primo livello + + + Second Level + Secondo livello + + + Third Level + Terzo livello + + + None + Nessuna + + + Album artist + Artista album + + + Artist + Artista + + + Album + + + + Album - Disc + Album - Disco + + + Year - Album + Anno - album + + + Year - Album - Disc + Anno - album - disco + + + Original year - Album + Anno originale - album + + + Original year - Album - Disc + Anno originale - album - disco + + + Disc + Disco + + + Year + Anno + + + Original year + Anno originale + + + Genre + Genere + + + Composer + Compositore + + + Performer + Musicista + + + Grouping + Gruppo + + + File type + Tipo di file + + + Format + Formato + + + Sample rate + Freq. campionamento + + + Bit depth + Profondità bit + + + Bitrate + + + + Unknown + Sconosciuto + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Abilita + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + I brani vengono inviate per lo scrobble se hanno dei metadata validi, durano più di 30 secondi e sono state riprodotti per almeno la metà della loro lunghezza totale o per 4 minuti (qualsiasi dei quali avvenga prima) + + + Work in offline mode (Only cache scrobbles) + Lavora in modalità offline (solo scrobble in cache) + + + Show scrobble button + Visualizza il pulsante di scrobble + + + Show love button + Visualizza il pulsante love + + + Submit scrobbles every + Invia gli scrobble ogni + + + seconds + secondi + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (questo è il ritardo tra il momento in cui un brano viene scrobbled e il momento in cui gli scrobble vengono inviati al server. L'impostazione del tempo su 0 secondi invierà immediatamente gli scrobble). + + + Prefer album artist when sending scrobbles + Preferisci l'artista dell'album nell'invio degli scrobble + + + Show dialog for errors + Visualizza finestra di dialogo per gli errori + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Abilita scrobbling per le seguenti sorgenti: + + + Collection + Raccolta + + + Subsonic + + + + Local file + File locale + + + Tidal + + + + Device + Dispositivo + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Flusso + + + Radio Paradise + + + + Unknown + Sconosciuto + + + Last.fm + + + + Login + Accedi + + + Libre.fm + + + + Listenbrainz + + + + User token: + Token utente: + + + Enter your user token from + Inserisci il tuo token utente da + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 autenticazione Scrobbler + + + Open URL in web browser? + Vuoi aprire l'URL nel browser web? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Seleziona "Salva" per copiare l'URL negli Appunti ed aprirla manualmente nel browser web. + + + Could not open URL. Please open this URL in your browser + Impossibile aprire l'URL, apri questo URL nel browser + + + Invalid reply from web browser. Missing token. + Risposta non valida dal browser web. Token mancante. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + Scrobbler '%1' non è autenticato! + + + Scrobbler %1 error: %2 + Scrobbler '%1' errore: '%2' + + + + SettingsDialog + + Settings + Impostazioni + + + General + Generale + + + User interface + Interfaccia utente + + + Streaming + + + + + SmartPlaylistQuerySearchPage + + Form + Modulo + + + Search mode + Modalità ricerca + + + Match every search term (AND) + Cerca corrispondenza di ogni termine di ricerca (E) + + + Match one or more search terms (OR) + Cerca corrispondenza di uno o più termini di ricerca (O) + + + Include all songs + Includi tutte i brani + + + Search terms + Termini di ricerca + + + + SmartPlaylistQuerySortPage + + Form + Modulo + + + Sorting + Ordinamento + + + Put songs in a random order + Ordina i brani in ordine casuale + + + Sort songs by + Ordina i brani per + + + Limits + Limiti + + + Show all the songs + Visualizza tutte i brani + + + Only show the first + Visualizza solo il primo + + + songs + brani + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Ricerca raccolta + + + Find songs in your collection that match the criteria you specify. + Trova i brani nella raccolta che corrispondono ai criteri specificati. + + + Search terms + Termini di ricerca + + + A song will be included in the playlist if it matches these conditions. + Un brano verrà incluso nella playlist se soddisfa queste condizioni. + + + Search options + Opzioni ricerca + + + Choose how the playlist is sorted and how many songs it will contain. + Scegli come è ordinata la playlist e quanti brani conterrà. + + + + SmartPlaylistSearchPreview + + Form + Modulo + + + Preview + Anteprima + + + Loading... + Caricamento... + + + %1 songs found (showing %2) + '%1' brani trovati (visualizza '%2') + + + %1 songs found + '%1' brani trovati + + + + SmartPlaylistSearchTermWidget + + Form + Modulo + + + and + e + + + ago + fa + + + The second value must be greater than the first one! + Il secondo valore deve essere maggiore del primo! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Aggiungi termine di ricerca + + + + SmartPlaylistWizard + + Smart playlist + Playlist intelligente + + + Playlist type + Tipo playlist + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Una playlist intelligente è un elenco dinamico di brani che provengono da una raccolta. +Esistono diversi tipi di playlist intelligenti che offrono diversi modi di selezionare i brani. + + + Finish + Fine + + + Choose a name for your smart playlist + Scegli un nome per la playlist intelligente + + + + SmartPlaylistWizardFinishPage + + Form + Modulo + + + Name + Nome + + + Use dynamic mode + Usa modalità dinamica + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + In modalità dinamica verranno scelti nuovi brani e aggiunti alla playlist ogni volta che un brano finisce. + + + + SmartPlaylists + + Newest tracks + Tracce più recenti + + + 50 random tracks + 50 tracce casuali + + + Ever played + Mai riprodotto + + + Never played + Mai riprodotti + + + Last played + Ultima riproduzione + + + Most played + Più riprodotti + + + Favourite tracks + Tracce preferite + + + All tracks + Tutte le tracce + + + Dynamic random mix + Mix casuale dinamico + + + + SmartPlaylistsViewContainer + + New smart playlist + Nuova playlist intelligente + + + Edit smart playlist + Modifica playlist intelligente + + + Delete smart playlist + Elimina playlist intelligente + + + New smart playlist... + Nuova playlist intelligente... + + + Append to current playlist + Aggiungi alla playlist attuale + + + Replace current playlist + Sostituisci playlist attuale + + + Open in new playlist + Apri in nuova playlist + + + Queue track + Accoda la traccia + + + Play next + Riproduci successivo + + + Edit smart playlist... + Modifica playlist intelligente... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry è in esecuzione come 'snap' + + + It is detected that Strawberry is running as a Snap + È stato rilevato che Strawberry è in esecuzione come Snap + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry quando viene eseguito come 'snap' è più lento e ha delle restrizioni. +L'accesso al filesystem root (/) non funzionerà. +Potrebbero esserci anche altre restrizioni come l'accesso a determinati dispositivi o condivisioni di rete. + + + For Ubuntu there is an official PPA repository available at %1. + Per Ubuntu è disponibile un repository PPA ufficiale in '%1'. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Sono disponibili rilasci ufficiali per Debian e Ubuntu che funzionano anche nella maggior parte dei loro derivati. +Per ulteriori informazioni vedi '%1' . + + + For a better experience please consider the other options above. + Per un'esperienza migliore, considera le altre opzioni di cui sopra. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Prima di disinstallare lo snap copia il straw.conf e straw.db dalla cartella ~/snap per evitare di perdere la configurazione: + + + Uninstall the snap with: + Disinstalla lo snap con: + + + Install strawberry through PPA: + Installa Strawberry tramite PPA: + + + + SomaFMService + + Getting %1 channels + Ottieni %1 canali + + + + SongLoader + + You need GStreamer for this URL. + Hai bisogno di GStreamer per questa URL. + + + Preload function was not set for blocking operation. + La funzione di pre-caricamento non è stata impostata per l'operazione di blocco. + + + File %1 does not exist. + Il file '%1' non esiste. + + + CD playback is only available with the GStreamer engine. + La riproduzione CD è disponibile unicamente tramite motore GStreamer. + + + Could not open file %1 for reading: %2 + Impossibile aprire il file '%1' in lettura: '%2' + + + Could not open CUE file %1 for reading: %2 + Impossibile aprire il file CUE '%1' per la lettura: '%2' + + + Could not open playlist file %1 for reading: %2 + Impossibile aprire il file della playlist '%1' in lettura: '%2' + + + Couldn't create GStreamer source element for %1 + Impossibile creare l'elemento sorgente GStreamer per '%1' + + + Couldn't create GStreamer typefind element for %1 + Impossibile creare l'elemento typefind di GStreamer per '%1' + + + Couldn't create GStreamer fakesink element for %1 + Impossibile creare l'elemento fakesink di GStreamer per '%1' + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + Impossibile collegare gli elementi sorgente, typefind e fakesink di GStreamer per '%1' + + + + SongLoaderInserter + + Error while loading audio CD. + Errore durante il caricamento del CD audio. + + + Loading tracks + Caricamento tracce + + + Loading tracks info + Caricamento informazioni traccia + + + + SpotifyRequest + + Authenticating... + Autenticazione... + + + Receiving artists... + Ricezione artisti... + + + Receiving albums... + Ricezione album... + + + Receiving songs... + Ricezione brani... + + + Searching... + Ricerca... + + + Receiving albums for %1 artist... + Ricezione album per '%1' artista... + + + Receiving albums for %1 artists... + Receiving albums for '%1' artists... + + + Receiving songs for %1 album... + Ricezione brani per '%1' album... + + + Receiving songs for %1 albums... + Ricezione brani per '%1' album... + + + Receiving album cover for %1 album... + Ricezione copertina album per '%1' album... + + + Receiving album covers for %1 albums... + Ricezione copertine album per' %1' album... + + + No match. + Nessuna corrispondenza. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Autenticazione Spotify + + + Please open this URL in your browser + Apri questa URL nel browser + + + Redirect missing token code or state! + Reindirizza il codice o lo stato del token mancante! + + + Received invalid reply from web browser. + Ricevuta una risposta non valida dal browser web. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Abilita + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Preferenze + + + Search delay + Ritardo ricerca + + + ms + + + + Artists search limit + Limite di ricerca artisti + + + Albums search limit + Limite di ricerca album + + + Songs search limit + Limite ricerca brani + + + Download album covers + Scarica copertine album + + + Fetch entire albums when searching songs + Recupera gli album interi quando cerchi dei brani + + + Authentication failed + Autenticazione non riuscita + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Fai clic qui per recuperare la musica + + + Append to current playlist + Aggiungi alla playlist attuale + + + Replace current playlist + Sostituisci playlist attuale + + + Open in new playlist + Apri in nuova playlist + + + Queue track + Accoda la traccia + + + Queue to play next + Accoda cosa riprodurre dopo + + + Remove from favorites + Rimuovi dai preferiti + + + + StreamingCollectionViewContainer + + Form + Modulo + + + Close + Chiudi + + + Abort + Interrompi + + + Refresh catalogue + Aggiorna catalogo + + + + StreamingSearchModel + + Various artists + Artisti vari + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + artisti + + + albums + album + + + songs + brani + + + Enter search terms above to find music + Inserisci qui sopra i termini per la ricerca per trovare la musica che cerchi + + + Configure %1... + Configura %1... + + + Append to current playlist + Aggiungi alla playlist attuale + + + Replace current playlist + Sostituisci playlist attuale + + + Open in new playlist + Apri in nuova playlist + + + Queue track + Accoda la traccia + + + Add to artists + Aggiungi agli artisti + + + Add to albums + Aggiungi agli album + + + Add to songs + Aggiungi ai brani + + + Search for this + Cerca questo + + + Group by + Raggruppa per + + + + StreamingSongsView + + Configure %1... + Configura %1... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Artisti + + + Albums + Album + + + Songs + Brani + + + Search + Cerca + + + Configure %1... + Configura %1... + + + + SubsonicRequest + + Retrieving albums... + Recupero album... + + + Retrieving songs for %1 album... + Recupero brani per l'album '%1'... + + + Retrieving songs for %1 albums... + Recupero brani per gli album '%1'... + + + Retrieving album cover for %1 album... + Recupero copertina per l'album '%1'... + + + Retrieving album covers for %1 albums... + Recupero copertine per gli album '%1'... + + + Unknown error + Errore sconosciuto + + + + SubsonicService + + Server URL is invalid. + L'URL del server non è valida. + + + Missing username or password. + Nome utente o password mancanti. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Abilita + + + Server URL + URL server + + + Authentication + Autenticazione + + + Username + Nome utente + + + Password + + + + Authentication method: + Metodo autenticazione: + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Preferenze + + + Use HTTP/2 when possible + Usa HTTP/2 quando possibile + + + Verify server certificate + Verifica certificato server + + + Download album covers + Scarica copertine album + + + Server-side scrobbling + Scrobbling lato server + + + Test + + + + Delete songs + Elimina brani + + + Configuration incomplete + Configurazione non completa + + + Missing server url, username or password. + URL del server, nome utente o password mancanti. + + + Configuration incorrect + Configurazione non corretta + + + Server URL is invalid. + L'URL del server non è valida. + + + Test successful! + Test riuscito! + + + Test failed! + Test non riuscito! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + L'URL del server Subsonic non è valida. + + + Missing Subsonic username or password. + Nome utente o password di Subsonic mancante. + + + + SystemTrayIcon + + Pause + Pausa + + + Play + Riproduci + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Autenticazione... + + + Receiving artists... + Ricezione artisti... + + + Receiving albums... + Ricezione album... + + + Receiving songs... + Ricezione brani... + + + Searching... + Ricerca... + + + Receiving albums for %1 artist... + Ricezione album per '%1' artista... + + + Receiving albums for %1 artists... + Receiving albums for '%1' artists... + + + Receiving songs for %1 album... + Ricezione brani per '%1' album... + + + Receiving songs for %1 albums... + Ricezione brani per '%1' album... + + + Receiving album cover for %1 album... + Ricezione copertina album per '%1' album... + + + Receiving album covers for %1 albums... + Ricezione copertine album per' %1' album... + + + No match. + Nessuna corrispondenza. + + + + TidalService + + Reply from Tidal is missing query items. + Alla risposta del server Tidal mancano elementi della richiesta. + + + Missing Tidal API token. + Token API Tidal mancante. + + + Missing Tidal username. + Nome utente Tidal mancante. + + + Missing Tidal password. + Password Tidal mancante. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Non sei autenticato su Tidal ed hai raggiunto il massimo numero di tentativi di accesso. + + + Not authenticated with Tidal. + Non sei autenticato su Tidal. + + + Missing Tidal API token, username or password. + Token API Tidal, nome utente o password mancanti. + + + + TidalSettingsPage + + Tidal + + + + Enable + Abilita + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Il supporto Tidal non è ufficiale e per funzionare richiede un token API da un'applicazione registrata. +Non possiamo aiutarti a procurarteli. + + + Authentication + Autenticazione + + + Use OAuth + Usa OAuth + + + Client ID + ID client + + + API Token + Token API + + + Username + Nome utente + + + Password + + + + Login + Accedi + + + Preferences + Preferenze + + + Audio quality + Qualità audio + + + Search delay + Ritardo ricerca + + + ms + + + + Artists search limit + Limite di ricerca artisti + + + Albums search limit + Limite di ricerca album + + + Songs search limit + Limite ricerca brani + + + Download album covers + Scarica copertine album + + + Fetch entire albums when searching songs + Recupera gli album interi quando cerchi dei brani + + + Album cover size + Dimensione cover album + + + Stream URL method + Metodo per l'URL del flusso + + + Append explicit to album title for explicit albums + Aggiungi esplicito al titolo dell'album per gli album espliciti + + + Configuration incomplete + Configurazione non completa + + + Missing Tidal client ID. + ID client Tidal mancante. + + + Missing API token. + Token API mancante. + + + Missing username. + Nome utente mancante. + + + Missing password. + Password mancante. + + + Authentication failed + Autenticazione non riuscita + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Non sei autenticato su Tidal. + + + Missing Tidal API token, username or password. + Token API Tidal, nome utente o password mancanti. + + + Cancelled. + Annullato. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + URL ricevuto da Tidal con flusso crittografato '%1'. +Strawberry attualmente non supporta i flussi crittografati. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + URL ricevuto con flusso crittografato da Tidal. +Strawberry attualmente non supporta i flussi crittografati. + + + + TrackSelectionDialog + + Tag fetcher + Strumento di recupero dei tag + + + Sorry + Spiacente + + + Strawberry was unable to find results for this file + Strawberry non ha trovato risultati per questo file + + + Select best possible match + Seleziona migliori corrispondenze possibili + + + Track + Traccia + + + Year + Anno + + + Title + Titolo + + + Artist + Artista + + + Album + + + + Previous + Precedente + + + Next + Successivo + + + Original tags + Tag originali + + + Suggested tags + Tag consigliati + + + Saving tracks + Salvataggio tracce + + + + TrackSlider + + Form + Modulo + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Clic per passare dal tempo rimanente al tempo totale + + + + TranscodeDialog + + Transcode Music + Converti musica + + + Files to transcode + File da convertire + + + Filename + Nome file + + + Directory + Cartella + + + Add... + Aggiungi... + + + Remove + Rimuovi + + + Add all tracks from a directory and all its subdirectories + Aggiungi tutte le tracce da una cartella e da tutte le sue sottocartelle + + + Import... + Importa... + + + Output options + Opzioni destinazione + + + Audio format + Formato audio + + + Options... + Opzioni... + + + Destination + Destinazione + + + Alongside the originals + Insieme agli originali + + + Select... + Seleziona... + + + Progress + Avanzamento + + + Details... + Dettagli... + + + Clear + Svuota + + + Start transcoding + Avvia conversione + + + %n remaining + + %n rimanenti + + + + + %n finished + + %n completati + + + + + %n failed + + %n non riusciti + + + + + Add files to transcode + Aggiungi file da convertire + + + Music + Musica + + + Open a directory to import music from + Apri una cartella da cui importare la musica + + + Add folder + Aggiungi cartella + + + + TranscodeLogDialog + + Transcoder Log + Registro eventi conversione + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Impossibile creare l'elemento «%1» di GStreamer - assicurati che tutti i plugin necessari siano installati + + + Successfully written %1 + '%1' scritti correttamente + + + Transcoding %1 files using %2 threads + Conversione di '%1' file usando '%2' thread + + + Error processing %1: %2 + Errore durante l'elaborazione di '%1': '%2' + + + Starting %1 + Avvio di %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Impossibile trovare un codificatore per '%1', verifica l'installazione del plugin GStreamer corretto + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Impossibile trovare un muxer per '%1', verifica l'installazione del plugin GStreamer corretto + + + + TranscoderOptionsAAC + + Form + Modulo + + + Bitrate + + + + kbps + + + + Profile + Profilo + + + Main profile (MAIN) + Profilo principale (MAIN) + + + Low complexity profile (LC) + Profilo a bassa complessità (LC) + + + Scalable sampling rate profile (SSR) + Profilo con campionamento scalabile (SSR) + + + Long term prediction profile (LTP) + Profilo con predizione di lungo termine (LTP) + + + Use temporal noise shaping + Usa modellazione temporale del rumore + + + Allow mid/side encoding + Consenti codifica mid/side + + + Block type + Tipo di blocco + + + Normal block type + Tipo di blocco normale + + + No short blocks + Nessun blocco corto + + + No long blocks + Nessun blocco lungo + + + + TranscoderOptionsASF + + Form + Modulo + + + Bitrate + + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + Opzioni di conversione + + + + TranscoderOptionsFLAC + + Form + Modulo + + + Quality + Sound quality + Qualità + + + Fast + Veloce + + + Best + Migliore + + + + TranscoderOptionsMP3 + + Form + Modulo + + + Optimize for &quality + Ottimizza per la &qualità + + + Quality + Sound quality + Qualità + + + Opti&mize for bitrate + Otti&mizza per il bitrate + + + Bitrate + + + + kbps + + + + Constant bitrate + Bitrate costante + + + Encoding engine quality + Qualità motore codifica + + + Fast + Veloce + + + Standard + + + + High + Alto + + + Force mono encoding + Forza codifica mono + + + + TranscoderOptionsOpus + + Form + Modulo + + + Bitrate + + + + kbps + + + + + TranscoderOptionsSpeex + + Form + Modulo + + + Quality + Sound quality + Qualità + + + Bitrate + + + + automatic + automatica + + + kbps + + + + Average bitrate + Bitrate medio + + + disabled + disabilitata + + + Encoding mode + Modalità codifica + + + Auto + Automatica + + + Ultra wide band (UWB) + Banda ultra larga (UWB) + + + Wide band (WB) + Banda larga (WB) + + + Narrow band (NB) + Banda stretta (NB) + + + Variable bit rate + Bitrate variabile + + + Voice activity detection + Rilevazione attività vocale + + + Discontinuous transmission + Trasmissione discontinua + + + Encoding complexity + Complessità codifica + + + Frames per buffer + Fotogrammi per buffer + + + + TranscoderOptionsVorbis + + Form + Modulo + + + Quality + Sound quality + Qualità + + + Use bitrate management engine + Usa motore gestione bitrate + + + Target bitrate + Bitrate finale + + + kbps + + + + Minimum bitrate + Bitrate minimo + + + disabled + disabilitata + + + Maximum bitrate + Bitrate massimo + + + + TranscoderOptionsWavPack + + Form + Modulo + + + + TranscoderSettingsPage + + Transcoding + Conversione + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Queste impostazioni sono usate nella finestra "Conversione musica", e quando è necessario convertire musica prima di copiarla in un dispositivo. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + Percorso D-Bus + + + Serial number + Numero seriale + + + Mount points + Punti di montaggio + + + Partition label + Etichetta partizione + + + UUID + + + + + UserPassDialog + + Enter username and password + Inserisci nome utente e password + + + Username + Nome utente + + + Password + + + + diff --git a/src/translations/strawberry_ja_JP.ts b/src/translations/strawberry_ja_JP.ts new file mode 100644 index 00000000..9ddeb4d3 --- /dev/null +++ b/src/translations/strawberry_ja_JP.ts @@ -0,0 +1,7561 @@ + + + + + About + + About + + + + About Strawberry + Strawberry について + + + Version %1 + バージョン %1 + + + Strawberry is a music player and music collection organizer. + Strawberry は、音楽プレーヤーおよび音楽コレクションのオーガナイザーです。 + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry は、GPL の下でリリースされた自由ソフトウェアです。ソースコードは %1 で入手できます。 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + もし Strawberry が気に入って利用する場合は、後援または寄付を検討してください + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + 作者とメンテナー + + + Contributors + 貢献者 + + + Clementine authors + Clementine の作者 + + + Clementine contributors + Clementine への貢献者 + + + Thanks to + ありがとうございます + + + Thanks to all the other Amarok and Clementine contributors. + + + + + AddStreamDialog + + Add Stream + ストリームを追加 + + + Enter the URL of a stream: + ストリームのURLを入力: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + 画像 (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + 画像 (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + すべてのファイル (*) + + + Load cover from disk... + ディスクからカバーの読み込み... + + + Save cover to disk... + カバーをディスクに保存... + + + Load cover from URL... + URL からカバーの読み込み... + + + Search for album covers... + アルバムカバーの検索... + + + Unset cover + カバーを未設定にする + + + Delete cover + カバーを削除 + + + Clear cover + カバーを選択 + + + Show fullsize... + 原寸表示... + + + Search automatically + 自動的に検索する + + + Load cover from disk + ディスクからカバーの読み込み + + + Failed to open cover file %1 for reading: %2 + カバーファイル %1 を読み取れません: %2 + + + Cover file %1 is empty. + カバーファイル %1 は空です。 + + + unknown + 不明 + + + Save album cover + カバーアートの保存 + + + Failed to open cover file %1 for writing: %2 + カバーファイル %1 を書き込めません: %2 + + + Failed writing cover to file %1: %2 + ファイル %1 へのカバーの書き込みに失敗: %2 + + + Failed writing cover to file %1. + ファイル %1 へのカバーの書き込みに失敗しました。 + + + Failed to delete cover file %1: %2 + カバーファイル %1 の削除に失敗しました: %2 + + + Failed to write cover to file %1: %2 + ファイル %1 へのカバーの書き込みに失敗: %2 + + + Could not save cover to file %1. + カバーをファイル %1 に保存できません。 + + + + AlbumCoverExport + + Export covers + カバーをエクスポートする + + + Output + 出力 + + + Enter a filename for exported covers (no extension): + エクスポートするカバーのファイル名を入力してください (拡張子なし): + + + Export downloaded covers + ダウンロードしたカバーをエクスポートする + + + Export embedded covers + 埋め込みカバーをエクスポートする + + + Existing covers + 既存のカバー + + + Do not overwrite + 上書きしない + + + O&verwrite all + すべて上書きする(&v) + + + Overwrite s&maller ones only + + + + Size + サイズ + + + Scale size + サイズを調整する + + + Size: + サイズ: + + + Pixel + ピクセル + + + + AlbumCoverManager + + Abort + 中止 + + + All albums + すべてのアルバム + + + Albums with covers + カバー付きのアルバム + + + Albums without covers + カバーなしのアルバム数 + + + Really cancel? + 本当に取り消しますか? + + + Closing this window will stop searching for album covers. + このウィンドウを閉じるとアルバムカバーの検索を中止します。 + + + Don't stop! + 中止しないでください! + + + All artists + すべてのアーティスト + + + Various artists + さまざまなアーティスト + + + Got %1 covers out of %2 (%3 failed) + %2 個中 %1 個のカバーを取得しました (%3 個失敗しました) + + + %1 transferred + %1 転送済み + + + Export finished + エクスポートが完了しました + + + No covers to export. + エクスポートしたカバーはありません + + + Exported %1 covers out of %2 (%3 skipped) + %2 個中 %1 個のカバーをエクスポートしました (%3 個スキップしました) + + + Could not save cover to file %1. + カバーをファイル %1 に保存できません。 + + + + AlbumCoverSearcher + + Cover Manager + カバーマネージャー + + + Artist + アーティスト + + + Album + アルバム + + + Search + 検索 + + + Covers from %1 + %1 からのカバー + + + Abort + 中止 + + + + AnalyzerContainer + + Framerate + フレームレート + + + Low (%1 fps) + 低 (%1 fps) + + + Medium (%1 fps) + 中 (%1 fps) + + + High (%1 fps) + 高 (%1 fps) + + + Super high (%1 fps) + 最高 (%1 fps) + + + No analyzer + アナライザーなし + + + Block analyzer + ブロック表示 + + + Boom analyzer + ブームアナライザー + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + 外観 + + + Style + スタイル + + + Use system theme icons + システムのテーマアイコンを使用する + + + Settings require restart. + 設定には再起動が必要です + + + Tabbar colors + タブバーの色 + + + &Use the system default color + システムの既定の色を使用する + + + Use custom color + カスタム色 + + + Use gradient background + 背景 + + + Select tabbar color: + タブバーの色を選択: + + + Background image + 背景画像 + + + Default bac&kground image + 既定の背景(&K) + + + &No background image + 背景画像なし(&N) + + + The album cover of the currently playing song + 再生中の曲のアルバムカバー + + + Albu&m cover + アルバムカバー(&m) + + + Custom image: + カスタム画像: + + + Browse... + 参照... + + + Position + 位置 + + + Upper Left + 左上 + + + Upper Right + 右上 + + + Middle + 中央 + + + Bottom Left + 左下 + + + Bottom Right + 右下 + + + Max cover size + 最大カバーサイズ + + + Stretch image to fill playlist + + + + Keep aspect ratio + 縦横比を維持 + + + Do not cut image + 画像をカットしない + + + Blur amount + ぼかし量 + + + 0px + + + + Opacity + 不透明度 + + + 40% + + + + Icon sizes + アイコンサイズ + + + Playlist buttons + プレイリストボタン + + + Tabbar large mode + 大きなタブバーモード + + + Play control buttons + 再生コントロールボタン + + + Configure buttons + 設定ボタン + + + Files, playlists and queue buttons + ファイル、プレイリスト、キューボタン + + + Tabbar small mode + 小さなタブバーモード + + + Playlist playing song color + + + + System highlight color + システムのハイライト色 + + + Custom color + カスタム色 + + + Select playlist playing song color: + プレイリスト再生中の曲の色を選択: + + + Select background image + 背景画像の選択 + + + + BackendSettingsPage + + Backend + バックエンド + + + Audio output + オーディオ出力 + + + Device + デバイス + + + Output + 出力 + + + Engine + エンジン + + + ALSA plugin: + ALSA プラグイン + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + オプション + + + Enable volume control + ボリュームコントロールを有効化 + + + Upmix / downmix to + アップミックス / ダウンミックス + + + channels + チャネル + + + Improve headphone listening of stereo audio records (bs2b) + ステレオ音源をヘッドフォンで聴く場合の改善(bs2b) + + + Enable HTTP/2 for streaming + ストリーミングでHTTP/2を有効にする + + + Use strict SSL mode + 厳密なSSLモードを使用する + + + Buffer + バッファ + + + ms + ミリ秒 + + + Buffer duration + バッファーの長さ + + + High watermark + 最高水準点 + + + Low watermark + 最低水準点 + + + Defaults + デフォルト + + + Audio normalization + オーディオの正規化 + + + No audio normalization + オーディオを正規化しない + + + Replay Gain + 再生ゲイン + + + Use Replay Gain metadata if it is available + 可能なら再生ゲインのメタデータを使用する + + + Replay Gain mode + 再生ゲインモード + + + Radio (equal loudness for all tracks) + ラジオ (すべてのトラックで均一の音量) + + + Album (ideal loudness for all tracks) + アルバム (すべてのトラックで最適な音量) + + + Pre-amp + プリアンプ + + + Apply compression to prevent clipping + クリップ防止のために音量を制限する + + + Fallback-gain + フォールバックゲイン + + + EBU R 128 Loudness Normalization + EBU R 128 ラウドネス正規化 + + + Perform track loudness normalization + 曲をラウドネス正規化する + + + Target Level + ターゲットレベル + + + Fading + フェード + + + Fade out when stopping a track + トラックの停止時にフェードアウトする + + + Cross-fade when changing tracks manually + トラックを手動で変更したときにクロスフェードする + + + Cross-fade when changing tracks automatically + トラックが自動で変更するときにクロスフェードする + + + Except between tracks on the same album or in the same CUE sheet + 同じアルバムもしくはキューシートのトラック同士の場合は除外する + + + Fading duration + フェードの長さ + + + Fade out on pause / fade in on resume + 一時停止/再開時にフェードアウト/インする + + + + BehaviourSettingsPage + + Behavior + 動作 + + + Show system tray icon + システムトレイアイコンを表示 + + + Keep running in the background when the window is closed + ウィンドウを閉じたときバックグラウンドで起動し続ける + + + Show song progress on system tray icon + システムトレイアイコンで曲の進行状況を表示 + + + Show song progress on taskbar + + + + Resume playback on start + 起動時に再生を再開する + + + Show playing widget + 再生ウィジェットを表示 + + + On startup + 起動時 + + + Remember from &last time + 前回起動時と同じ + + + Show the main window + メインウィンドウを表示 + + + Hide the main window + メインウィンドウを隠す + + + Show the main window maximized + メインウィンドウを最大化して表示 + + + Show the main window minimized + メインウィンドウを最小化して表示 + + + Language + 言語 + + + Use the system default + システム既定を使用する + + + You will need to restart Strawberry if you change the language. + 言語を変更するには Strawberry の再起動が必要です。 + + + Using the menu to add a song will... + メニューから曲を追加した場合... + + + Never start playing + 再生を開始しない + + + Play if there is nothing already playing + 再生中の曲がない場合は再生する + + + Always start playing + 常に再生を開始する + + + Pressing "Previous" in player will... + プレイヤーの "前へ" ボタンを押した場合... + + + Jump to previous song right away + すぐに、前の曲にジャンプする + + + Restart song, then jump to previous if pressed again + 曲を再スタートし、もう一度押された場合前の曲へジャンプする + + + Double clicking a song will... + 曲をダブルクリックした場合... + + + Append to the playlist + プレイリストに追加する + + + Replace the playlist + プレイリストを置き換える + + + Open in new playlist + 新しいプレイリストで開く + + + Add to the queue + キューに追加 + + + Double clicking a song in the playlist will... + プレイリスト上の曲をダブルクリックした場合... + + + Change the currently playing song + 再生中の曲を変更する + + + Seeking using a keyboard shortcut or mouse wheel + キーボードショートカットまたはマウスホイールを使ってシークする + + + Time step + 時間刻み + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + CDDA デバイスを準備中にエラーが発生しました + + + Error while setting CDDA device to pause state. + CDDA デバイスを一時停止中にエラーが発生しました + + + Error while querying CDDA tracks. + CDDAトラック取得中にエラーが発生しました + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + 失敗した SQL クエリ: %1 + + + Updating %1 database. + %1 データベースを更新しています。 + + + + CollectionFilterWidget + + Collection Filter + コレクションフィルター + + + Enter search terms here + ここに検索条件を入力してください + + + MenuPopupToolButton + + + + Entire collection + コレクション全体 + + + Added today + 今日追加されたもの + + + Added this week + 今週追加されたもの + + + Added within three months + 3 ヶ月以内に追加されたもの + + + Added this year + 今年追加されたもの + + + Added this month + 今月追加されたもの + + + Save current grouping + 現在の分類を保存する + + + Manage saved groupings + 保存した分類を管理する + + + Show + 表示 + + + Group by + グループ化 + + + Display options + 画面のオプション + + + Group by Album artist/Album + アーティスト/アルバムでアルバムをグループ化 + + + Group by Album artist/Album - Disc + アーティスト/アルバム - ディスクでアルバムをグループ化 + + + Group by Album artist/Year - Album + アーティスト/年 - アルバムでアルバムをグループ化 + + + Group by Album artist/Year - Album - Disc + アーティスト/年 - アルバム - ディスクでアルバムをグループ化 + + + Group by Artist/Album + アーティスト/アルバムでグループ化 + + + Group by Artist/Album - Disc + アーティスト/アルバム - ディスクでグループ化 + + + Group by Artist/Year - Album + アーティスト/年 - アルバムでグループ化 + + + Group by Artist/Year - Album - Disc + アーティスト/年 - アルバム - ディスクでグループ化 + + + Group by Genre/Album artist/Album + ジャンル/アルバム、アーティスト/アルバムでグループ化 + + + Group by Genre/Artist/Album + ジャンル/アーティスト/アルバムでグループ化 + + + Group by Album Artist + アーティストでアルバムをグループ化 + + + Group by Artist + アーティストでグループ化 + + + Group by Album + アルバムでグループ化 + + + Group by Genre/Album + ジャンル/アルバムでグループ化 + + + Advanced grouping... + 高度なグループ化... + + + Grouping Name + 分類名 + + + Grouping name: + 分類名: + + + + CollectionModel + + Various artists + さまざまなアーティスト + + + Loading... + 読み込んでいます... + + + Unknown + 不明 + + + + CollectionSettingsPage + + Collection + ライブラリ + + + These folders will be scanned for music to make up your collection + これらのフォルダーはライブラリを作成するためにスキャンされます + + + Add new folder... + 新しいフォルダーを追加... + + + Remove folder + フォルダーの削除 + + + Automatic updating + 自動更新 + + + Update the collection when Strawberry starts + Strawberry の起動時にライブラリを更新する + + + Monitor the collection for changes + ライブラリの変更を監視する + + + Song fingerprinting and tracking + 曲の特徴を検出して追跡 + + + Mark disappeared songs unavailable + 消えた曲を利用できないとマークする + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + 曲の EBU R 128 分析を実行します (EBU R 128 ラウドネス正規化に必要) + + + Expire unavailable songs after + 利用できない曲の期限が切れるまで + + + days + + + + Preferred album art filenames (comma separated) + 優先するアルバムアートのファイル名 (コンマ区切り) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + アルバム アートの検索時に Strawberry はまずこれらの単語の 1 つを含む画像ファイルを探します。 +一致するものがない場合はディレクトリにある最も大きいイメージを使用します。 + + + Display options + 画面のオプション + + + Automatically open single categories in the collection tree + 下位カテゴリが 1 つしかないときは、ライブラリツリーを自動で開く + + + Show dividers + 区切りを表示する + + + Show album cover art in collection + コレクションでアルバムカバーアートを表示 + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + アルバムカバーpixmapキャッシュ + + + Size + サイズ + + + Enable Disk Cache + ディスクキャッシュ有効化 + + + Disk Cache Size + ディスクキャッシュサイズ + + + Current disk cache in use: + 現在のディスクキャッシュ使用量: + + + Clear Disk Cache + ディスクキャッシュをクリア + + + Song playcounts and ratings + 再生回数と評価 + + + Save playcounts to song tags when possible + 可能な場合は再生回数を曲のタグに保存する + + + Save ratings to song tags when possible + 可能であれば曲のタグに評価を保存する + + + Overwrite database playcount when songs are re-read from disk + 曲がディスクから再読取りされるときにデータベースの再生数を上書きします + + + Overwrite database rating when songs are re-read from disk + 曲がディスクから再読取りされるときにデータベースの評価を上書きします + + + Save playcounts and ratings to files now + 再生回数と評価をファイルに保存する + + + Enable delete files in the right click context menu + 右クリックメニューでの削除を有効化 + + + Add directory... + ディレクトリを追加... + + + Write all playcounts and ratings to files + すべての再生回数と評価をファイルに書き込む + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + コレクション内のすべての曲のファイルに曲の再生回数と評価を書き込んでもよろしいですか? + + + + CollectionView + + Your collection is empty! + ライブラリは空です! + + + Click here to add some music + 音楽を追加するにはここをクリックします + + + Append to current playlist + 現在のプレイリストに追加する + + + Replace current playlist + 現在のプレイリストを置き換える + + + Open in new playlist + 新しいプレイリストで開く + + + Queue track + トラックをキューに追加 + + + Queue to play next + 次に再生する + + + Search for this + + + + Organize files... + ファイルを管理... + + + Copy to device... + デバイスへコピー... + + + Delete from disk... + ディスクから削除... + + + Edit track information... + トラック情報の編集... + + + Edit tracks information... + トラック情報の編集... + + + Show in file browser... + ファイルブラウザーで表示... + + + Rescan song(s) + 曲を再スキャン + + + Show in various artists + さまざまなアーティストに表示 + + + Don't show in various artists + さまざまなアーティストに表示しない + + + There are other songs in this album + このアルバムにはほかの曲があります + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + エラー + + + None of the selected songs were suitable for copying to a device + デバイスへのコピーに適切な曲が選択されていません + + + + CollectionViewContainer + + Form + フォーム + + + + CollectionWatcher + + Updating collection + ライブラリの更新中 + + + Updating %1 + %1 の更新中 + + + + Console + + Console + コンソール + + + Run + 実行 + + + + ContextSettingsPage + + Context + コンテキスト + + + Custom text settings + カスタムテキスト設定 + + + MenuPopupToolButton + + + + Title + タイトル + + + Summary + 要約 + + + Enable Items + アイテム有効化 + + + Album + アルバム + + + Technical Data + 技術データ + + + Song Lyrics + 歌詞 + + + Automatically search for album cover + アルバムカバーの自動検索 + + + Automatically search for song lyrics + 歌詞の自動検索 + + + Font for headline + ヘッドラインのフォント + + + Font + フォント + + + Font size + フォントサイズ + + + pt + + + + Preview + プレビュー + + + Font for data and lyrics + データと歌詞のフォント + + + Add song artist tag + 曲にアーティストタグを追加 + + + Add song album tag + 曲にアルバムタグを追加 + + + Add song title tag + 曲のタイトルタグを追加 + + + Add song albumartist tag + 曲にアルバムアーティストタグを追加 + + + Add song year tag + 曲の年タグを追加 + + + Add song composer tag + 曲に作曲者タグを追加 + + + Add song performer tag + 曲の出演者タグを追加 + + + Add song grouping tag + 曲の分類タグを追加 + + + Add song disc tag + 曲にディスクタグを追加 + + + Add song track tag + 曲のトラックタグを追加 + + + Add song genre tag + 曲にジャンルタグを追加 + + + Add song length tag + 曲に曲の長さのタグを追加 + + + Add song play count + 曲の再生回数を追加 + + + Add song skip count + 曲のスキップ回数を追加 + + + Add a new line if supported by the notification type + 改行を追加 (通知形式が対応している場合) + + + %filename% + + + + Add song filename + 曲のファイル名を追加 + + + %url% + + + + Add song URL + 曲の URL を追加 + + + %rating% + + + + Add song rating + 曲の評価を追加 + + + %originalyear% + + + + Add song original year tag + 元の年タグを追加 + + + + ContextView + + Filetype + ファイルタイプ + + + Length + 長さ + + + Samplerate + サンプルレート + + + Bit depth + ビット深度 + + + Bitrate + ビットレート + + + EBU R 128 Integrated Loudness + EBU R 128 統合ラウドネス + + + EBU R 128 Loudness Range + EBU R 128 ラウドネスレンジ + + + Show album cover + アルバムカバーを表示 + + + Show song technical data + 曲のテクニカルデータを表示 + + + Show song lyrics + 歌詞を表示 + + + Automatically search for song lyrics + 歌詞の自動検索 + + + No song playing + 曲が再生されていません + + + %1 song + %1 曲 + + + %1 songs + %1 曲 + + + %1 artist + %1 アーティスト + + + %1 artists + %1 アーティスト + + + %1 album + %1 枚のアルバム + + + %1 albums + %1 枚のアルバム + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + URL からカバーの読み込み + + + Enter a URL to download a cover from the Internet: + インターネットからカバーアートをダウンロードする URL を入力してください: + + + Fetching cover error + カバーの取得エラー + + + The site you requested does not exist! + 指定されたサイトは存在しません! + + + The site you requested is not an image! + 指定されたサイトは画像ではありません! + + + + CoverManager + + Cover Manager + カバーマネージャー + + + Enter search terms here + ここに検索条件を入力してください + + + MenuPopupToolButton + + + + View + 表示 + + + Total albums: + 全アルバム数: + + + Without cover: + カバーなし: + + + 0 + + + + Fetch Missing Covers + 足りないカバーの取得 + + + Export Covers + カバーをエクスポート + + + Fetch automatically + 自動的に取得する + + + Load + 読み込み + + + Add to playlist + プレイリストに追加 + + + + CoverSearchStatisticsDialog + + Fetch completed + 取得完了 + + + Got %1 covers out of %2 (%3 failed) + %2 個中 %1 個のカバーを取得しました (%3 個失敗しました) + + + Covers from %1 + %1 からのカバー + + + Total network requests made + 合計ネットワーク要求回数 + + + Average image size + 平均画像サイズ + + + Total bytes transferred + 合計転送バイト数 + + + + CoversSettingsPage + + Covers + カバー + + + Cover providers + カバー提供者 + + + Choose the providers you want to use when searching for covers. + カバーの検索に利用するプロバイダーを選択します。 + + + Move up + 上へ移動 + + + Move down + 下へ移動 + + + Authentication + 認証 + + + Login + ログイン + + + Album cover types + アルバムカバータイプ + + + Saving album covers + アルバムカバーを保存 + + + Save album covers in album directory + アルバムカバーをアルバムディレクトリに保存 + + + Save album covers in cache directory + アルバムカバーをキャッシュディレクトリに保存 + + + Save album covers as embedded cover + アルバムカバーを埋め込みカバーとして保存 + + + Filename: + ファイル名: + + + Pattern + パターン + + + Random + ランダム + + + Overwrite existing file + 既存ファイルを上書きする + + + Lowercase filename + ファイル名を小文字にする + + + Replace spaces with dashes + スペースをダッシュ​​に置き換える + + + Use Tidal settings to authenticate. + Tidal 設定を使用して認証します。 + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + %1 には認証が必要です。 + + + %1 does not need authentication. + %1 には認証は不要です。 + + + No provider selected. + プロバイダーが選択されていません + + + Authentication failed + 認証に失敗しました + + + Manually unset (%1) + 手動で設定を解除 (%1) + + + Set through album cover search (%1) + アルバムカバー検索で設定 (%1) + + + Automatically picked up from album directory (%1) + アルバムのディレクトリ (%1) から自動的に取得 + + + Embedded album cover art (%1) + 埋め込まれたアルバムカバーアート (%1) + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + 失敗した SQL クエリ: %1 + + + Integrity check + 整合性の検査 + + + Database corruption detected. + データベースの不整合が検出されました。 + + + Backing up database + データベースをバックアップ中 + + + + DeleteConfirmationDialog + + Delete files + ファイルの削除 + + + The following files will be deleted from disk: + これらのファイルがディスクから削除されます: + + + Are you sure you want to continue? + 本当に続行しますか? + + + + DeleteFiles + + Deleting files + ファイルの削除中 + + + + DeviceItemDelegate + + Updating %1%... + 更新しています %1%... + + + Not connected + 接続されていません + + + Not mounted - double click to mount + マウントされていません - マウントするにはダブルクリックします + + + Double click to open + ダブルクリックで開く + + + %1 song%2 + %1 曲 + + + + DeviceManager + + Connect device + デバイスの接続 + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + このデバイスに初めて接続しました。音楽ファイルを検索するためにデバイスをスキャンします - これには時間がかかる可能性があります。 + + + This device will not work properly + このデバイスは適切に動作しません + + + This is an MTP device, but you compiled Strawberry without libmtp support. + これは MTP デバイスですが、Strawberry は libmtp サポートなしでコンパイルされています。 + + + If you continue, this device will work slowly and songs copied to it may not work. + 続行すると、このデバイスは低速で動作しコピーされた曲は動作しなくなる可能性があります。 + + + This is an iPod, but you compiled Strawberry without libgpod support. + これは iPod ですが、Strawberry は libgpod サポートなしでコンパイルされています。 + + + This type of device is not supported: %1 + この種類のデバイスはサポートされていません: %1 + + + + DeviceProperties + + Device Properties + デバイスのプロパティ + + + Information + 情報 + + + Name + 名前 + + + Icon + アイコン + + + Hardware information + ハードウェアの情報 + + + Hardware information is only available while the device is connected. + ハードウェアの情報はデバイス接続中のみ利用できます。 + + + File formats + ファイル形式 + + + Supported formats + サポートされている形式 + + + This device supports the following file formats: + このデバイスは次のファイル形式をサポートしています: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry はこのデバイスへコピーする際、このデバイスで再生可能な形式に自動で変換できます。 + + + Do not convert any music + すべてのミュージックを変換しない + + + Convert any music that the device can't play + デバイスが再生できないすべての曲を変換する + + + Convert all music + すべての曲を変換する + + + Preferred format + 優先する形式 + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Strawberry がこのデバイスのサポートするファイル形式を認識する前にデバイスが接続されて開かれている必要があります。 + + + Open device + デバイスを開く + + + Querying device... + デバイスを照会しています... + + + Model + モデル + + + Manufacturer + 製造元 + + + + DeviceView + + Safely remove device + デバイスを安全に取り外す + + + Forget device + デバイスを忘れる + + + Device properties... + デバイスのプロパティ... + + + Append to current playlist + 現在のプレイリストに追加する + + + Replace current playlist + 現在のプレイリストを置き換える + + + Open in new playlist + 新しいプレイリストで開く + + + Copy to collection... + ライブラリへコピー... + + + Delete from device... + デバイスから削除... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + デバイスを忘れるとこの一覧から削除して Strawberry は次回接続時に再びすべての曲を再スキャンします。 + + + Delete files + ファイルの削除 + + + These files will be deleted from the device, are you sure you want to continue? + これらのファイルはデバイスから削除されます。続行してもよろしいですか? + + + + DeviceViewContainer + + Form + フォーム + + + + DynamicPlaylistControls + + Dynamic mode is on + ダイナミックモードがオン + + + New tracks will be added automatically. + 新しいトラックは自動的に追加されます + + + Expand + 展開 + + + Repopulate + 再装着 + + + Turn off + オフにする + + + + EditTagDialog + + Edit track information + トラック情報の編集 + + + Summary + 要約 + + + Date created + 作成日時 + + + Art Automatic + 自動アート + + + Date modified + 更新日時 + + + Art Embedded + アート埋め込み + + + Last played + A playlist's tag. + + + + File type + ファイルの種類 + + + Length + 長さ + + + Play count + 再生回数 + + + Bit depth + ビット深度 + + + EBU R 128 integrated loudness + EBU R 128 統合ラウドネス + + + Bit rate + ビットレート + + + Skip count + スキップ回数 + + + Sample rate + サンプルレート + + + Path + パス + + + Filename + ファイル名 + + + Art Unset + アート解除 + + + File size + ファイルサイズ + + + Art Manual + 手動アート + + + EBU R 128 loudness range + EBU R 128 ラウドネスレンジ + + + Reset play counts + 再生回数のリセット + + + Tags + タグ + + + MenuPopupToolButton + + + + Change art + アートの変更 + + + Embedded cover + 埋め込みカバー + + + Disc + ディスク + + + Grouping + 分類 + + + Album artist + アルバムアーティスト + + + Album + アルバム + + + Year + + + + Title + タイトル + + + Artist + アーティスト + + + Composer + 作曲者 + + + Complete tags automatically + タグの自動補完 + + + Genre + ジャンル + + + Comment + コメント + + + Performer + 出演者 + + + Compilation + コンピレーション + + + Track + トラック + + + Rating + 評価 + + + Lyrics + 歌詞 + + + Complete lyrics automatically + + + + Previous + 前へ + + + Next + 次へ + + + Saving tracks + トラックの保存中 + + + Loading tracks + トラックの読み込み中 + + + %1 songs selected. + %1 曲が選択されました + + + kbps + + + + Unknown + 不明 + + + Yes + はい + + + No + いいえ + + + None + なし + + + Cover is unset. + カバーはセットされていません。 + + + Cover from embedded image. + 埋め込み画像からのカバー。 + + + Cover from %1 + %1 のカバー + + + Cover art not set + カバーアートが設定されていません + + + Album cover editing is only available for collection songs. + アルバムカバーの編集はコレクションだけで可能です。 + + + Cover changed: Will be cleared when saved. + カバーが変更されました: 保存するとクリアされます。 + + + Cover changed: Will be unset when saved. + カバーが変更されました: 保存すると設定が解除されます。 + + + Cover changed: Will be deleted when saved. + カバーが変更されました: 保存時に削除されます。 + + + Cover changed: Will set new when saved. + カバーが変更されました: 保存時に新しい設定になります。 + + + Never + なし + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + この曲の再生統計をリセットしてもよろしいですか? + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + イコライザー + + + Preset: + プリセット: + + + Save preset + プリセットの保存 + + + Delete preset + プリセットの削除 + + + Enable equalizer + イコライザーを有効にする + + + Enable stereo balancer + ステレオバランサーを有効化 + + + Left + + + + Balance + バランス + + + Right + + + + Pre-amp + プリアンプ + + + Custom + カスタム + + + Classical + クラシック + + + Club + クラブ + + + Dance + ダンス + + + Full Bass + + + + Full Treble + + + + Full Bass + Treble + + + + Laptop/Headphones + ノートパソコン・ヘッドフォン + + + Large Hall + 広間 + + + Live + ライブ + + + Party + パーティー + + + Pop + + + + Reggae + レゲエ + + + Rock + ロック + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + テクノ + + + Zero + + + + Name + 名前 + + + Are you sure you want to delete the "%1" preset? + プリセット「%1」を削除してもよろしいですか? + + + + EqualizerSlider + + Equalizer + イコライザー + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Strawberry のエラー + + + + FancyTabWidget + + Large sidebar + 大きいサイドバー + + + Icons sidebar + + + + Small sidebar + 小さいサイドバー + + + Plain sidebar + プレーンサイドバー + + + Tabs on top + タブを上に配置 + + + Icons on top + アイコンを上に配置 + + + + FileTypeItemDelegate + + Unknown + 不明 + + + + FileView + + Form + フォーム + + + + FileViewList + + Append to current playlist + 現在のプレイリストに追加する + + + Replace current playlist + 現在のプレイリストを置き換える + + + Open in new playlist + 新しいプレイリストで開く + + + Copy to collection... + ライブラリへコピー... + + + Move to collection... + ライブラリへ移動... + + + Copy to device... + デバイスへコピー... + + + Delete from disk... + ディスクから削除... + + + Edit track information... + トラック情報の編集... + + + Show in file browser... + ファイルブラウザーで表示... + + + + FreeSpaceBar + + Available + 空き + + + New songs + 新しい曲 + + + Exceeded by + + + + Used + 使用中 + + + + GPodDevice + + Could not copy %1 to %2: %3 + %1 を %2 にコピーできませんでした: %3 + + + Writing database failed: %1 + データベースの書き込みに失敗: %1 + + + Writing database failed. + データベースの書き込みに失敗しました。 + + + + GPodLoader + + Loading iPod database + iPod データベースの読み込み中 + + + An error occurred loading the iTunes database + iTunes のデータベースを読み込み中にエラーが発生しました + + + + GeniusLyricsProvider + + Genius Authentication + Genius 認証 + + + Please open this URL in your browser + このURLをブラウザで開いてください + + + Redirect missing token code! + 不足しているトークンコードをリダイレクトしてください! + + + Received invalid reply from web browser. + Webブラウザから無効な返信を受け取りました。 + + + Redirect from Genius is missing query items code or state. + Genius からのリダイレクトにクエリアイテムのコードまたは状態がありません。 + + + + GioLister + + Mount point + マウントポイント + + + Device + デバイス + + + URI + + + + + GlobalShortcutGrabber + + Press a key + キーを押してください + + + Press a key combination to use for %1... + %1 に使用するキーの組み合わせを押してください... + + + + GlobalShortcutsManager + + Play + 再生 + + + Pause + 一時停止 + + + Play/Pause + 再生/一時停止 + + + Stop + 停止 + + + Stop playing after current track + 現在のトラックの後で再生を停止 + + + Next track + 次の曲 + + + Previous track + 前のトラック + + + Restart or previous track + + + + Increase volume + 音量を上げる + + + Decrease volume + 音量を下げる + + + Mute + ミュート + + + Seek forward + 順方向にシークする + + + Seek backward + 逆方向にシークする + + + Show/Hide + 表示/隠す + + + Show OSD + OSDの表示 + + + Toggle Pretty OSD + + + + Change shuffle mode + シャッフルモードの変更 + + + Change repeat mode + リピートモードの変更 + + + Enable/disable scrobbling + + + + Love + + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + グローバルショートカット + + + Use Gnome (GSD) shortcuts when available + 可能なら Gnome (GSD) のショートカットを使用する + + + Open... + 開く... + + + Use MATE shortcuts when available + 可能なら MATE のショートカットを使用する + + + Use KDE (KGlobalAccel) shortcuts when available + 可能なら KDE (KGlobalAccel) のショートカットを使用する + + + Use X11 shortcuts when available + 可能なら X11 のショートカットを使用する + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + + + + Action + Category label + アクション + + + Shortcut + ショートカット + + + Shortcut for %1 + %1 のショートカット + + + &None + なし(&N) + + + &Default + デフォルト(&D) + + + &Custom + カスタム(&C) + + + Change shortcut... + ショートカットの変更... + + + The "%1" command could not be started. + コマンド「%1」を開始できませんでした。 + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + %1 のショートカットは通常 MPRIS と KGlobalAccel で利用されます。 + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + %1 のショートカットは通常 Gnome Settings Daemon で利用されるため、gnome-settings-daemon で構成する必要があります。 + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + %1 のショートカットは通常 Gnome Settings Daemon で利用されるため、cinnamon-settings-daemon で構成する必要があります。 + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + %1 のショートカットは通常 Mate Settings Daemon で利用されるため、そちらで構成する必要があります。 + + + + GroupByDialog + + Collection advanced grouping + ライブラリの高度なグループ化 + + + You can change the way the songs in the collection are organized. + コレクション内の曲の編成方法を変更できます。 + + + Group Collection by... + ライブラリのグループ化... + + + First level + 第 1 階層 + + + None + なし + + + Artist + アーティスト + + + Album artist + アルバムアーティスト + + + Album + アルバム + + + Album - Disc + アルバム - ディスク + + + Disc + ディスク + + + Format + 形式 + + + Genre + ジャンル + + + Year + + + + Year - Album + 年 - アルバム + + + Year - Album - Disc + 年 - アルバム - ディスク + + + Original year + 元の年 + + + Original year - Album + 元の年 - アルバム + + + Composer + 作曲者 + + + Performer + 出演者 + + + Grouping + 分類 + + + File type + ファイルの種類 + + + Sample rate + サンプルレート + + + Bit depth + ビット深度 + + + Bitrate + ビットレート + + + Second level + 第 2 階層 + + + Third level + 第 3 階層 + + + Separate albums by grouping tag + グループタグでアルバムを分ける + + + + GstEngine + + Buffering + バッファ中 + + + + LastFMImport + + Missing username, please login to last.fm first! + ユーザー名がありません。最初に last.fm にログインしてください! + + + + LastFMImportDialog + + Import data from last.fm + last.fm からデータをインポート + + + Choose data to import from last.fm + last.fm からインポートするデータを選択 + + + Last played + + + + Play counts + 再生回数 + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + 警告: last.fm から受信した再生回数と最後に再生された曲は、一致した曲の同じデータを完全に置き換えます。再生回数は同じアルバムのアーティストと曲名に基づいてデータを置き換えます! 開始する前にデータベースをバックアップしてください。 + + + Go! + + + + Close + 閉じる + + + Cancel + キャンセル + + + Receiving initial data from last.fm... + last.fm から初期データを受信中... + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + 最近再生した %1 曲を受信中です。 + + + Receiving playcounts for %1 songs. + %1 曲の再生回数を受信中。 + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + 最近再生した %1 曲を受信しました + + + Playcounts for %1 songs received. + %1 曲の再生回数を受信しました。 + + + + LastPlayedItemDelegate + + Never + なし + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz 認証 + + + Please open this URL in your browser + このURLをブラウザで開いてください + + + Redirect missing token code! + 不足しているトークンコードをリダイレクトしてください! + + + Received invalid reply from web browser. + Webブラウザから無効な返信を受け取りました。 + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + フォーム + + + You are not signed in. + サインインしていません。 + + + Sign out + サインアウト + + + Signing in... + サインインしています... + + + You are signed in. + サインインしています。 + + + You are signed in as %1. + %1 でサインインしています。 + + + Expires on %1 + 期限: %1 + + + + LyricsSettingsPage + + Lyrics + 歌詞 + + + Lyrics providers + 歌詞提供元 + + + Choose the providers you want to use when searching for lyrics. + 歌詞の検索に利用するプロバイダーを選択します。 + + + Move up + 上へ移動 + + + Move down + 下へ移動 + + + Authentication + 認証 + + + Login + ログイン + + + No provider selected. + プロバイダーが選択されていません + + + Authentication failed + 認証に失敗しました + + + + MainWindow + + Strawberry Music Player + + + + MenuPopupToolButton + + + + &Music + 音楽(&M) + + + P&laylist + プレイリスト(&l) + + + Help + ヘルプ + + + &Tools + ツール(&T) + + + Previous track + 前のトラック + + + F5 + + + + &Play + 再生 + + + F6 + + + + &Stop + 停止 + + + F7 + + + + &Next track + 次のトラック(&N) + + + F8 + + + + &Quit + 終了(&Q) + + + Ctrl+Q + + + + Stop after this track + このトラック後に停止 + + + Ctrl+Alt+V + + + + Love + + + + &Clear playlist + プレイリストをクリア(&C) + + + Clear playlist + プレイリストをクリア + + + Ctrl+K + + + + Edit track information... + トラック情報の編集... + + + Ctrl+E + + + + Renumber tracks in this order... + この順序でトラック番号を振る... + + + Set value for all selected tracks... + すべての選択されたトラックの音量を設定しました... + + + Edit tag... + タグの編集... + + + &Settings... + 設定 + + + Ctrl+P + + + + &About Strawberry + Strawberryについて(&A) + + + F1 + + + + S&huffle playlist + プレイリストをシャッフル(&s) + + + Ctrl+H + + + + &Add file... + ファイルを追加... + + + Ctrl+Shift+A + + + + &Open file... + ファイルを開く... + + + Open audio &CD... + 音楽CDを開く(&C) + + + &Cover Manager + カバーマネージャー(&C) + + + C&onsole + コンソール + + + &Shuffle mode + シャッフルモード(&S) + + + &Repeat mode + リピートモード(&R) + + + Remove from playlist + プレイリストから削除 + + + &Equalizer + イコライザー(&E) + + + &Transcode Music + 音楽を変換 + + + Add &folder... + フォルダーを追加(&F)... + + + &Jump to the currently playing track + 再生中のトラックへジャンプ(&J) + + + Ctrl+J + + + + &New playlist + 新しいプレイリスト(&N) + + + Ctrl+N + + + + Save &playlist... + プレイリストを保存(&s) + + + Ctrl+S + + + + &Load playlist... + プレイリストの読み込み(&L) + + + Ctrl+Shift+O + + + + &Save all playlists... + すべてのプレイリストを保存... + + + Go to next playlist tab + 次のプレイリストタブへ + + + Go to previous playlist tab + 前のプレイリストタブへ + + + &Update changed collection folders + 変更されたコレクションフォルダーの更新(&U) + + + About &Qt + QT について(&Q) + + + &Mute + ミュート(&M) + + + Ctrl+M + + + + &Do a full collection rescan + すべてのコレクションを再スキャン(&D) + + + Stop collection scan + + + + Complete tags automatically... + タグを自動補完... + + + Ctrl+T + + + + Toggle scrobbling + scrobbling の切り替え + + + Remove &duplicates from playlist + プレイリストから重複を削除する(&d) + + + Remove &unavailable tracks from playlist + プレイリストから利用できないトラックを削除する(&u) + + + Add file(s) to transcoder + ファイルをトランスコーダーに追加 + + + Add file to transcoder + ファイルをトランスコーダーに追加 + + + Add stream... + ストリームを追加... + + + Show sidebar + サイドバーを表示 + + + Import data from last.fm... + last.fm からデータをインポート中... + + + All Files (*) + すべてのファイル (*) + + + Context + コンテキスト + + + Collection + ライブラリ + + + Queue + キュー + + + Playlists + プレイリスト + + + Smart playlists + スマートプレイリスト + + + Files + ファイル + + + Radios + + + + Devices + デバイス + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + すべての曲を表示する + + + Show only duplicates + 重複するものだけ表示 + + + Show only untagged + タグのないものだけ表示 + + + Configure collection... + ライブラリの設定... + + + Play + 再生 + + + Toggle queue status + キュー状態の切り替え + + + Queue selected tracks to play next + 選択したトラックを次に再生する + + + Toggle skip status + + + + Rescan song(s)... + 曲を再スキャン中... + + + Copy URL(s)... + URLをコピー + + + Show in collection... + ライブラリーに表示... + + + Show in file browser... + ファイルブラウザーで表示... + + + Organize files... + ファイルを管理... + + + Copy to collection... + ライブラリへコピー... + + + Move to collection... + ライブラリへ移動... + + + Copy to device... + デバイスへコピー... + + + Delete from disk... + ディスクから削除... + + + Check for updates... + 更新のチェック... + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + あなたは、Rosetta で Strawberry を実行しています。 Rosetta での Strawberry の実行はサポートされておらず、問題があることが知られています。正しい CPU アーキテクチャの Strawberry を %1 からダウンロードする必要があります。 + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry は無料のオープンソース ソフトウェアです。Strawberry を気に入ったらぜひこのプロジェクトへのご支援をご検討ください。スポンサーシップの詳細については、私たちの Web サイト %1 を参照してください。 + + + Pause + 一時停止 + + + Dequeue track + トラックをキューから削除 + + + Dequeue selected tracks + 選択されたトラックをキューから削除する + + + Queue track + トラックをキューに追加 + + + Queue selected tracks + 選択されたトラックをキューに追加 + + + Queue to play next + 次に再生する + + + Unskip track + トラックをスキップしない + + + Unskip selected tracks + 選択したトラックをスキップしない + + + Skip track + トラックをスキップする + + + Skip selected tracks + 選択したトラックをスキップする + + + Set %1 to "%2"... + %1 を「%2」に設定します... + + + Edit tag "%1"... + タグ「%1」を編集... + + + Add to another playlist + 別のプレイリストに追加 + + + New playlist + 新しいプレイリスト + + + Add file + ファイルを追加 + + + Music + ミュージック + + + Add folder + フォルダーを追加 + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + プレイリストに %1 曲があり、大きすぎて元に戻せません。プレイリストをクリアしてもよろしいですか? + + + Error + エラー + + + None of the selected songs were suitable for copying to a device + デバイスへのコピーに適切な曲が選択されていません + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + 更新したこのバージョンの Strawberry は、次の新機能によりライブラリ全体の再スキャンが必要です。 + + + Would you like to run a full rescan right now? + 全体の再スキャンを今すぐ実行しますか? + + + Collection rescan notice + ライブラリー再スキャン通知 + + + + MessageDialog + + Message Dialog + メッセージダイアログ + + + Do not show this message again. + このメッセージを再度表示しない + + + + MimeData + + Playlist + プレイリスト + + + + MoodbarProxyStyle + + Show moodbar + ムードバーを表示 + + + Moodbar style + ムードバーのスタイル + + + + MoodbarSettingsPage + + Moodbar + ムードバー + + + Show a moodbar in the track progress bar + プログレスバー内にムードバーを表示 + + + Moodbar style + ムードバーのスタイル + + + Save the .mood files directly in the songs folders + .mood ファイルを曲フォルダーに直接保存 + + + Enabled + 有効 + + + + MtpConnection + + Invalid MTP device: %1 + 無効な MTP デバイス: %1 + + + Could not open MTP device. + MTP デバイスを開けませんでした。 + + + MTP error: %1 + MTP エラー: %1 + + + MTP device not found. + MTP デバイスが見つかりません。 + + + + MtpLoader + + Loading MTP device + MTP デバイスの読み込み中 + + + Error connecting MTP device %1 + MTP デバイス %1 の接続エラー + + + Error connecting MTP device %1: %2 + MTP デバイス %1 の接続エラー: %2 + + + + NetworkProxySettingsPage + + Network Proxy + ネットワークプロキシ + + + &Use the system proxy settings + システムのプロキシー設定を使用する + + + Direct internet connection + インターネットに直接接続する + + + &Manual proxy configuration + プロキシの手動構成(&M) + + + HTTP proxy + HTTP プロキシ + + + SOCKS proxy + SOCKS プロキシ + + + Port + ポート + + + Use authentication + 認証を使用する + + + Username + ユーザー名 + + + Password + パスワード + + + Use proxy settings for streaming + ストリーミングプロキシ設定 + + + + NotificationsSettingsPage + + Notifications + 通知 + + + Strawberry can show a message when the track changes. + Strawberry はトラックの変更時にメッセージを表示できます。 + + + Notification type + 通知の種類 + + + Disabled + Refers to a disabled notification type in Notification settings. + 無効 + + + Show a &native desktop notification + ネイティブのデスクトップ通知を表示 + + + Show a pretty OSD + Pretty OSD を表示する + + + Show a popup fro&m the system tray + システムトレイからポップアップを表示する(&m) + + + General settings + 全般設定 + + + Popup duration + ポップアップの長さ + + + seconds + + + + Disable duration + 長さを無効にする + + + Show a notification when I change the volume + 音量の変更時に通知を表示する + + + Show a notification when I change the repeat/shuffle mode + リピート・シャッフルモードの変更時に通知を表示する + + + Show a notification when I pause playback + ポーズした際に通知を表示する + + + Show a notification when I resume playback + 再生再開時に通知を表示する + + + Include album art in the notification + 通知にアルバムアートを含める + + + Custom message settings + カスタムメッセージの設定 + + + Use a custom message for notifications + 通知にカスタムメッセージを使用する + + + Preview + プレビュー + + + MenuPopupToolButton + + + + Summary + 要約 + + + Body + 本文 + + + Pretty OSD options + Pretty OSD のオプション + + + Background color + 背景色 + + + Text options + 文字のオプション + + + Choose font... + フォントの選択... + + + Choose color... + 色の選択... + + + Background opacity + 背景の不透明度 + + + Basic Blue + 標準のブルー + + + Strawberry Red + + + + Custom... + カスタム... + + + Enable fading + フェーディングを有効にする + + + Add song artist tag + 曲にアーティストタグを追加 + + + Add song album tag + 曲にアルバムタグを追加 + + + Add song title tag + 曲のタイトルタグを追加 + + + Add song albumartist tag + 曲にアルバムアーティストタグを追加 + + + Add song year tag + 曲の年タグを追加 + + + Add song composer tag + 曲に作曲者タグを追加 + + + Add song performer tag + 曲の出演者タグを追加 + + + Add song grouping tag + 曲の分類タグを追加 + + + Add song disc tag + 曲にディスクタグを追加 + + + Add song track tag + 曲のトラックタグを追加 + + + Add song genre tag + 曲にジャンルタグを追加 + + + Add song length tag + 曲に曲の長さのタグを追加 + + + Add song play count + 曲の再生回数を追加 + + + Add song skip count + 曲のスキップ回数を追加 + + + Add song rating + 曲の評価を追加 + + + Add a new line if supported by the notification type + 改行を追加 (通知形式が対応している場合) + + + %filename% + + + + Add song filename + 曲のファイル名を追加 + + + %url% + + + + Add song URL + 曲の URL を追加 + + + %originalyear% + + + + Add song original year tag + 元の年タグを追加 + + + OSD Preview + OSD のプレビュー + + + Drag to reposition + 位置を変更するにはドラッグします + + + + OSDBase + + disc %1 + ディスク %1 + + + track %1 + トラック %1 + + + Paused + 一時停止中 + + + Stopped + 停止しました + + + Stop playing after track: %1 + このトラック後に停止: %1 + + + On + オン + + + Off + オフ + + + Playlist finished + プレイリストが完了しました + + + Volume %1% + 音量 %1% + + + Don't shuffle + シャッフルしない + + + Shuffle all + すべてシャッフル + + + Shuffle tracks in this album + このアルバムのトラックをシャッフル + + + Shuffle albums + アルバムをシャッフル + + + Don't repeat + リピートしない + + + Repeat track + トラックをリピート + + + Repeat album + アルバムをリピート + + + Repeat playlist + プレイリストをリピート + + + Stop after every track + 各トラック後に停止 + + + Intro tracks + イントロ再生 + + + + Organize + + Organizing files + ファイルを管理中 + + + + OrganizeDialog + + Organize Files + ファイルを管理 + + + Destination + フォルダー + + + After copying... + コピー後... + + + Keep the original files + 元のファイルを保持する + + + Delete the original files + 元のファイルを削除する + + + Naming options + 名前のオプション + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>トークンは % で始まります (例: %artist %album %title)。 </p> + +<p>トークンを含むテキストの一部を「{ }」で囲むと、トークンが空の場合、{ } で選択した部分が非表示になります。</p> + + + Insert... + 挿入... + + + Remove problematic characters from filenames + ファイル名から問題のある文字を削除する + + + Restrict to characters allowed on FAT filesystems + FATファイルシステムで許可されている文字に制限 + + + Restrict characters to ASCII + 文字をASCIIに制限 + + + Allow extended ASCII characters + 拡張ASCII文字の許可 + + + Replace spaces with underscores + スペースをアンダースコアに置き換える + + + Overwrite existing files + 既存のファイルを上書きする + + + Copy album cover artwork + アルバムのカバーアートワークをコピー + + + Preview + プレビュー + + + Loading... + 読み込んでいます... + + + Safely remove the device after copying + コピー後にデバイスを安全に取り外す + + + Title + タイトル + + + Album + アルバム + + + Artist + アーティスト + + + Artist's initial + アーティストの頭文字 + + + Album artist + アルバムアーティスト + + + Composer + 作曲者 + + + Performer + 出演者 + + + Grouping + 分類 + + + Track + トラック + + + Disc + ディスク + + + Year + + + + Original year + 元の年 + + + Genre + ジャンル + + + Comment + コメント + + + Length + 長さ + + + Bitrate + Refers to bitrate in file organize dialog. + ビットレート + + + Sample rate + サンプルレート + + + Bit depth + ビット深度 + + + File extension + ファイル拡張子 + + + + OrganizeErrorDialog + + Error copying songs + 曲のコピーエラー + + + There were problems copying some songs. The following files could not be copied: + 曲のコピーに問題がありました。次のファイルはコピーできませんでした: + + + Error deleting songs + 曲の削除エラー + + + There were problems deleting some songs. The following files could not be deleted: + 曲の削除に問題がありました。次のファイルは削除できませんでした: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + 小さいアルバムカバー + + + Large album cover + 大きいアルバムカバー + + + Fit cover to width + カバーの大きさを幅に合わせる + + + Show above status bar + ステータスバーの上に表示 + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + タイトル + + + Artist + アーティスト + + + Album + アルバム + + + Track + トラック + + + Disc + ディスク + + + Length + 長さ + + + Year + + + + Original Year + 発表年 + + + Genre + ジャンル + + + Album Artist + アルバムアーティスト + + + Composer + 作曲者 + + + Performer + 出演者 + + + Grouping + 分類 + + + Play Count + 再生回数 + + + Skip Count + + + + Last Played + 最終再生時刻 + + + Sample Rate + サンプリングレート + + + Bit Depth + ビット深度 + + + Bitrate + ビットレート + + + File Name + ファイル名 + + + File Name (without path) + ファイル名 (パスなし) + + + File Size + ファイルサイズ + + + File Type + ファイルタイプ + + + Date Modified + 更新日 + + + Date Created + 作成日 + + + Comment + コメント + + + Source + ソース + + + Mood + ムード + + + Rating + 評価 + + + CUE + キュー + + + Integrated Loudness + 統合ラウドネス + + + Loudness Range + ラウドネスレンジ + + + + PlaylistContainer + + Form + フォーム + + + Undo + + + + Redo + + + + Playlist + プレイリスト + + + Load playlist + プレイリストの読み込み + + + No matches found. Clear the search box to show the whole playlist again. + 見つかりません。再びプレイリスト全体を表示するには検索ボックスをクリアします。 + + + + PlaylistDelegateBase + + stop + 停止 + + + + PlaylistGeneratorInserter + + Loading smart playlist + スマートプレイリストをロード中 + + + + PlaylistHeader + + &Hide... + 非表示にする(&H)... + + + &Stretch columns to fit window + 列の幅をウィンドウに合わせる(&S) + + + &Reset columns to default + 列を既定値にリセット + + + &Lock rating + 評価を固定 + + + &Align text + テキストの配置(&A) + + + &Left + 左揃え(&L) + + + &Center + 中央揃え(&C) + + + &Right + 右揃え(&R) + + + &Hide %1 + %1 を非表示にする(&H) + + + + PlaylistListContainer + + Form + フォーム + + + New folder + 新しいフォルダー + + + Delete + 削除 + + + Save playlist + Save playlist menu action. + プレイリストを保存する + + + Copy to device... + デバイスへコピー... + + + Enter the name of the folder + フォルダ名を入力してください + + + Playlist + プレイリスト + + + Copy to device + デバイスへコピー + + + Playlist must be open first. + プレイリストを最初に開く必要があります。 + + + Remove playlists + プレイリストを削除する + + + You are about to remove %1 playlists from your favorites, are you sure? + プレイリスト「%1」をお気に入りから削除します。よろしいですか? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + プレイリスト名の横にある星アイコンをクリックするとプレイリストをお気に入りにできます。 + + + Favorited playlists will be saved here + お気に入りにしたプレイリストはここに保存されます + + + + PlaylistManager + + Playlist + プレイリスト + + + Couldn't create playlist + プレイリストを作成できません + + + Save playlist + Title of the playlist save dialog. + プレイリストを保存する + + + Unknown playlist extension + 不明なプレイリスト拡張子 + + + Unknown file extension for playlist. + プレイリストの不明なファイル拡張子。 + + + %1 selected of + %1 個選択中 + + + %n track(s) + + + + + + Unknown + 不明 + + + Various artists + さまざまなアーティスト + + + + PlaylistParser + + All playlists (%1) + すべてのプレイリスト (%1) + + + %1 playlists (%2) + %1 プレイリスト (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + プレイリストのオプション + + + File paths + ファイルのパス + + + This can be changed later through the preferences + これは後でプリファレンスから変えることができます + + + Remember my choice + 選択を記憶する + + + Automatic + 自動 + + + Relative + 相対パス + + + Absolute + 絶対パス + + + + PlaylistSequence + + Repeat + リピート + + + Shuffle + シャッフル + + + Don't repeat + リピートしない + + + Repeat track + トラックをリピート + + + Repeat album + アルバムをリピート + + + Repeat playlist + プレイリストをリピート + + + Stop after each track + 各トラック後に停止 + + + Intro tracks + イントロ再生 + + + Don't shuffle + シャッフルしない + + + Shuffle tracks in this album + このアルバムのトラックをシャッフル + + + Shuffle all + すべてシャッフル + + + Shuffle albums + アルバムをシャッフル + + + + PlaylistSettingsPage + + Playlist + プレイリスト + + + Use alternating row colors + 行の色を交互に変える + + + Show bars on the currently playing track + 現在再生中のトラックのバーを表示 + + + Show a glowing animation on the currently playing track + 現在再生中のトラックにグローアニメーションを表示する + + + Warn me when closing a playlist tab + プレイリストタブを閉じるときに警告する + + + Continue to the next item in the playlist if a song is unavailable + 曲が見つからない場合にプレイリストの次のアイテムを続ける + + + Grey out unavailable songs in playlists on playback + 再生時にプレイリスト内の利用できない曲をグレーアウトする + + + Grey out unavailable songs in playlists on startup + 起動時にプレイリストで利用できない曲をグレーアウトする + + + Automatically select current playing track + 再生中の曲の自動選択 + + + Enable playlist toolbar + プレイリストツールバーを有効にする + + + Enable playlist clear button + プレイリストのクリアボタンを有効化 + + + Enable delete files in the right click context menu + 右クリックメニューでの削除を有効化 + + + Automatically sort playlist when inserting songs + 曲を挿入時にプレイリストを自動的に並べ替える + + + When saving a playlist, file paths should be + プレイリストを保存する時、パス名は + + + A&utomatic + 自動 + + + Absolu&te + 絶対パス(&t) + + + Re&lative + 相対パス(&L) + + + As&k when saving + 保存時に確認する(&K) + + + Metadata + メタデータ + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + 有効にすると、プレイリストの選択された曲をクリックすることでタグの値を直接編集できるようになります + + + Enable song metadata inline edition with click + クリックによる曲のメタデータの直接編集を有効にする + + + Write metadata when saving playlists + プレイリストを保存するときにメタデータを書き込む + + + + PlaylistTabBar + + Star playlist + プレイリストに星をつける + + + Close playlist + プレイリストを閉じる + + + Rename playlist... + プレイリストの名前の変更... + + + Save playlist... + プレイリストの保存... + + + Rename playlist + プレイリストの名前の変更 + + + Enter a new name for this playlist + このプレイリストの名前を入力してください + + + Remove playlist + プレイリストを削除する + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + お気に入りに含まれていないプレイリストを削除しようとしています。このプレイリストは削除されます(この操作は元に戻せません)。 +削除してもよろしいですか? + + + Warn me when closing a playlist tab + プレイリストタブを閉じるときに警告する + + + This option can be changed in the "Behavior" preferences + このオプションは設定の「動作」で変更できます。 + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + このプレイリストを左側のサイドバーの"プレイリスト"からアクセスできるようにするにはここをダブルクリックします。 + + + Playlist + プレイリスト + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + %n 曲の追加 + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + %n 曲の移動 + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + %n 曲の削除 + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + 曲のシャッフル + + + + PlaylistUndoCommands::SortItems + + sort songs + 曲の並び替え + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + 使用量 + + + options + オプション + + + URL(s) + URL + + + Player options + プレーヤーのオプション + + + Start the playlist currently playing + 現在再生中のプレイリストを開始する + + + Play if stopped, pause if playing + 停止中は再生し、再生中は一時停止します + + + Pause playback + 再生を一時停止します + + + Stop playback + 再生の停止 + + + Stop playback after current track + 現在のトラック後に停止 + + + Skip backwards in playlist + プレイリストで後ろにスキップ + + + Skip forwards in playlist + プレイリストで前にスキップ + + + Set the volume to <value> percent + 音量を <value> %に設定しました + + + Increase the volume by 4 percent + 音量を 4% 上げる + + + Decrease the volume by 4 percent + 音量を 4% 下げる + + + Increase the volume by <value> percent + 音量を <value> % 上げる + + + Decrease the volume by <value> percent + 音量を <value> % 下げる + + + Seek the currently playing track to an absolute position + 現在再生中のトラックの絶対的な位置へシークする + + + Seek the currently playing track by a relative amount + 現在再生中のトラックを相対値でシークする + + + Restart the track, or play the previous track if within 8 seconds of start. + トラックを再開 (開始8秒以内なら前のトラックを再生) + + + Playlist options + プレイリストのオプション + + + Create a new playlist with files + ファイルを含む新しいプレイリストを作成 + + + Append files/URLs to the playlist + ファイル・URL をプレイリストに追加する + + + Loads files/URLs, replacing current playlist + ファイル・URL を読み込んで、現在のプレイリストを置き換えます + + + Play the <n>th track in the playlist + プレイリストの <n> 番目のトラックを再生する + + + Play given playlist + プレイリストを再生する + + + Other options + その他のオプション + + + Display the on-screen-display + OSD を表示する + + + Toggle visibility for the pretty on-screen-display + pretty OSD 表示の切り替え + + + Change the language + 言語の変更 + + + Resize the window + このウィンドウの大きさを変える + + + Equivalent to --log-levels *:1 + --log-levels *:1 と同じ + + + Equivalent to --log-levels *:3 + --log-levels *:3 と同じ + + + Comma separated list of class:level, level is 0-3 + コンマ区切りの クラス:レベル のリスト、レベルは 0-3 + + + Print out version information + バージョン情報を出力 + + + Failed to create directory %1. + ディレクトリ %1 の作成に失敗しました。 + + + Destination file %1 exists, but not allowed to overwrite. + 宛先ファイル %1 は存在しますが上書きが許可されていません。 + + + Destination file %1 exists, but not allowed to overwrite + 宛先ファイル %1 は存在しますが上書きが許可されていません + + + Could not copy file %1 to %2. + ファイル %1 を %2 にコピーできません。 + + + Unknown + 不明 + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + ファイル %1 は正常な音声ファイルではありません + + + 1 day + 1 日 + + + %1 days + %1 日 + + + Today + 今日 + + + Yesterday + 昨日 + + + %1 days ago + %1 日前 + + + Tomorrow + 明日 + + + In %1 days + %1 日以内 + + + Next week + 次週 + + + In %1 weeks + %1 週以内 + + + Show in file browser + ファイルブラウザーで表示 + + + Too many songs selected. + 選択した曲が多すぎます。 + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + %2 個の異なるディレクトリにある %1 曲が選択されていますが、それらをすべて開いてもよろしいですか? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + 不明なエラー + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + アーティスト + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + 評価 + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + 複数の検索語を「%1」(デフォルト) および「%2」と組み合わせたり、括弧でグループ化したりすることもできます。 + + + Available fields + 利用可能なフィールド + + + after + の後 + + + before + 以前 + + + on + が次の日付 + + + not on + が次の日付でない + + + in the last + 最後の時間 + + + not in the last + が次の時間以前 + + + between + の間 + + + contains + 含む + + + does not contain + 含まない + + + starts with + で始まる + + + ends with + で終わる + + + greater than + より大きい + + + less than + より小さい + + + equals + 等しい + + + not equals + が次と異なる + + + empty + + + + not empty + が空ではない + + + Comment + コメント + + + A-Z + + + + Z-A + + + + oldest first + 古い順 + + + newest first + 新しい順 + + + shortest first + 短い順 + + + longest first + 最長優先 + + + smallest first + 昇順 + + + biggest first + 降順 + + + Hours + 時間 + + + Days + + + + Weeks + + + + Months + + + + Years + + + + Normal + ノーマル + + + Angry + 怒り + + + Frozen + 凍結 + + + Happy + + + + System colors + システムの色 + + + + QWidget + + Clear + クリア + + + Reset + リセット + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 検索中... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 見つかりません + + + Unknown error + 不明なエラー + + + + QobuzService + + Authenticating... + 認証中... + + + Maximum number of login attempts reached. + ログイン試行数が最大数に達しました + + + Missing Qobuz app ID. + Qobuz app ID がありません + + + Missing Qobuz username. + Qobuz ユーザー名がありません + + + Missing Qobuz password. + Qobuz パスワードがありません + + + Not authenticated with Qobuz. + Qobuz で認証されませんでした + + + Missing Qobuz app ID or secret. + Qobuz app ID またはシークレットがありません + + + + QobuzSettingsPage + + Qobuz + + + + Enable + 有効 + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Qobuz のサポートは公式ではなく、利用するには API app ID と登録済みアプリケーションのシークレットが必要です。私たちはあなたがこれらを手に入れるのを手伝うことはできません。 + + + Authentication + 認証 + + + App ID + + + + Username + ユーザー名 + + + Password + パスワード + + + App Secret + + + + Login + ログイン + + + Preferences + 設定 + + + Audio format + オーディオ形式 + + + Search delay + + + + ms + + + + Artists search limit + アーティスト検索の制限 + + + Albums search limit + アルバム検索の制限 + + + Songs search limit + 曲検索の制限 + + + Download album covers + アルバムカバーをダウンロード + + + Base64 encoded secret + Base64でエンコードされたシークレット + + + Configuration incomplete + 設定に失敗 + + + Missing app id. + app id がありません + + + Missing username. + ユーザー名がありません + + + Missing password. + パスワードがありません + + + Authentication failed + 認証に失敗しました + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Qobuz app ID またはシークレットがありません + + + Cancelled. + キャンセルされました。 + + + + Queue + + %n track(s) + + + + + + + QueueView + + QueueView + キュービュー + + + Move down + 下へ移動 + + + Ctrl+Up + + + + Move up + 上へ移動 + + + Ctrl+Down + + + + Remove + 削除 + + + Clear + クリア + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + %1 チャネルを取得中 + + + + RadioView + + Append to current playlist + 現在のプレイリストに追加する + + + Replace current playlist + 現在のプレイリストを置き換える + + + Open in new playlist + 新しいプレイリストで開く + + + Open homepage + ホームページを開く + + + Donate + 寄付 + + + Refresh channels + チャネルを更新 + + + + RadioViewContainer + + Form + フォーム + + + + SCollection + + Saving playcounts and ratings + 再生回数と評価 + + + + SavePlaylistsDialog + + Select directory for saving playlists + プレイリストを保存するディレクトリを選択 + + + Type + タイプ + + + Select directory for the playlists + プレイリストのディレクトリを選択 + + + Directory does not exist. + ディレクトリが存在しません。 + + + + SavedGroupingManager + + Saved Grouping Manager + 保存した分類マネージャー + + + Remove + 削除 + + + Ctrl+Up + + + + Name + 名前 + + + First level + 第 1 階層 + + + Second Level + 第 2 階層 + + + Third Level + 第 3 階層 + + + None + なし + + + Album artist + アルバムアーティスト + + + Artist + アーティスト + + + Album + アルバム + + + Album - Disc + アルバム - ディスク + + + Year - Album + 年 - アルバム + + + Year - Album - Disc + 年 - アルバム - ディスク + + + Original year - Album + 元の年 - アルバム + + + Original year - Album - Disc + 元の年 - アルバム - ディスク + + + Disc + ディスク + + + Year + + + + Original year + 元の年 + + + Genre + ジャンル + + + Composer + 作曲者 + + + Performer + 出演者 + + + Grouping + 分類 + + + File type + ファイルの種類 + + + Format + 形式 + + + Sample rate + サンプルレート + + + Bit depth + ビット深度 + + + Bitrate + ビットレート + + + Unknown + 不明 + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + 有効 + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + 有効なメタデータで30秒以上ある曲で、再生時間が少なくとも半分または4分間(どちらか早い方)になると、曲は Scrobble されます。 + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + Scrobbleボタンを表示 + + + Show love button + Loveボタンを表示 + + + Submit scrobbles every + + + + seconds + + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + Scrobbles を送信するときにアルバムアーティストを優先する + + + Show dialog for errors + エラーダイアログを表示 + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + 以下のソースへのScrobblingを有効化: + + + Collection + ライブラリ + + + Subsonic + + + + Local file + ローカルファイル + + + Tidal + + + + Device + デバイス + + + Qobuz + + + + CDDA + オーディオ CD + + + SomaFM + + + + Stream + ストリーム + + + Radio Paradise + + + + Unknown + 不明 + + + Last.fm + + + + Login + ログイン + + + Libre.fm + + + + Listenbrainz + + + + User token: + ユーザートークン: + + + Enter your user token from + ユーザートークンを入力: + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 Scrobbler 認証 + + + Open URL in web browser? + ブラウザで開きますか? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + "保存"を押してURLをクリップボードにコピーし、Webブラウザで手動で開きます + + + Could not open URL. Please open this URL in your browser + URLを開けません。ブラウザで開いてください。 + + + Invalid reply from web browser. Missing token. + ブラウザからの不正な応答 トークンがありません + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + Scrobbler %1 のエラー: %2 + + + + SettingsDialog + + Settings + 設定 + + + General + 全般 + + + User interface + ユーザーインターフェース + + + Streaming + ストリーミング + + + + SmartPlaylistQuerySearchPage + + Form + フォーム + + + Search mode + 検索モード + + + Match every search term (AND) + すべての検索語に一致 (AND) + + + Match one or more search terms (OR) + 1 つ以上の検索語に一致する (OR) + + + Include all songs + すべての曲を含む + + + Search terms + 検索語 + + + + SmartPlaylistQuerySortPage + + Form + フォーム + + + Sorting + 整列 + + + Put songs in a random order + 曲をランダムに並び替える + + + Sort songs by + 曲を並べ替え + + + Limits + 制限 + + + Show all the songs + すべての曲を表示 + + + Only show the first + 最初だけ表示 + + + songs + + + + + SmartPlaylistQueryWizardPlugin + + Collection search + コレクション検索 + + + Find songs in your collection that match the criteria you specify. + 指定した条件でコレクションを検索します + + + Search terms + 検索語 + + + A song will be included in the playlist if it matches these conditions. + これらの条件に一致する曲がプレイリストに含まれます + + + Search options + 検索オプション + + + Choose how the playlist is sorted and how many songs it will contain. + プレイリストの並び順と含まれる曲数を選択します。 + + + + SmartPlaylistSearchPreview + + Form + フォーム + + + Preview + プレビュー + + + Loading... + 読み込んでいます... + + + %1 songs found (showing %2) + %1 曲が見つかりました( %2 を表示中) + + + %1 songs found + %1 曲が見つかりました + + + + SmartPlaylistSearchTermWidget + + Form + フォーム + + + and + かつ + + + ago + + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + 検索条件を追加 + + + + SmartPlaylistWizard + + Smart playlist + スマートプレイリスト + + + Playlist type + プレイリストタイプ + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + スマートプレイリストは、コレクションから一定の作成される動的なプレイリストです。さまざまな選曲方法を提供する異なるタイプのスマートプレイリストがあります。 + + + Finish + 終了 + + + Choose a name for your smart playlist + スマートプレイリスト名の変更 + + + + SmartPlaylistWizardFinishPage + + Form + フォーム + + + Name + 名前 + + + Use dynamic mode + ダイナミックモード + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + ダイナミックモードでは曲が終了するたびに新しいトラックが選択され、プレイリストに追加されます + + + + SmartPlaylists + + Newest tracks + 新しい順 + + + 50 random tracks + ランダムな 50 トラック + + + Ever played + 再生済み + + + Never played + 未再生 + + + Last played + + + + Most played + 最も再生された曲 + + + Favourite tracks + お気に入りのトラック + + + All tracks + すべてのトラック + + + Dynamic random mix + ダイナミックランダムミックス + + + + SmartPlaylistsViewContainer + + New smart playlist + 新しいスマートプレイリスト + + + Edit smart playlist + スマートプレイリストを編集 + + + Delete smart playlist + スマートプレイリストを削除 + + + New smart playlist... + 新しいスマートプレイリスト... + + + Append to current playlist + 現在のプレイリストに追加する + + + Replace current playlist + 現在のプレイリストを置き換える + + + Open in new playlist + 新しいプレイリストで開く + + + Queue track + トラックをキューに追加 + + + Play next + 次を再生 + + + Edit smart playlist... + スマートプレイリストを編集... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry は Snap として実行されています + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry はスナップとして実行する場合、遅く、制限があります。ルートファイルシステム ( /) へのアクセスはできません。特定のデバイスやネットワーク共有へのアクセスなど、他の制限もある場合があります。 + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + より良い体験のために、上記の他のオプションを検討してください + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + snapをアンインストールする前に、構成が失われないように ~/snap ディレクトリからstrawberry.confとstrawberry.dbをコピーする: + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + %1 チャネルを取得中 + + + + SongLoader + + You need GStreamer for this URL. + + + + Preload function was not set for blocking operation. + ブロッキング操作にプリロード機能が設定されていません + + + File %1 does not exist. + ファイル %1 は存在しません。 + + + CD playback is only available with the GStreamer engine. + CD の再生は GStreamer エンジンでのみ使用できます + + + Could not open file %1 for reading: %2 + ファイル %1 を読み取れません: %2 + + + Could not open CUE file %1 for reading: %2 + キューファイル %1 を読み取れません: %2 + + + Could not open playlist file %1 for reading: %2 + プレイリストファイル %1 を読み取れません: %2 + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + 音楽 CD を読み込み中にエラーが発生しました + + + Loading tracks + トラックの読み込み中 + + + Loading tracks info + トラック情報の読み込み中 + + + + SpotifyRequest + + Authenticating... + 認証中... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 検索中... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 見つかりません + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Spotify 認証 + + + Please open this URL in your browser + このURLをブラウザで開いてください + + + Redirect missing token code or state! + 不足しているトークンコードまたは状態をリダイレクトしてください! + + + Received invalid reply from web browser. + Webブラウザから無効な返信を受け取りました。 + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + 有効 + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + 設定 + + + Search delay + + + + ms + + + + Artists search limit + アーティスト検索の制限 + + + Albums search limit + アルバム検索の制限 + + + Songs search limit + 曲検索の制限 + + + Download album covers + アルバムカバーをダウンロード + + + Fetch entire albums when searching songs + 曲検索時にアルバム全体を取得する + + + Authentication failed + 認証に失敗しました + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + 音楽を取得するにはここをクリック + + + Append to current playlist + 現在のプレイリストに追加する + + + Replace current playlist + 現在のプレイリストを置き換える + + + Open in new playlist + 新しいプレイリストで開く + + + Queue track + トラックをキューに追加 + + + Queue to play next + 次に再生する + + + Remove from favorites + お気に入りから削除 + + + + StreamingCollectionViewContainer + + Form + フォーム + + + Close + 閉じる + + + Abort + 中止 + + + Refresh catalogue + カタログを更新 + + + + StreamingSearchModel + + Various artists + さまざまなアーティスト + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + アーティスト + + + albums + アルバム + + + songs + + + + Enter search terms above to find music + 音楽を見つけるには、上記の検索用語を入力してください + + + Configure %1... + %1 の設定... + + + Append to current playlist + 現在のプレイリストに追加する + + + Replace current playlist + 現在のプレイリストを置き換える + + + Open in new playlist + 新しいプレイリストで開く + + + Queue track + トラックをキューに追加 + + + Add to artists + アーティストに追加 + + + Add to albums + アルバムに追加 + + + Add to songs + 曲に追加 + + + Search for this + + + + Group by + グループ化 + + + + StreamingSongsView + + Configure %1... + %1 の設定... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + アーティスト + + + Albums + アルバム + + + Songs + + + + Search + 検索 + + + Configure %1... + %1 の設定... + + + + SubsonicRequest + + Retrieving albums... + アルバムを取得... + + + Retrieving songs for %1 album... + アルバム %1 から曲を取得... + + + Retrieving songs for %1 albums... + アルバム %1 から曲を取得... + + + Retrieving album cover for %1 album... + アルバム %1 からアルバムカバーを取得... + + + Retrieving album covers for %1 albums... + アルバム %1 からアルバムカバーを取得... + + + Unknown error + 不明なエラー + + + + SubsonicService + + Server URL is invalid. + サーバーURLが不正です。 + + + Missing username or password. + ユーザー名またはパスワードがありません + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + 有効 + + + Server URL + サーバーURL + + + Authentication + 認証 + + + Username + ユーザー名 + + + Password + パスワード + + + Authentication method: + 認証方法: + + + Hex + 16進数 + + + MD5 token (Recommended) + MD5トークン (推奨) + + + Preferences + 設定 + + + Use HTTP/2 when possible + 可能な場合は HTTP/2 を使用 + + + Verify server certificate + サーバー証明書の検証 + + + Download album covers + アルバムカバーをダウンロード + + + Server-side scrobbling + サーバーサイドの scrobbling + + + Test + テスト + + + Delete songs + 曲の削除 + + + Configuration incomplete + 設定に失敗 + + + Missing server url, username or password. + サーバーの URL、ユーザー名またはパスワードがありません + + + Configuration incorrect + 設定が不正 + + + Server URL is invalid. + サーバーURLが不正です。 + + + Test successful! + テスト成功! + + + Test failed! + テスト失敗! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Subsonic サーバーの URL が不正です + + + Missing Subsonic username or password. + Subsonic ユーザー名またはシークレットがありません + + + + SystemTrayIcon + + Pause + 一時停止 + + + Play + 再生 + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + 認証中... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 検索中... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 見つかりません + + + + TidalService + + Reply from Tidal is missing query items. + Tidal からの返信にクエリアイテムがありません。 + + + Missing Tidal API token. + Tidal API トークンがありません。 + + + Missing Tidal username. + Tidal ユーザー名がありません。 + + + Missing Tidal password. + Tidal パスワードがありません。 + + + Not authenticated with Tidal and reached maximum number of login attempts. + Tidal で認証されずログイン最大試行回数に達しました。 + + + Not authenticated with Tidal. + Tidal で認証されませんでした。 + + + Missing Tidal API token, username or password. + Tidal API トークン、ユーザー名またはパスワードがありません。 + + + + TidalSettingsPage + + Tidal + + + + Enable + 有効 + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Tidal サポートは公式ではないため、利用するには登録済みアプリケーションの API トークンが必要です。これらを入手するお手伝いはできません。 + + + Authentication + 認証 + + + Use OAuth + OAuth を使用する + + + Client ID + クライアント ID + + + API Token + API トークン + + + Username + ユーザー名 + + + Password + パスワード + + + Login + ログイン + + + Preferences + 設定 + + + Audio quality + 音質 + + + Search delay + + + + ms + + + + Artists search limit + アーティスト検索の制限 + + + Albums search limit + アルバム検索の制限 + + + Songs search limit + 曲検索の制限 + + + Download album covers + アルバムカバーをダウンロード + + + Fetch entire albums when searching songs + 曲検索時にアルバム全体を取得する + + + Album cover size + アルバムカバーサイズ + + + Stream URL method + ストリームURLメソッド + + + Append explicit to album title for explicit albums + 露骨な表現を含むアルバムのタイトルに露骨な表現を追加する。 + + + Configuration incomplete + 設定に失敗 + + + Missing Tidal client ID. + Tidal Client ID がありません。 + + + Missing API token. + API トークンがありません + + + Missing username. + ユーザー名がありません + + + Missing password. + パスワードがありません + + + Authentication failed + 認証に失敗しました + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Tidal で認証されませんでした。 + + + Missing Tidal API token, username or password. + Tidal API トークン、ユーザー名またはパスワードがありません。 + + + Cancelled. + キャンセルされました。 + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Tidal から %1 暗号化ストリームを含む URL を受信しました。 Strawberry は現在暗号化されたストリームをサポートしていません。 + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Tidal から暗号化されたストリームを含む URL を受信しました。 Strawberry は現在暗号化されたストリームをサポートしていません。 + + + + TrackSelectionDialog + + Tag fetcher + タグ取得ツール + + + Sorry + 申し訳ありません + + + Strawberry was unable to find results for this file + このファイルの検索結果を見つけられませんでした。 + + + Select best possible match + 一番近いものを選ぶ + + + Track + トラック + + + Year + + + + Title + タイトル + + + Artist + アーティスト + + + Album + アルバム + + + Previous + 前へ + + + Next + 次へ + + + Original tags + 元のタグ + + + Suggested tags + お薦めのタグ + + + Saving tracks + トラックの保存中 + + + + TrackSlider + + Form + フォーム + + + 0:00:00 + + + + Click to toggle between remaining time and total time + ここをクリックすると、残り時間と合計時間の表示を切り替えます + + + + TranscodeDialog + + Transcode Music + 音楽のトランスコード + + + Files to transcode + トランスコードするファイル + + + Filename + ファイル名 + + + Directory + ディレクトリ + + + Add... + 追加... + + + Remove + 削除 + + + Add all tracks from a directory and all its subdirectories + ディレクトリとサブディレクトリにあるすべてのトラックを追加 + + + Import... + インポート中... + + + Output options + 出力のオプション + + + Audio format + オーディオ形式 + + + Options... + オプション... + + + Destination + フォルダー + + + Alongside the originals + 元と同じ + + + Select... + 選択... + + + Progress + 進行状況 + + + Details... + 詳細... + + + Clear + クリア + + + Start transcoding + トランスコードの開始 + + + %n remaining + + %n 曲残っています + + + + %n finished + + %n が完了しました + + + + %n failed + + %n 曲失敗しました + + + + Add files to transcode + 変換するファイルを追加 + + + Music + ミュージック + + + Open a directory to import music from + 音楽を取り込むディレクトリを開く + + + Add folder + フォルダーを追加 + + + + TranscodeLogDialog + + Transcoder Log + トランスコーダーのログ + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + GStreamer 要素「%1」を作成できませんでした。必要な GStreamer プラグインがすべてインストールされていることを確認してください + + + Successfully written %1 + %1 の書き込みに成功しました + + + Transcoding %1 files using %2 threads + %2 個のスレッドを使用して %1 個のファイルをトランスコードしています + + + Error processing %1: %2 + %1 の処理エラー: %2 + + + Starting %1 + %1 の開始中 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + %1 のエンコーダーを見つけることができませんでした。正しい GStreamer プラグインがインストールされていることをチェックしてください + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + %1 のミュクサーを見つけることができませんでした。正しい GStreamer プラグインがインストールされていることをチェックしてください + + + + TranscoderOptionsAAC + + Form + フォーム + + + Bitrate + ビットレート + + + kbps + + + + Profile + プロファイル + + + Main profile (MAIN) + Main プロファイル (MAIN) + + + Low complexity profile (LC) + Low Complexity プロファイル (LC) + + + Scalable sampling rate profile (SSR) + Scalable Sampling Rate プロファイル (SSR) + + + Long term prediction profile (LTP) + Long Term Prediction プロファイル (LTP) + + + Use temporal noise shaping + Temporal Noise Shaping (TNS) を使用する + + + Allow mid/side encoding + M/S エンコードを許可 + + + Block type + ブロックタイプ + + + Normal block type + 通常ブロックタイプ + + + No short blocks + 短いブロックなし + + + No long blocks + 長いブロックなし + + + + TranscoderOptionsASF + + Form + フォーム + + + Bitrate + ビットレート + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + トランスコードのオプション + + + + TranscoderOptionsFLAC + + Form + フォーム + + + Quality + Sound quality + 品質 + + + Fast + + + + Best + + + + + TranscoderOptionsMP3 + + Form + フォーム + + + Optimize for &quality + 音質で最適化(&q) + + + Quality + Sound quality + 品質 + + + Opti&mize for bitrate + ビットレートで最適化(&m) + + + Bitrate + ビットレート + + + kbps + + + + Constant bitrate + 固定ビットレート + + + Encoding engine quality + エンコーディングエンジンの品質 + + + Fast + + + + Standard + 標準 + + + High + + + + Force mono encoding + モノラルエンコーディングを強制する + + + + TranscoderOptionsOpus + + Form + フォーム + + + Bitrate + ビットレート + + + kbps + + + + + TranscoderOptionsSpeex + + Form + フォーム + + + Quality + Sound quality + 品質 + + + Bitrate + ビットレート + + + automatic + 自動 + + + kbps + + + + Average bitrate + 平均ビットレート + + + disabled + 無効 + + + Encoding mode + エンコーディングモード + + + Auto + 自動 + + + Ultra wide band (UWB) + 超高速回線 (UWB) + + + Wide band (WB) + 高速回線 (WB) + + + Narrow band (NB) + 低速回線 (NB) + + + Variable bit rate + 可変ビットレート + + + Voice activity detection + 有音/無音検出 (VAD) + + + Discontinuous transmission + 不連続送信 (DTX) + + + Encoding complexity + Complexity エンコーディング + + + Frames per buffer + バッファーあたりのフレーム数 + + + + TranscoderOptionsVorbis + + Form + フォーム + + + Quality + Sound quality + 品質 + + + Use bitrate management engine + ビットレート管理エンジンを使用する + + + Target bitrate + 目標ビットレート + + + kbps + + + + Minimum bitrate + 最低ビットレート + + + disabled + 無効 + + + Maximum bitrate + 最高ビットレート + + + + TranscoderOptionsWavPack + + Form + フォーム + + + + TranscoderSettingsPage + + Transcoding + トランスコード + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + 以下の設定は「音楽のトランスコード」ダイアログや、デバイスへコピーする前に音楽を変換する時に使われます。 + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + D-Bus パス + + + Serial number + シリアル番号 + + + Mount points + マウントポイント + + + Partition label + パーティションのラベル + + + UUID + + + + + UserPassDialog + + Enter username and password + ユーザー名とパスワードを入力: + + + Username + ユーザー名 + + + Password + パスワード + + + diff --git a/src/translations/strawberry_ko_KR.ts b/src/translations/strawberry_ko_KR.ts new file mode 100644 index 00000000..bfb68eb5 --- /dev/null +++ b/src/translations/strawberry_ko_KR.ts @@ -0,0 +1,7561 @@ + + + + + About + + About + + + + About Strawberry + Strawberry 정보 + + + Version %1 + 버전 %1 + + + Strawberry is a music player and music collection organizer. + Strawberry는 음악 재생기 및 음악 라이브러리 관리 도구입니다. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + 이 프로그램은 2018년에 음악 컬렉터들과 오디오파일을 위해 Clementine으로부터 포크되었습니다. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry는 GPL로 라이선스되는 자유 소프트웨어이고 소스 코드는 %1에서 볼 수 있습니다. + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + GPL 라이선스가 프로그램과 함께 제공됩니다. 만약 그렇지 않았다면 %1에서 볼 수 있습니다. + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Strawberry가 마음에 들었다면 스폰서쉽과 기부를 할 수 있습니다. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + 제작자 및 메인테이너 + + + Contributors + 기여자 + + + Clementine authors + Clementine 작성자 + + + Clementine contributors + Clementine 기여자 + + + Thanks to + 감사 + + + Thanks to all the other Amarok and Clementine contributors. + Amarok과 Clementine 기여자들에게 감사를 전합니다. + + + + AddStreamDialog + + Add Stream + 스트림 추가 + + + Enter the URL of a stream: + 스트림 URL 입력 + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + 그림 (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + 그림 (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + 모든 파일 (*) + + + Load cover from disk... + 디스크에서 표지 불러오기... + + + Save cover to disk... + 디스크에 표지 저장... + + + Load cover from URL... + URL에서 표지 불러오기... + + + Search for album covers... + 앨범아트 검색... + + + Unset cover + 표지 설정 해제 + + + Delete cover + + + + Clear cover + + + + Show fullsize... + 전체 크기 표시... + + + Search automatically + 자동으로 검색 + + + Load cover from disk + 디스크에서 표지 불러오기 + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + 알 수 없음 + + + Save album cover + 앨범아트 저장 + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + 표지 내보내기 + + + Output + 출력 + + + Enter a filename for exported covers (no extension): + 내보낼 표지 파일 이름 입력(확장자 제외): + + + Export downloaded covers + 다운로드한 표지 내보내기 + + + Export embedded covers + 내장된 표지 내보내기 + + + Existing covers + 존재하는 표지 + + + Do not overwrite + 덮어쓰지 않기 + + + O&verwrite all + 모두 덮어쓰기(&V) + + + Overwrite s&maller ones only + 더 작은 것만 덮어쓰기(&M) + + + Size + 크기 + + + Scale size + 크기 조정 + + + Size: + 크기: + + + Pixel + 픽셀 + + + + AlbumCoverManager + + Abort + 중지 + + + All albums + 모든 앨범 + + + Albums with covers + 앨범아트가 있는 앨범 + + + Albums without covers + 앨범아트가 없는 앨범 + + + Really cancel? + 정말로 취소하시겠습니까? + + + Closing this window will stop searching for album covers. + 이 창을 닫으면 앨범아트 검색을 정지합니다. + + + Don't stop! + 멈추지 마세요! + + + All artists + 모든 아티스트 + + + Various artists + 편집 음반 + + + Got %1 covers out of %2 (%3 failed) + 앨범아트 %2개 중 %1개 가져옴(%3개 실패) + + + %1 transferred + %1개 전송됨 + + + Export finished + 내보내기 완료 + + + No covers to export. + 내보낼 표지가 없습니다. + + + Exported %1 covers out of %2 (%3 skipped) + 앨범아트 %2개 중 %1개 내보냄(%3개 건너뜀) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + 표지 관리자 + + + Artist + 아티스트 + + + Album + 앨범 + + + Search + 검색 + + + Covers from %1 + %1의 표지 + + + Abort + 중지 + + + + AnalyzerContainer + + Framerate + 프레임레이트 + + + Low (%1 fps) + 낮음(%1 fps) + + + Medium (%1 fps) + 중간(%1 fps) + + + High (%1 fps) + 높음(%1 fps) + + + Super high (%1 fps) + 아주 높음(%1 fps) + + + No analyzer + 분석기 없음 + + + Block analyzer + 블록 분석기 + + + Boom analyzer + 붐 분석기 + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + 모양 + + + Style + + + + Use system theme icons + 시스템 테마 아이콘 사용 + + + Settings require restart. + 설정을 적용하려면 재시작이 필요합니다. + + + Tabbar colors + 탭 표시줄 색상 + + + &Use the system default color + 시스템 기본 색 사용(&U) + + + Use custom color + 사용자 정의 색상 사용 + + + Use gradient background + 그라디언트 배경 사용 + + + Select tabbar color: + 탭 표시줄 색상 선택: + + + Background image + 배경 그림 + + + Default bac&kground image + 기본 배경 그림(&K) + + + &No background image + 배경 없음(&N) + + + The album cover of the currently playing song + 재생 중인 음악의 앨범아트 + + + Albu&m cover + 앨범아트(&M) + + + Custom image: + 사용자 정의 이미지: + + + Browse... + 찾아보기... + + + Position + 위치 + + + Upper Left + 왼쪽 위 + + + Upper Right + 오른쪽 위 + + + Middle + 중간 + + + Bottom Left + 왼쪽 아래 + + + Bottom Right + 오른쪽 아래 + + + Max cover size + 최대 표지 크기 + + + Stretch image to fill playlist + 이미지를 재생 목록 크기로 늘려서 맞춤 + + + Keep aspect ratio + 종횡비 유지 + + + Do not cut image + 이미지 자르지 않기 + + + Blur amount + 블러 정도 + + + 0px + + + + Opacity + 불투명도 + + + 40% + + + + Icon sizes + 아이콘 크기 + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + 배경 그림 선택 + + + + BackendSettingsPage + + Backend + 백엔드 + + + Audio output + 오디오 출력 + + + Device + 장치 + + + Output + 출력 + + + Engine + 엔진 + + + ALSA plugin: + + + + hw + + + + p&lughw + plughw(&L) + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + 음량 제어 활성화 + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + 버퍼 + + + ms + + + + Buffer duration + 버퍼 시간 + + + High watermark + + + + Low watermark + + + + Defaults + 기본 설정 + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + 리플레이게인 + + + Use Replay Gain metadata if it is available + 사용 가능한 경우 리플레이게인 메타데이터 사용 + + + Replay Gain mode + 리플레이게인 모드 + + + Radio (equal loudness for all tracks) + 라디오(모든 트랙을 같은 음량으로) + + + Album (ideal loudness for all tracks) + 앨범(모든 트랙에 이상적인 음량) + + + Pre-amp + 프리앰프 + + + Apply compression to prevent clipping + 압축을 적용하여 클리핑 방지 + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + 페이드 + + + Fade out when stopping a track + 트랙 정지 시 페이드 아웃 + + + Cross-fade when changing tracks manually + 트랙을 직접 바꿀 때 크로스페이드 + + + Cross-fade when changing tracks automatically + 트랙을 자동으로 바꿀 때 크로스페이드 + + + Except between tracks on the same album or in the same CUE sheet + 같은 앨범이나 같은 CUE 시트의 트랙 사이에서는 제외 + + + Fading duration + 페이드 시간 + + + Fade out on pause / fade in on resume + 일시 정지 시 페이드 아웃/다시 시작 시 페이드 인 + + + + BehaviourSettingsPage + + Behavior + 행동 + + + Show system tray icon + 시스템 트레이 아이콘 표시 + + + Keep running in the background when the window is closed + 창을 닫아도 백그라운드에서 계속 실행 + + + Show song progress on system tray icon + 트레이 아이콘에 곡 재생 상황 표시 + + + Show song progress on taskbar + + + + Resume playback on start + 시작할 때 재생 다시 시작 + + + Show playing widget + 재생 위젯 표시 + + + On startup + 시작할 때 + + + Remember from &last time + 마지막으로 사용한 값 기억(&L) + + + Show the main window + 메인 창 표시 + + + Hide the main window + + + + Show the main window maximized + 최대화 상태로 실행 + + + Show the main window minimized + 최소화 상태로 실행 + + + Language + 언어 + + + Use the system default + 시스템 기본값 사용 + + + You will need to restart Strawberry if you change the language. + 언어를 변경한 후에는 Strawberry를 다시 시작해야 합니다. + + + Using the menu to add a song will... + 메뉴에서 음악을 추가했을 때... + + + Never start playing + 재생을 시작하지 않음 + + + Play if there is nothing already playing + 재생 중인 곡이 없다면 재생 + + + Always start playing + 항상 재생 시작 + + + Pressing "Previous" in player will... + 재생기에서 "이전"을 눌렀을 때... + + + Jump to previous song right away + 바로 이전 곡으로 이동 + + + Restart song, then jump to previous if pressed again + 트랙을 다시 시작하고 다시 누르면 이전 트랙을 재생합니다 + + + Double clicking a song will... + 노래를 두 번 클릭했을 때... + + + Append to the playlist + 재생 목록에 추가 + + + Replace the playlist + 재생 목록 대체 + + + Open in new playlist + 새 재생 목록에서 열기 + + + Add to the queue + 대기열에 추가 + + + Double clicking a song in the playlist will... + 재생 목록의 노래를 두 번 클릭했을 때... + + + Change the currently playing song + 지금 재생 중인 음악 변경 + + + Seeking using a keyboard shortcut or mouse wheel + 키보드 단축키 또는 마우스 휠을 사용하여 이동 + + + Time step + 시간 간격 + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + CDDA 디바이스를 준비하는데 오류가 있습니다. + + + Error while setting CDDA device to pause state. + CDDA 디바이스를 일시정지하는데 오류가 있습니다. + + + Error while querying CDDA tracks. + CDDA 트랙을 로딩하는데 오류가 있습니다. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + 라이브러리 필터 + + + Enter search terms here + 여기에 검색어 입력 + + + MenuPopupToolButton + + + + Entire collection + 전체 라이브러리 + + + Added today + 오늘 추가됨 + + + Added this week + 이번 주에 추가됨 + + + Added within three months + 3개월 이내에 추가됨 + + + Added this year + 올해 추가됨 + + + Added this month + 이번 달에 추가됨 + + + Save current grouping + 현재 그룹 저장 + + + Manage saved groupings + 저장한 그룹 관리 + + + Show + 표시 + + + Group by + 그룹 방식 + + + Display options + 옵션 표시 + + + Group by Album artist/Album + 앨범 아티스트/앨범으로 그룹 + + + Group by Album artist/Album - Disc + 앨범 아티스트/앨범 - 디스크로 그룹 + + + Group by Album artist/Year - Album + 앨범 아티스트/년도 - 앨범으로 그룹 + + + Group by Album artist/Year - Album - Disc + 앨범 아티스트/년도 - 앨범 - 디스크로 그룹 + + + Group by Artist/Album + 아티스트/앨범으로 그룹 + + + Group by Artist/Album - Disc + 아티스트/앨범 - 디스크로 그룹 + + + Group by Artist/Year - Album + 아티스트/년도 - 앨범으로 그룹 + + + Group by Artist/Year - Album - Disc + 아티스트/년도 - 앨범 - 디스크로 그룹 + + + Group by Genre/Album artist/Album + 장르/앨범 아티스트/앨범으로 그룹 + + + Group by Genre/Artist/Album + 장르/아티스트/앨범으로 그룹 + + + Group by Album Artist + 앨범 아티스트로 그룹 + + + Group by Artist + 아티스트로 그룹 + + + Group by Album + 앨범으로 그룹 + + + Group by Genre/Album + 장르/앨범으로 그룹 + + + Advanced grouping... + 고급 그룹... + + + Grouping Name + 그룹 이름 + + + Grouping name: + 그룹 이름: + + + + CollectionModel + + Various artists + 편집 음반 + + + Loading... + 불러오는 중... + + + Unknown + 알 수 없음 + + + + CollectionSettingsPage + + Collection + 라이브러리 + + + These folders will be scanned for music to make up your collection + 라이브러리를 생성할 때 다음 폴더를 검색합니다 + + + Add new folder... + 새로운 폴더 추가... + + + Remove folder + 폴더 삭제 + + + Automatic updating + 자동 업데이트 중 + + + Update the collection when Strawberry starts + Strawberry 시작 시 라이브러리 업데이트 + + + Monitor the collection for changes + 라이브러리 변화 감지 + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + 사라진 곡을 사용할 수 없는 것으로 표시 + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + 선호하는 앨범아트 파일 이름(쉼표로 구분) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Strawberry에서 앨범 아트를 찾을 때 다음 단어를 포함하는 그림 파일을 먼저 찾습니다. +일치하는 파일이 없으면 디렉터리에 있는 가장 큰 그림을 사용합니다. + + + Display options + 옵션 표시 + + + Automatically open single categories in the collection tree + 한 개의 하위 항목만 있을 때 자동으로 열기 + + + Show dividers + 구분자 표시 + + + Show album cover art in collection + 앨범 목록에 앨범아트 표시 + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + + + + Size + 크기 + + + Enable Disk Cache + 디스크 캐시 활성화 + + + Disk Cache Size + 디스크 캐시 크기 + + + Current disk cache in use: + 현재 사용중인 디스크 캐시 : + + + Clear Disk Cache + 디스크 캐시 비우기 + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + 마우스 우클릭 메뉴로부터 파일 제거 활성화 + + + Add directory... + 디렉터리 추가... + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + 라이브러리가 비어 있습니다! + + + Click here to add some music + 음악을 추가하려면 여기를 클릭하십시오 + + + Append to current playlist + 현재 재생 목록에 추가 + + + Replace current playlist + 현재 재생 목록 대체 + + + Open in new playlist + 새 재생 목록에서 열기 + + + Queue track + 대기열에 트랙 추가 + + + Queue to play next + 다음에 재생할 대기열에 추가 + + + Search for this + 다음 항목 검색 + + + Organize files... + + + + Copy to device... + 장치로 복사... + + + Delete from disk... + 디스크에서 삭제... + + + Edit track information... + 트랙 정보 편집... + + + Edit tracks information... + 트랙 정보 편집... + + + Show in file browser... + 파일 탐색기에 표시... + + + Rescan song(s) + 노래 다시 검색 + + + Show in various artists + 편집 음반으로 표시 + + + Don't show in various artists + 여러 아티스로 표시하지 않기 + + + There are other songs in this album + 이 앨범에 다른 곡이 있습니다 + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + 오류 + + + None of the selected songs were suitable for copying to a device + 선택한 음악을 장치에 복사하기에 적합하지 않음 + + + + CollectionViewContainer + + Form + + + + + CollectionWatcher + + Updating collection + 라이브러리 업데이트 중 + + + Updating %1 + %1 업데이트 중 + + + + Console + + Console + 콘솔 + + + Run + 실행 + + + + ContextSettingsPage + + Context + 지금 재생 + + + Custom text settings + 사용자 정의 텍스트 설정 + + + MenuPopupToolButton + + + + Title + 제목 + + + Summary + 요약 + + + Enable Items + 항목 활성화 + + + Album + 앨범 + + + Technical Data + 기술적 데이터 + + + Song Lyrics + 노래 가사 + + + Automatically search for album cover + 자동으로 앨범아트 찾기 + + + Automatically search for song lyrics + 자동으로 가사 찾기 + + + Font for headline + 제목 폰트 설정 + + + Font + 폰트 + + + Font size + 글자 크기 + + + pt + + + + Preview + 미리 보기 + + + Font for data and lyrics + 내용과 가사 폰트 설정 + + + Add song artist tag + 아티스트 태그 추가 + + + Add song album tag + 앨범 태그 추가 + + + Add song title tag + 제목 태그 추가 + + + Add song albumartist tag + 앨범 아티스트 태그 추가 + + + Add song year tag + 년도 태그 추가 + + + Add song composer tag + 작곡가 태그 추가 + + + Add song performer tag + 음악 연주가 태그 추가 + + + Add song grouping tag + 음악 그룹화 태그 추가 + + + Add song disc tag + 음악 디스크 태그 추가 + + + Add song track tag + 트랙 태그 추가 + + + Add song genre tag + 장르 태그 추가 + + + Add song length tag + 음악 길이 태그 추가 + + + Add song play count + 재생 횟수 추가 + + + Add song skip count + 건너뛴 횟수 추가 + + + Add a new line if supported by the notification type + 알림 형식이 지원한다면 새로운 줄 추가 + + + %filename% + + + + Add song filename + 음악 파일 이름 추가 + + + %url% + + + + Add song URL + + + + %rating% + + + + Add song rating + 음악 별점 추가 + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + 파일 형식 + + + Length + 길이 + + + Samplerate + 샘플링 레이트 + + + Bit depth + 비트 해상도 + + + Bitrate + + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + 앨범아트 보기 + + + Show song technical data + 노래의 기술적 데이터 표시 + + + Show song lyrics + 노래 가사 표시 + + + Automatically search for song lyrics + 자동으로 가사 찾기 + + + No song playing + 재생 중인 곡 없음 + + + %1 song + 노래 %1곡 + + + %1 songs + 노래 %1곡 + + + %1 artist + 아티스트 %1명 + + + %1 artists + 아티스트 %1명 + + + %1 album + 앨범 %1개 + + + %1 albums + 앨범 %1개 + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + URL에서 표지 불러오기 + + + Enter a URL to download a cover from the Internet: + 인터넷에서 표지를 다운로드할 URL 입력: + + + Fetching cover error + 표지 가져오기 오류 + + + The site you requested does not exist! + 요청한 사이트가 존재하지 않습니다! + + + The site you requested is not an image! + 요청한 사이트는 이미지가 아닙니다! + + + + CoverManager + + Cover Manager + 표지 관리자 + + + Enter search terms here + 여기에 검색어 입력 + + + MenuPopupToolButton + + + + View + 보기 + + + Total albums: + 총 앨범 개수: + + + Without cover: + 표지 없음: + + + 0 + + + + Fetch Missing Covers + 누락된 표지 가져오기 + + + Export Covers + 표지 내보내기 + + + Fetch automatically + 자동으로 가져오기 + + + Load + 불러오기 + + + Add to playlist + 재생 목록에 추가 + + + + CoverSearchStatisticsDialog + + Fetch completed + 가져오기 완료 + + + Got %1 covers out of %2 (%3 failed) + 앨범아트 %2개 중 %1개 가져옴(%3개 실패) + + + Covers from %1 + %1의 표지 + + + Total network requests made + 총 네트워크 요청 수 + + + Average image size + 평균 그림 크기 + + + Total bytes transferred + 전송된 총 바이트 + + + + CoversSettingsPage + + Covers + 앨범아트 + + + Cover providers + 앨범 아트 가져오기 + + + Choose the providers you want to use when searching for covers. + 앨범 아트를 검색할 때 가져올 곳을 선택해 주세요. + + + Move up + 위로 이동 + + + Move down + 아래로 이동 + + + Authentication + 인증 + + + Login + 로그인 + + + Album cover types + + + + Saving album covers + 앨범아트 저장 중 + + + Save album covers in album directory + 앨범아트를 앨범 디렉터리에 저장 + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + 파일 이름: + + + Pattern + + + + Random + + + + Overwrite existing file + 기존 파일 덮어쓰기 + + + Lowercase filename + 소문자 파일 이름 + + + Replace spaces with dashes + 공백을 줄표로 대체 + + + Use Tidal settings to authenticate. + + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + + + + %1 does not need authentication. + + + + No provider selected. + 아무 곳도 선택되지 않았습니다. + + + Authentication failed + 인증 실패 + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + 무결성 검사 + + + Database corruption detected. + 데이터베이스가 손상되었습니다. + + + Backing up database + 데이터베이스 백업 중 + + + + DeleteConfirmationDialog + + Delete files + 파일 삭제 + + + The following files will be deleted from disk: + 이 파일들이 디스크에서 제거됩니다. + + + Are you sure you want to continue? + 계속하시겠습니까? + + + + DeleteFiles + + Deleting files + 파일 삭제 중 + + + + DeviceItemDelegate + + Updating %1%... + %1% 업데이트 중... + + + Not connected + 연결되지 않음 + + + Not mounted - double click to mount + 마운트되지 않음 - 마운트하려면 두 번 클릭 + + + Double click to open + 두 번 클릭해서 열기 + + + %1 song%2 + 노래 %1곡 + + + + DeviceManager + + Connect device + 장치 연결 + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + 이 장치를 처음 연결했습니다. Strawberry에서 장치에 있는 음악 파일을 검색하는 동안 기다려 주십시오. + + + This device will not work properly + 이 장치는 올바르게 작동하지 않을 수 있음 + + + This is an MTP device, but you compiled Strawberry without libmtp support. + 이 장치는 MTP 장치이지만 Strawberry를 컴파일할 때 libmtp 지원이 빠졌습니다. + + + If you continue, this device will work slowly and songs copied to it may not work. + 계속 진행하면 이 장치가 느리게 작동하거나 복사된 음악을 재생하지 못할 수도 있습니다. + + + This is an iPod, but you compiled Strawberry without libgpod support. + 이 장치는 iPod이지만 Strawberry를 컴파일할 때 libgpod 지원이 빠졌습니다. + + + This type of device is not supported: %1 + 다음 장치의 형식은 지원하지 않습니다: %1 + + + + DeviceProperties + + Device Properties + 장치 속성 + + + Information + 정보 + + + Name + 이름 + + + Icon + 아이콘 + + + Hardware information + 하드웨어 정보 + + + Hardware information is only available while the device is connected. + 장치가 연결되어 있는 동안에만 하드웨어 정보를 볼 수 있습니다. + + + File formats + 파일 형식 + + + Supported formats + 지원하는 형식 + + + This device supports the following file formats: + 이 장치는 다음 파일 형식을 지원합니다: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry는 장치로 곡을 복사할 때 장치에서 재생 가능한 형식으로 자동 변환할 수 있습니다. + + + Do not convert any music + 어떤 곡도 변환하지 않기 + + + Convert any music that the device can't play + 장치에서 재생할 수 없는 곡 변환 + + + Convert all music + 모든 곡 변환 + + + Preferred format + 선호하는 형식 + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Strawberry에서 이 장치가 지원하는 파일 형식을 파악하려면 장치를 연결하고 열어야 합니다. + + + Open device + 장치 열기 + + + Querying device... + 장치 질의 중... + + + Model + 모델 + + + Manufacturer + 제조사 + + + + DeviceView + + Safely remove device + 안전하게 장치 제거 + + + Forget device + 장치 삭제 + + + Device properties... + 장치 속성... + + + Append to current playlist + 현재 재생 목록에 추가 + + + Replace current playlist + 현재 재생 목록 대체 + + + Open in new playlist + 새 재생 목록에서 열기 + + + Copy to collection... + 라이브러리로 복사... + + + Delete from device... + 장치에서 삭제... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + 장치를 삭제하면 이 목록에 표시되지 않고 다음에 장치를 다시 연결했을 때 Strawberry에서 모든 음악을 다시 검색합니다. + + + Delete files + 파일 삭제 + + + These files will be deleted from the device, are you sure you want to continue? + 장치에서 다음 파일을 삭제합니다. 계속 진행하시겠습니까? + + + + DeviceViewContainer + + Form + + + + + DynamicPlaylistControls + + Dynamic mode is on + 자동 모드가 켜졌습니다 + + + New tracks will be added automatically. + 새 곡들이 자동으로 추가됩니다. + + + Expand + 확장 + + + Repopulate + 다시 가져오기 + + + Turn off + + + + + EditTagDialog + + Edit track information + 트랙 정보 편집 + + + Summary + 요약 + + + Date created + 생성한 날짜 + + + Art Automatic + + + + Date modified + 수정한 날짜 + + + Art Embedded + + + + Last played + A playlist's tag. + 마지막 재생 + + + File type + 파일 형식 + + + Length + 길이 + + + Play count + 재생 횟수 + + + Bit depth + 비트 해상도 + + + EBU R 128 integrated loudness + + + + Bit rate + 비트 전송률 + + + Skip count + 건너뛴 횟수 + + + Sample rate + 샘플링 레이트 + + + Path + + + + Filename + 파일 이름 + + + Art Unset + + + + File size + 파일 크기 + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + 재생 횟수 초기화 + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + 디스크 + + + Grouping + 그룹 + + + Album artist + 앨범 아티스트 + + + Album + 앨범 + + + Year + 년도 + + + Title + 제목 + + + Artist + 아티스트 + + + Composer + 작곡가 + + + Complete tags automatically + 자동으로 태그 완성 + + + Genre + 장르 + + + Comment + 설명 + + + Performer + 연주가 + + + Compilation + + + + Track + 트랙 + + + Rating + + + + Lyrics + 가사 + + + Complete lyrics automatically + + + + Previous + 이전 + + + Next + 다음 + + + Saving tracks + 트랙 저장 중 + + + Loading tracks + 트랙 불러오는 중 + + + %1 songs selected. + + + + kbps + + + + Unknown + 알 수 없음 + + + Yes + + + + No + + + + None + 없음 + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + 표지 그림을 설정하지 않았음 + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + 없음 + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + 이퀄라이저 + + + Preset: + 사전 설정: + + + Save preset + 사전 설정 저장 + + + Delete preset + 사전 설정 삭제 + + + Enable equalizer + 이퀄라이저 활성화 + + + Enable stereo balancer + 스테레오 균형 맞추기 활성화 + + + Left + 왼쪽 + + + Balance + 균형 + + + Right + 오른쪽 + + + Pre-amp + 프리앰프 + + + Custom + 사용자 정의 + + + Classical + 클래식 + + + Club + 클럽 + + + Dance + 댄스 + + + Full Bass + 저음 강화 + + + Full Treble + 고음 강화 + + + Full Bass + Treble + 저음+고음 강화 + + + Laptop/Headphones + 노트북/헤드폰 + + + Large Hall + 거대한 홀 + + + Live + 라이브 + + + Party + 파티 + + + Pop + + + + Reggae + 레게 + + + Rock + + + + Soft + 소프트 + + + Ska + 스카 + + + Soft Rock + 소프트 록 + + + Techno + 테크노 + + + Zero + 제로 + + + Name + 이름 + + + Are you sure you want to delete the "%1" preset? + "%1" 사전 설정을 지우시겠습니까? + + + + EqualizerSlider + + Equalizer + 이퀄라이저 + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Strawberry 오류 + + + + FancyTabWidget + + Large sidebar + 큰 사이드바 + + + Icons sidebar + + + + Small sidebar + 작은 사이드바 + + + Plain sidebar + 일반 사이드바 + + + Tabs on top + 위쪽에 탭 표시 + + + Icons on top + 상단에 아이콘 + + + + FileTypeItemDelegate + + Unknown + 알 수 없음 + + + + FileView + + Form + + + + + FileViewList + + Append to current playlist + 현재 재생 목록에 추가 + + + Replace current playlist + 현재 재생 목록 대체 + + + Open in new playlist + 새 재생 목록에서 열기 + + + Copy to collection... + 라이브러리로 복사... + + + Move to collection... + 라이브러리로 이동... + + + Copy to device... + 장치로 복사... + + + Delete from disk... + 디스크에서 삭제... + + + Edit track information... + 트랙 정보 편집... + + + Show in file browser... + 파일 탐색기에 표시... + + + + FreeSpaceBar + + Available + 사용 가능 + + + New songs + 새로운 음악 + + + Exceeded by + + + + Used + 사용됨 + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + iPod 데이터베이스 불러오는 중 + + + An error occurred loading the iTunes database + iTunes 데이터베이스를 불러오는 중 오류 발생 + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + 웹 브라우저에서 다음 URL을 여십시오 + + + Redirect missing token code! + 넘겨주기 응답에 토큰 코드가 없습니다! + + + Received invalid reply from web browser. + 웹 브라우저에서 잘못된 응답을 받았습니다. + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + 마운트 지점 + + + Device + 장치 + + + URI + + + + + GlobalShortcutGrabber + + Press a key + 키를 누르십시오 + + + Press a key combination to use for %1... + %1에 사용할 단축키를 누르십시오... + + + + GlobalShortcutsManager + + Play + 재생 + + + Pause + 일시 정지 + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + 이전 트랙 + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + 음소거 + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + 좋아요 + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + 열기... + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + 시스템 설정을 실행한 다음 Strawberry에서 "<span style=" font-style:italic;">컴퓨터 제어 허용</span>"을 활성화해야 Strawberry에서 전역 단축키를 사용할 수 있습니다. + + + Action + Category label + 동작 + + + Shortcut + 단축키 + + + Shortcut for %1 + %1 단축키 + + + &None + 없음(&N) + + + &Default + 기본값(&D) + + + &Custom + 사용자 정의(&C) + + + Change shortcut... + 단축키 변경... + + + The "%1" command could not be started. + "%1" 명령을 시작할 수 없습니다. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + %1에서 X11 단축키를 사용하는 것은 추천하지 않으며 키보드가 작동하지 않을 수도 있습니다! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + 라이브러리 고급 그룹 + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + 라이브러리 그룹 방식... + + + First level + 첫 단계 + + + None + 없음 + + + Artist + 아티스트 + + + Album artist + 앨범 아티스트 + + + Album + 앨범 + + + Album - Disc + 앨범 - 디스크 + + + Disc + 디스크 + + + Format + 형식 + + + Genre + 장르 + + + Year + 년도 + + + Year - Album + 년도 - 앨범 + + + Year - Album - Disc + 년도 - 앨범 - 디스크 + + + Original year + 원본 년도 + + + Original year - Album + 원본 년도 - 앨범 + + + Composer + 작곡가 + + + Performer + 연주가 + + + Grouping + 그룹 + + + File type + 파일 형식 + + + Sample rate + 샘플링 레이트 + + + Bit depth + 비트 해상도 + + + Bitrate + + + + Second level + 두 번째 단계 + + + Third level + 세 번째 단계 + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + 버퍼링 + + + + LastFMImport + + Missing username, please login to last.fm first! + 계정명이 없습니다. last.fm에 먼저 로그인해주세요. + + + + LastFMImportDialog + + Import data from last.fm + last.fm으로부터 데이터 가져오기 + + + Choose data to import from last.fm + + + + Last played + 마지막 재생 + + + Play counts + 재생 횟수 + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + 닫기 + + + Cancel + 취소 + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + 없음 + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz 인증 + + + Please open this URL in your browser + 웹 브라우저에서 다음 URL을 여십시오 + + + Redirect missing token code! + 넘겨주기 응답에 토큰 코드가 없습니다! + + + Received invalid reply from web browser. + 웹 브라우저에서 잘못된 응답을 받았습니다. + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + + + + You are not signed in. + 로그인하지 않았습니다. + + + Sign out + 로그아웃 + + + Signing in... + 로그인 중... + + + You are signed in. + 로그인했습니다. + + + You are signed in as %1. + %1(으)로 로그인했습니다. + + + Expires on %1 + 만료 일자: %1 + + + + LyricsSettingsPage + + Lyrics + 가사 + + + Lyrics providers + 가사 가져오기 + + + Choose the providers you want to use when searching for lyrics. + 가사를 검색할 때 가져올 곳을 선택해 주세요. + + + Move up + 위로 이동 + + + Move down + 아래로 이동 + + + Authentication + 인증 + + + Login + 로그인 + + + No provider selected. + 아무 곳도 선택되지 않았습니다. + + + Authentication failed + 인증 실패 + + + + MainWindow + + Strawberry Music Player + Strawberry 음악 재생기 + + + MenuPopupToolButton + + + + &Music + 음악(&M) + + + P&laylist + 재생 목록(&L) + + + Help + 도움말 + + + &Tools + 도구(&T) + + + Previous track + 이전 트랙 + + + F5 + + + + &Play + 재생(&P) + + + F6 + + + + &Stop + 정지(&S) + + + F7 + + + + &Next track + 다음 트랙(&N) + + + F8 + + + + &Quit + 끝내기(&Q) + + + Ctrl+Q + + + + Stop after this track + 현재 트랙 이후 정지 + + + Ctrl+Alt+V + + + + Love + 좋아요 + + + &Clear playlist + 재생 목록 비우기(&C) + + + Clear playlist + 재생 목록 비우기 + + + Ctrl+K + + + + Edit track information... + 트랙 정보 편집... + + + Ctrl+E + + + + Renumber tracks in this order... + 다음 순서로 트랙 번호 다시 매기기... + + + Set value for all selected tracks... + 선택한 모든 트랙의 값 설정... + + + Edit tag... + 태그 편집... + + + &Settings... + 설정(&S)... + + + Ctrl+P + + + + &About Strawberry + Strawberry 정보(&A) + + + F1 + + + + S&huffle playlist + 재생 목록 섞기(&H) + + + Ctrl+H + + + + &Add file... + 파일 추가(&A)... + + + Ctrl+Shift+A + + + + &Open file... + 파일 열기(&O)... + + + Open audio &CD... + 오디오 CD 열기(&C)... + + + &Cover Manager + 앨범아트 관리자(&C) + + + C&onsole + 콘솔(&O) + + + &Shuffle mode + 셔플 재생 모드(&S) + + + &Repeat mode + 반복 모드(&R) + + + Remove from playlist + 재생 목록에서 제거 + + + &Equalizer + 이퀄라이저(&E) + + + &Transcode Music + 음악 변환(&T) + + + Add &folder... + 폴더 추가(&F)... + + + &Jump to the currently playing track + 현재 재생 중인 트랙으로 이동(&J) + + + Ctrl+J + + + + &New playlist + 새 재생 목록(&N) + + + Ctrl+N + + + + Save &playlist... + 재생 목록 저장(&P)... + + + Ctrl+S + + + + &Load playlist... + 재생 목록 불러오기(&L)... + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + 다음 재생 목록 탭으로 이동 + + + Go to previous playlist tab + 이전 재생 목록 탭으로 이동 + + + &Update changed collection folders + 라이브러리 변경 사항 업데이트(&U) + + + About &Qt + Qt 정보(&Q) + + + &Mute + 음소거(&M) + + + Ctrl+M + + + + &Do a full collection rescan + 전체 라이브러리 재탐색(&D) + + + Stop collection scan + + + + Complete tags automatically... + 자동으로 태그 완성... + + + Ctrl+T + + + + Toggle scrobbling + 스크로블 전환 + + + Remove &duplicates from playlist + 재생 목록에서 중복 항목 삭제(&D) + + + Remove &unavailable tracks from playlist + 재생 목록에서 사용할 수 없는 트랙 삭제(&U) + + + Add file(s) to transcoder + 변환할 파일 추가 + + + Add file to transcoder + 변환할 파일 추가 + + + Add stream... + 스트림 추가 + + + Show sidebar + 사이드바 표시 + + + Import data from last.fm... + last.fm으로부터 데이터 가져오기 + + + All Files (*) + 모든 파일 (*) + + + Context + 지금 재생 + + + Collection + 라이브러리 + + + Queue + 대기열 + + + Playlists + 재생 목록 + + + Smart playlists + 스마트 재생 목록 + + + Files + 파일 + + + Radios + + + + Devices + 장치 + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + 모든 곡 표시 + + + Show only duplicates + 복사본만 표시 + + + Show only untagged + 태그되지 않은 것만 표시 + + + Configure collection... + 라이브러리 설정... + + + Play + 재생 + + + Toggle queue status + 대기열 상태 전환 + + + Queue selected tracks to play next + 선택한 트랙을 다음에 재생하도록 대기열에 추가 + + + Toggle skip status + 건너뛰기 상태 전환 + + + Rescan song(s)... + 다시 곡 검색 + + + Copy URL(s)... + URL 복사 + + + Show in collection... + 라이브러리에 표시... + + + Show in file browser... + 파일 탐색기에 표시... + + + Organize files... + + + + Copy to collection... + 라이브러리로 복사... + + + Move to collection... + 라이브러리로 이동... + + + Copy to device... + 장치로 복사... + + + Delete from disk... + 디스크에서 삭제... + + + Check for updates... + 업데이트 확인... + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + 일시 정지 + + + Dequeue track + 대기열에서 트랙 삭제 + + + Dequeue selected tracks + 선택한 트랙을 대기열에서 삭제 + + + Queue track + 대기열에 트랙 추가 + + + Queue selected tracks + 선택한 트랙을 대기열에 추가 + + + Queue to play next + 다음에 재생할 대기열에 추가 + + + Unskip track + 트랙 건너뛰기 해제 + + + Unskip selected tracks + 선택한 트랙 건너뛰기 해제 + + + Skip track + 트랙 건너뛰기 + + + Skip selected tracks + 선택한 트랙 건너뛰기 + + + Set %1 to "%2"... + %1을(를) "%2"(으)로 설정... + + + Edit tag "%1"... + "%1" 태그 편집... + + + Add to another playlist + 다른 재생 목록에 추가 + + + New playlist + 새로운 재생 목록 + + + Add file + 파일 추가 + + + Music + 음악 + + + Add folder + 폴더 추가 + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + 재생 목록에 %1곡이 있습니다. 실행 취소하기에는 너무 큽니다. 재생 목록을 비우시겠습니까? + + + Error + 오류 + + + None of the selected songs were suitable for copying to a device + 선택한 음악을 장치에 복사하기에 적합하지 않음 + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Strawberry의 업데이트한 버전에 다음 기능이 추가되어 전체 라이브러리를 재검색해야 합니다: + + + Would you like to run a full rescan right now? + 지금 전부 다시 검색하시겠습니까? + + + Collection rescan notice + 라이브러리 재탐색 알림 + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + 메세지 다시 보지 않기 + + + + MimeData + + Playlist + 재생 목록 + + + + MoodbarProxyStyle + + Show moodbar + 무드바 표시 + + + Moodbar style + 무드바 스타일 + + + + MoodbarSettingsPage + + Moodbar + 무드바 + + + Show a moodbar in the track progress bar + 트랙 진행 표시줄에 무드바 표시 + + + Moodbar style + 무드바 스타일 + + + Save the .mood files directly in the songs folders + 노래 폴더에 .mood 파일 직접 저장 + + + Enabled + 활성화 + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + MTP 장치 불러오는 중 + + + Error connecting MTP device %1 + MTP 장치 %1 연결 오류 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + 네트워크 프록시 + + + &Use the system proxy settings + 시스템 프록시 설정 사용(&U) + + + Direct internet connection + 직접 인터넷 연결 + + + &Manual proxy configuration + 수동 프록시 설정(&M) + + + HTTP proxy + HTTP 프록시 + + + SOCKS proxy + SOCKS 프록시 + + + Port + 포트 + + + Use authentication + 인증 사용 + + + Username + 사용자 이름 + + + Password + 암호 + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + 알림 + + + Strawberry can show a message when the track changes. + Strawberry에서 재생 중인 곡을 전환할 때 메시지를 표시할 수 있습니다. + + + Notification type + 알림 종류 + + + Disabled + Refers to a disabled notification type in Notification settings. + 사용 안 함 + + + Show a &native desktop notification + 네이티브 데스크톱 알림 표시(&N) + + + Show a pretty OSD + 예쁜 OSD 표시 + + + Show a popup fro&m the system tray + 시스템 트레이에서 팝업 표시(&M) + + + General settings + 일반 설정 + + + Popup duration + 팝업 시간 + + + seconds + + + + Disable duration + 비활성화 시간 + + + Show a notification when I change the volume + 음량을 변경할 때 알림 표시 + + + Show a notification when I change the repeat/shuffle mode + 반복/셔플 모드 변경 시 알림 표시 + + + Show a notification when I pause playback + 재생을 일시 정지할 때 알림 표시 + + + Show a notification when I resume playback + 재생을 다시 시작할 때 알림 표시 + + + Include album art in the notification + 알림에 앨범 커버 포함 + + + Custom message settings + 사용자 정의 메시지 설정 + + + Use a custom message for notifications + 알림에 표시할 사용자 정의 메시지 설정 + + + Preview + 미리 보기 + + + MenuPopupToolButton + + + + Summary + 요약 + + + Body + 본문 + + + Pretty OSD options + 예쁜 OSD 옵션 + + + Background color + 배경 색상 + + + Text options + 텍스트 옵션 + + + Choose font... + 글꼴 선택... + + + Choose color... + 색상 선택... + + + Background opacity + 배경 불투명도 + + + Basic Blue + 기본 파랑 + + + Strawberry Red + + + + Custom... + 사용자 정의... + + + Enable fading + + + + Add song artist tag + 아티스트 태그 추가 + + + Add song album tag + 앨범 태그 추가 + + + Add song title tag + 제목 태그 추가 + + + Add song albumartist tag + 앨범 아티스트 태그 추가 + + + Add song year tag + 년도 태그 추가 + + + Add song composer tag + 작곡가 태그 추가 + + + Add song performer tag + 음악 연주가 태그 추가 + + + Add song grouping tag + 음악 그룹화 태그 추가 + + + Add song disc tag + 음악 디스크 태그 추가 + + + Add song track tag + 트랙 태그 추가 + + + Add song genre tag + 장르 태그 추가 + + + Add song length tag + 음악 길이 태그 추가 + + + Add song play count + 재생 횟수 추가 + + + Add song skip count + 건너뛴 횟수 추가 + + + Add song rating + 음악 별점 추가 + + + Add a new line if supported by the notification type + 알림 형식이 지원한다면 새로운 줄 추가 + + + %filename% + + + + Add song filename + 음악 파일 이름 추가 + + + %url% + + + + Add song URL + + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + OSD 미리 보기 + + + Drag to reposition + 위치를 바꾸려면 드래그하십시오 + + + + OSDBase + + disc %1 + 디스크 %1 + + + track %1 + 트랙 %1 + + + Paused + 일시 정지됨 + + + Stopped + 정지됨 + + + Stop playing after track: %1 + 트랙 재생 후 정지: %1 + + + On + 켜짐 + + + Off + 꺼짐 + + + Playlist finished + 재생 목록 끝남 + + + Volume %1% + 음량 %1% + + + Don't shuffle + 섞지 않기 + + + Shuffle all + 모두 셔플 + + + Shuffle tracks in this album + 이 앨범에 있는 곡만 셔플 + + + Shuffle albums + 앨범 셔플 + + + Don't repeat + 반복하지 않기 + + + Repeat track + 한 곡 반복 + + + Repeat album + 앨범 반복 + + + Repeat playlist + 재생 목록 반복 + + + Stop after every track + 모든 트랙 이후에 정지 + + + Intro tracks + 인트로 트랙 + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + 대상 + + + After copying... + 복사한 후... + + + Keep the original files + 원본 파일 유지 + + + Delete the original files + 원본 파일 삭제 + + + Naming options + 이름 짓기 옵션 + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>토큰은 %로 시작합니다. 예: %artist %album %title </p> + +<p>토큰을 포함하는 텍스트를 중괄호로 둘러싸면 토큰이 비어 있을 때 해당 부분은 표시되지 않습니다.</p> + + + Insert... + 삽입... + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + FAT 파일 시스템에서 사용할 수 있는 글자로 제한 + + + Restrict characters to ASCII + ASCII로 글자 제한 + + + Allow extended ASCII characters + 확장 ASCII 글자 허용 + + + Replace spaces with underscores + 공백을 밑줄로 대체 + + + Overwrite existing files + 기존 파일 덮어쓰기 + + + Copy album cover artwork + 앨범아트 복사 + + + Preview + 미리 보기 + + + Loading... + 불러오는 중... + + + Safely remove the device after copying + 복사 후 안전하게 장치 제거 + + + Title + 제목 + + + Album + 앨범 + + + Artist + 아티스트 + + + Artist's initial + 아티스트 이니셜 + + + Album artist + 앨범 아티스트 + + + Composer + 작곡가 + + + Performer + 연주가 + + + Grouping + 그룹 + + + Track + 트랙 + + + Disc + 디스크 + + + Year + 년도 + + + Original year + 원본 년도 + + + Genre + 장르 + + + Comment + 설명 + + + Length + 길이 + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + 샘플링 레이트 + + + Bit depth + 비트 해상도 + + + File extension + 파일 확장자 + + + + OrganizeErrorDialog + + Error copying songs + 노래 복사 오류 + + + There were problems copying some songs. The following files could not be copied: + 일부 곡을 복사하는 중 문제가 발생했습니다. 다음 파일을 복사할 수 없습니다: + + + Error deleting songs + 노래 삭제 오류 + + + There were problems deleting some songs. The following files could not be deleted: + 일부 곡을 삭제하는 중 문제가 발생했습니다. 다음 파일을 삭제할 수 없습니다: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + 작은 앨범아트 + + + Large album cover + 큰 앨범아트 + + + Fit cover to width + 앨범아트를 너비에 맞춤 + + + Show above status bar + 상태 표시줄 위에 표시 + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + 제목 + + + Artist + 아티스트 + + + Album + 앨범 + + + Track + 트랙 + + + Disc + 디스크 + + + Length + 길이 + + + Year + 년도 + + + Original Year + + + + Genre + 장르 + + + Album Artist + + + + Composer + 작곡가 + + + Performer + 연주가 + + + Grouping + 그룹 + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + 설명 + + + Source + 출처 + + + Mood + 무드 + + + Rating + + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + + + + Undo + + + + Redo + + + + Playlist + 재생 목록 + + + Load playlist + 재생 목록 불러오기 + + + No matches found. Clear the search box to show the whole playlist again. + 일치하는 결과를 찾을 수 없습니다. 검색어를 비우면 전체 재생 목록을 볼 수 있습니다. + + + + PlaylistDelegateBase + + stop + 정지 + + + + PlaylistGeneratorInserter + + Loading smart playlist + 스마트 재생 목록 로딩 + + + + PlaylistHeader + + &Hide... + 숨기기(&H)... + + + &Stretch columns to fit window + 창 크기에 맞게 열 너비 조정(&S) + + + &Reset columns to default + 기본값으로 열 초기화(&R) + + + &Lock rating + + + + &Align text + 텍스트 정렬(&A) + + + &Left + 왼쪽(&L) + + + &Center + 가운데(&C) + + + &Right + 오른쪽(&R) + + + &Hide %1 + %1 숨기기(&H) + + + + PlaylistListContainer + + Form + + + + New folder + 새 폴더 + + + Delete + 삭제 + + + Save playlist + Save playlist menu action. + 재생 목록 저장 + + + Copy to device... + 장치로 복사... + + + Enter the name of the folder + 폴더 이름 입력 + + + Playlist + 재생 목록 + + + Copy to device + 디바이스에 복사 + + + Playlist must be open first. + + + + Remove playlists + 재생 목록 삭제 + + + You are about to remove %1 playlists from your favorites, are you sure? + 즐겨찾기에서 재생 목록 %1개를 삭제할 것입니다. 계속 진행하시겠습니까? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + 재생 목록 왼쪽의 별 모양 아이콘을 클릭해서 즐겨찾기에 추가할 수 있습니다. + + + Favorited playlists will be saved here + 즐겨찾는 재생 목록은 여기에 저장됩니다 + + + + PlaylistManager + + Playlist + 재생 목록 + + + Couldn't create playlist + 재생 목록을 생성할 수 없음 + + + Save playlist + Title of the playlist save dialog. + 재생 목록 저장 + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + %1개 선택됨, + + + %n track(s) + + + + + + Unknown + 알 수 없음 + + + Various artists + 편집 음반 + + + + PlaylistParser + + All playlists (%1) + 모든 재생 목록(%1) + + + %1 playlists (%2) + 재생 목록 %1개(%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + 재생 목록 옵션 + + + File paths + 파일 경로 + + + This can be changed later through the preferences + 설정에서 나중에 변경할 수 있습니다 + + + Remember my choice + 내 선택 기억 + + + Automatic + 자동 + + + Relative + 상대 경로 + + + Absolute + 절대 경로 + + + + PlaylistSequence + + Repeat + 반복 + + + Shuffle + 셔플 재생 + + + Don't repeat + 반복하지 않기 + + + Repeat track + 한 곡 반복 + + + Repeat album + 앨범 반복 + + + Repeat playlist + 재생 목록 반복 + + + Stop after each track + 각각 트랙이 끝난 후 정지 + + + Intro tracks + 인트로 트랙 + + + Don't shuffle + 섞지 않기 + + + Shuffle tracks in this album + 이 앨범에 있는 곡만 셔플 + + + Shuffle all + 모두 셔플 + + + Shuffle albums + 앨범 셔플 + + + + PlaylistSettingsPage + + Playlist + 재생 목록 + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + 재생 목록 탭을 닫을 때 알리기 + + + Continue to the next item in the playlist if a song is unavailable + 재생 목록에 있는 노래를 사용할 수 없을 때 다음 곡으로 진행 + + + Grey out unavailable songs in playlists on playback + 재생할 때 재생 목록에서 사용할 수 없는 곡을 회색으로 표시 + + + Grey out unavailable songs in playlists on startup + 시작할 때 재생 목록에서 사용할 수 없는 곡을 회색으로 표시 + + + Automatically select current playing track + 현재 재생 중인 트랙을 자동으로 선택 + + + Enable playlist toolbar + + + + Enable playlist clear button + 재생 목록 비우기 단추 활성화 + + + Enable delete files in the right click context menu + 마우스 우클릭 메뉴로부터 파일 제거 활성화 + + + Automatically sort playlist when inserting songs + 곡을 추가하면 자동으로 재생목록 정렬 + + + When saving a playlist, file paths should be + 재생 목록을 저장할 때 파일 경로 처리 방식 + + + A&utomatic + 자동(&U) + + + Absolu&te + 절대 경로(&T) + + + Re&lative + 상대 경로(&L) + + + As&k when saving + 저장할 때 묻기(&K) + + + Metadata + 메타데이터 + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + 활성화하면 재생 목록에서 선택한 노래를 클릭하여 태그 값을 직접 수정할 수 있습니다. + + + Enable song metadata inline edition with click + 클릭하여 음악 메타데이터를 바로 편집하려면 활성화 + + + Write metadata when saving playlists + 재생 목록을 저장할 때 메타데이터 쓰기 + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + 재생 목록 닫기 + + + Rename playlist... + 재생 목록 이름 바꾸기... + + + Save playlist... + 재생 목록 저장... + + + Rename playlist + 재생 목록 이름 바꾸기 + + + Enter a new name for this playlist + 재생 목록의 새로운 이름 입력 + + + Remove playlist + 재생 목록 삭제 + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + 즐겨찾는 재생 목록에 없는 재생 목록을 삭제하려고 합니다. 이 작업은 취소할 수 없습니다. +계속 진행하시겠습니까? + + + Warn me when closing a playlist tab + 재생 목록 탭을 닫을 때 알리기 + + + This option can be changed in the "Behavior" preferences + 이 옵션은 "행동" 설정에서 변경할 수 있습니다 + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + 재생 목록 + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + %n곡 추가 + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + %n곡 이동 + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + %n곡 삭제 + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + 노래 섞기 + + + + PlaylistUndoCommands::SortItems + + sort songs + 음악 정렬 + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + 사용 + + + options + 옵션 + + + URL(s) + URL + + + Player options + 재생기 옵션 + + + Start the playlist currently playing + 현재 재생 중인 재생 목록 시작 + + + Play if stopped, pause if playing + 정지 상태라면 재생, 재생 상태라면 일시 정지 + + + Pause playback + 재생 일시 정지 + + + Stop playback + 재생 정지 + + + Stop playback after current track + 현재 트랙 이후에 재생 정지 + + + Skip backwards in playlist + 재생 목록의 이전 곡으로 전환 + + + Skip forwards in playlist + 재생 목록의 다음 곡으로 전환 + + + Set the volume to <value> percent + 음량을 <value> 퍼센트로 설정 + + + Increase the volume by 4 percent + 4퍼센트만큼 음량 올리기 + + + Decrease the volume by 4 percent + 4퍼센트만큼 음량 내리기 + + + Increase the volume by <value> percent + <value>%만큼 음량 올리기 + + + Decrease the volume by <value> percent + <value>%만큼 음량 내리기 + + + Seek the currently playing track to an absolute position + 현재 재생 중인 트랙의 절대적 위치로 이동 + + + Seek the currently playing track by a relative amount + 현재 재생 중인 트랙을 상대적 양만큼 이동 + + + Restart the track, or play the previous track if within 8 seconds of start. + 트랙을 다시 시작하거나, 재생한 지 8초 이내라면 이전 트랙을 재생합니다. + + + Playlist options + 재생 목록 옵션 + + + Create a new playlist with files + 지정한 파일을 포함하는 새 재생 목록 만들기 + + + Append files/URLs to the playlist + 재생 목록에 파일/URL 추가 + + + Loads files/URLs, replacing current playlist + 불러올 파일이나 URL, 현재 재생 목록을 대체함 + + + Play the <n>th track in the playlist + 재생 목록의 <n>번째 곡 재생 + + + Play given playlist + + + + Other options + 기타 옵션 + + + Display the on-screen-display + OSD 표시 + + + Toggle visibility for the pretty on-screen-display + 예쁜 OSD 표시 여부 전환 + + + Change the language + 언어 변경 + + + Resize the window + + + + Equivalent to --log-levels *:1 + --log-levels *:1과 동일함 + + + Equivalent to --log-levels *:3 + --log-levels *:3과 동일함 + + + Comma separated list of class:level, level is 0-3 + 쉼표로 구분된 class:level 목록, level은 0-3 + + + Print out version information + 버전 정보 표시 + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + 알 수 없음 + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + %1 파일은 올바른 오디오 파일이 아닌 것 같습니다. + + + 1 day + 1일 + + + %1 days + %1일 + + + Today + 오늘 + + + Yesterday + 어제 + + + %1 days ago + %1일 전 + + + Tomorrow + 내일 + + + In %1 days + %1일 후 + + + Next week + 다음 주 + + + In %1 weeks + %1주 후 + + + Show in file browser + 파일 탐색기에 표시 + + + Too many songs selected. + 너무 많은 곡을 선택했습니다. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + 알 수 없는 오류 + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + 아티스트 + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + 사용 가능한 필드 + + + after + + + + before + + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + + + + contains + + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + + + + not empty + + + + Comment + 설명 + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + + + + Days + + + + Weeks + + + + Months + + + + Years + + + + Normal + 일반 + + + Angry + 화남 + + + Frozen + 얼어붙음 + + + Happy + 행복함 + + + System colors + 시스템 색상 + + + + QWidget + + Clear + 비우기 + + + Reset + 초기화 + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 검색 중... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 일치하는 결과가 없습니다. + + + Unknown error + 알 수 없는 오류 + + + + QobuzService + + Authenticating... + 인증 중... + + + Maximum number of login attempts reached. + 최대 로그인 시도 횟수에 도달했습니다. + + + Missing Qobuz app ID. + Qobuz 앱 ID가 없습니다. + + + Missing Qobuz username. + Qobuz 사용자 이름이 없습니다. + + + Missing Qobuz password. + Qobuz 암호가 없습니다. + + + Not authenticated with Qobuz. + Qobuz에 인증되지 않았습니다. + + + Missing Qobuz app ID or secret. + Qobuz 앱 ID나 비밀 값이 없습니다. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + 활성화 + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + 인증 + + + App ID + 앱 ID + + + Username + 사용자 이름 + + + Password + 암호 + + + App Secret + 앱 비밀 값 + + + Login + 로그인 + + + Preferences + 설정 + + + Audio format + 오디오 형식 + + + Search delay + 검색 지연 시간 + + + ms + + + + Artists search limit + 아티스트 검색 제한 + + + Albums search limit + 앨범 검색 제한 + + + Songs search limit + 노래 검색 제한 + + + Download album covers + 앨범아트 다운로드 중 + + + Base64 encoded secret + + + + Configuration incomplete + 설정이 불완전함 + + + Missing app id. + app_id가 없습니다. + + + Missing username. + 계정명이 없습니다. + + + Missing password. + 패스워드가 없습니다. + + + Authentication failed + 인증 실패 + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Qobuz 앱 ID나 비밀 값이 없습니다. + + + Cancelled. + 취소됨. + + + + Queue + + %n track(s) + + + + + + + QueueView + + QueueView + 대기열 보기 + + + Move down + 아래로 이동 + + + Ctrl+Up + + + + Move up + 위로 이동 + + + Ctrl+Down + + + + Remove + 삭제 + + + Clear + 비우기 + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + 현재 재생 목록에 추가 + + + Replace current playlist + 현재 재생 목록 대체 + + + Open in new playlist + 새 재생 목록에서 열기 + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + 그룹 관리자 저장됨 + + + Remove + 삭제 + + + Ctrl+Up + + + + Name + 이름 + + + First level + 첫 단계 + + + Second Level + 두 번째 단계 + + + Third Level + 세 번째 단계 + + + None + 없음 + + + Album artist + 앨범 아티스트 + + + Artist + 아티스트 + + + Album + 앨범 + + + Album - Disc + 앨범 - 디스크 + + + Year - Album + 년도 - 앨범 + + + Year - Album - Disc + 년도 - 앨범 - 디스크 + + + Original year - Album + 원본 년도 - 앨범 + + + Original year - Album - Disc + + + + Disc + 디스크 + + + Year + 년도 + + + Original year + 원본 년도 + + + Genre + 장르 + + + Composer + 작곡가 + + + Performer + 연주가 + + + Grouping + 그룹 + + + File type + 파일 형식 + + + Format + 형식 + + + Sample rate + 샘플링 레이트 + + + Bit depth + 비트 해상도 + + + Bitrate + + + + Unknown + 알 수 없음 + + + + ScrobblerSettingsPage + + Scrobbler + 스크로블러 + + + Enable + 활성화 + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + 곡에 올바른 메타데이터가 있고, 재생 시간이 30초보다 길고, 재생 시간의 절반 이상 재생(최대 4분)되었을 때 스크로블 기록에 추가됩니다. + + + Work in offline mode (Only cache scrobbles) + 오프라인 모드로 작업(스크로블을 캐시에만 추가) + + + Show scrobble button + 스크로블 단추 표시 + + + Show love button + 좋아요 단추 표시 + + + Submit scrobbles every + 스크로블 제출 주기 + + + seconds + + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + 스크로블을 보낼 때 앨범 아티스트 선호 + + + Show dialog for errors + 에러 내용 보기 + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + 이 소스로부터 스크로블링 켜기 + + + Collection + 라이브러리 + + + Subsonic + + + + Local file + 로컬 파일 + + + Tidal + + + + Device + 장치 + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + 스트림 + + + Radio Paradise + + + + Unknown + 알 수 없음 + + + Last.fm + + + + Login + 로그인 + + + Libre.fm + + + + Listenbrainz + + + + User token: + 사용자 토큰: + + + Enter your user token from + 다음에 있는 사용자 토큰 입력: + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 스크로블러 인증 + + + Open URL in web browser? + 웹 브라우저에서 URL을 여시겠습니까? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + 클립보드에 URL을 복사하고 웹 브라우저에서 직접 열려면 "저장"을 누르십시오. + + + Could not open URL. Please open this URL in your browser + URL을 열 수 없습니다. 웹 브라우저에서 여십시오 + + + Invalid reply from web browser. Missing token. + 웹 브라우저에서 잘못된 응답을 받았습니다. 토큰이 없습니다. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + 스크로블러 %1이(가) 인증되지 않았습니다! + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + 설정 + + + General + 일반 + + + User interface + 사용자 인터페이스 + + + Streaming + 스트리밍 + + + + SmartPlaylistQuerySearchPage + + Form + + + + Search mode + 검색 모드 + + + Match every search term (AND) + 모든 조건에 맞는 곡 (AND) + + + Match one or more search terms (OR) + 조건 중 하나라도 맞는 곡 (OR) + + + Include all songs + 모든 곡 추가 + + + Search terms + 검색 조건 + + + + SmartPlaylistQuerySortPage + + Form + + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + + + + Show all the songs + 모든 곡 보기 + + + Only show the first + + + + songs + + + + + SmartPlaylistQueryWizardPlugin + + Collection search + 라이브러리 검색 + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + 검색 조건 + + + A song will be included in the playlist if it matches these conditions. + 이 조건에 맞는 곡들이 재생 목록에 들어갑니다. + + + Search options + 검색 옵션 + + + Choose how the playlist is sorted and how many songs it will contain. + 재생목록 정렬 조건과 최대로 들어갈 곡 수를 정하세요. + + + + SmartPlaylistSearchPreview + + Form + + + + Preview + 미리 보기 + + + Loading... + 불러오는 중... + + + %1 songs found (showing %2) + + + + %1 songs found + + + + + SmartPlaylistSearchTermWidget + + Form + + + + and + + + + ago + + + + The second value must be greater than the first one! + 두번째 값은 첫번째보다 커야 합니다. + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + 검색 조건 추가 + + + + SmartPlaylistWizard + + Smart playlist + 스마트 재생 목록 + + + Playlist type + + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + 스마트 재생 목록은 조건에 맞는 곡들을 라이브러리에서 찾아 자동으로 생성됩니다. 다양한 스마트 재생 목록과 스마트 재생 목록을 만드는 규칙들이 있습니다. + + + Finish + 완료 + + + Choose a name for your smart playlist + 스마트 재생 목록 이름을 정하세요 + + + + SmartPlaylistWizardFinishPage + + Form + + + + Name + 이름 + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + 다이나믹 모드일 때는 곡이 끝날 때마다 새 곡이 재생목록에 추가됩니다. + + + + SmartPlaylists + + Newest tracks + 새로 추가된 곡 + + + 50 random tracks + 랜덤 곡 50곡 + + + Ever played + 재생된 적 있음 + + + Never played + 한번도 재생하지 않은 곡 + + + Last played + 마지막 재생 + + + Most played + 많이 재생된 곡 + + + Favourite tracks + 좋아요 표시된 곡 + + + All tracks + 모든 트랙 + + + Dynamic random mix + 모든 곡 랜덤 믹스 + + + + SmartPlaylistsViewContainer + + New smart playlist + 새 스마트 재생 목록 + + + Edit smart playlist + 스마트 재생 목록 수정 + + + Delete smart playlist + 스마트 재생 목록 제거 + + + New smart playlist... + 새 스마트 재생 목록 + + + Append to current playlist + 현재 재생 목록에 추가 + + + Replace current playlist + 현재 재생 목록 대체 + + + Open in new playlist + 새 재생 목록에서 열기 + + + Queue track + 대기열에 트랙 추가 + + + Play next + 다음 재생 + + + Edit smart playlist... + 스마트 재생 목록 수정 + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry는 Snap에서 실행되고 있습니다. + + + It is detected that Strawberry is running as a Snap + Strawberry가 Snap에서 실행되고 있는 것을 감지하였습니다. + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + 우분투용 공식 PPA 저장소는 %1 에서 찾을 수 있습니다. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + 공식 릴리즈가 데비안, 우분투 혹은 파생 배포판에서 제공됩니다. %1을 참조하십시오. + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + 이 URL에 접근하려면 GStreamer가 필요합니다. + + + Preload function was not set for blocking operation. + 차단하는 작업의 프리로드 함수를 설정하지 않았습니다. + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + CD 재생은 GStreamer 엔진에서만 지원합니다. + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + 오디오 CD를 불러오는 중 오류가 발생했습니다. + + + Loading tracks + 트랙 불러오는 중 + + + Loading tracks info + 트랙 정보 불러오는 중 + + + + SpotifyRequest + + Authenticating... + 인증 중... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 검색 중... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 일치하는 결과가 없습니다. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + + + + Please open this URL in your browser + 웹 브라우저에서 다음 URL을 여십시오 + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + 웹 브라우저에서 잘못된 응답을 받았습니다. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + 활성화 + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + 설정 + + + Search delay + 검색 지연 시간 + + + ms + + + + Artists search limit + 아티스트 검색 제한 + + + Albums search limit + 앨범 검색 제한 + + + Songs search limit + 노래 검색 제한 + + + Download album covers + 앨범아트 다운로드 중 + + + Fetch entire albums when searching songs + 곡을 검색할 때 전체 앨범 가져오기 + + + Authentication failed + 인증 실패 + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + 음악을 가져오려면 여기를 클릭하십시오 + + + Append to current playlist + 현재 재생 목록에 추가 + + + Replace current playlist + 현재 재생 목록 대체 + + + Open in new playlist + 새 재생 목록에서 열기 + + + Queue track + 대기열에 트랙 추가 + + + Queue to play next + 다음에 재생할 대기열에 추가 + + + Remove from favorites + 즐겨찾기에서 삭제 + + + + StreamingCollectionViewContainer + + Form + + + + Close + 닫기 + + + Abort + 중지 + + + Refresh catalogue + 카탈로그 새로 고침 + + + + StreamingSearchModel + + Various artists + 편집 음반 + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + + + + albums + + + + songs + + + + Enter search terms above to find music + 음악을 찾으려면 위에 검색어를 입력하십시오 + + + Configure %1... + %1 설정... + + + Append to current playlist + 현재 재생 목록에 추가 + + + Replace current playlist + 현재 재생 목록 대체 + + + Open in new playlist + 새 재생 목록에서 열기 + + + Queue track + 대기열에 트랙 추가 + + + Add to artists + 아티스트에 추가 + + + Add to albums + 앨범에 추가 + + + Add to songs + 노래에 추가 + + + Search for this + 다음 항목 검색 + + + Group by + 그룹 방식 + + + + StreamingSongsView + + Configure %1... + %1 설정... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + 아티스트 + + + Albums + 앨범 + + + Songs + 노래 + + + Search + 검색 + + + Configure %1... + %1 설정... + + + + SubsonicRequest + + Retrieving albums... + 앨범 가져오는 중... + + + Retrieving songs for %1 album... + 앨범 %1개의 노래 가져오는 중... + + + Retrieving songs for %1 albums... + 앨범 %1개의 노래 가져오는 중... + + + Retrieving album cover for %1 album... + 앨범 %1개의 앨범아트 가져오는 중... + + + Retrieving album covers for %1 albums... + 앨범 %1개의 앨범아트 가져오는 중... + + + Unknown error + 알 수 없는 오류 + + + + SubsonicService + + Server URL is invalid. + 서버 URL이 잘못되었습니다. + + + Missing username or password. + 사용자 이름이나 암호가 없습니다. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + 활성화 + + + Server URL + 서버 URL + + + Authentication + 인증 + + + Username + 사용자 이름 + + + Password + 암호 + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + 설정 + + + Use HTTP/2 when possible + + + + Verify server certificate + 서버 인증서 확인 + + + Download album covers + 앨범아트 다운로드 중 + + + Server-side scrobbling + 서버 사이드 스크로블링 + + + Test + 테스트 + + + Delete songs + + + + Configuration incomplete + 설정이 불완전함 + + + Missing server url, username or password. + 서버 URL, 사용자 이름이나 암호가 없습니다. + + + Configuration incorrect + 설정이 잘못됨 + + + Server URL is invalid. + 서버 URL이 잘못되었습니다. + + + Test successful! + 테스트 성공! + + + Test failed! + 테스트 실패! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Subsonic 서버 URL이 잘못되었습니다. + + + Missing Subsonic username or password. + Subsonic 사용자 이름이나 암호가 없습니다. + + + + SystemTrayIcon + + Pause + 일시 정지 + + + Play + 재생 + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + 인증 중... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 검색 중... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 일치하는 결과가 없습니다. + + + + TidalService + + Reply from Tidal is missing query items. + Tidal 응답에 쿼리 항목이 없습니다. + + + Missing Tidal API token. + Tidal API 토큰이 없습니다. + + + Missing Tidal username. + Tidal 사용자 이름이 없습니다. + + + Missing Tidal password. + Tidal 암호가 없습니다. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Tidal에 인증되지 않았으며 최대 로그인 시도 횟수에 도달했습니다. + + + Not authenticated with Tidal. + Tidal에 인증되지 않았습니다. + + + Missing Tidal API token, username or password. + 타이달 API토큰, 계정 혹은 비밀번호가 없습니다. + + + + TidalSettingsPage + + Tidal + + + + Enable + 활성화 + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + 인증 + + + Use OAuth + OAuth 사용 + + + Client ID + 클라이언트 ID + + + API Token + API 토큰 + + + Username + 사용자 이름 + + + Password + 암호 + + + Login + 로그인 + + + Preferences + 설정 + + + Audio quality + 오디오 품질 + + + Search delay + 검색 지연 시간 + + + ms + + + + Artists search limit + 아티스트 검색 제한 + + + Albums search limit + 앨범 검색 제한 + + + Songs search limit + 노래 검색 제한 + + + Download album covers + 앨범아트 다운로드 중 + + + Fetch entire albums when searching songs + 곡을 검색할 때 전체 앨범 가져오기 + + + Album cover size + 앨범아트 크기 + + + Stream URL method + 스트림 URL 메서드 + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + 설정이 불완전함 + + + Missing Tidal client ID. + Tidal 클라이언트 ID가 없습니다. + + + Missing API token. + API 토큰이 없습니다. + + + Missing username. + 계정명이 없습니다. + + + Missing password. + 패스워드가 없습니다. + + + Authentication failed + 인증 실패 + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Tidal에 인증되지 않았습니다. + + + Missing Tidal API token, username or password. + 타이달 API토큰, 계정 혹은 비밀번호가 없습니다. + + + Cancelled. + 취소됨. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + 태그 가져오기 + + + Sorry + 죄송합니다 + + + Strawberry was unable to find results for this file + Strawberry에서 이 파일의 결과를 찾을 수 없습니다 + + + Select best possible match + 가장 유사한 일치 선택 + + + Track + 트랙 + + + Year + 년도 + + + Title + 제목 + + + Artist + 아티스트 + + + Album + 앨범 + + + Previous + 이전 + + + Next + 다음 + + + Original tags + 원본 태그 + + + Suggested tags + 제안된 태그 + + + Saving tracks + 트랙 저장 중 + + + + TrackSlider + + Form + + + + 0:00:00 + + + + Click to toggle between remaining time and total time + 남은 시간과 전체 시간을 전환하려면 클릭하십시오 + + + + TranscodeDialog + + Transcode Music + 음악 변환 + + + Files to transcode + 변환할 파일 + + + Filename + 파일 이름 + + + Directory + 디렉터리 + + + Add... + 추가... + + + Remove + 삭제 + + + Add all tracks from a directory and all its subdirectories + 디렉터리와 모든 하위 디렉터리의 트랙을 추가합니다 + + + Import... + 가져오기... + + + Output options + 저장 옵션 + + + Audio format + 오디오 형식 + + + Options... + 옵션... + + + Destination + 대상 + + + Alongside the originals + 원본과 함께 + + + Select... + 선택... + + + Progress + 진행 + + + Details... + 자세히... + + + Clear + 비우기 + + + Start transcoding + 변환 시작 + + + %n remaining + + %n개 남음 + + + + %n finished + + %n개 완료됨 + + + + %n failed + + %n개 실패함 + + + + Add files to transcode + 변환할 파일 추가 + + + Music + 음악 + + + Open a directory to import music from + 음악을 가져올 폴더 선택 + + + Add folder + 폴더 추가 + + + + TranscodeLogDialog + + Transcoder Log + 변환기 기록 + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + GStreamer 엘리먼트 "%1"을(를) 찾을 수 없습니다. 필요한 모든 GStreamer 플러그인 설치 상태를 확인하십시오 + + + Successfully written %1 + %1 기록 완료 + + + Transcoding %1 files using %2 threads + 스레드 %2개로 파일 %1개 변환 중 + + + Error processing %1: %2 + %1 처리 오류: %2 + + + Starting %1 + %1 시작 중 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + %1 인코더를 찾을 수 없습니다. GStreamer 플러그인 설치 상태를 확인하십시오 + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + %1 먹서를 찾을 수 없습니다. GStreamer 플러그인 설치 상태를 확인하십시오 + + + + TranscoderOptionsAAC + + Form + + + + Bitrate + + + + kbps + + + + Profile + 프로필 + + + Main profile (MAIN) + 메인 프로필(MAIN) + + + Low complexity profile (LC) + 낮은 복잡도 프로필(LC) + + + Scalable sampling rate profile (SSR) + 확장 가능한 샘플링 레이트 프로필(SSR) + + + Long term prediction profile (LTP) + 장기 예측 프로필(LTP) + + + Use temporal noise shaping + 시계층 잡음 조절(TNS) 사용 + + + Allow mid/side encoding + 미드/사이드 인코딩 적용 + + + Block type + 블록 형식 + + + Normal block type + 일반 블록 형식 + + + No short blocks + 짧은 블록 없음 + + + No long blocks + 긴 블록 없음 + + + + TranscoderOptionsASF + + Form + + + + Bitrate + + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + 변환 옵션 + + + + TranscoderOptionsFLAC + + Form + + + + Quality + Sound quality + 음질 + + + Fast + 빠름 + + + Best + 최고 + + + + TranscoderOptionsMP3 + + Form + + + + Optimize for &quality + 품질 최적화(&Q) + + + Quality + Sound quality + 음질 + + + Opti&mize for bitrate + 비트 전송률 최적화(&M) + + + Bitrate + + + + kbps + + + + Constant bitrate + 고정 비트 전송률 + + + Encoding engine quality + 인코딩 엔진 품질 + + + Fast + 빠름 + + + Standard + 표준 + + + High + 높음 + + + Force mono encoding + 모노 인코딩 강제 + + + + TranscoderOptionsOpus + + Form + + + + Bitrate + + + + kbps + + + + + TranscoderOptionsSpeex + + Form + + + + Quality + Sound quality + 음질 + + + Bitrate + + + + automatic + 자동 + + + kbps + + + + Average bitrate + 평균 비트 전송률 + + + disabled + 사용 안 함 + + + Encoding mode + 인코딩 모드 + + + Auto + 자동 + + + Ultra wide band (UWB) + 초광대역(UWB) + + + Wide band (WB) + 광대역(WB) + + + Narrow band (NB) + 협대역(NB) + + + Variable bit rate + 가변 비트 전송률 + + + Voice activity detection + 음성 활동 감지 + + + Discontinuous transmission + 불연속적인 전송 + + + Encoding complexity + 인코딩 복잡도 + + + Frames per buffer + 버퍼당 프레임 수 + + + + TranscoderOptionsVorbis + + Form + + + + Quality + Sound quality + 음질 + + + Use bitrate management engine + 비트레이트 관리 엔진 사용 + + + Target bitrate + 목표 비트 전송률 + + + kbps + + + + Minimum bitrate + 최소 비트 전송률 + + + disabled + 사용 안 함 + + + Maximum bitrate + 최대 비트 전송률 + + + + TranscoderOptionsWavPack + + Form + + + + + TranscoderSettingsPage + + Transcoding + 변환 + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + 여기에 있는 설정은 "음악 변환" 대화 상자에서 사용되며, 장치에 음악을 복사하기 전에 변환할 때에도 사용됩니다. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + ASF(WMA) + + + MP3 + + + + + Udisks2Lister + + D-Bus path + D-Bus 경로 + + + Serial number + 일련 번호 + + + Mount points + 마운트 지점 + + + Partition label + 파티션 레이블 + + + UUID + + + + + UserPassDialog + + Enter username and password + 계정명과 패스워드 입력 + + + Username + 사용자 이름 + + + Password + 암호 + + + diff --git a/src/translations/strawberry_nb_NO.ts b/src/translations/strawberry_nb_NO.ts new file mode 100644 index 00000000..b86ea2a5 --- /dev/null +++ b/src/translations/strawberry_nb_NO.ts @@ -0,0 +1,7569 @@ + + + + + About + + About + Om + + + About Strawberry + Om Strawberry + + + Version %1 + Versjon %1 + + + Strawberry is a music player and music collection organizer. + + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Det er en fork av Clementine utgitt i 2018. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry er fri programvare lisensiert under GPL. Kildekoden er tilgjengelig på %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Du skal å mottatt en kopi av GNU lisensen, hvis ikke, se %1. + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Hvis du liker Strawberry og kan bruke det, vurder om du kan donere eller bli sponsor. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Du kan sponse Strawberry på %1. Du kan også gi en engangsbetaling gjennom %2. + + + Author and maintainer + + + + Contributors + Bidragsytere + + + Clementine authors + + + + Clementine contributors + + + + Thanks to + Takk til + + + Thanks to all the other Amarok and Clementine contributors. + Takk til alle andre Amarok og Clementine bidragsytere. + + + + AddStreamDialog + + Add Stream + Legg til strøm + + + Enter the URL of a stream: + Skriv inn URL for strøm: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Bilder (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Bilder (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Alle filer (*) + + + Load cover from disk... + Hent omslag fra disk… + + + Save cover to disk... + Lagre bilde til disk… + + + Load cover from URL... + Hent omslag fra URL… + + + Search for album covers... + Søk etter albumomslag… + + + Unset cover + Fjern omslagsvalg + + + Delete cover + Slett kover + + + Clear cover + Fjern kover + + + Show fullsize... + Fullskjermvisning… + + + Search automatically + Automatisk søk + + + Load cover from disk + Hent omslag fra disk + + + Failed to open cover file %1 for reading: %2 + Feil ved åpning av kover fil %1 for lesing: %2 + + + Cover file %1 is empty. + Kover fil %1 er tom. + + + unknown + ukjent + + + Save album cover + Lagre albumomslag + + + Failed to open cover file %1 for writing: %2 + Feil ved åpning av kover fil %1 for skriving: %2 + + + Failed writing cover to file %1: %2 + Feil ved lagring av kover fil %1: %2 + + + Failed writing cover to file %1. + Feil ved lagring til kover fil %1 + + + Failed to delete cover file %1: %2 + Feil ved sletting av kover fil %1: %2 + + + Failed to write cover to file %1: %2 + Feil ved lagring til kover fil %1: %2 + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Eksporter omslag + + + Output + Utgang + + + Enter a filename for exported covers (no extension): + Skriv inn et filnavn for eksportert albumomslag (uten filendelse): + + + Export downloaded covers + Eksporter nedlastede omslag + + + Export embedded covers + Eksporter innebygde omslag + + + Existing covers + Eksisterende omslag + + + Do not overwrite + Ikke overskriv + + + O&verwrite all + O&verskriv alle + + + Overwrite s&maller ones only + Bare overskriv mindre + + + Size + Størrelse + + + Scale size + Skaler størrelse + + + Size: + Størrelse: + + + Pixel + Piksel + + + + AlbumCoverManager + + Abort + Avbryt + + + All albums + Alle album + + + Albums with covers + Album med omslag + + + Albums without covers + Album uten omslag + + + Really cancel? + Vil du virkelig avbryte? + + + Closing this window will stop searching for album covers. + Lukking av dette vinduet vil medføre stopp i søk etter albumomslag. + + + Don't stop! + Ikke stopp! + + + All artists + Alle artister + + + Various artists + Diverse artister + + + Got %1 covers out of %2 (%3 failed) + Hentet %1 av %2 omslag (%3 feilet) + + + %1 transferred + overført %1 + + + Export finished + Eksport fullført + + + No covers to export. + Ingen omslag å eksportere. + + + Exported %1 covers out of %2 (%3 skipped) + %1 av %2 omslag eksportert (hoppet over %3) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Behandling av plateomslag + + + Artist + + + + Album + + + + Search + Søk + + + Covers from %1 + Omslag fra %1 + + + Abort + Avbryt + + + + AnalyzerContainer + + Framerate + Bildetakt + + + Low (%1 fps) + Lav (%1 bilder/sekund) + + + Medium (%1 fps) + Medium (%1 bilder/sekund) + + + High (%1 fps) + Høy (%1 bilder/sekund) + + + Super high (%1 fps) + Superhøy (%1 bilder/sek) + + + No analyzer + Ingen analyse + + + Block analyzer + Blokkanalyse + + + Boom analyzer + Boomanalysator + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Utseende + + + Style + Stil + + + Use system theme icons + Bruk ikoner fra system theme + + + Settings require restart. + Innstillinger krever restart. + + + Tabbar colors + Tabbar farger + + + &Use the system default color + &bruk standard system farger + + + Use custom color + Bruk egendefinert farge + + + Use gradient background + Bruk gradient bakgrunn + + + Select tabbar color: + Velg tabbar farge: + + + Background image + Bakgrunnsbilde + + + Default bac&kground image + Forhåndsvalgt bak&grunnsbilde + + + &No background image + &Ingen bakgrunn + + + The album cover of the currently playing song + Albumomslaget til sangen som spilles av for øyeblikket + + + Albu&m cover + Albu&m kover + + + Custom image: + Egendefinert bilde: + + + Browse... + Bla gjennom… + + + Position + Posisjon + + + Upper Left + Oppe til venstre + + + Upper Right + Oppe til høyre + + + Middle + Midten + + + Bottom Left + Nede til venstre + + + Bottom Right + Nede til høyre + + + Max cover size + Maksimal kover størrelse + + + Stretch image to fill playlist + Utvid bildet til å fylle spilleliste + + + Keep aspect ratio + + + + Do not cut image + Ikke kutt bildet + + + Blur amount + Mengde slør + + + 0px + + + + Opacity + Dekkevne + + + 40% + + + + Icon sizes + Ikon størrelser + + + Playlist buttons + Spilleliste knapper + + + Tabbar large mode + Tabbar stor modus + + + Play control buttons + Spillekontrolknapper + + + Configure buttons + Konfigurere knapper + + + Files, playlists and queue buttons + Filer, spillelister og kø knapper + + + Tabbar small mode + Tabbar liten modus + + + Playlist playing song color + Spilleliste spiller sang farge + + + System highlight color + System markeringsfarge + + + Custom color + Kustom farge + + + Select playlist playing song color: + Velg spilleliste sang farge: + + + Select background image + Velg bakgrunnsbilde + + + + BackendSettingsPage + + Backend + + + + Audio output + Lyd-utenhet + + + Device + Enhet + + + Output + Utgang + + + Engine + Motor + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + Valg + + + Enable volume control + Aktiver volumkontroll + + + Upmix / downmix to + + + + channels + kanaler + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + ms + + + Buffer duration + Mellomlagringslengde + + + High watermark + + + + Low watermark + + + + Defaults + Standard + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + Normalisering + + + Use Replay Gain metadata if it is available + Bruk normalisering-metadata hvis tilgjengelig + + + Replay Gain mode + ReplayGain-modus + + + Radio (equal loudness for all tracks) + Radio (lik lydstyrkeutgjevning for alle spor) + + + Album (ideal loudness for all tracks) + Album (ideell lydstyrkeutgjevning for alle spor) + + + Pre-amp + Forforsterker + + + Apply compression to prevent clipping + Legg til kompressor, for å unngå klipping + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Ton inn/ut + + + Fade out when stopping a track + Ton ut når sporet stoppes + + + Cross-fade when changing tracks manually + Mikse overgang når du skifter spor selv + + + Cross-fade when changing tracks automatically + Miks overgang når spor skiftes automatisk + + + Except between tracks on the same album or in the same CUE sheet + Unntatt mellom spor fra samme album eller CUE-fil + + + Fading duration + Tonings-varighet + + + Fade out on pause / fade in on resume + Ton ut/inn ved pause/start + + + + BehaviourSettingsPage + + Behavior + Adferd + + + Show system tray icon + Vis systemikon + + + Keep running in the background when the window is closed + Fortsett i bakgrunnen selv om vinduet lukkes + + + Show song progress on system tray icon + Vis sang prosess på systemikon + + + Show song progress on taskbar + + + + Resume playback on start + Gjenoppta avspilling etter oppstart + + + Show playing widget + Vis spille widget + + + On startup + Ved oppstart + + + Remember from &last time + Husk fra siste gang + + + Show the main window + Vis hovedvinduet + + + Hide the main window + Skjul hovedvindu + + + Show the main window maximized + Vis hovedvinduet maksimert + + + Show the main window minimized + Vis hovedvinduet minimert + + + Language + Språk + + + Use the system default + Bruk systemforevalg + + + You will need to restart Strawberry if you change the language. + Du må starte Strawberry på nytt for å bytte språk. + + + Using the menu to add a song will... + Bruk av menyen for å legge til et spor vil… + + + Never start playing + Aldri begynn avspilling + + + Play if there is nothing already playing + Spill hvis det ikke er noe annet som spilles av for øyeblikket + + + Always start playing + Alltid start avspilling + + + Pressing "Previous" in player will... + Når du trykker "Forrige" i spilleren vil… + + + Jump to previous song right away + Gå til forrige sang nå + + + Restart song, then jump to previous if pressed again + Omstart av sang eller tilbake til forrige ved ytterligere trykk + + + Double clicking a song will... + Dobbeltklikking på en sang vil… + + + Append to the playlist + Legg til i spillelista + + + Replace the playlist + Erstatt spillelista + + + Open in new playlist + Åpne i ny spilleliste + + + Add to the queue + Legg i kø + + + Double clicking a song in the playlist will... + Dobbeltklikking på vilkårlig sang i spillelisten vil… + + + Change the currently playing song + Bytt låten som spilles + + + Seeking using a keyboard shortcut or mouse wheel + Gå frem-/bakover ved bruk av en tastatursnarvei eller musehjulet + + + Time step + Tidstrinn + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Feil ved setting av CDDA enhet til klar status + + + Error while setting CDDA device to pause state. + Feil ved setting av CDDA enhet til pause status + + + Error while querying CDDA tracks. + Feil ved henting av CDDA spor + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + Oppdaterer %1 database. + + + + CollectionFilterWidget + + Collection Filter + + + + Enter search terms here + Skriv inn søkeord her + + + MenuPopupToolButton + + + + Entire collection + Hele samlingen + + + Added today + Lagt til i dag + + + Added this week + Lagt til denne uken + + + Added within three months + Lagt til innen tre måneder + + + Added this year + Lagt til i år + + + Added this month + Lagt til denne måneden + + + Save current grouping + Lagre nåværende gruppering + + + Manage saved groupings + Behandle lagrede grupperinger + + + Show + Vis + + + Group by + Grupper etter + + + Display options + Visningsalternativ + + + Group by Album artist/Album + Grupper etter album artist/album + + + Group by Album artist/Album - Disc + Grupper etter album artist/album - disc + + + Group by Album artist/Year - Album + Grupper etter album artist/år - album + + + Group by Album artist/Year - Album - Disc + Grupper etter album artist/år - album - disc + + + Group by Artist/Album + Grupper etter artist/album + + + Group by Artist/Album - Disc + Grupper etter artist/album - disc + + + Group by Artist/Year - Album + Grupper etter artist/år - album + + + Group by Artist/Year - Album - Disc + Grupper etter artist/år - album - disc + + + Group by Genre/Album artist/Album + Grupper etter sjanger/album artist/album + + + Group by Genre/Artist/Album + Grupper etter sjanger/artist/album + + + Group by Album Artist + Grupper etter album artist + + + Group by Artist + Grupper etter artist + + + Group by Album + Grupper etter album + + + Group by Genre/Album + Grupper etter sjanger/album + + + Advanced grouping... + Avansert gruppering… + + + Grouping Name + Grupperingsnavn + + + Grouping name: + Grupperingsnavn: + + + + CollectionModel + + Various artists + Diverse artister + + + Loading... + Åpner… + + + Unknown + Ukjent + + + + CollectionSettingsPage + + Collection + Samling + + + These folders will be scanned for music to make up your collection + Disse katalogene vil skannes for musikk som kan legges til samlingen ditt + + + Add new folder... + Legg til mappe… + + + Remove folder + Fjern mappe + + + Automatic updating + Automatisk oppdatering + + + Update the collection when Strawberry starts + Oppdater samlingen når Strawberry starter + + + Monitor the collection for changes + Overvåk endringer i samlingen + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + Merk tapte sanger utilgjengelige + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + Utløp utilgjengelige sanger etter + + + days + dager + + + Preferred album art filenames (comma separated) + Foretrukne filnavn for omslag (inndelt med komma) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Strawberry søker først etter bildefiler som inneholder ett av disse ordene. +Hvis ingen ord passer, blir det største bildet i mappen brukt. + + + Display options + Visningsalternativ + + + Automatically open single categories in the collection tree + Åpne enkeltkategorier i bibliotektreet automatisk + + + Show dividers + Vis adskillere + + + Show album cover art in collection + Vis albumbilder i samlingen + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Album kover pixmap cache + + + Size + Størrelse + + + Enable Disk Cache + Aktiver disk cache + + + Disk Cache Size + + + + Current disk cache in use: + Nåværende disk cache i bruk: + + + Clear Disk Cache + Slett disk cache + + + Song playcounts and ratings + Spilleteller og vurdering + + + Save playcounts to song tags when possible + Lagre spilletellere til filer når mulig + + + Save ratings to song tags when possible + Lagre vurderinger til filer når mulig + + + Overwrite database playcount when songs are re-read from disk + Overskriv database spilleteller når sanger er lest på nytt fra disk + + + Overwrite database rating when songs are re-read from disk + Overskriv database vurdering når sanger er lest på nytt fra disk + + + Save playcounts and ratings to files now + Lagre spilletellere og vurderinger til filer nå + + + Enable delete files in the right click context menu + Aktiv slett filer i høyreklikk-meny + + + Add directory... + Legg til mappe… + + + Write all playcounts and ratings to files + Skriv alle spilletellere og vurdering til filer + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Er du sikker på at du vil skrive spilletellere og vurderinger til alle sangene i samlingen? + + + + CollectionView + + Your collection is empty! + Samlingen din er tom! + + + Click here to add some music + Klikk her for å legge til musikk + + + Append to current playlist + Legg til i gjeldende spilleliste + + + Replace current playlist + Erstatt gjeldende spilleliste + + + Open in new playlist + Åpne i ny spilleliste + + + Queue track + Legg spor i kø + + + Queue to play next + Legg i kø for å spille som neste + + + Search for this + Søk etter dette + + + Organize files... + Organiser filene... + + + Copy to device... + Kopier til enhet… + + + Delete from disk... + Slett fra disk… + + + Edit track information... + Rediger spor informasjon… + + + Edit tracks information... + Rediger spor informasjon… + + + Show in file browser... + Vis i fil utforsker + + + Rescan song(s) + Reskann sang(er) + + + Show in various artists + Vis under diverse artister + + + Don't show in various artists + Ikke vis under diverse artister + + + There are other songs in this album + Det er andre sanger i dette albumet + + + Would you like to move the other songs on this album to Various Artists as well? + Ønsker du å flytte andre sanger på dette albumet til "Various Artists" også? + + + Error + Feil + + + None of the selected songs were suitable for copying to a device + Kunne ikke kopiere noen av de valgte sangene til en enhet + + + + CollectionViewContainer + + Form + Skjema + + + + CollectionWatcher + + Updating collection + Oppdaterer samling + + + Updating %1 + Oppdaterer %1 + + + + Console + + Console + Konsoll + + + Run + Kjør + + + + ContextSettingsPage + + Context + Kontekst + + + Custom text settings + Egendefinert tekst innstilling + + + MenuPopupToolButton + + + + Title + Tittel + + + Summary + Sammendrag + + + Enable Items + Aktiver items + + + Album + + + + Technical Data + Teknisk Data + + + Song Lyrics + Sangtekst + + + Automatically search for album cover + Automatisk søk for album kover + + + Automatically search for song lyrics + Automatisk søk for sang lyrikk + + + Font for headline + + + + Font + + + + Font size + Font størrelse + + + pt + + + + Preview + Forhåndsvisning + + + Font for data and lyrics + Font for data og lyrikk + + + Add song artist tag + Fest artistetikett på sporet + + + Add song album tag + Fest album-etikett på sporet + + + Add song title tag + Fest låttittel-etikett til sporet + + + Add song albumartist tag + Fest albumsartist-etikett på sporet + + + Add song year tag + Fest etikett for utgivelsesår på sporet + + + Add song composer tag + Fest komponist-etikett på sporet + + + Add song performer tag + Fest utøver-etikett på sporet + + + Add song grouping tag + Fest sanggrupperings-etikett på sporet + + + Add song disc tag + Fest spor/disk-etikett på sporet + + + Add song track tag + Fest etikett for låtnummer til sporet + + + Add song genre tag + Fest sjangeretikett på sporet + + + Add song length tag + Fest låtlengde på sporet + + + Add song play count + Fest avspillingsantall på sporet + + + Add song skip count + Fest antall overhoppninger til sporet + + + Add a new line if supported by the notification type + Legg til en linje, hvis meddelelsestypen støtter det + + + %filename% + %filnavn% + + + Add song filename + Fest låtnavn til sporet + + + %url% + + + + Add song URL + Legg til sang URL + + + %rating% + + + + Add song rating + Fest poenggivning for låt til sporet + + + %originalyear% + + + + Add song original year tag + Legg til sang orignalt år tagg + + + + ContextView + + Filetype + Filtype + + + Length + Lengde + + + Samplerate + Samplingsrate + + + Bit depth + Bit dybde + + + Bitrate + + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Vis album kover + + + Show song technical data + Vis teknisk informasjon om sangen + + + Show song lyrics + Vis sangtekster + + + Automatically search for song lyrics + Automatisk søk for sang lyrikk + + + No song playing + Ingen sang spilles + + + %1 song + %1 sang + + + %1 songs + %1 sanger + + + %1 artist + + + + %1 artists + %1 artister + + + %1 album + + + + %1 albums + %1 albumer + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + Hent omslag fra URL + + + Enter a URL to download a cover from the Internet: + Skriv inn en URL for å laste ned albumgrafikk fra Internett: + + + Fetching cover error + Kunne ikke hente albumgrafikk + + + The site you requested does not exist! + Siden du forespurte finnes ikke! + + + The site you requested is not an image! + Siden du forespurte er ikke et bilde! + + + + CoverManager + + Cover Manager + Behandling av plateomslag + + + Enter search terms here + Skriv inn søkeord her + + + MenuPopupToolButton + + + + View + Vis + + + Total albums: + Totalt antall album: + + + Without cover: + Uten omslag: + + + 0 + + + + Fetch Missing Covers + Hent manglende omslag + + + Export Covers + Eksporter omslag + + + Fetch automatically + Hent automatisk + + + Load + Hent + + + Add to playlist + Legg til i spilleliste + + + + CoverSearchStatisticsDialog + + Fetch completed + Innhenting fullført + + + Got %1 covers out of %2 (%3 failed) + Hentet %1 av %2 omslag (%3 feilet) + + + Covers from %1 + Omslag fra %1 + + + Total network requests made + Antall nettverkforespørsler totalt + + + Average image size + Gjennomsnittlig bildestørrelse + + + Total bytes transferred + Antall byte overført totalt + + + + CoversSettingsPage + + Covers + Kover + + + Cover providers + Kover tilbydere + + + Choose the providers you want to use when searching for covers. + Velg tilbydere du vil bruke for å søke etter kover + + + Move up + Flytt oppover + + + Move down + Flytt nedover + + + Authentication + Autentisering + + + Login + Innlogging + + + Album cover types + + + + Saving album covers + Lagrer album kover + + + Save album covers in album directory + Lagre album kover i album mappen + + + Save album covers in cache directory + Lagre album kober i cache mappen + + + Save album covers as embedded cover + Lagre album kover som embedded kover + + + Filename: + Filnavn: + + + Pattern + + + + Random + Tilfeldig + + + Overwrite existing file + Overskriv eksisterende fil + + + Lowercase filename + Små bokstaver filnavn + + + Replace spaces with dashes + Erstatt mellomrom med streker + + + Use Tidal settings to authenticate. + Bruk TIdal innstillinger for å autentisere + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Bruk Qobuz innstillingene for å autentisere + + + %1 needs authentication. + %1 Scrobbler krever autentisering + + + %1 does not need authentication. + %1 Scrobbler bruker autentisering + + + No provider selected. + Ingen tilbyder valgt. + + + Authentication failed + Identitetsbekreftelse feilet + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Integritetskontrol + + + Database corruption detected. + Oppdaget feil i databasen. + + + Backing up database + Tar sikkerhetskopi av databasen + + + + DeleteConfirmationDialog + + Delete files + Slett filer + + + The following files will be deleted from disk: + Følgende filer vil bli slettet fra disk: + + + Are you sure you want to continue? + Er du sikker på at du vil fortsette? + + + + DeleteFiles + + Deleting files + Sletter filer + + + + DeviceItemDelegate + + Updating %1%... + Oppdaterer %1% … + + + Not connected + Ikke tilkoblet + + + Not mounted - double click to mount + Ikke montert - dobbelklikk for å montere + + + Double click to open + Dobbelklikk for å åpne + + + %1 song%2 + %1 sanger + + + + DeviceManager + + Connect device + Koble til enhet + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Det er første gang du kobler til denne enheten. Strawberry skanner enheten for musikkfiler. Dette kan ta noe tid. + + + This device will not work properly + Enheten vil ikke fungere ordentlig + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Dette er en MTP enhet, men Strawberry ble kompilert uten libmtp-støtte. + + + If you continue, this device will work slowly and songs copied to it may not work. + Hvis du fortsetter, vil enheten bli treg, og du vil kanskje ikke kunne spille av sanger kopiert til den. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Dette er en iPod enhet, men Strawberry ble kompilert uten libgpod-støtte. + + + This type of device is not supported: %1 + Denne enhetstypen (%1) støttes ikke. + + + + DeviceProperties + + Device Properties + Egenskaper for enhet + + + Information + Informasjon + + + Name + Navn + + + Icon + Ikon + + + Hardware information + Maskinvareinformasjon + + + Hardware information is only available while the device is connected. + Informasjon om maskinvaren er bare tilgjengelig når enheten er tilkoblet. + + + File formats + Filformat + + + Supported formats + Støttede formater + + + This device supports the following file formats: + Denne enheten støtter følgende filformat: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry kan automatisk konvertere musikken til et format enheten kan spille når musikken kopieres til enheten. + + + Do not convert any music + Ikke konverter musikk + + + Convert any music that the device can't play + Konverter all musikk som enheten ikke kan spille + + + Convert all music + Konverter all musikk + + + Preferred format + Foretrukket format + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Denne enheten må kobles til og åpnes før Strawberry kan se hvilke formater som støttes. + + + Open device + Åpne enhet + + + Querying device... + Spør enhet… + + + Model + Modell + + + Manufacturer + Fabrikant + + + + DeviceView + + Safely remove device + Trygg fjerning av enhet + + + Forget device + Glem enhet + + + Device properties... + Egenskaper for enhet… + + + Append to current playlist + Legg til i gjeldende spilleliste + + + Replace current playlist + Erstatt gjeldende spilleliste + + + Open in new playlist + Åpne i ny spilleliste + + + Copy to collection... + Kopier til samling… + + + Delete from device... + Slett fra enhet… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Hvis du glemmer enheten, forsvinner den fra denne listen, og Strawberry må lete gjennom alle sangene på enheten neste gang du kobler den til. + + + Delete files + Slett filer + + + These files will be deleted from the device, are you sure you want to continue? + Filene vil bli slettet fra enheten. Er du sikker? + + + + DeviceViewContainer + + Form + Skjema + + + + DynamicPlaylistControls + + Dynamic mode is on + Dynamisk modus er på + + + New tracks will be added automatically. + Nye spor vil bli lagt til automatisk. + + + Expand + Utvid + + + Repopulate + + + + Turn off + Slå av + + + + EditTagDialog + + Edit track information + Rediger spor informasjon + + + Summary + Sammendrag + + + Date created + Opprettelse dato + + + Art Automatic + Automatisk kover + + + Date modified + Endrings dato + + + Art Embedded + + + + Last played + A playlist's tag. + Sist spilt + + + File type + Filtype + + + Length + Lengde + + + Play count + Antall avspillinger + + + Bit depth + Bit dybde + + + EBU R 128 integrated loudness + + + + Bit rate + Bitrate + + + Skip count + Antall ganger hoppet over + + + Sample rate + Samplingsrate + + + Path + Filsti + + + Filename + Filnavn + + + Art Unset + + + + File size + Filstørrelse + + + Art Manual + Manuelt kover + + + EBU R 128 loudness range + + + + Reset play counts + Tilbakestill avspillingsteller + + + Tags + Tagger + + + MenuPopupToolButton + + + + Change art + Endre kover + + + Embedded cover + Embedded kover + + + Disc + Disk + + + Grouping + Gruppering + + + Album artist + + + + Album + + + + Year + År + + + Title + Tittel + + + Artist + + + + Composer + Komponist + + + Complete tags automatically + Fyll ut etiketter automatisk + + + Genre + Sjanger + + + Comment + Kommentar + + + Performer + Utøver + + + Compilation + + + + Track + Spor + + + Rating + Vurdering + + + Lyrics + Lyrikk + + + Complete lyrics automatically + + + + Previous + Forrige + + + Next + Neste + + + Saving tracks + Lagrer spor + + + Loading tracks + Åpner spor + + + %1 songs selected. + %1 sanger valgt + + + kbps + + + + Unknown + Ukjent + + + Yes + + + + No + + + + None + Ingen + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Har ikke omslaggrafikk + + + Album cover editing is only available for collection songs. + Album kover redigering er bare tilgjengelig for sanger i samlingen. + + + Cover changed: Will be cleared when saved. + Kover endret, vill bli fjernet når du lagrer. + + + Cover changed: Will be unset when saved. + Kover endret. Vil bli fjernet når lagret. + + + Cover changed: Will be deleted when saved. + Kover endret, vill bli settet når du lagrer. + + + Cover changed: Will set new when saved. + Kover er endret. Vil bli satt når lagret. + + + Never + Aldri + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Tonekontroll + + + Preset: + Forhåndsinnstilling: + + + Save preset + Lagre forhåndsinnstilling + + + Delete preset + Slett forhåndsinnstilling + + + Enable equalizer + Slå på tonekontroll (EQ) + + + Enable stereo balancer + Aktiver stereo balanse + + + Left + Venstre + + + Balance + Balanse + + + Right + Høyre + + + Pre-amp + Forforsterker + + + Custom + Egendefinert + + + Classical + Klassisk + + + Club + Klubbmusikk + + + Dance + Dansemusikk + + + Full Bass + Full bass + + + Full Treble + Full diskant + + + Full Bass + Treble + Full bass + diskant + + + Laptop/Headphones + Laptop/hodetelefoner + + + Large Hall + Storsal + + + Live + + + + Party + Fest + + + Pop + + + + Reggae + + + + Rock + + + + Soft + Myk + + + Ska + + + + Soft Rock + Soft rock + + + Techno + Tekno + + + Zero + Null + + + Name + Navn + + + Are you sure you want to delete the "%1" preset? + Er du sikker på at du vil slette "%1"-forhåndsinnstillingen? + + + + EqualizerSlider + + Equalizer + Tonekontroll + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Strawberry Feil + + + + FancyTabWidget + + Large sidebar + Stort sidefelt + + + Icons sidebar + + + + Small sidebar + Lite sidefelt + + + Plain sidebar + Enkelt sidefelt + + + Tabs on top + Faner på toppen + + + Icons on top + Ikoner øverst + + + + FileTypeItemDelegate + + Unknown + Ukjent + + + + FileView + + Form + Skjema + + + + FileViewList + + Append to current playlist + Legg til i gjeldende spilleliste + + + Replace current playlist + Erstatt gjeldende spilleliste + + + Open in new playlist + Åpne i ny spilleliste + + + Copy to collection... + Kopier til samling… + + + Move to collection... + Flytt til samling… + + + Copy to device... + Kopier til enhet… + + + Delete from disk... + Slett fra disk… + + + Edit track information... + Rediger spor informasjon… + + + Show in file browser... + Vis i fil utforsker + + + + FreeSpaceBar + + Available + Tilgjengelig + + + New songs + Nye sanger + + + Exceeded by + + + + Used + Brukt + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Åpner iPod-database + + + An error occurred loading the iTunes database + En feil oppsto ved innlasting av iTunes-databasen + + + + GeniusLyricsProvider + + Genius Authentication + Genius autentisering + + + Please open this URL in your browser + Vennligst åpne denne URLen i din nettleser + + + Redirect missing token code! + + + + Received invalid reply from web browser. + Mottok ugyldig svar fra nettleseren. + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + Monteringspunkt + + + Device + Enhet + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Trykk en tast + + + Press a key combination to use for %1... + Trykk en tastekombinasjon å bruke til %1… + + + + GlobalShortcutsManager + + Play + Spill + + + Pause + + + + Play/Pause + + + + Stop + Stopp + + + Stop playing after current track + Stopp spilling etter gjeldene spor + + + Next track + Neste spor + + + Previous track + Forrige spor + + + Restart or previous track + + + + Increase volume + Øk volum + + + Decrease volume + Senk volum + + + Mute + Demp + + + Seek forward + + + + Seek backward + + + + Show/Hide + Vis/Skul + + + Show OSD + Vis OSD + + + Toggle Pretty OSD + Slå av/på OSD + + + Change shuffle mode + Endre shufflemodus + + + Change repeat mode + Endre gjentagelsemodus + + + Enable/disable scrobbling + Aktiver/Deaktiver skrobbling + + + Love + Kjærlighet + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + Bruk Gnome (GSD) snarveier når tilgjengelige. + + + Open... + Åpne… + + + Use MATE shortcuts when available + Bruk MATE snarveier når tilgjengelige + + + Use KDE (KGlobalAccel) shortcuts when available + Bruk KDE (KGlobalAccel) snarveier når tilgjengelige + + + Use X11 shortcuts when available + Bruk X11 snarveier når tilgjengelige + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Du må åpne Systemvalg og gi Strawberry tilgang til "<span style="font-style:italic">styre datamaskinen din</span>" for å bruke globale snarveier i Strawberry. + + + Action + Category label + Handling + + + Shortcut + Hurtigtast + + + Shortcut for %1 + Hurtigtast for %1 + + + &None + &Ingen + + + &Default + &Standard + + + &Custom + &Egendefinert + + + Change shortcut... + Endre snarvei… + + + The "%1" command could not be started. + Kunne ikke starte kommandoen "%1". + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Hvis du bruker X11 snarveier på %1 kan det oppstå problemer med at tastaturet slutter å fungere! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Snarveier på %1 er normalt brukt gjennom GSD D-Bus og bør konfigureres i gnome-settings-daemon i stedet + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Snarveier på %1 er normalt brukt gjennom GSD D-Bus og bør konfigureres i gnome-settings-daemon i stedet + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Snarveier på %1 er normalt brukt gjennom GSD D-Bus og bør konfigureres i cinnamon-settings-daemon i stedet + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Snarveier på %1 er normalt brukt gjennom GSD D-Bus og bør konfigureres i gnome-settings-daemon i stedet + + + + GroupByDialog + + Collection advanced grouping + Avansert samlingsgruppering + + + You can change the way the songs in the collection are organized. + Du kan endre måten sanger i samlingen er organisert. + + + Group Collection by... + Grupper samling etter… + + + First level + Første nivå + + + None + Ingen + + + Artist + + + + Album artist + + + + Album + + + + Album - Disc + + + + Disc + Disk + + + Format + + + + Genre + Sjanger + + + Year + År + + + Year - Album + År - album + + + Year - Album - Disc + År - album - disc + + + Original year + Opprinnelig år + + + Original year - Album + Opprinnelig år - album + + + Composer + Komponist + + + Performer + Utøver + + + Grouping + Gruppering + + + File type + Filtype + + + Sample rate + Samplingsrate + + + Bit depth + Bit dybde + + + Bitrate + + + + Second level + Andre nivå + + + Third level + Tredje nivå + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Mellomlagring + + + + LastFMImport + + Missing username, please login to last.fm first! + Mangler brukernavn, vennligst logg inn til last.fm først! + + + + LastFMImportDialog + + Import data from last.fm + Importer data fra last.fm. + + + Choose data to import from last.fm + Velg data for å importere fra last.fm + + + Last played + Sist spilt + + + Play counts + Spilletellere + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + Start! + + + Close + Lukk + + + Cancel + Avbryt + + + Receiving initial data from last.fm... + Mottar data fra last.fm... + + + Receiving playcount for %1 songs and last played for %2 songs. + Mottar spilleteller for %1 sanger og sist spilt for %2 sanger. + + + Receiving last played for %1 songs. + Mottar sist spilt for %1 sanger. + + + Receiving playcounts for %1 songs. + Mottar spilleteller for %1 sanger. + + + Playcounts for %1 songs and last played for %2 songs received. + Spilleltellere for %1 sanger og sist spilt for %2 sanger er mottatt. + + + Last played for %1 songs received. + Sist spilte for %1 sanger mottatt. + + + Playcounts for %1 songs received. + Spilleteller for %1 sanger mottatt. + + + + LastPlayedItemDelegate + + Never + Aldri + + + + Library + + Least favourite tracks + Minst favoritt spor + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz autentisering + + + Please open this URL in your browser + Vennligst åpne denne URLen i din nettleser + + + Redirect missing token code! + + + + Received invalid reply from web browser. + Mottok ugyldig svar fra nettleseren. + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Skjema + + + You are not signed in. + Du har ikke logget inn. + + + Sign out + Logg ut + + + Signing in... + Logger inn… + + + You are signed in. + Du er innlogget + + + You are signed in as %1. + Du er innlogget som %1. + + + Expires on %1 + Utgår den %1 + + + + LyricsSettingsPage + + Lyrics + Lyrikk + + + Lyrics providers + Lyrikk tilbyder + + + Choose the providers you want to use when searching for lyrics. + Velg tilbydere du vil bruke for å søke etter lyrikk + + + Move up + Flytt oppover + + + Move down + Flytt nedover + + + Authentication + Autentisering + + + Login + Innlogging + + + No provider selected. + Ingen tilbyder valgt. + + + Authentication failed + Identitetsbekreftelse feilet + + + + MainWindow + + Strawberry Music Player + + + + MenuPopupToolButton + + + + &Music + Musikk + + + P&laylist + Spilleliste + + + Help + Hjelp + + + &Tools + &Verktøy + + + Previous track + Forrige spor + + + F5 + + + + &Play + &Spill + + + F6 + + + + &Stop + &Stopp + + + F7 + + + + &Next track + &Neste spor + + + F8 + + + + &Quit + &Avslutt + + + Ctrl+Q + + + + Stop after this track + Stopp etter denne sangen + + + Ctrl+Alt+V + + + + Love + Kjærlighet + + + &Clear playlist + &Slett spilleliste + + + Clear playlist + Tøm spillelisten + + + Ctrl+K + + + + Edit track information... + Rediger spor informasjon… + + + Ctrl+E + + + + Renumber tracks in this order... + Renummerer sporene i denne rekkefølgen… + + + Set value for all selected tracks... + Sett verdi for alle valgte spor… + + + Edit tag... + Rediger etikett… + + + &Settings... + &Innstillinger + + + Ctrl+P + + + + &About Strawberry + &Om Strawberry + + + F1 + + + + S&huffle playlist + Stokk om spillelista + + + Ctrl+H + + + + &Add file... + &Legg til fil + + + Ctrl+Shift+A + + + + &Open file... + &Åpne fil + + + Open audio &CD... + Åpne lyd &CD + + + &Cover Manager + &Behandling av plateomslag + + + C&onsole + K&onsoll + + + &Shuffle mode + &Stokkemodus + + + &Repeat mode + &Gjentagelsesmodus + + + Remove from playlist + Fjern fra spillelisten + + + &Equalizer + + + + &Transcode Music + &Omkod musikk + + + Add &folder... + Legg til &mappe... + + + &Jump to the currently playing track + &Gå til sporet som spilles av nå + + + Ctrl+J + + + + &New playlist + &Ny spilleliste + + + Ctrl+N + + + + Save &playlist... + Lagre &spilleliste... + + + Ctrl+S + + + + &Load playlist... + &Start spilleliste + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Gå til neste fane på spillelista + + + Go to previous playlist tab + Gå til forrige fane på spillelista + + + &Update changed collection folders + Oppdater endrede samling + + + About &Qt + Om &Qt + + + &Mute + &Demp + + + Ctrl+M + + + + &Do a full collection rescan + &Utfør fullstendig skann av samling + + + Stop collection scan + + + + Complete tags automatically... + Full ut etiketter automatisk… + + + Ctrl+T + + + + Toggle scrobbling + Slå av/på deling av lyttevaner + + + Remove &duplicates from playlist + Fjern &duplikater fra spillelisten + + + Remove &unavailable tracks from playlist + Fjern &utilgjengelige spor fra spilleliste + + + Add file(s) to transcoder + Legg fil(er) til omkoder + + + Add file to transcoder + Legg fil til omkoder + + + Add stream... + Legg til strøm... + + + Show sidebar + Vis sidebar + + + Import data from last.fm... + Importer data fra last.fm... + + + All Files (*) + Alle filer (*) + + + Context + Kontekst + + + Collection + Samling + + + Queue + + + + Playlists + Spillelister + + + Smart playlists + Smarte spillelister + + + Files + Filer + + + Radios + Radioer + + + Devices + Enheter + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Vis alle sanger + + + Show only duplicates + Bare vis duplikater + + + Show only untagged + Bare vis filer uten etiketter + + + Configure collection... + Sett opp samling… + + + Play + Spill + + + Toggle queue status + Slå av/på køstatus + + + Queue selected tracks to play next + Legg valgte spor i kø for å spille som neste + + + Toggle skip status + Slå av/på hopp over status + + + Rescan song(s)... + Skann sanger på nytt... + + + Copy URL(s)... + Kopier URL(s) + + + Show in collection... + Vis i samling… + + + Show in file browser... + Vis i fil utforsker + + + Organize files... + Organiser filene... + + + Copy to collection... + Kopier til samling… + + + Move to collection... + Flytt til samling… + + + Copy to device... + Kopier til enhet… + + + Delete from disk... + Slett fra disk… + + + Check for updates... + Se etter oppdateringer… + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + + + + Dequeue track + Fjern sporet fra avspillingskøen + + + Dequeue selected tracks + Fjern valgte spor fra avspillingskøen + + + Queue track + Legg spor i kø + + + Queue selected tracks + Legg valgte spor i kø + + + Queue to play next + Legg i kø for å spille som neste + + + Unskip track + Ikke hopp over sporet + + + Unskip selected tracks + Ikke hopp over de valgte sporene + + + Skip track + Hopp over spor + + + Skip selected tracks + Hopp over valgte spor + + + Set %1 to "%2"... + Sett %1 til "%2"… + + + Edit tag "%1"... + Rediger etiketten "%1"… + + + Add to another playlist + Legg til i annen spilleliste + + + New playlist + Ny spilleliste + + + Add file + Legg til fil + + + Music + Musikk + + + Add folder + Legg til mappe + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Spilleliste har %1 sanger, for mange for å angre, ønsker du likevel å fjerne sangene fra spillelisten? + + + Error + Feil + + + None of the selected songs were suitable for copying to a device + Kunne ikke kopiere noen av de valgte sangene til en enhet + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Fordi du har oppdatert Strawberry til en nyere versjon, må hele samlingen søkes gjennom på nytt, som følge av disse nye funksjonene: + + + Would you like to run a full rescan right now? + Vil du søke gjennom hele samlingen på ny nå? + + + Collection rescan notice + Melding om gjennomsøk av samlingen + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + Ikke vis denne meldingen igjen. + + + + MimeData + + Playlist + Spilleliste + + + + MoodbarProxyStyle + + Show moodbar + Vis moodbar + + + Moodbar style + Moodbar stil + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + Vis moodbar i spor indikatoren + + + Moodbar style + Moodbar stil + + + Save the .mood files directly in the songs folders + Lagre .mood filene direkte i mappen til sangen + + + Enabled + Aktivert + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Åpner MTP-enhet + + + Error connecting MTP device %1 + Feil ved tilkobling til MTP enhet %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Mellomtjener + + + &Use the system proxy settings + &Bruk forvalgte mellomtjener-innstillinger + + + Direct internet connection + Koblet direkte til Internett + + + &Manual proxy configuration + &Manuell mellomtjener-innstilling + + + HTTP proxy + Mellomtjener for HTTP + + + SOCKS proxy + Mellomtjener for SOCKS + + + Port + + + + Use authentication + Bruk autentisering + + + Username + Brukernavn + + + Password + Passord + + + Use proxy settings for streaming + Bruk proxy for strømming + + + + NotificationsSettingsPage + + Notifications + Meddelelsetype + + + Strawberry can show a message when the track changes. + Strawberry kan vise en melding ved sporendring. + + + Notification type + Meddelelsetype + + + Disabled + Refers to a disabled notification type in Notification settings. + Avskrudd + + + Show a &native desktop notification + Vis en skrivebordsmedledelse som passer inn i ditt operativsystem + + + Show a pretty OSD + Vis et pent skjermbildeoverlegg + + + Show a popup fro&m the system tray + Vis et oppsprettsvindu fra systemskuffa + + + General settings + Generelle innstillinger + + + Popup duration + Oppsprettsvinduets varighet + + + seconds + sekunder + + + Disable duration + Slå av varighet + + + Show a notification when I change the volume + Vis en meddelelse når jeg endrer lydstyrke + + + Show a notification when I change the repeat/shuffle mode + Vis en meddelelse når jeg endrer gjentakelse- og stokke -modus + + + Show a notification when I pause playback + Vis meddelelse når jeg setter avspillingen på pause + + + Show a notification when I resume playback + Vis a meddelelse når avspillingen fortsetter + + + Include album art in the notification + Inkluder omslag i meddelelsen + + + Custom message settings + Egendefinerte melding-innstillinger + + + Use a custom message for notifications + Bruk egendefinert melding for meddelelser + + + Preview + Forhåndsvisning + + + MenuPopupToolButton + + + + Summary + Sammendrag + + + Body + Brødtekst + + + Pretty OSD options + Pene skjermbildeoverleggsvalg + + + Background color + Bakgrunnsfarge + + + Text options + Tekstinnstillinger + + + Choose font... + Velg skrifttype… + + + Choose color... + Velg farge… + + + Background opacity + Bakgrunnsdekkevne + + + Basic Blue + Blå + + + Strawberry Red + Jordbær rød + + + Custom... + Egendefinert… + + + Enable fading + Aktiver fading + + + Add song artist tag + Fest artistetikett på sporet + + + Add song album tag + Fest album-etikett på sporet + + + Add song title tag + Fest låttittel-etikett til sporet + + + Add song albumartist tag + Fest albumsartist-etikett på sporet + + + Add song year tag + Fest etikett for utgivelsesår på sporet + + + Add song composer tag + Fest komponist-etikett på sporet + + + Add song performer tag + Fest utøver-etikett på sporet + + + Add song grouping tag + Fest sanggrupperings-etikett på sporet + + + Add song disc tag + Fest spor/disk-etikett på sporet + + + Add song track tag + Fest etikett for låtnummer til sporet + + + Add song genre tag + Fest sjangeretikett på sporet + + + Add song length tag + Fest låtlengde på sporet + + + Add song play count + Fest avspillingsantall på sporet + + + Add song skip count + Fest antall overhoppninger til sporet + + + Add song rating + Fest poenggivning for låt til sporet + + + Add a new line if supported by the notification type + Legg til en linje, hvis meddelelsestypen støtter det + + + %filename% + %filnavn% + + + Add song filename + Fest låtnavn til sporet + + + %url% + + + + Add song URL + Legg til sang URL + + + %originalyear% + + + + Add song original year tag + Legg til sang orignalt år tagg + + + OSD Preview + Forhåndsvisning av skjermbildeoverlegg + + + Drag to reposition + Dra for å endre posisjon + + + + OSDBase + + disc %1 + disk %1 + + + track %1 + spor %1 + + + Paused + På pause + + + Stopped + Stoppet + + + Stop playing after track: %1 + Stopp avspilling etter spor: %1 + + + On + + + + Off + Av + + + Playlist finished + Spillelisten er ferdigspilt + + + Volume %1% + Volum %1% + + + Don't shuffle + Ikke stokk + + + Shuffle all + Stokk alle + + + Shuffle tracks in this album + Stokk om dette albumet + + + Shuffle albums + Stokk om album + + + Don't repeat + Ikke gjenta + + + Repeat track + Gjenta spor + + + Repeat album + Gjenta album + + + Repeat playlist + Gjenta spilleliste + + + Stop after every track + Stopp etter hvert spor + + + Intro tracks + Introspor + + + + Organize + + Organizing files + Organiserer filene + + + + OrganizeDialog + + Organize Files + Organiser filene + + + Destination + Mål + + + After copying... + Etter kopiering… + + + Keep the original files + Behold originalfilene + + + Delete the original files + Slett de originale filene + + + Naming options + Navnevalg + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Kodene begynner med %, for eksempel: %artist %album %title </p> + +<p>Hvis du setter klammeparenteser rundt tekst som inneholder en kode, vil teksten skjules om koden er tom.</p> + + + Insert... + Sett inn… + + + Remove problematic characters from filenames + Fjern problematiske tegn fra filnavn + + + Restrict to characters allowed on FAT filesystems + Begrens til tegn tillat på FAT filsystem + + + Restrict characters to ASCII + Begrens til tegn i ASCII + + + Allow extended ASCII characters + Tillat utvidet ASCII tegn + + + Replace spaces with underscores + Erstatt mellomrom med understrek + + + Overwrite existing files + Overskriv eksisterende filer + + + Copy album cover artwork + Kopier album omslaggrafikk + + + Preview + Forhåndsvisning + + + Loading... + Åpner… + + + Safely remove the device after copying + Kjør trygg fjerning av enhet etter kopiering + + + Title + Tittel + + + Album + + + + Artist + + + + Artist's initial + Artistens initialer + + + Album artist + + + + Composer + Komponist + + + Performer + Utøver + + + Grouping + Gruppering + + + Track + Spor + + + Disc + Disk + + + Year + År + + + Original year + Opprinnelig år + + + Genre + Sjanger + + + Comment + Kommentar + + + Length + Lengde + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + Samplingsrate + + + Bit depth + Bit dybde + + + File extension + Fil etternavn + + + + OrganizeErrorDialog + + Error copying songs + Kunne ikke kopiere sanger + + + There were problems copying some songs. The following files could not be copied: + Fikk problemer med å kopiere enkelte sanger. Følgende filer kunne ikke kopieres: + + + Error deleting songs + Kunne ikke slette sanger + + + There were problems deleting some songs. The following files could not be deleted: + Fikk problemer med å slette enkelte sanger. Følgende filer kunne ikke slettes: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Lite albumomslag + + + Large album cover + Stort omslag + + + Fit cover to width + Tilpass omslag til bredde + + + Show above status bar + Vis over statuslinja + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Tittel + + + Artist + + + + Album + + + + Track + Spor + + + Disc + Disk + + + Length + Lengde + + + Year + År + + + Original Year + + + + Genre + Sjanger + + + Album Artist + + + + Composer + Komponist + + + Performer + Utøver + + + Grouping + Gruppering + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Kommentar + + + Source + Kilde + + + Mood + + + + Rating + Vurdering + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Skjema + + + Undo + + + + Redo + + + + Playlist + Spilleliste + + + Load playlist + Åpne spilleliste + + + No matches found. Clear the search box to show the whole playlist again. + Ingen treff. Visk ut søkefeltet for å vise hele spillelisten igjen. + + + + PlaylistDelegateBase + + stop + stopp + + + + PlaylistGeneratorInserter + + Loading smart playlist + Laster smart spilleliste + + + + PlaylistHeader + + &Hide... + Skjul… + + + &Stretch columns to fit window + Tilpass &kolonner til vinduet + + + &Reset columns to default + &Tilbakestill kolonner til standard + + + &Lock rating + &Lås vurdering + + + &Align text + &Still opp tekst + + + &Left + &Venstre + + + &Center + Sentr&er + + + &Right + &Høyre + + + &Hide %1 + Skjul %1 + + + + PlaylistListContainer + + Form + Skjema + + + New folder + Ny mappe + + + Delete + Slett + + + Save playlist + Save playlist menu action. + Lagre spilleliste + + + Copy to device... + Kopier til enhet… + + + Enter the name of the folder + Skriv inn navn på mappa + + + Playlist + Spilleliste + + + Copy to device + Kopier til enhet + + + Playlist must be open first. + Spillelisten må være åpen først. + + + Remove playlists + Fjern spillelister + + + You are about to remove %1 playlists from your favorites, are you sure? + Du sletter nå %1 spillelister fra favorittene dine, er du sikker? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Du kan merke en spilleliste som favoritt ved å klikke på stjerneikonet nær listenavnet. + + + Favorited playlists will be saved here + Favoritt-spillelister vil lagres her + + + + PlaylistManager + + Playlist + Spilleliste + + + Couldn't create playlist + Kunne ikke opprette spilleliste + + + Save playlist + Title of the playlist save dialog. + Lagre spilleliste + + + Unknown playlist extension + Ukjent fil type. + + + Unknown file extension for playlist. + Ukjent fil type for spilleliste. + + + %1 selected of + %1 valgte av + + + %n track(s) + + + + + + + Unknown + Ukjent + + + Various artists + Diverse artister + + + + PlaylistParser + + All playlists (%1) + Alle spillelister (%1) + + + %1 playlists (%2) + %1 spillelister (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Innstillinger for spilleliste + + + File paths + Filstier + + + This can be changed later through the preferences + Dette kan endres i innstillingene seinere + + + Remember my choice + Husk valg + + + Automatic + Automatisk + + + Relative + Relativ + + + Absolute + Absolutt + + + + PlaylistSequence + + Repeat + Gjenta + + + Shuffle + Stokk om + + + Don't repeat + Ikke gjenta + + + Repeat track + Gjenta spor + + + Repeat album + Gjenta album + + + Repeat playlist + Gjenta spilleliste + + + Stop after each track + Stopp etter hvert spor + + + Intro tracks + Introspor + + + Don't shuffle + Ikke stokk + + + Shuffle tracks in this album + Stokk om dette albumet + + + Shuffle all + Stokk alle + + + Shuffle albums + Stokk om album + + + + PlaylistSettingsPage + + Playlist + Spilleliste + + + Use alternating row colors + Bruk alternative radfarger + + + Show bars on the currently playing track + Vis barer på nåværende spilte spor + + + Show a glowing animation on the currently playing track + Vis en glødende animasjon på gjeldende spilt spor + + + Warn me when closing a playlist tab + Advarsel når jeg lukker en spilleliste-fane + + + Continue to the next item in the playlist if a song is unavailable + Fortsett til neste sang i stillelisten dersom en sang ikke er tilgjengelig + + + Grey out unavailable songs in playlists on playback + Merk ikke-eksisterende sanger med grått når de spilles + + + Grey out unavailable songs in playlists on startup + Merk ikke-eksisterende sanger med grått på oppstart + + + Automatically select current playing track + Velg spor automatisk + + + Enable playlist toolbar + Aktiver spilleliste toolbar + + + Enable playlist clear button + Aktiver fjern spilleliste knapp + + + Enable delete files in the right click context menu + Aktiv slett filer i høyreklikk-meny + + + Automatically sort playlist when inserting songs + Automatisk sorter spilleliste når du legger til sanger + + + When saving a playlist, file paths should be + Når du lagrer spillelisten, skal fil plasseringen + + + A&utomatic + A&utomatisk + + + Absolu&te + Absolu&tt + + + Re&lative + Relativ + + + As&k when saving + Spør ved lagring + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Skrur på direkte redigering ved å klikke på en sang i spillelisten + + + Enable song metadata inline edition with click + Slå på direkteredigering med ett klikk + + + Write metadata when saving playlists + Skrev metadata når spilleliste lagres + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Lukk spillelista + + + Rename playlist... + Gi nytt navn til spillelista… + + + Save playlist... + Lagre spilleliste… + + + Rename playlist + Gi nytt navn til spillelista + + + Enter a new name for this playlist + Gi denne spillelista et nytt navn + + + Remove playlist + Fjern spilleliste + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Du er i ferd med å slette en spilleliste som ikke er lagret i Favoritter. Denne spillelisten vil bli slettet (og du kan ikke angre). +Er du sikker? + + + Warn me when closing a playlist tab + Advarsel når jeg lukker en spilleliste-fane + + + This option can be changed in the "Behavior" preferences + Dette valget kan endres under innstillinger for "Oppførsel" + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Dobbelklikk her for å favorisere denne spillelisten slik at den blir lagret og tilgjengelig gjennom "Spillelister" i panelet på venstre side. + + + Playlist + Spilleliste + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + legg til %n sanger + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + flytt %n sanger + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + fjern %n sanger + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + stokk spor + + + + PlaylistUndoCommands::SortItems + + sort songs + sorter sanger + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + Bruk + + + options + innstillinger + + + URL(s) + URL(er) + + + Player options + Innstillinger for avspiller + + + Start the playlist currently playing + Begynn på spillelista som spilles nå + + + Play if stopped, pause if playing + Hvis stoppet: Spill av. Hvis spiller: pause + + + Pause playback + Sett avspilling på pause + + + Stop playback + Stopp avspilling + + + Stop playback after current track + Stopp avspilling etter dette sporet + + + Skip backwards in playlist + Gå bakover i spillelista + + + Skip forwards in playlist + Gå fremover i spillelista + + + Set the volume to <value> percent + Sett lydstyrken til <value> prosent + + + Increase the volume by 4 percent + Øk lydstyrken med 4 prosent + + + Decrease the volume by 4 percent + Senk volum med 4 prosent + + + Increase the volume by <value> percent + Øk lydstyrken <value> prosent + + + Decrease the volume by <value> percent + Demp lydstyrken med <value> prosent + + + Seek the currently playing track to an absolute position + Gå til et bestemt tidspunkt i sporet + + + Seek the currently playing track by a relative amount + Gå frem-/bakover en del av sporlengden + + + Restart the track, or play the previous track if within 8 seconds of start. + Start sporet igjen, eller spill forrige spor hvis du er innen de første 8 sekundene av sporet + + + Playlist options + Innstillinger for spilleliste + + + Create a new playlist with files + Opprett ny spilleliste med filer + + + Append files/URLs to the playlist + Tilføy filer/URLer til spillelista + + + Loads files/URLs, replacing current playlist + Åpne filer/URL-er; erstatt gjeldende spilleliste + + + Play the <n>th track in the playlist + Spill av <n>ende spor i spillelista + + + Play given playlist + Spill angitt spilleliste + + + Other options + Andre innstillinger + + + Display the on-screen-display + Overleggsvisning + + + Toggle visibility for the pretty on-screen-display + Slå av/på synlighet for det pene skjermbilde overlegget + + + Change the language + Endre språk + + + Resize the window + Endre størrelse på vinduet + + + Equivalent to --log-levels *:1 + Tilsvarer --log-levels *:1 + + + Equivalent to --log-levels *:3 + Tilsvarer --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Komma-separert liste av klasse:level, level er 0-3 + + + Print out version information + Vis versjonsinformasjon + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Ukjent + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Fil %1 er ikke gjenkjent som en lydfil + + + 1 day + 1 dag + + + %1 days + %1 dager + + + Today + I dag + + + Yesterday + I går + + + %1 days ago + %1 dager siden + + + Tomorrow + I morgen + + + In %1 days + Om %1 dager + + + Next week + Neste uke + + + In %1 weeks + Om %1 uker + + + Show in file browser + Vis i fil utforsker + + + Too many songs selected. + For mange sanger er valgt. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + %1 sanger valgt, er du sikker på at du vil åpne dem alle? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Ukjent feil + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Tilgjengelige felt + + + after + etter + + + before + etter + + + on + + + + not on + ikke på + + + in the last + som siste + + + not in the last + ikke som siste + + + between + mellom + + + contains + inneholder + + + does not contain + inneholder ikke + + + starts with + starter på + + + ends with + slutter på + + + greater than + større enn + + + less than + mindre enn + + + equals + er lik + + + not equals + ikke lik + + + empty + tom + + + not empty + ikke tom + + + Comment + Kommentar + + + A-Z + + + + Z-A + + + + oldest first + eldre først + + + newest first + nyeste først + + + shortest first + korteste først + + + longest first + lengre først + + + smallest first + minste først + + + biggest first + største først + + + Hours + Timer + + + Days + Dager + + + Weeks + Uker + + + Months + Måneder + + + Years + År + + + Normal + + + + Angry + Sint + + + Frozen + Frossen + + + Happy + Glad + + + System colors + Systemfarger + + + + QWidget + + Clear + Tøm + + + Reset + Tilbakestill + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Søker... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Ingen treff. + + + Unknown error + Ukjent feil + + + + QobuzService + + Authenticating... + Autentiserer... + + + Maximum number of login attempts reached. + Maks antall påloggingsforsøk nådd. + + + Missing Qobuz app ID. + Mangler Qobuz app ID. + + + Missing Qobuz username. + Mangler Qobuz brukernavn. + + + Missing Qobuz password. + Mangler Qobuz passord. + + + Not authenticated with Qobuz. + Ikke autentisert med Qobuz. + + + Missing Qobuz app ID or secret. + Mangler Qobuz app ID eller secret. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Aktiver + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + QObuz støtte er ikke offisiell og krever en API nøkkel fra en registert applikasjon for å virke. + + + Authentication + Autentisering + + + App ID + + + + Username + Brukernavn + + + Password + Passord + + + App Secret + + + + Login + Innlogging + + + Preferences + Innstillinger + + + Audio format + Lydformat + + + Search delay + Søke forsinkelse + + + ms + + + + Artists search limit + Artist søkebegrensning + + + Albums search limit + Album søke begrensning + + + Songs search limit + Søkebegrensing for sanger + + + Download album covers + Last ned album kover + + + Base64 encoded secret + + + + Configuration incomplete + Oppsett ikke komplett + + + Missing app id. + Mangler app ID. + + + Missing username. + Mangler brukernavn. + + + Missing password. + Mangler passord. + + + Authentication failed + Identitetsbekreftelse feilet + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Mangler Qobuz app ID eller secret. + + + Cancelled. + Avbrutt + + + + Queue + + %n track(s) + + + + + + + + QueueView + + QueueView + Køoversikt + + + Move down + Flytt nedover + + + Ctrl+Up + Ctrl+Opp + + + Move up + Flytt oppover + + + Ctrl+Down + Ctrl+Ned + + + Remove + Fjern + + + Clear + Tøm + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + Mottar %1 kanaler + + + + RadioView + + Append to current playlist + Legg til i gjeldende spilleliste + + + Replace current playlist + Erstatt gjeldende spilleliste + + + Open in new playlist + Åpne i ny spilleliste + + + Open homepage + Åpne hjemmeside + + + Donate + Doner + + + Refresh channels + Oppfrisk kanler + + + + RadioViewContainer + + Form + Skjema + + + + SCollection + + Saving playcounts and ratings + Lagrer spilletellere og vurderinger + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + Velg mappe for spillelister + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Behandler for lagrede grupperinger + + + Remove + Fjern + + + Ctrl+Up + Ctrl+Opp + + + Name + Navn + + + First level + Første nivå + + + Second Level + Andre nivå + + + Third Level + Tredje nivå + + + None + Ingen + + + Album artist + + + + Artist + + + + Album + + + + Album - Disc + + + + Year - Album + År - album + + + Year - Album - Disc + År - album - disc + + + Original year - Album + Opprinnelig år - album + + + Original year - Album - Disc + + + + Disc + Disk + + + Year + År + + + Original year + Opprinnelig år + + + Genre + Sjanger + + + Composer + Komponist + + + Performer + Utøver + + + Grouping + Gruppering + + + File type + Filtype + + + Format + + + + Sample rate + Samplingsrate + + + Bit depth + Bit dybde + + + Bitrate + + + + Unknown + Ukjent + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Aktiver + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Sanger blir scrobblet når de har gyldig metadata, er lengre enn 30 seconds, og har blitt spilt for minst halve tiden, eller 30 sekunder (det som skjer tidligst). + + + Work in offline mode (Only cache scrobbles) + Jobb i frakoblet modus (bare cache scrobbler) + + + Show scrobble button + Vis knappen for rapportering av lyttevaner + + + Show love button + Vis love knapp + + + Submit scrobbles every + Send scrobbles hver + + + seconds + sekunder + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + Tid mellom en sang er scrobbled og når skrobbler er sent til server. Setting av tid til 0 minutter vil sende skrobbler øyeblikkelig + + + Prefer album artist when sending scrobbles + Foretrekk album artist når scrobbler sendes + + + Show dialog for errors + Vis dialog for feil + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Aktiver skrobbling for følgende kilder: + + + Collection + Samling + + + Subsonic + + + + Local file + Lokal fil + + + Tidal + + + + Device + Enhet + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Strøm + + + Radio Paradise + + + + Unknown + Ukjent + + + Last.fm + + + + Login + Innlogging + + + Libre.fm + + + + Listenbrainz + + + + User token: + Bruker nøkkel: + + + Enter your user token from + Tast inn din bruker token fra + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 Scrobbler bruker autentisering + + + Open URL in web browser? + Åpne URL i nettleseren? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Velg "Lagre" for å kopiere URL til utklippsbok for å manuelt åpne den i en nettleser. + + + Could not open URL. Please open this URL in your browser + Kunne ikke åpne URL. Prøv å åpne denne URLen i din nettleser + + + Invalid reply from web browser. Missing token. + Ugyldig svar fra nettleseren. Mangler token. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + Scrobbler %1 er ikke autentisert! + + + Scrobbler %1 error: %2 + Skrobbler %1 error: %2 + + + + SettingsDialog + + Settings + Innstillinger + + + General + Generelt + + + User interface + Brukergrensesnitt + + + Streaming + Strømming + + + + SmartPlaylistQuerySearchPage + + Form + Skjema + + + Search mode + Søkemodus + + + Match every search term (AND) + Match alle søke valg (AND) + + + Match one or more search terms (OR) + Match en eller flere søkevalg (OR) + + + Include all songs + Inkluder alle sanger + + + Search terms + Søkekriterier + + + + SmartPlaylistQuerySortPage + + Form + Skjema + + + Sorting + Sortering + + + Put songs in a random order + Putt sangene i tilfeldig rekkefølge + + + Sort songs by + Sorter sanger etter + + + Limits + Begrensninger + + + Show all the songs + Vis alle sanger + + + Only show the first + Bare vis de første + + + songs + sanger + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Samlingsøk + + + Find songs in your collection that match the criteria you specify. + Finn sanger i samlingen som svarer til kriteriene du spesifiserer + + + Search terms + Søkekriterier + + + A song will be included in the playlist if it matches these conditions. + En sang vil bli inkludert i spillelisten dersom den matcher disse kreteriene + + + Search options + Søkevalg + + + Choose how the playlist is sorted and how many songs it will contain. + Velg hvordan spillelisten er sortert og hvor mange sanger den skal inneholde + + + + SmartPlaylistSearchPreview + + Form + Skjema + + + Preview + Forhåndsvisning + + + Loading... + Åpner… + + + %1 songs found (showing %2) + %1 sanger funnet (viser %2) + + + %1 songs found + %1 sanger funnet + + + + SmartPlaylistSearchTermWidget + + Form + Skjema + + + and + og + + + ago + siden + + + The second value must be greater than the first one! + Andre verdi må være høyere enne den første! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Legg til søkekreterie + + + + SmartPlaylistWizard + + Smart playlist + Smart spilleliste + + + Playlist type + Spilleliste type + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + En smart spilleliste er en dynamisk liste over sanger fra din samling. Det er flere typer smarte spillelister som tilbyr forskjellige veier å velge sanger + + + Finish + Ferdig + + + Choose a name for your smart playlist + Velg et navn for din smarte spilleliste + + + + SmartPlaylistWizardFinishPage + + Form + Skjema + + + Name + Navn + + + Use dynamic mode + Bruk dynamisk modus + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + I dynamisk modus nye spor vil bli valgt og lagt til spillelisten hver gang en sang er fullført. + + + + SmartPlaylists + + Newest tracks + Nyeste spor + + + 50 random tracks + 50 tilfeldige spor + + + Ever played + Aldri spilt + + + Never played + Aldri spilt + + + Last played + Sist spilt + + + Most played + Mest spilte + + + Favourite tracks + Favorittspor + + + All tracks + Alle spor + + + Dynamic random mix + Dynamisk tilfeldig miks + + + + SmartPlaylistsViewContainer + + New smart playlist + Ny smart spilleliste + + + Edit smart playlist + Rediger smart spilleliste + + + Delete smart playlist + Slett smart spilleliste + + + New smart playlist... + Ny smart spilleliste... + + + Append to current playlist + Legg til i gjeldende spilleliste + + + Replace current playlist + Erstatt gjeldende spilleliste + + + Open in new playlist + Åpne i ny spilleliste + + + Queue track + Legg spor i kø + + + Play next + Spill neste + + + Edit smart playlist... + Rediger smart spilleliste... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry kjører som en Snap + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + For Ubuntu en offisiell PPA pakkebrønn er tilgjengelig på %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + For en bedre opplevelse bruk en av valgene over. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Kopier din strawberry.conf og strawberry.db fil fra ~/snap mappen for å unngå at du mister innstillingene før du avinstallerer + + + Uninstall the snap with: + Avinstaller snap med: + + + Install strawberry through PPA: + Installer Strawberry gjennom PPA: + + + + SomaFMService + + Getting %1 channels + Mottar %1 kanaler + + + + SongLoader + + You need GStreamer for this URL. + Du trenge gstreamer for denne URLen + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + Fil %1 eksisterer ikke. + + + CD playback is only available with the GStreamer engine. + CD avspilling er kun mulig med gstreamer + + + Could not open file %1 for reading: %2 + Kunne ikke åpne fil %1 for lesing: %2 + + + Could not open CUE file %1 for reading: %2 + Kunne ikke åpne CUE fil %1 for lesing: %2 + + + Could not open playlist file %1 for reading: %2 + Kunne ikke åpne spilleliste %1 for lesing: %2 + + + Couldn't create GStreamer source element for %1 + Kunne ikke opprette gstreamer kilde element for %1 + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + Feil ved lasting av CD + + + Loading tracks + Åpner spor + + + Loading tracks info + Henter informasjon om spor + + + + SpotifyRequest + + Authenticating... + Autentiserer... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Søker... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Ingen treff. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Spotify Autentisering + + + Please open this URL in your browser + Vennligst åpne denne URLen i din nettleser + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + Mottok ugyldig svar fra nettleseren. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Aktiver + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Innstillinger + + + Search delay + Søke forsinkelse + + + ms + + + + Artists search limit + Artist søkebegrensning + + + Albums search limit + Album søke begrensning + + + Songs search limit + Søkebegrensing for sanger + + + Download album covers + Last ned album kover + + + Fetch entire albums when searching songs + Hent hele album når en søker etter sanger + + + Authentication failed + Identitetsbekreftelse feilet + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Klikk her for å få inn musikk + + + Append to current playlist + Legg til i gjeldende spilleliste + + + Replace current playlist + Erstatt gjeldende spilleliste + + + Open in new playlist + Åpne i ny spilleliste + + + Queue track + Legg spor i kø + + + Queue to play next + Legg i kø for å spille som neste + + + Remove from favorites + Fjern fra favoritter + + + + StreamingCollectionViewContainer + + Form + Skjema + + + Close + Lukk + + + Abort + Avbryt + + + Refresh catalogue + Oppfrisk katalog + + + + StreamingSearchModel + + Various artists + Diverse artister + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + artister + + + albums + albumer + + + songs + sanger + + + Enter search terms above to find music + Skriv inn søkeord ovenfor for å finne musikk + + + Configure %1... + Sett opp %1… + + + Append to current playlist + Legg til i gjeldende spilleliste + + + Replace current playlist + Erstatt gjeldende spilleliste + + + Open in new playlist + Åpne i ny spilleliste + + + Queue track + Legg spor i kø + + + Add to artists + Legg til artister + + + Add to albums + Legg til albumer + + + Add to songs + Legg til sanger + + + Search for this + Søk etter dette + + + Group by + Grupper etter + + + + StreamingSongsView + + Configure %1... + Sett opp %1… + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Artister + + + Albums + Albumer + + + Songs + Sanger + + + Search + Søk + + + Configure %1... + Sett opp %1… + + + + SubsonicRequest + + Retrieving albums... + Mottar albumer... + + + Retrieving songs for %1 album... + Mottar sanger for %1 album... + + + Retrieving songs for %1 albums... + Mottar sanger for %1 albumer... + + + Retrieving album cover for %1 album... + Mottar album kover for %1 album... + + + Retrieving album covers for %1 albums... + Mottar album kover for %1 albums... + + + Unknown error + Ukjent feil + + + + SubsonicService + + Server URL is invalid. + Server URL er ugyldig. + + + Missing username or password. + Mangler brukernavn eller passord. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Aktiver + + + Server URL + + + + Authentication + Autentisering + + + Username + Brukernavn + + + Password + Passord + + + Authentication method: + Autentiseringsmetode + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Innstillinger + + + Use HTTP/2 when possible + Bruk HTTP2 når tilgjengelig + + + Verify server certificate + Verifiser server sertifikat + + + Download album covers + Last ned album kover + + + Server-side scrobbling + Server-siding skrobbling + + + Test + + + + Delete songs + Slett sanger + + + Configuration incomplete + Oppsett ikke komplett + + + Missing server url, username or password. + Mangler server URL, brukernavn eller passord. + + + Configuration incorrect + Uriktig oppsett + + + Server URL is invalid. + Server URL er ugyldig. + + + Test successful! + + + + Test failed! + Test feilet! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Subsonic server URL er ugyldig. + + + Missing Subsonic username or password. + Mangler Subsonic brukernavn eller passord. + + + + SystemTrayIcon + + Pause + + + + Play + Spill + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Autentiserer... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Søker... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Ingen treff. + + + + TidalService + + Reply from Tidal is missing query items. + Svar fra Tidal mangler query items. + + + Missing Tidal API token. + Mangler Tidal API token. + + + Missing Tidal username. + Mangler Tidal brukernavn. + + + Missing Tidal password. + Mangler Tidal passord. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Autentisering med Tidal har nådd maksimalt antall påloggingsforsøk. + + + Not authenticated with Tidal. + Ikke autentisert med Tidal. + + + Missing Tidal API token, username or password. + Mangler API nøkkel, brukernavn eller passord. + + + + TidalSettingsPage + + Tidal + + + + Enable + Aktiver + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Tidal støtte er ikke offisiell og krever en API nøkkel. + + + Authentication + Autentisering + + + Use OAuth + Bruk OAuth + + + Client ID + + + + API Token + + + + Username + Brukernavn + + + Password + Passord + + + Login + Innlogging + + + Preferences + Innstillinger + + + Audio quality + Lydkvalitet + + + Search delay + Søke forsinkelse + + + ms + + + + Artists search limit + Artist søkebegrensning + + + Albums search limit + Album søke begrensning + + + Songs search limit + Søkebegrensing for sanger + + + Download album covers + Last ned album kover + + + Fetch entire albums when searching songs + Hent hele album når en søker etter sanger + + + Album cover size + Plateomslag størrelse + + + Stream URL method + Strøm URL metode + + + Append explicit to album title for explicit albums + Legg til explicit i album tittel for explicit albumer + + + Configuration incomplete + Oppsett ikke komplett + + + Missing Tidal client ID. + Mangler Tidal client ID. + + + Missing API token. + Mangler API nøkkel. + + + Missing username. + Mangler brukernavn. + + + Missing password. + Mangler passord. + + + Authentication failed + Identitetsbekreftelse feilet + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Ikke autentisert med Tidal. + + + Missing Tidal API token, username or password. + Mangler API nøkkel, brukernavn eller passord. + + + Cancelled. + Avbrutt + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Mottokk URL med %1 kryptert strøm fra Tidal, Strawberry støtter ikke kryptert strøm. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Mottokk URL med kryptert strøm fra Tidal, Strawberry støtter ikke kryptert strøm. + + + + TrackSelectionDialog + + Tag fetcher + Etikett-henter + + + Sorry + Beklager + + + Strawberry was unable to find results for this file + Strawberry klarte ikke å finne resultater for denne filen + + + Select best possible match + Velg det beste treffet + + + Track + Spor + + + Year + År + + + Title + Tittel + + + Artist + + + + Album + + + + Previous + Forrige + + + Next + Neste + + + Original tags + Opprinnelige tagger + + + Suggested tags + Foreslåtte etiketter + + + Saving tracks + Lagrer spor + + + + TrackSlider + + Form + Skjema + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Klikk for å bytte mellom gjenværende og total tid + + + + TranscodeDialog + + Transcode Music + Omkod musikk + + + Files to transcode + Filer som skal omkodes + + + Filename + Filnavn + + + Directory + Mappe + + + Add... + Legg til... + + + Remove + Fjern + + + Add all tracks from a directory and all its subdirectories + Legg til alle filer fra ei mappe og dens undermapper + + + Import... + Importer... + + + Output options + Utgangsinnstillinger + + + Audio format + Lydformat + + + Options... + Innstillinger… + + + Destination + Mål + + + Alongside the originals + Sammen med originalene + + + Select... + Velg… + + + Progress + Framdrift + + + Details... + Detaljer… + + + Clear + Tøm + + + Start transcoding + Start omkoding + + + %n remaining + + %n gjenstående + + + + + %n finished + + %n ferdige + + + + + %n failed + + %n feilet + + + + + Add files to transcode + Legg filer til for omkoding + + + Music + Musikk + + + Open a directory to import music from + Importer musikk fra ei mappe + + + Add folder + Legg til mappe + + + + TranscodeLogDialog + + Transcoder Log + Logg for omkoder + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Kunne ikke opprette GStreamer-elementet "%1" - sørg for at du har alle nødvendige GStreamer-programutvidelser installert + + + Successfully written %1 + Skrev %1 + + + Transcoding %1 files using %2 threads + Omkoder %1 filer i %2 tråder + + + Error processing %1: %2 + Kunne ikke behandle %1: %2 + + + Starting %1 + Starter %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Kunne ikke finne noen koder for %1, kontroller at du har de riktige GStreamer-modulene installert + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Kunne ikke finne multiplekser for %1, sjekk at du har de riktige GStreamer-programutvidelsene installert + + + + TranscoderOptionsAAC + + Form + Skjema + + + Bitrate + + + + kbps + kbps + + + Profile + Profil + + + Main profile (MAIN) + Hovedprofil (MAIN) + + + Low complexity profile (LC) + Profil for lavkompleksitet (LC) + + + Scalable sampling rate profile (SSR) + Skalerbar samplingsrate-profil (SSR) + + + Long term prediction profile (LTP) + Profil for langtidspredikie (LTP) + + + Use temporal noise shaping + Bruk midlertidig støyforming + + + Allow mid/side encoding + Tillat midt/side-koding + + + Block type + Blokktype + + + Normal block type + Normal blokktype + + + No short blocks + Ikke korte blokker + + + No long blocks + Ingen lange blokker + + + + TranscoderOptionsASF + + Form + Skjema + + + Bitrate + + + + kbps + kbps + + + + TranscoderOptionsDialog + + Transcoding options + Innstillinger for omkoding + + + + TranscoderOptionsFLAC + + Form + Skjema + + + Quality + Sound quality + Kvalitet + + + Fast + Rask + + + Best + + + + + TranscoderOptionsMP3 + + Form + Skjema + + + Optimize for &quality + + + + Quality + Sound quality + Kvalitet + + + Opti&mize for bitrate + Optimalisere for bitrate + + + Bitrate + + + + kbps + kbps + + + Constant bitrate + Konstant bitrate + + + Encoding engine quality + Koding motorens kvalitetsinnstilling + + + Fast + Rask + + + Standard + + + + High + Høy + + + Force mono encoding + Tving monolyd-koding + + + + TranscoderOptionsOpus + + Form + Skjema + + + Bitrate + + + + kbps + kbps + + + + TranscoderOptionsSpeex + + Form + Skjema + + + Quality + Sound quality + Kvalitet + + + Bitrate + + + + automatic + automatisk + + + kbps + kbps + + + Average bitrate + Gjennomsnittlig bitrate + + + disabled + slått av + + + Encoding mode + Kodingsmodus + + + Auto + Automatisk + + + Ultra wide band (UWB) + Ultrabredt bånd (UWB) + + + Wide band (WB) + Bredbånd (WB) + + + Narrow band (NB) + Smalbånd (SB) + + + Variable bit rate + Variabel bitrate + + + Voice activity detection + Taledeteksjon + + + Discontinuous transmission + Uregelmessig overføring + + + Encoding complexity + Koding-kompleksitet + + + Frames per buffer + Bilder per buffer + + + + TranscoderOptionsVorbis + + Form + Skjema + + + Quality + Sound quality + Kvalitet + + + Use bitrate management engine + Bruk kontrollert bitrate + + + Target bitrate + Ønsket bitrate + + + kbps + kbps + + + Minimum bitrate + Minimal bitrate + + + disabled + slått av + + + Maximum bitrate + Høyeste bitrate + + + + TranscoderOptionsWavPack + + Form + Skjema + + + + TranscoderSettingsPage + + Transcoding + Omkoding + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Disse innstillingene brukes i "Omkod musikk"-dialogvinduet, og når musikken omkodes før kopiering til en enhet. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + D-Bus sti + + + Serial number + Serienummer + + + Mount points + Monteringspunkter + + + Partition label + Partisjonsnavn + + + UUID + + + + + UserPassDialog + + Enter username and password + Skriv inn brukernavn og passord + + + Username + Brukernavn + + + Password + Passord + + + diff --git a/src/translations/strawberry_nl_NL.ts b/src/translations/strawberry_nl_NL.ts new file mode 100644 index 00000000..5fdf247d --- /dev/null +++ b/src/translations/strawberry_nl_NL.ts @@ -0,0 +1,7569 @@ + + + + + About + + About + Over + + + About Strawberry + Over Strawberry + + + Version %1 + Versie %1 + + + Strawberry is a music player and music collection organizer. + Strawberry is een muziekspeler en organisator van muziekcollecties. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry is gratis software vrijgegeven onder GPL. De broncode is beschikbaar op% 1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + U moet bij dit programma een kopie van de GNU General Public License hebben ontvangen. Zo niet, zie %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Je kan de schrijvers hier sponseren %1 U kunt ook een eenmalige betaling doen via %2 + + + Author and maintainer + Auteur en onderhouder + + + Contributors + Bijdragers + + + Clementine authors + Clementine ontwikkelaars + + + Clementine contributors + Clementine bijdragers + + + Thanks to + Dankzij + + + Thanks to all the other Amarok and Clementine contributors. + Dank aan alle andere medewerkers van Amarok en Clementine. + + + + AddStreamDialog + + Add Stream + Stream toevoegen + + + Enter the URL of a stream: + + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Afbeeldingen (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Afbeeldingen (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Alle bestanden (*) + + + Load cover from disk... + Albumhoes van schijf laden… + + + Save cover to disk... + Albumhoes op schijf bewaren… + + + Load cover from URL... + Albumhoes van URL laden… + + + Search for album covers... + Naar albumhoezen zoeken… + + + Unset cover + Albumhoes wissen + + + Delete cover + Hoes wissen + + + Clear cover + + + + Show fullsize... + Volledig weergeven... + + + Search automatically + Automatisch zoeken + + + Load cover from disk + Albumhoes van schijf laden + + + Failed to open cover file %1 for reading: %2 + Kan hoesbestand %1 niet openen voor lezen: %2 + + + Cover file %1 is empty. + + + + unknown + onbekend + + + Save album cover + Albumhoes opslaan + + + Failed to open cover file %1 for writing: %2 + Kan hoesbestand %1 niet openen voor schrijven: %2 + + + Failed writing cover to file %1: %2 + Kan hoes niet wegschrijven naar bestand %1: %2 + + + Failed writing cover to file %1. + Kan hoes niet wegschrijven naar bestand %1. + + + Failed to delete cover file %1: %2 + Kan hoesbestand %1 niet verwijderen: %2 + + + Failed to write cover to file %1: %2 + Kan hoes niet schrijven naar bestand %1: %2 + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Albumhoezen exporteren + + + Output + + + + Enter a filename for exported covers (no extension): + Geef een bestandsnaam voor de geëxporteerde albumhoezen (geen extensie) + + + Export downloaded covers + Exporteer gedownloade albumhoezen + + + Export embedded covers + Exporteer albumhoezen in mediabestanden + + + Existing covers + Bestaande albumhoezen + + + Do not overwrite + Niet overschrijven + + + O&verwrite all + + + + Overwrite s&maller ones only + + + + Size + Groote + + + Scale size + Groote schalen + + + Size: + Groote: + + + Pixel + + + + + AlbumCoverManager + + Abort + Afbreken + + + All albums + Alle albums + + + Albums with covers + Albums met albumhoes + + + Albums without covers + Albums zonder albumhoes + + + Really cancel? + Werkelijk annuleren? + + + Closing this window will stop searching for album covers. + Het zoeken naar albumhoezen wordt afgebroken als u dit venster sluit. + + + Don't stop! + Niet stoppen! + + + All artists + Alle artiesten + + + Various artists + Diverse artiesten + + + Got %1 covers out of %2 (%3 failed) + %1 van de %2 albumhoezen opgehaald (%3 mislukt) + + + %1 transferred + %1 overgezet + + + Export finished + Klaar me exporteren + + + No covers to export. + Geen albumhoezen om te exporteren. + + + Exported %1 covers out of %2 (%3 skipped) + %1 van %2 albumhoezen geëxporteerd (%3 overgeslagen) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Albumhoesbeheerder + + + Artist + Artiest + + + Album + + + + Search + Zoeken + + + Covers from %1 + Albumhoes van %1 + + + Abort + Afbreken + + + + AnalyzerContainer + + Framerate + + + + Low (%1 fps) + Laag (%1 fps) + + + Medium (%1 fps) + Gemiddeld (%1 fps) + + + High (%1 fps) + Hoog (%1 fps) + + + Super high (%1 fps) + Superhoog (%1 fps) + + + No analyzer + Geen weergave + + + Block analyzer + Blokweergave + + + Boom analyzer + Boomweergave + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Uiterlijk + + + Style + Stijl + + + Use system theme icons + Gebruik systeem pictogrammen + + + Settings require restart. + Instellingen vereisen opnieuw opstarten. + + + Tabbar colors + Tabbalkkleuren + + + &Use the system default color + &Gebruik het standaard systeemkleur + + + Use custom color + Gebruik een aangepaste kleur + + + Use gradient background + Achtergrond met kleurovergang gebruiken + + + Select tabbar color: + + + + Background image + Achtergrondafbeelding + + + Default bac&kground image + Standaard achter&grondafbeelding + + + &No background image + &Geen achtergrondafbeelding + + + The album cover of the currently playing song + Albumhoes van het momenteel spelende nummer + + + Albu&m cover + Albu&m Hoes + + + Custom image: + Aangepaste afbeelding: + + + Browse... + Bladeren… + + + Position + Positie + + + Upper Left + Linksboven + + + Upper Right + Rechtsboven + + + Middle + + + + Bottom Left + + + + Bottom Right + + + + Max cover size + + + + Stretch image to fill playlist + Rek de afbeelding uit om de afspeellijst te vullen + + + Keep aspect ratio + + + + Do not cut image + Afbeelding niet bijsnijden + + + Blur amount + Vervagen + + + 0px + + + + Opacity + Doorzichtigheid + + + 40% + + + + Icon sizes + + + + Playlist buttons + + + + Tabbar large mode + Tabbalk grote modus + + + Play control buttons + + + + Configure buttons + Configureer knoppen + + + Files, playlists and queue buttons + + + + Tabbar small mode + Tabbalk kleine modus + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + Kies achtergrondafbeelding + + + + BackendSettingsPage + + Backend + + + + Audio output + Audiouitvoer + + + Device + Apparaat + + + Output + + + + Engine + + + + ALSA plugin: + + + + hw + hardware + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + + + + Upmix / downmix to + Upmix / downmix naar + + + channels + kanalen + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + + + + Buffer duration + Buffer duur + + + High watermark + + + + Low watermark + + + + Defaults + Standaarden + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + Replay Gain-metadata gebruiken, als deze beschikbaar is + + + Replay Gain mode + Replay Gain modus + + + Radio (equal loudness for all tracks) + Radio (gelijk volume voor alle nummers) + + + Album (ideal loudness for all tracks) + Album (ideaal volume voor alle nummers) + + + Pre-amp + Voorversterking + + + Apply compression to prevent clipping + Compressie toepassen om vervorming te voorkomen + + + Fallback-gain + Terugval-gain + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Uitvagen + + + Fade out when stopping a track + Uitvagen bij stoppen van een nummer + + + Cross-fade when changing tracks manually + Cross-fade wanneer handmatig van nummer veranderd wordt + + + Cross-fade when changing tracks automatically + Cross-fade wanneer automatisch van nummer veranderd wordt + + + Except between tracks on the same album or in the same CUE sheet + Behalve tussen nummers van hetzelfde album of in dezelfde CUE-sheet + + + Fading duration + Uitvaagduur + + + Fade out on pause / fade in on resume + Uitvagen bij pauze / Invagen bij hervatten + + + + BehaviourSettingsPage + + Behavior + Gedrag + + + Show system tray icon + + + + Keep running in the background when the window is closed + In de achtergrond laten draaien als het venter gesloten wordt + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + Afspelen hervatten bij opstarten + + + Show playing widget + Speel widget weergeven + + + On startup + + + + Remember from &last time + + + + Show the main window + + + + Hide the main window + + + + Show the main window maximized + Toon het hoofdvenster gemaximaliseerd + + + Show the main window minimized + Toon het hoofdvenster geminimaliseerd + + + Language + Taal + + + Use the system default + De systeemstandaard gebruiken + + + You will need to restart Strawberry if you change the language. + Strawberry moet herstart worden als u de taal veranderd. + + + Using the menu to add a song will... + Het menu gebruiken om een nummer toe te voegen zal… + + + Never start playing + Nooit afspelen + + + Play if there is nothing already playing + Afspelen wanneer niets aan het afspelen is + + + Always start playing + Altijd afspelen + + + Pressing "Previous" in player will... + Op "Vorige" drukken in de speler zal... + + + Jump to previous song right away + Meteen naar vorige nummer springen + + + Restart song, then jump to previous if pressed again + Nummer herstarten, daarna naar vorige springen bij weer indrukken + + + Double clicking a song will... + Dubbelklikken op een nummer zal… + + + Append to the playlist + Aan de afspeellijst toevoegen + + + Replace the playlist + Afspeellijst vervangen + + + Open in new playlist + In een nieuwe afspeellijst openen + + + Add to the queue + Aan de wachtrij toevoegen + + + Double clicking a song in the playlist will... + Dubbelkilikken op een afspeellijst zal... + + + Change the currently playing song + Verander het huidige nummer + + + Seeking using a keyboard shortcut or mouse wheel + Zoeken met behulp van een toetsenbordsnelkoppeling of muiswiel + + + Time step + TIjd stap + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + %1 database bijwerken. + + + + CollectionFilterWidget + + Collection Filter + Verzamelingsfilter + + + Enter search terms here + Voer hier een zoekterm in + + + MenuPopupToolButton + + + + Entire collection + Gehele verzameling + + + Added today + Vandaag toegevoegd + + + Added this week + Deze week toegevoegd + + + Added within three months + Afgelopen drie maanden toegevoegd + + + Added this year + Dit jaar toegevoegd + + + Added this month + Deze maand toegevoegd + + + Save current grouping + Huidige groepering opslaan + + + Manage saved groupings + Beheer opgeslagen groeperingen + + + Show + Weergeven + + + Group by + Groeperen op + + + Display options + Weergaveopties + + + Group by Album artist/Album + Groeperen op Album Artiest/Album + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + Groeperen op artiest/album + + + Group by Artist/Album - Disc + + + + Group by Artist/Year - Album + Groeperen op artiest/jaar - album + + + Group by Artist/Year - Album - Disc + + + + Group by Genre/Album artist/Album + + + + Group by Genre/Artist/Album + Groeperen op genre/artiest/album + + + Group by Album Artist + + + + Group by Artist + Groeperen op artiest + + + Group by Album + Groeperen op album + + + Group by Genre/Album + Groeperen op genre/album + + + Advanced grouping... + Geavanceerd groeperen… + + + Grouping Name + Naam Groepering + + + Grouping name: + Naam groepering: + + + + CollectionModel + + Various artists + Diverse artiesten + + + Loading... + Laden… + + + Unknown + Onbekend + + + + CollectionSettingsPage + + Collection + Bibliotheek + + + These folders will be scanned for music to make up your collection + Deze mappen zullen op muziek doorzocht worden om uw bibliotheek te vullen + + + Add new folder... + Nieuwe map toevoegen… + + + Remove folder + Map verwijderen + + + Automatic updating + Automatisch updaten + + + Update the collection when Strawberry starts + Bibliotheek bijwerken zodra Strawberry gestart wordt + + + Monitor the collection for changes + De bibliotheek op wijzigingen blijven controleren + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + dagen + + + Preferred album art filenames (comma separated) + Eerste keuze voor bestandsnamen van albumshoezen (gescheiden door komma's) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Bij het zoeken naar albumhoezen zoekt Strawberry eerst naar bestandsnamen die een van de volgende woorden bevatten. +Als er geen match is wordt de grootste afbeelding uit de map gebruikt. + + + Display options + Weergaveopties + + + Automatically open single categories in the collection tree + Automatisch enkelvoudige categorieën in bibliotheekboom openen + + + Show dividers + Verdelers tonen + + + Show album cover art in collection + Toon albumhoezen in collectie + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Albumhoes pixmap cache + + + Size + Groote + + + Enable Disk Cache + Schijfcache inschakelen + + + Disk Cache Size + Schijfcachegrootte + + + Current disk cache in use: + + + + Clear Disk Cache + + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + Bestanden verwijderen via rechterklik contextmenu inschakelen + + + Add directory... + Map toevoegen… + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Ben je zeker dat je het aantal maal afgespeeld en beoordelingen wilt wegschrijven voor alle liedjes in je verzameling? + + + + CollectionView + + Your collection is empty! + Uw bibliotheek is leeg! + + + Click here to add some music + Klik hier om muziek toe te voegen + + + Append to current playlist + Aan huidige afspeellijst toevoegen + + + Replace current playlist + Huidige afspeellijst vervangen + + + Open in new playlist + In een nieuwe afspeellijst openen + + + Queue track + Nummer in de wachtrij plaatsen + + + Queue to play next + + + + Search for this + Zoek hier naar + + + Organize files... + + + + Copy to device... + Naar apparaat kopiëren… + + + Delete from disk... + Van schijf verwijderen… + + + Edit track information... + Nummerinformatie bewerken… + + + Edit tracks information... + Nummerinformatie bewerken… + + + Show in file browser... + In bestandsbeheer tonen… + + + Rescan song(s) + Nummer(s) opnieuw scannen + + + Show in various artists + In diverse artiesten weergeven + + + Don't show in various artists + Niet in diverse artiesten weergeven + + + There are other songs in this album + Er zijn andere nummers in dit album + + + Would you like to move the other songs on this album to Various Artists as well? + Wil je de andere nummers op dit album ook verplaatsen naar Diverse Artiesten? + + + Error + Fout + + + None of the selected songs were suitable for copying to a device + Geen van de geselecteerde nummers waren geschikt voor het kopiëren naar een apparaat + + + + CollectionViewContainer + + Form + Formulier + + + + CollectionWatcher + + Updating collection + Bibliotheek wordt bijgewerkt + + + Updating %1 + %1 bijwerken + + + + Console + + Console + + + + Run + Uitvoeren + + + + ContextSettingsPage + + Context + + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + Titel + + + Summary + Samenvatting + + + Enable Items + Items inschakelen + + + Album + + + + Technical Data + Technische data + + + Song Lyrics + Songtekst + + + Automatically search for album cover + Automatisch zoeken voor albumhoes + + + Automatically search for song lyrics + Automatisch zoeken voor liedjestekst + + + Font for headline + + + + Font + + + + Font size + + + + pt + pt + + + Preview + Voorbeeld + + + Font for data and lyrics + + + + Add song artist tag + Artiest-label toevoegen aan lied + + + Add song album tag + Album-label toevoegen aan lied + + + Add song title tag + Titel-label toevoegen aan lied + + + Add song albumartist tag + Albumartiest-label toevoegen aan lied + + + Add song year tag + Jaar-label toevoegen aan lied + + + Add song composer tag + Componist-label toevoegen aan lied + + + Add song performer tag + Uitvoerend artiest-label toevoegen aan lied + + + Add song grouping tag + Groepering-label toevoegen aan lied + + + Add song disc tag + Schijf-label toevoegen aan lied + + + Add song track tag + Nummer-label toevoegen aan lied + + + Add song genre tag + Genre-label toevoegen aan lied + + + Add song length tag + Lengte-label toevoegen aan lied + + + Add song play count + Aantal maal afgespeeld toevoegen aan lied + + + Add song skip count + Aantal maal overgeslagen toevoegen aan lied + + + Add a new line if supported by the notification type + Een nieuwe regel toevoegen, als dit door het notificatie-type ondersteund wordt + + + %filename% + + + + Add song filename + Bestandsnaam toevoegen aan lied + + + %url% + + + + Add song URL + URL toevoegen + + + %rating% + %waardering% + + + Add song rating + Waardering toevoegen aan lied + + + %originalyear% + %origineeljaar% + + + Add song original year tag + origineel jaar-label toevoegen aan lied + + + + ContextView + + Filetype + + + + Length + Duur + + + Samplerate + + + + Bit depth + + + + Bitrate + + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Toon albumhoes + + + Show song technical data + Technische gegevens lied weergeven + + + Show song lyrics + Songteksten weergeven + + + Automatically search for song lyrics + Automatisch zoeken voor liedjestekst + + + No song playing + + + + %1 song + %1 nummer + + + %1 songs + %1 nummers + + + %1 artist + %1 artiest + + + %1 artists + %1 artiesten + + + %1 album + + + + %1 albums + + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + Albumhoes van URL laden + + + Enter a URL to download a cover from the Internet: + Voeg een URL toe om een albumhoes van het internet te downloaden: + + + Fetching cover error + Fout bij ophalen albumhoes + + + The site you requested does not exist! + De site die u aanvroeg bestaat niet! + + + The site you requested is not an image! + De site die u aanvroeg is geen afbeelding! + + + + CoverManager + + Cover Manager + Albumhoesbeheerder + + + Enter search terms here + Voer hier een zoekterm in + + + MenuPopupToolButton + + + + View + Weergave + + + Total albums: + Totaal aantal albums: + + + Without cover: + Zonder albumhoes: + + + 0 + + + + Fetch Missing Covers + Ontbrekende albumhoezen ophalen + + + Export Covers + Albumhoezen Exporteren + + + Fetch automatically + Automatisch ophalen + + + Load + Laden + + + Add to playlist + Aan afspeellijst toevoegen + + + + CoverSearchStatisticsDialog + + Fetch completed + Ophalen voltooid + + + Got %1 covers out of %2 (%3 failed) + %1 van de %2 albumhoezen opgehaald (%3 mislukt) + + + Covers from %1 + Albumhoes van %1 + + + Total network requests made + Totaal aantal netwerk-verzoeken + + + Average image size + Gemiddelde afbeeldinggrootte + + + Total bytes transferred + Totaal aantal verzonden bytes + + + + CoversSettingsPage + + Covers + + + + Cover providers + + + + Choose the providers you want to use when searching for covers. + + + + Move up + Omhoog verplaatsen + + + Move down + Omlaag verplaatsen + + + Authentication + Authenticatie + + + Login + Inloggen + + + Album cover types + + + + Saving album covers + Album hoezen weg schrijven + + + Save album covers in album directory + + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + + + + Pattern + + + + Random + Willekeurig + + + Overwrite existing file + + + + Lowercase filename + + + + Replace spaces with dashes + Vervang spaties door streepjes + + + Use Tidal settings to authenticate. + Gebruik Tidal instellingen om te verifiëren. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Gebruik Qobuz instellingen om te verifiëren. + + + %1 needs authentication. + %1 heeft authenticatie nodig + + + %1 does not need authentication. + %1 heeft geen authenticatie nodig + + + No provider selected. + + + + Authentication failed + Authenticatie mislukt + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Integriteits check + + + Database corruption detected. + + + + Backing up database + Bezig met het maken van een backup van de database + + + + DeleteConfirmationDialog + + Delete files + Bestanden verwijderen + + + The following files will be deleted from disk: + De volgende bestanden worden van schijf verwijderd: + + + Are you sure you want to continue? + Bent u zeker dat u wilt door gaan ? + + + + DeleteFiles + + Deleting files + Bestanden worden verwijderd + + + + DeviceItemDelegate + + Updating %1%... + Bijwerken, %1%… + + + Not connected + Niet verbonden + + + Not mounted - double click to mount + Niet aangekoppeld - dubbelklik om aan te koppelen + + + Double click to open + Dubbeklik om te openen + + + %1 song%2 + %1 nummer%2 + + + + DeviceManager + + Connect device + Apparaat verbinden + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Dit is de eerste keer dat u dit apparaat hebt verbonden. Strawberry zal nu het apparaat op muziekbestanden doorzoeken - dit kan even duren. + + + This device will not work properly + Dit apparaat zal niet correct werken + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Dit is een MTP apparaat maar u hebt Strawberry gecompileerd zonder libmtp ondersteuning. + + + If you continue, this device will work slowly and songs copied to it may not work. + Als u verder gaat zal dit apparaat traag zijn en de nummers die ernaar gekopieerd werden zullen mogelijk niet meer werken. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Dit is een iPod maar u hebt Strawberry gecompileerd zonder libgpod ondersteuning. + + + This type of device is not supported: %1 + Dit type apparaat wordt niet ondersteund: %1 + + + + DeviceProperties + + Device Properties + Apparaateigenschappen + + + Information + Informatie + + + Name + Naam + + + Icon + Pictogram + + + Hardware information + Hardware-informatie + + + Hardware information is only available while the device is connected. + Hardware-informatie is alleen beschikbaar wanneer het apparaat aangesloten is. + + + File formats + Bestandsformaten + + + Supported formats + Ondersteunde formaten + + + This device supports the following file formats: + Dit apparaat ondsteunt de volgende bestandsformaten: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry kan de muziek die u naar dit apparaat kopieert automatisch converteren zodat het apparaat het af kan spelen. + + + Do not convert any music + Geen muziek converteren + + + Convert any music that the device can't play + Alle muziek die het apparaat niet kan afspelen converteren + + + Convert all music + Alle muziek converteren + + + Preferred format + Voorkeursformaat + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Dit apparaat dient verbonden te zijn en geopend vooraleer Strawberry kan zien welke bestandsformaten het ondersteunt. + + + Open device + Apparaat openen + + + Querying device... + apparaat afzoeken... + + + Model + + + + Manufacturer + Fabrikant + + + + DeviceView + + Safely remove device + Apparaat veilig verwijderen + + + Forget device + Apparaat vergeten + + + Device properties... + Apparaateigenschappen… + + + Append to current playlist + Aan huidige afspeellijst toevoegen + + + Replace current playlist + Huidige afspeellijst vervangen + + + Open in new playlist + In een nieuwe afspeellijst openen + + + Copy to collection... + Naar bibliotheek kopiëren… + + + Delete from device... + Van apparaat verwijderen… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Het vergeten van een apparaat zal het uit deze lijst verwijderen en zodra u het de volgende keer aansluit, zal Strawberry alle nummers opnieuw moeten inlezen. + + + Delete files + Bestanden verwijderen + + + These files will be deleted from the device, are you sure you want to continue? + Deze bestanden zullen definitief van het apparaat verwijderd worden. Weet u zeker dat u door wilt gaan? + + + + DeviceViewContainer + + Form + Formulier + + + + DynamicPlaylistControls + + Dynamic mode is on + Dynamische modus staat aan + + + New tracks will be added automatically. + + + + Expand + + + + Repopulate + + + + Turn off + Zet uit + + + + EditTagDialog + + Edit track information + Nummerinformatie bewerken + + + Summary + Samenvatting + + + Date created + Aanmaakdatum + + + Art Automatic + Hoes automatisch + + + Date modified + Wijzigingsdatum + + + Art Embedded + + + + Last played + A playlist's tag. + Laast afgespeeld + + + File type + Bestandstype + + + Length + Duur + + + Play count + Aantal maal afgespeeld + + + Bit depth + + + + EBU R 128 integrated loudness + + + + Bit rate + Bitrate + + + Skip count + Aantal maal overgeslagen + + + Sample rate + Samplerate + + + Path + + + + Filename + Bestandsnaam + + + Art Unset + + + + File size + Bestandsgrootte + + + Art Manual + Hoes handmatig + + + EBU R 128 loudness range + + + + Reset play counts + Reset afspeelstatistieken + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + Ingekapseld hoesje + + + Disc + Schijf + + + Grouping + Groepering + + + Album artist + Albumartiest + + + Album + + + + Year + Jaar + + + Title + Titel + + + Artist + Artiest + + + Composer + Componist + + + Complete tags automatically + Labels automatisch voltooien + + + Genre + + + + Comment + Opmerking + + + Performer + Uitvoerend artiest + + + Compilation + Compilatie + + + Track + Nummer + + + Rating + Beoordeling + + + Lyrics + + + + Complete lyrics automatically + + + + Previous + Vorige + + + Next + Volgende + + + Saving tracks + Nummers opslaan + + + Loading tracks + Nummers laden + + + %1 songs selected. + %1 nummers geselecteerd. + + + kbps + + + + Unknown + Onbekend + + + Yes + + + + No + + + + None + Geen + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Albumhoes niet ingesteld + + + Album cover editing is only available for collection songs. + Het bewerken van de albumhoes is enkel beschikbaar voor verzamelingsliedjes. + + + Cover changed: Will be cleared when saved. + Hoes veranderd: Zal gewist worden bij opslaan. + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + Nooit + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + + + + Preset: + Voorinstelling: + + + Save preset + Voorinstelling opslaan + + + Delete preset + Voorinstelling verwijderen + + + Enable equalizer + Equalizer inschakelen + + + Enable stereo balancer + + + + Left + Links + + + Balance + Balans + + + Right + Rechts + + + Pre-amp + Voorversterking + + + Custom + Aangepast + + + Classical + Klassiek + + + Club + + + + Dance + + + + Full Bass + Maximale bas + + + Full Treble + Maximale hoge tonen + + + Full Bass + Treble + Maximale bas + hoge tonen + + + Laptop/Headphones + Laptop/koptelefoon + + + Large Hall + Grote hal + + + Live + + + + Party + + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + Nul + + + Name + Naam + + + Are you sure you want to delete the "%1" preset? + Weet u zeker dat u voorinstelling ‘%1’ wilt wissen? + + + + EqualizerSlider + + Equalizer + + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Strawberry fout + + + + FancyTabWidget + + Large sidebar + Grote zijbalk + + + Icons sidebar + + + + Small sidebar + Kleine zijbalk + + + Plain sidebar + Normale zijbalk + + + Tabs on top + Tabs bovenaan + + + Icons on top + Pictogrammen bovenaan + + + + FileTypeItemDelegate + + Unknown + Onbekend + + + + FileView + + Form + Formulier + + + + FileViewList + + Append to current playlist + Aan huidige afspeellijst toevoegen + + + Replace current playlist + Huidige afspeellijst vervangen + + + Open in new playlist + In een nieuwe afspeellijst openen + + + Copy to collection... + Naar bibliotheek kopiëren… + + + Move to collection... + Naar bibliotheek verplaatsen… + + + Copy to device... + Naar apparaat kopiëren… + + + Delete from disk... + Van schijf verwijderen… + + + Edit track information... + Nummerinformatie bewerken… + + + Show in file browser... + In bestandsbeheer tonen… + + + + FreeSpaceBar + + Available + Beschikbaar + + + New songs + Nieuwe nummers + + + Exceeded by + + + + Used + Gebruikt + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + iPod-database laden + + + An error occurred loading the iTunes database + Er is een fout opgetreden tijdens het laden van de iTunes-database + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + Ongeldig antwoord ontvangen van webbrowser. + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + Koppelpunt + + + Device + Apparaat + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Druk een toets + + + Press a key combination to use for %1... + Druk een toetsencombinatie om voor %1 te gebruiken... + + + + GlobalShortcutsManager + + Play + Afspelen + + + Pause + Pauze + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + Vorig nummer + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + Volume verminderen + + + Mute + Dempen + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + Gebruik Gnome (GSD) -snelkoppelingen indien beschikbaar + + + Open... + Openen... + + + Use MATE shortcuts when available + Gebruik MATE-snelkoppelingen indien beschikbaar + + + Use KDE (KGlobalAccel) shortcuts when available + Gebruik KDE (KGlobalAccel) -snelkoppelingen indien beschikbaar + + + Use X11 shortcuts when available + Gebruik X11-snelkoppelingen indien beschikbaar + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + U moet Systeemvoorkeuren openen en Strawberry toestaan om "<span style="font-style:italic">uw computer te bedienen</span>" om globale sneltoetsen te gebruiken in Strawberry. + + + Action + Category label + Actie + + + Shortcut + Sneltoets + + + Shortcut for %1 + Sneltoets voor %1 + + + &None + Gee&n + + + &Default + &Standaard + + + &Custom + &Op maat + + + Change shortcut... + Sneltoets wijzigen… + + + The "%1" command could not be started. + Het commando "%1" kon niet worden gestart. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Het gebruik van X11-snelkoppelingen op %1 wordt niet aanbevolen en kan ervoor zorgen dat het toetsenbord niet meer reageert! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Snelkoppelingen op %1 worden meestal gebruikt via MPRIS en KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Snelkoppelingen op %1 worden meestal gebruikt via Gnome Settings Daemon en moeten geconfigureerd worden in gnome-settings-daemon instead. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Snelkoppelingen op %1 worden meestal gebruikt via Gnome Settings Daemon en moeten geconfigureerd worden in cinnamon-settings-daemon instead. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Snelkoppelingen op %1 worden meestal gebruikt via MATE Settings Daemon en kunnen daar geconfigureerd worden + + + + GroupByDialog + + Collection advanced grouping + Bibliotheek geavanceerd groeperen + + + You can change the way the songs in the collection are organized. + U kunt de manier waarop de nummers in de bibliotheek gesorteerd worden aanpassen. + + + Group Collection by... + Bibliotheek groeperen op… + + + First level + Eerste niveau + + + None + Geen + + + Artist + Artiest + + + Album artist + Albumartiest + + + Album + + + + Album - Disc + Album - cd + + + Disc + Schijf + + + Format + + + + Genre + + + + Year + Jaar + + + Year - Album + Jaar - Album + + + Year - Album - Disc + Jaar - Album - Cd + + + Original year + Oorspronkelijk jaar + + + Original year - Album + Oorspronkelijk jaar - Album + + + Composer + Componist + + + Performer + Uitvoerend artiest + + + Grouping + Groepering + + + File type + Bestandstype + + + Sample rate + Samplerate + + + Bit depth + + + + Bitrate + + + + Second level + Tweede niveau + + + Third level + Derde niveau + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Bufferen + + + + LastFMImport + + Missing username, please login to last.fm first! + + + + + LastFMImportDialog + + Import data from last.fm + + + + Choose data to import from last.fm + + + + Last played + Laast afgespeeld + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + Sluiten + + + Cancel + + + + Receiving initial data from last.fm... + Initiële gegevens ontvangen van last.fm... + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + Laatst afgespeeld lied voor %1 ontvangen. + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + Nooit + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + Ongeldig antwoord ontvangen van webbrowser. + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Formulier + + + You are not signed in. + U bent niet ingelogd. + + + Sign out + Afmelden + + + Signing in... + Bezig met inloggen.... + + + You are signed in. + U bent ingelogd. + + + You are signed in as %1. + U bent ingelogd als %1. + + + Expires on %1 + Verloopt op %1 + + + + LyricsSettingsPage + + Lyrics + + + + Lyrics providers + + + + Choose the providers you want to use when searching for lyrics. + + + + Move up + Omhoog verplaatsen + + + Move down + Omlaag verplaatsen + + + Authentication + Authenticatie + + + Login + Inloggen + + + No provider selected. + + + + Authentication failed + Authenticatie mislukt + + + + MainWindow + + Strawberry Music Player + Strawberry Muziek Speler + + + MenuPopupToolButton + + + + &Music + &Muziek + + + P&laylist + + + + Help + + + + &Tools + &Hulpmiddelen + + + Previous track + Vorig nummer + + + F5 + + + + &Play + &Afspelen + + + F6 + + + + &Stop + &Stoppen + + + F7 + + + + &Next track + &Volgend nummer + + + F8 + + + + &Quit + &Afsluiten + + + Ctrl+Q + + + + Stop after this track + Na dit nummer stoppen + + + Ctrl+Alt+V + + + + Love + + + + &Clear playlist + &Afspeellijst wissen + + + Clear playlist + Afspeellijst wissen + + + Ctrl+K + + + + Edit track information... + Nummerinformatie bewerken… + + + Ctrl+E + + + + Renumber tracks in this order... + Nummers in deze volgorde een nieuw nummer geven… + + + Set value for all selected tracks... + Waarde voor alle geselecteerde nummers instellen… + + + Edit tag... + Label bewerken… + + + &Settings... + &Instellingen... + + + Ctrl+P + + + + &About Strawberry + &Over Strawberry + + + F1 + + + + S&huffle playlist + + + + Ctrl+H + + + + &Add file... + &Bestand toevoegen... + + + Ctrl+Shift+A + + + + &Open file... + &Bestand openen... + + + Open audio &CD... + + + + &Cover Manager + &Albumhoesbeheerder + + + C&onsole + + + + &Shuffle mode + &Willekeurige modus + + + &Repeat mode + &Herhaalmodus + + + Remove from playlist + Uit afspeellijst verwijderen + + + &Equalizer + + + + &Transcode Music + &Muziek transcoderen + + + Add &folder... + Map toevoegen... + + + &Jump to the currently playing track + &Spring naar het nummer dat nu wordt afgespeed + + + Ctrl+J + + + + &New playlist + &Nieuwe afspeellijst + + + Ctrl+N + + + + Save &playlist... + + + + Ctrl+S + + + + &Load playlist... + &Afspeellijst laden... + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Ga naar het volgende afspeellijst tabblad + + + Go to previous playlist tab + Ga naar het vorige afspeellijst tabblad + + + &Update changed collection folders + &Aangepaste mappen in collectie bijwerken + + + About &Qt + Over &Qt + + + &Mute + &Dempen + + + Ctrl+M + + + + &Do a full collection rescan + &Herscan volledige collectie + + + Stop collection scan + + + + Complete tags automatically... + Labels automatisch voltooien… + + + Ctrl+T + + + + Toggle scrobbling + Zet scrobbling aan/uit + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + Bestand(en) toevoegen voor conversie. + + + Add file to transcoder + Bestand toevoegen voor conversie. + + + Add stream... + Stream... toevoegen + + + Show sidebar + Toon zijbalk + + + Import data from last.fm... + + + + All Files (*) + Alle bestanden (*) + + + Context + + + + Collection + Bibliotheek + + + Queue + Rij + + + Playlists + + + + Smart playlists + Slimme afspeellijsten + + + Files + + + + Radios + Radio's + + + Devices + Toestellen + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Alle nummers weergeven + + + Show only duplicates + Alleen dubbelen tonen + + + Show only untagged + Nummers zonder labels tonen + + + Configure collection... + Bibliotheek configureren… + + + Play + Afspelen + + + Toggle queue status + Wachtrijstatus aan/uit + + + Queue selected tracks to play next + Geselecteerde nummers in de wachtrij zetten om op volgorde af te spelen + + + Toggle skip status + Schakel status overslaan in + + + Rescan song(s)... + Nummer(s) opnieuw scannen... + + + Copy URL(s)... + Kopieer URL(s)... + + + Show in collection... + Tonen in bibliotheek... + + + Show in file browser... + In bestandsbeheer tonen… + + + Organize files... + + + + Copy to collection... + Naar bibliotheek kopiëren… + + + Move to collection... + Naar bibliotheek verplaatsen… + + + Copy to device... + Naar apparaat kopiëren… + + + Delete from disk... + Van schijf verwijderen… + + + Check for updates... + Zoeken naar updates... + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Pauze + + + Dequeue track + Nummer uit wachtrij verwijderen + + + Dequeue selected tracks + Geselecteerde nummers uit wachtrij verwijderen + + + Queue track + Nummer in de wachtrij plaatsen + + + Queue selected tracks + Geselecteerde nummers in de wachtrij plaatsen + + + Queue to play next + + + + Unskip track + Nummer niet overslaan + + + Unskip selected tracks + Geselecteerde nummers niet overslaan + + + Skip track + Nummer overslaan + + + Skip selected tracks + Geselecteerde nummers overslaan + + + Set %1 to "%2"... + Stel %1 in op "%2"... + + + Edit tag "%1"... + Label ‘%1’ bewerken… + + + Add to another playlist + Aan een andere afspeellijst toevoegen + + + New playlist + Nieuwe afspeellijst + + + Add file + Bestand toevoegen + + + Music + Muziek + + + Add folder + Map toevoegen + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + Fout + + + None of the selected songs were suitable for copying to a device + Geen van de geselecteerde nummers waren geschikt voor het kopiëren naar een apparaat + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + De versie van Strawberry die u zojuist heeft ge-updated vereist vanwege de nieuwe onderdelen die hieronder staan een volledige herscan van de database: + + + Would you like to run a full rescan right now? + Wilt u op dit moment een volledige herscan laten uitvoeren? + + + Collection rescan notice + Database herscan-melding + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + Toon deze boodschap niet meer. + + + + MimeData + + Playlist + Afspeellijst + + + + MoodbarProxyStyle + + Show moodbar + Toon moodbar + + + Moodbar style + + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + + + + Moodbar style + + + + Save the .mood files directly in the songs folders + + + + Enabled + + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + MTP-apparaat laden + + + Error connecting MTP device %1 + + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Netwerk Proxy + + + &Use the system proxy settings + &Gebruik de systeemproxyinstellingen + + + Direct internet connection + Directe internetverbinding + + + &Manual proxy configuration + &Handmatige configuratie proxy + + + HTTP proxy + HTTP-proxy + + + SOCKS proxy + + + + Port + Poort + + + Use authentication + Authenticatie gebruiken + + + Username + Gebruikersnaam + + + Password + Wachtwoord + + + Use proxy settings for streaming + Gebruik proxy-instellingen voor streaming + + + + NotificationsSettingsPage + + Notifications + Notificaties + + + Strawberry can show a message when the track changes. + Strawberry kan een bericht weergeven zodra het nummer wijzigt. + + + Notification type + Notificatietype + + + Disabled + Refers to a disabled notification type in Notification settings. + Uitgeschakeld + + + Show a &native desktop notification + + + + Show a pretty OSD + Mooi infoschermvenster weergeven + + + Show a popup fro&m the system tray + + + + General settings + Algemene instellingen + + + Popup duration + Pop-up duur + + + seconds + seconden + + + Disable duration + Notificatie permanent weergeven + + + Show a notification when I change the volume + Notificatie weergeven als ik het volume wijzig + + + Show a notification when I change the repeat/shuffle mode + Toon een mededeling als ik de herhaal/shuffle modus wijzig + + + Show a notification when I pause playback + Notificatie weergeven wanneer ik het afspelen pauzeer + + + Show a notification when I resume playback + Een melding weergeven wanneer ik het afspelen hervat + + + Include album art in the notification + Albumhoes in de notificatie weergeven + + + Custom message settings + Instellingen voor aangepaste berichten + + + Use a custom message for notifications + Een aangepast bericht voor notificaties gebruiken + + + Preview + Voorbeeld + + + MenuPopupToolButton + + + + Summary + Samenvatting + + + Body + + + + Pretty OSD options + Opties mooi infoschermvenster + + + Background color + Achtergrondkleur + + + Text options + Tekstopties + + + Choose font... + Lettertype kiezen… + + + Choose color... + Kleur kiezen… + + + Background opacity + Achtergrond-doorzichtigheid + + + Basic Blue + + + + Strawberry Red + Strawberry Rood + + + Custom... + Aangepast… + + + Enable fading + + + + Add song artist tag + Artiest-label toevoegen aan lied + + + Add song album tag + Album-label toevoegen aan lied + + + Add song title tag + Titel-label toevoegen aan lied + + + Add song albumartist tag + Albumartiest-label toevoegen aan lied + + + Add song year tag + Jaar-label toevoegen aan lied + + + Add song composer tag + Componist-label toevoegen aan lied + + + Add song performer tag + Uitvoerend artiest-label toevoegen aan lied + + + Add song grouping tag + Groepering-label toevoegen aan lied + + + Add song disc tag + Schijf-label toevoegen aan lied + + + Add song track tag + Nummer-label toevoegen aan lied + + + Add song genre tag + Genre-label toevoegen aan lied + + + Add song length tag + Lengte-label toevoegen aan lied + + + Add song play count + Aantal maal afgespeeld toevoegen aan lied + + + Add song skip count + Aantal maal overgeslagen toevoegen aan lied + + + Add song rating + Waardering toevoegen aan lied + + + Add a new line if supported by the notification type + Een nieuwe regel toevoegen, als dit door het notificatie-type ondersteund wordt + + + %filename% + + + + Add song filename + Bestandsnaam toevoegen aan lied + + + %url% + + + + Add song URL + URL toevoegen + + + %originalyear% + %origineeljaar% + + + Add song original year tag + origineel jaar-label toevoegen aan lied + + + OSD Preview + Voorbeeld infoschermvenster + + + Drag to reposition + Sleep om te verplaatsen + + + + OSDBase + + disc %1 + schijf %1 + + + track %1 + nummer %1 + + + Paused + Gepauzeerd + + + Stopped + Gestopt + + + Stop playing after track: %1 + Stoppen met afspelen na nummer: %1 + + + On + Aan + + + Off + Uit + + + Playlist finished + Afspeellijst voltooid + + + Volume %1% + + + + Don't shuffle + Niet willekeurig afspelen + + + Shuffle all + Alles willekeurig + + + Shuffle tracks in this album + Nummers van dit album willekeurig + + + Shuffle albums + Albums willekeurig afspelen + + + Don't repeat + Niet herhalen + + + Repeat track + Nummer herhalen + + + Repeat album + Album herhalen + + + Repeat playlist + Afspeellijst herhalen + + + Stop after every track + Na ieder nummer stoppen + + + Intro tracks + Intro nummers + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + Bestemming + + + After copying... + Na het kopiëren… + + + Keep the original files + De originele bestanden behouden + + + Delete the original files + Oorspronkelijke bestanden verwijderen + + + Naming options + Benoemingsopties + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Tokens beginnen met %, Bijvoorbeeld: %artist %album %title </p> + +<p>Als u tekstgedeelten die tokens bevatten tussen accolades zet, zal dat gedeelte verborgen worden als het token leeg is.</p> + + + Insert... + Invoegen… + + + Remove problematic characters from filenames + Verwijder problematische tekens uit bestandsnamen + + + Restrict to characters allowed on FAT filesystems + Beperken tot tekens toegestaan ​​op FAT-bestandssystemen + + + Restrict characters to ASCII + Beperk tekens tot ASCII + + + Allow extended ASCII characters + Uitgebreide ASCII-tekens toestaan + + + Replace spaces with underscores + Spaties vervangen door onderstrepingstekens + + + Overwrite existing files + Overschrijf bestaande bestanden + + + Copy album cover artwork + Kopieer albumhoes + + + Preview + Voorbeeld + + + Loading... + Laden… + + + Safely remove the device after copying + Apparaat veilig verwijderen na het kopiëren + + + Title + Titel + + + Album + + + + Artist + Artiest + + + Artist's initial + Artiest's initiaal + + + Album artist + Albumartiest + + + Composer + Componist + + + Performer + Uitvoerend artiest + + + Grouping + Groepering + + + Track + Nummer + + + Disc + Schijf + + + Year + Jaar + + + Original year + Oorspronkelijk jaar + + + Genre + + + + Comment + Opmerking + + + Length + Duur + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + Samplerate + + + Bit depth + + + + File extension + Bestandsextensie + + + + OrganizeErrorDialog + + Error copying songs + Fout tijdens het kopiëren van de nummers + + + There were problems copying some songs. The following files could not be copied: + Er waren problemen tijdens het kopiëren van bepaalde nummers. De volgende bestanden konden niet gekopieerd worden: + + + Error deleting songs + Fout tijdens het verwijderen van de nummers + + + There were problems deleting some songs. The following files could not be deleted: + Er waren problemen tijdens het verwijderen van bepaalde nummers. De volgende bestanden konden niet verwijderd worden: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Kleine albumhoes + + + Large album cover + Grote albumhoes + + + Fit cover to width + Albumhoes aan breedte aanpassen + + + Show above status bar + Boven statusbalk weergeven + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Titel + + + Artist + Artiest + + + Album + + + + Track + Nummer + + + Disc + Schijf + + + Length + Duur + + + Year + Jaar + + + Original Year + + + + Genre + + + + Album Artist + + + + Composer + Componist + + + Performer + Uitvoerend artiest + + + Grouping + Groepering + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Opmerking + + + Source + Bron + + + Mood + + + + Rating + Beoordeling + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Formulier + + + Undo + + + + Redo + + + + Playlist + Afspeellijst + + + Load playlist + Afspeellijst laden + + + No matches found. Clear the search box to show the whole playlist again. + Geen overeenkomsten gevonden. Maak het zoekveld leeg om de gehele lijst opnieuw weer te geven. + + + + PlaylistDelegateBase + + stop + stoppen + + + + PlaylistGeneratorInserter + + Loading smart playlist + + + + + PlaylistHeader + + &Hide... + &Verbergen… + + + &Stretch columns to fit window + Kolommen &uitstrekken totdat ze het venster vullen + + + &Reset columns to default + &Kolommen opnieuw instellen + + + &Lock rating + &Waardering vergrendelen + + + &Align text + &Tekst uitlijnen + + + &Left + &Links + + + &Center + &Centreren + + + &Right + &Rechts + + + &Hide %1 + %1 &Verbergen + + + + PlaylistListContainer + + Form + Formulier + + + New folder + Nieuwe map + + + Delete + Verwijderen + + + Save playlist + Save playlist menu action. + Afspeellijst opslaan + + + Copy to device... + Naar apparaat kopiëren… + + + Enter the name of the folder + Geef de naam van de map + + + Playlist + Afspeellijst + + + Copy to device + Kopieer naar toestel + + + Playlist must be open first. + + + + Remove playlists + Afspeellijsten verwijderen + + + You are about to remove %1 playlists from your favorites, are you sure? + U staat op het punt om %1 afspeellijsten uit uw favorieten te verwijderen, weet u het zeker? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + U kunt afspeellijsten aan uw favorieten toevoegen door op het stericoon naast de naam van de afspeellijst te klikken. + + + Favorited playlists will be saved here + Favoriete afspeellijsten zullen hier opgeslagen worden. + + + + PlaylistManager + + Playlist + Afspeellijst + + + Couldn't create playlist + Kon afspeellijst niet maken + + + Save playlist + Title of the playlist save dialog. + Afspeellijst opslaan + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + %1 geselecteerd van + + + %n track(s) + + + + + + + Unknown + Onbekend + + + Various artists + Diverse artiesten + + + + PlaylistParser + + All playlists (%1) + Alle afspeellijsten (%1) + + + %1 playlists (%2) + %1 afspeellijsten (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Afspeellijst-opties + + + File paths + Bestandspaden + + + This can be changed later through the preferences + Dit kan aangepast worden in de instellingen + + + Remember my choice + Onthoud mijn keuze + + + Automatic + Automatisch + + + Relative + Relatief + + + Absolute + Absoluut + + + + PlaylistSequence + + Repeat + Herhalen + + + Shuffle + Willekeurig + + + Don't repeat + Niet herhalen + + + Repeat track + Nummer herhalen + + + Repeat album + Album herhalen + + + Repeat playlist + Afspeellijst herhalen + + + Stop after each track + Na ieder nummer stoppen + + + Intro tracks + Intro nummers + + + Don't shuffle + Niet willekeurig afspelen + + + Shuffle tracks in this album + Nummers van dit album willekeurig + + + Shuffle all + Alles willekeurig + + + Shuffle albums + Albums willekeurig afspelen + + + + PlaylistSettingsPage + + Playlist + Afspeellijst + + + Use alternating row colors + Gebruik afwisselende rijkleuren + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Waarschuw mij wanneer een afspeellijst tab wordt gesloten + + + Continue to the next item in the playlist if a song is unavailable + Ga door naar het volgende item in de afspeellijst als een liedje niet beschikbaar is + + + Grey out unavailable songs in playlists on playback + + + + Grey out unavailable songs in playlists on startup + + + + Automatically select current playing track + + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + Bestanden verwijderen via rechterklik contextmenu inschakelen + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + Wanneer een afspeellijst wordt opgeslagen, zijn de paden + + + A&utomatic + A&utomatisch + + + Absolu&te + Absoluu&t + + + Re&lative + + + + As&k when saving + Vr&aag bij opslaan + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Indien geactiveerd, zal door het aanklikken van een geselecteerd nummer in de afspeellijst je de labelwaarde direct kunnen bewerken. + + + Enable song metadata inline edition with click + Schakel direct bewerken van metadata in bij klik + + + Write metadata when saving playlists + Schrijf metadata bij het opslaan van afspeellijsten + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Afspeellijst sluiten + + + Rename playlist... + Afspeellijst hernoemen... + + + Save playlist... + Afspeellijst opslaan... + + + Rename playlist + Afspeellijst hernoemen + + + Enter a new name for this playlist + Voer een nieuwe naam voor deze afspeellijst in + + + Remove playlist + Afspeellijst verwijderen + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Je staat op het punt een afspeellijst te verwijderen, die geen deel uitmaakt van je favoriete afspeellijsten: de afspeellijst zal worden verwijderd (dit kan niet ongedaan gemaakt worden). +Weet je zeker dat je verder wilt gaan? + + + Warn me when closing a playlist tab + Waarschuw mij wanneer een afspeellijst tab wordt gesloten + + + This option can be changed in the "Behavior" preferences + Deze optie kan aangepast worden bij de "Gedrag" instellingen + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Dubbelklik hier om deze afspeellijst favoriet te maken zodat deze opgeslagen wordt en toegankelijk blijft via het "Afspeellijst" paneel in de linkerzijbalk + + + Playlist + Afspeellijst + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + %n nummers toevoegen + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + Verplaats %n nummers + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + %n nummers verwijderen + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + nummers schudden + + + + PlaylistUndoCommands::SortItems + + sort songs + nummers sorteren + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + Gebruik + + + options + opties + + + URL(s) + + + + Player options + Speler-opties + + + Start the playlist currently playing + Momenteel spelende afspeellijst starten + + + Play if stopped, pause if playing + Afspelen indien gestopt, pauzeren indien afgespeeld + + + Pause playback + Afspelen pauzeren + + + Stop playback + Afspelen stoppen + + + Stop playback after current track + Afspelen stoppen na huidige nummer + + + Skip backwards in playlist + Terug in afspeellijst + + + Skip forwards in playlist + Vooruit in afspeellijst + + + Set the volume to <value> percent + Zet het volume op <value> procent + + + Increase the volume by 4 percent + + + + Decrease the volume by 4 percent + Volume verminderd met 4% + + + Increase the volume by <value> percent + Verhoog het volume met <value> procent + + + Decrease the volume by <value> percent + Verlaag het volume met <value> procent + + + Seek the currently playing track to an absolute position + Spoel het momenteel spelende nummer naar een absolute positie door + + + Seek the currently playing track by a relative amount + Spoel momenteel spelende nummer met een relatieve hoeveelheid door + + + Restart the track, or play the previous track if within 8 seconds of start. + Herstart het afspelen van track, of speel het vorige nummer af bij 8 seconden van start. + + + Playlist options + Afspeellijst-opties + + + Create a new playlist with files + + + + Append files/URLs to the playlist + Bestanden/URLs aan afspeellijst toevoegen + + + Loads files/URLs, replacing current playlist + Bestanden/URLs laden, en vervangt de huidige afspeellijst + + + Play the <n>th track in the playlist + De <n>de/ste track in de afspeellijst afspelen + + + Play given playlist + + + + Other options + Overige opties + + + Display the on-screen-display + Infoschermvenster weergeven + + + Toggle visibility for the pretty on-screen-display + Zichtbaarheid voor het mooie infoschermvenster aan/uit + + + Change the language + De taal wijzigen + + + Resize the window + Formaat van het venster wijzigen + + + Equivalent to --log-levels *:1 + Gelijkwaardig aan --log-levels *:1 + + + Equivalent to --log-levels *:3 + Gelijkwaardig aan --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Door komma's gescheiden lijst van van klasse:niveau, het niveau is 0-3 + + + Print out version information + Versie-informatie uitprinten + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Onbekend + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + + + + 1 day + 1 dag + + + %1 days + %1 dagen + + + Today + Vandaag + + + Yesterday + Gisteren + + + %1 days ago + %1 dagen geleden + + + Tomorrow + Morgen + + + In %1 days + In %1 dagen + + + Next week + Volgende week + + + In %1 weeks + In %1 weken + + + Show in file browser + In bestandsbeheer tonen + + + Too many songs selected. + Te veel nummers geselecteerd. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + %1 nummers in %2 verschillende mappen geselecteerd, weet u zeker dat u ze allemaal wilt openen? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Onbekende fout + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + artiest + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + + + + after + na + + + before + voor + + + on + aan + + + not on + niet aan + + + in the last + als laatst + + + not in the last + niet als laatste + + + between + tussen + + + contains + bevat + + + does not contain + bevat niet + + + starts with + begint met + + + ends with + eindigt met + + + greater than + groter dan + + + less than + kleiner dan + + + equals + is gelijk aan + + + not equals + niet gelijk + + + empty + leeg + + + not empty + niet leeg + + + Comment + Opmerking + + + A-Z + + + + Z-A + + + + oldest first + oudste eerst + + + newest first + nieuwste eerst + + + shortest first + kortste eerst + + + longest first + langste eerst + + + smallest first + Kleinste eerst + + + biggest first + grootste eerst + + + Hours + + + + Days + + + + Weeks + weken + + + Months + + + + Years + Jaren + + + Normal + + + + Angry + Kwaad + + + Frozen + + + + Happy + + + + System colors + Systeemkleuren + + + + QWidget + + Clear + Wissen + + + Reset + Herstel + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Zoeken... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Unknown error + Onbekende fout + + + + QobuzService + + Authenticating... + Authenticatie + + + Maximum number of login attempts reached. + + + + Missing Qobuz app ID. + + + + Missing Qobuz username. + + + + Missing Qobuz password. + + + + Not authenticated with Qobuz. + + + + Missing Qobuz app ID or secret. + + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Ingeschakeld + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + Authenticatie + + + App ID + + + + Username + Gebruikersnaam + + + Password + Wachtwoord + + + App Secret + App geheim + + + Login + Inloggen + + + Preferences + Voorkeuren + + + Audio format + Audioformaat + + + Search delay + Zoek vertraging + + + ms + + + + Artists search limit + Artiest zoek limiet + + + Albums search limit + Albums zoek limiet + + + Songs search limit + Zoeklimiet voor nummers + + + Download album covers + Albumhoezen downloaden + + + Base64 encoded secret + + + + Configuration incomplete + Configuratie onvolledig + + + Missing app id. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Authenticatie mislukt + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + + + + Cancelled. + + + + + Queue + + %n track(s) + + + + + + + + QueueView + + QueueView + + + + Move down + Omlaag verplaatsen + + + Ctrl+Up + + + + Move up + Omhoog verplaatsen + + + Ctrl+Down + + + + Remove + Verwijderen + + + Clear + Wissen + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Aan huidige afspeellijst toevoegen + + + Replace current playlist + Huidige afspeellijst vervangen + + + Open in new playlist + In een nieuwe afspeellijst openen + + + Open homepage + + + + Donate + Doneer + + + Refresh channels + + + + + RadioViewContainer + + Form + Formulier + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Opgeslagen groeperingbeheerder + + + Remove + Verwijderen + + + Ctrl+Up + + + + Name + Naam + + + First level + Eerste niveau + + + Second Level + Tweede niveau + + + Third Level + Derde niveau + + + None + Geen + + + Album artist + Albumartiest + + + Artist + Artiest + + + Album + + + + Album - Disc + Album - cd + + + Year - Album + Jaar - Album + + + Year - Album - Disc + Jaar - Album - Cd + + + Original year - Album + Oorspronkelijk jaar - Album + + + Original year - Album - Disc + + + + Disc + Schijf + + + Year + Jaar + + + Original year + Oorspronkelijk jaar + + + Genre + + + + Composer + Componist + + + Performer + Uitvoerend artiest + + + Grouping + Groepering + + + File type + Bestandstype + + + Format + + + + Sample rate + Samplerate + + + Bit depth + + + + Bitrate + + + + Unknown + Onbekend + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Ingeschakeld + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + Toon scrobble-knop + + + Show love button + + + + Submit scrobbles every + Dien scrobble in elke + + + seconds + seconden + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (Dit is de vertraging tussen wanneer een lied gescrobbled is en wanneer scrobbles aan de server aangeboden worden. De tijd op 0 instellen zal scrobbles ogenblikkelijk aanbieden). + + + Prefer album artist when sending scrobbles + Geef de voorkeur aan albumartiest bij het verzenden van scrobbles + + + Show dialog for errors + Toon dialoogvenster voor fouten + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + Bibliotheek + + + Subsonic + + + + Local file + + + + Tidal + + + + Device + Apparaat + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + + + + Radio Paradise + + + + Unknown + Onbekend + + + Last.fm + + + + Login + Inloggen + + + Libre.fm + + + + Listenbrainz + + + + User token: + Gebruikerstoken: + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 Scrobbler authenticatie + + + Open URL in web browser? + + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Druk op "Opslaan" om de URL naar het klembord te kopiëren en deze handmatig in een webbrowser te openen. + + + Could not open URL. Please open this URL in your browser + Kon de URL niet openen. Open de URL in je webbladereaar + + + Invalid reply from web browser. Missing token. + + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + Scrobbler %1 is niet geverifieerd! + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + Instellingen + + + General + Algemeen + + + User interface + Gebruikersinterface + + + Streaming + Streamen + + + + SmartPlaylistQuerySearchPage + + Form + Formulier + + + Search mode + Zoek mode + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + Zoektermen + + + + SmartPlaylistQuerySortPage + + Form + Formulier + + + Sorting + Sorteren + + + Put songs in a random order + Zet nummers in willekeurige volgorde + + + Sort songs by + Sorteer nummers op + + + Limits + + + + Show all the songs + Laat alle liedjes zien + + + Only show the first + + + + songs + nummers + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Zoeken in verzameling + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + Zoektermen + + + A song will be included in the playlist if it matches these conditions. + Er wordt een nummer in de playlist opgenomen als het aan deze voorwaarden voldoet. + + + Search options + zoek opties + + + Choose how the playlist is sorted and how many songs it will contain. + + + + + SmartPlaylistSearchPreview + + Form + Formulier + + + Preview + Voorbeeld + + + Loading... + Laden… + + + %1 songs found (showing %2) + %1 nummer gevonden (%2 weergegeven) + + + %1 songs found + %1 nummer gevonden + + + + SmartPlaylistSearchTermWidget + + Form + Formulier + + + and + en + + + ago + geleden + + + The second value must be greater than the first one! + De tweede waarde moet groter zijn dan de eerste! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Zoekterm toevoegen aan lied + + + + SmartPlaylistWizard + + Smart playlist + Slimme afspeellijst + + + Playlist type + + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Een slimme afspeellijst is een dynamische lijst met nummers die uit uw verzameling komen. Er zijn verschillende soorten slimme afspeellijsten die verschillende manieren bieden om nummers te selecteren. + + + Finish + + + + Choose a name for your smart playlist + + + + + SmartPlaylistWizardFinishPage + + Form + Formulier + + + Name + Naam + + + Use dynamic mode + Dynamische modus gebruiken + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + + + + 50 random tracks + 50 willekeurige nummers + + + Ever played + + + + Never played + + + + Last played + Laast afgespeeld + + + Most played + + + + Favourite tracks + + + + All tracks + Alle nummers + + + Dynamic random mix + Dynamische willekeurige mix + + + + SmartPlaylistsViewContainer + + New smart playlist + + + + Edit smart playlist + Slimme afspeellijst bewerken + + + Delete smart playlist + Slimme afspeellijst verwijderen + + + New smart playlist... + + + + Append to current playlist + Aan huidige afspeellijst toevoegen + + + Replace current playlist + Huidige afspeellijst vervangen + + + Open in new playlist + In een nieuwe afspeellijst openen + + + Queue track + Nummer in de wachtrij plaatsen + + + Play next + + + + Edit smart playlist... + Slimme afspeellijst bewerken... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry draait als een Snap + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry is langzamer en heeft beperkingen wanneer het als Snap wordt uitgevoerd.Toegang tot het root bestandssysteem (/) zal niet werken. Er kunnen ook andere beperkingen zijn, zoals toegang tot bepaalde apparaten of netwerkshares. + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Kopieer je strawberry.conf en strawberry.db van je ~/snap map om verlies van configuratie te voorkomen eer je de snap de-installeert: + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + GStreamer is nodig voor deze URL. + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + + + + Could not open file %1 for reading: %2 + Kon bestand %1 niet openen voor lezen: %2 + + + Could not open CUE file %1 for reading: %2 + Kon CUE-bestand %1 niet openen voor lezen: %2 + + + Could not open playlist file %1 for reading: %2 + Kon afspeellijstbestand %1 niet openen voor lezen: %2 + + + Couldn't create GStreamer source element for %1 + Kon geen GStreamer bronbestandelement voor %1 aanmaken + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + + + + Loading tracks + Nummers laden + + + Loading tracks info + Nummerinformatie laden + + + + SpotifyRequest + + Authenticating... + Authenticatie + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Zoeken... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Spotify verificatie + + + Please open this URL in your browser + + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + Ongeldig antwoord ontvangen van webbrowser. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Ingeschakeld + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Voorkeuren + + + Search delay + Zoek vertraging + + + ms + + + + Artists search limit + Artiest zoek limiet + + + Albums search limit + Albums zoek limiet + + + Songs search limit + Zoeklimiet voor nummers + + + Download album covers + Albumhoezen downloaden + + + Fetch entire albums when searching songs + + + + Authentication failed + Authenticatie mislukt + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Klik hier om muziek op te halen + + + Append to current playlist + Aan huidige afspeellijst toevoegen + + + Replace current playlist + Huidige afspeellijst vervangen + + + Open in new playlist + In een nieuwe afspeellijst openen + + + Queue track + Nummer in de wachtrij plaatsen + + + Queue to play next + + + + Remove from favorites + Verwijder van favorieten + + + + StreamingCollectionViewContainer + + Form + Formulier + + + Close + Sluiten + + + Abort + Afbreken + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + Diverse artiesten + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + artiesten + + + albums + + + + songs + nummers + + + Enter search terms above to find music + + + + Configure %1... + Configureren %1 + + + Append to current playlist + Aan huidige afspeellijst toevoegen + + + Replace current playlist + Huidige afspeellijst vervangen + + + Open in new playlist + In een nieuwe afspeellijst openen + + + Queue track + Nummer in de wachtrij plaatsen + + + Add to artists + Aan de artiest toevoegen + + + Add to albums + Aan de albums toevoegen + + + Add to songs + Aan lied toevoegen + + + Search for this + Zoek hier naar + + + Group by + Groeperen op + + + + StreamingSongsView + + Configure %1... + Configureren %1 + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Artiesten + + + Albums + + + + Songs + Liedjes + + + Search + Zoeken + + + Configure %1... + Configureren %1 + + + + SubsonicRequest + + Retrieving albums... + Albums ophalen... + + + Retrieving songs for %1 album... + Nummers ophalen voor %1 album... + + + Retrieving songs for %1 albums... + Liedjes ophalen voor %1 albums... + + + Retrieving album cover for %1 album... + Albumhoes ophalen voor %1 album... + + + Retrieving album covers for %1 albums... + Albumhoezen ophalen voor %1 album... + + + Unknown error + Onbekende fout + + + + SubsonicService + + Server URL is invalid. + Server-URL is ongeldig. + + + Missing username or password. + + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Ingeschakeld + + + Server URL + Server-URL + + + Authentication + Authenticatie + + + Username + Gebruikersnaam + + + Password + Wachtwoord + + + Authentication method: + Authenticatie metode + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Voorkeuren + + + Use HTTP/2 when possible + Gebruik HTTP/2 waar nodig + + + Verify server certificate + Controleer certificaat van de serve + + + Download album covers + Albumhoezen downloaden + + + Server-side scrobbling + + + + Test + + + + Delete songs + Liedjes verwijderen + + + Configuration incomplete + Configuratie onvolledig + + + Missing server url, username or password. + + + + Configuration incorrect + Configuratie verkeerd + + + Server URL is invalid. + Server-URL is ongeldig. + + + Test successful! + Test geslaagd! + + + Test failed! + Test gefaald! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Subsonic server-URL is ongeldig. + + + Missing Subsonic username or password. + + + + + SystemTrayIcon + + Pause + Pauze + + + Play + Afspelen + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Authenticatie + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Zoeken... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + + + + Missing Tidal username. + + + + Missing Tidal password. + + + + Not authenticated with Tidal and reached maximum number of login attempts. + + + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + + TidalSettingsPage + + Tidal + + + + Enable + Ingeschakeld + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Tidal is niet officieel en vereist een API-token van een geregistreerde applicatie om te werken. We kunnen u niet helpen deze te krijgen. + + + Authentication + Authenticatie + + + Use OAuth + Gebruik OAuth + + + Client ID + Cliënt ID + + + API Token + + + + Username + Gebruikersnaam + + + Password + Wachtwoord + + + Login + Inloggen + + + Preferences + Voorkeuren + + + Audio quality + Audio kwaliteit + + + Search delay + Zoek vertraging + + + ms + + + + Artists search limit + Artiest zoek limiet + + + Albums search limit + Albums zoek limiet + + + Songs search limit + Zoeklimiet voor nummers + + + Download album covers + Albumhoezen downloaden + + + Fetch entire albums when searching songs + + + + Album cover size + Album hoes grote + + + Stream URL method + Stream URL-methode + + + Append explicit to album title for explicit albums + Voeg expliciet toe aan de albumtitel voor expliciete albums + + + Configuration incomplete + Configuratie onvolledig + + + Missing Tidal client ID. + + + + Missing API token. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Authenticatie mislukt + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + Cancelled. + + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + Labels ophalen + + + Sorry + Helaas + + + Strawberry was unable to find results for this file + Strawberry heeft geen resultaten voor dit bestand gevonden + + + Select best possible match + Selecteer best passende match + + + Track + Nummer + + + Year + Jaar + + + Title + Titel + + + Artist + Artiest + + + Album + + + + Previous + Vorige + + + Next + Volgende + + + Original tags + Originele labels + + + Suggested tags + Gesuggereerde labels + + + Saving tracks + Nummers opslaan + + + + TrackSlider + + Form + Formulier + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Klik om te schakelen tussen resterende duur en totale duur + + + + TranscodeDialog + + Transcode Music + Muziek converteren + + + Files to transcode + Te converteren bestanden + + + Filename + Bestandsnaam + + + Directory + Map + + + Add... + Toevoegen... + + + Remove + Verwijderen + + + Add all tracks from a directory and all its subdirectories + Voeg alle nummers van een pad en alle onderliggende paden toe + + + Import... + + + + Output options + Uitvoeropties + + + Audio format + Audioformaat + + + Options... + Opties… + + + Destination + Bestemming + + + Alongside the originals + Bij het origineel + + + Select... + Selecteer... + + + Progress + Voortgang + + + Details... + Details… + + + Clear + Wissen + + + Start transcoding + Converteren starten + + + %n remaining + + %n resterend + + + + + %n finished + + %n voltooid + + + + + %n failed + + %n mislukt + + + + + Add files to transcode + Te converteren bestanden toevoegen + + + Music + Muziek + + + Open a directory to import music from + Open een pad om muziek uit te importeren + + + Add folder + Map toevoegen + + + + TranscodeLogDialog + + Transcoder Log + Conversie-Log + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Kan GStreamer element ‘%1’ niet aanmaken - zorg ervoor dat u alle vereiste GStreamer plug-ins geïnstalleerd heeft + + + Successfully written %1 + %1 met succes weggeschreven + + + Transcoding %1 files using %2 threads + Converteren van %1 bestanden m.b.v. %2 threads + + + Error processing %1: %2 + Fout bij verwerken van %1: %2 + + + Starting %1 + %1 wordt gestart + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Kan geen encoder voor %1 vinden, controleer of u de juiste GStreamer plug-ins geïnstalleerd heeft + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Kan muxer voor %1 niet vinden, controleer of u de juiste GStreamer plug-ins geïnstalleerd heeft + + + + TranscoderOptionsAAC + + Form + Formulier + + + Bitrate + + + + kbps + + + + Profile + Profiel + + + Main profile (MAIN) + Normaal profiel (MAIN) + + + Low complexity profile (LC) + Lage complexiteit profiel (LC) + + + Scalable sampling rate profile (SSR) + Schaalbare samplerateprofiel (SSR) + + + Long term prediction profile (LTP) + Lange termijn voorspellingsprofiel (LTP) + + + Use temporal noise shaping + Gebruik tijdelijke ruisvervorming + + + Allow mid/side encoding + Sta mid/side-encoding toe + + + Block type + Bloktype + + + Normal block type + Normaal blok type + + + No short blocks + Geen korte blokken + + + No long blocks + Geen lange blokken + + + + TranscoderOptionsASF + + Form + Formulier + + + Bitrate + + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + Conversieopties + + + + TranscoderOptionsFLAC + + Form + Formulier + + + Quality + Sound quality + Kwaliteit + + + Fast + Snel + + + Best + Beste + + + + TranscoderOptionsMP3 + + Form + Formulier + + + Optimize for &quality + + + + Quality + Sound quality + Kwaliteit + + + Opti&mize for bitrate + + + + Bitrate + + + + kbps + + + + Constant bitrate + Constante bitrate + + + Encoding engine quality + Kwaliteit encoding-engine + + + Fast + Snel + + + Standard + Standaard + + + High + Hoog + + + Force mono encoding + Mono-encodering forceren + + + + TranscoderOptionsOpus + + Form + Formulier + + + Bitrate + + + + kbps + + + + + TranscoderOptionsSpeex + + Form + Formulier + + + Quality + Sound quality + Kwaliteit + + + Bitrate + + + + automatic + automatisch + + + kbps + + + + Average bitrate + Gemiddelde bitrate + + + disabled + uitgeschakeld + + + Encoding mode + Coderings-modus + + + Auto + Automatisch + + + Ultra wide band (UWB) + Zeer snel internet + + + Wide band (WB) + Snel internet + + + Narrow band (NB) + Langzaam internet + + + Variable bit rate + Variabele bitrate + + + Voice activity detection + + + + Discontinuous transmission + Overdracht onderbreken + + + Encoding complexity + Coderingscomplexiteit + + + Frames per buffer + + + + + TranscoderOptionsVorbis + + Form + Formulier + + + Quality + Sound quality + Kwaliteit + + + Use bitrate management engine + Bitrate management engine gebruiken + + + Target bitrate + Doelbitrate + + + kbps + + + + Minimum bitrate + Minimale bitrate + + + disabled + uitgeschakeld + + + Maximum bitrate + Maximale bitrate + + + + TranscoderOptionsWavPack + + Form + Formulier + + + + TranscoderSettingsPage + + Transcoding + Converteren + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Deze instellingen worden gebruikt in het dialoogvenster "Muziek converteren" en bij het converteren van muziek voor het kopiëren naar een apparaat. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + DBus-pad + + + Serial number + Serienummer + + + Mount points + Koppelpunten + + + Partition label + Partitielabel + + + UUID + + + + + UserPassDialog + + Enter username and password + + + + Username + Gebruikersnaam + + + Password + Wachtwoord + + + diff --git a/src/translations/strawberry_pl_PL.ts b/src/translations/strawberry_pl_PL.ts new file mode 100644 index 00000000..25ae7e7b --- /dev/null +++ b/src/translations/strawberry_pl_PL.ts @@ -0,0 +1,7579 @@ + + + + + About + + About + O programie + + + About Strawberry + O Strawberry + + + Version %1 + Wersja %1 + + + Strawberry is a music player and music collection organizer. + Strawberry to odtwarzacz muzyki i menedżer kolekcji utworów. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + To jest fork Clementine, wydany w 2018 roku z myślą o kolekcjonerach muzyki i audiofilach. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry to wolne oprogramowanie wydane na zasadach GPL. Kod źródłowy dostępny jest na %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Powinieneś otrzymać kopię GNU General Public License wraz z tym programem. Jeśli nie, zobacz %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Jeśli lubisz ten program i uważasz go za użyteczny, możesz rozważyć sponsoring lub donację. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Możesz sponsorować autora na %1. Możesz także dokonać jednorazowej wpłaty poprzez %2. + + + Author and maintainer + Autor i opiekun + + + Contributors + Współautorzy + + + Clementine authors + Autorzy Clementine + + + Clementine contributors + Współautorzy Clementine + + + Thanks to + Podziękowania + + + Thanks to all the other Amarok and Clementine contributors. + Podziękowania dla wszystkich innych współautorów Amaroka i Clementine. + + + + AddStreamDialog + + Add Stream + Dodaj strumień + + + Enter the URL of a stream: + Podaj adres URL strumienia: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Obrazy (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Obrazy (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Wszystkie pliki (*) + + + Load cover from disk... + Wczytaj okładkę z dysku… + + + Save cover to disk... + Zapisz okładkę na dysku… + + + Load cover from URL... + Wczytaj okładkę z adresu URL… + + + Search for album covers... + Szukaj okładek… + + + Unset cover + Odłącz okładkę + + + Delete cover + Usuń okładkę + + + Clear cover + Odśwież okładkę + + + Show fullsize... + Pokaż w pełnym rozmiarze… + + + Search automatically + Wyszukaj automatycznie + + + Load cover from disk + Wczytaj okładkę z dysku + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + nieznany + + + Save album cover + Zapisz okładkę albumu + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Eksportuj okładki + + + Output + Wyjście + + + Enter a filename for exported covers (no extension): + Wpisz nazwę dla eksportowanych okładek (bez rozszerzenia): + + + Export downloaded covers + Eksportuj pobrane okładki + + + Export embedded covers + Eksportuj osadzone okładki + + + Existing covers + Istniejące okładki + + + Do not overwrite + Nie nadpisuj + + + O&verwrite all + Nadp&isz wszystkie + + + Overwrite s&maller ones only + Nadpisz tylko &mniejsze + + + Size + Rozmiar + + + Scale size + Wielkość po przeskalowaniu + + + Size: + Rozmiar: + + + Pixel + Piksel + + + + AlbumCoverManager + + Abort + Przerwij + + + All albums + Wszystkie albumy + + + Albums with covers + Albumy z okładkami + + + Albums without covers + Albumy bez okładek + + + Really cancel? + Na pewno anulować? + + + Closing this window will stop searching for album covers. + Zamknięcie tego okna spowoduje zatrzymanie wyszukiwania okładek albumu. + + + Don't stop! + Nie zatrzymuj! + + + All artists + Wszyscy artyści + + + Various artists + Różni artyści + + + Got %1 covers out of %2 (%3 failed) + Uzyskano okładek: %1 z %2 (%3 nieudane) + + + %1 transferred + pobrano: %1 + + + Export finished + Eksportowanie zakończone + + + No covers to export. + Brak okładek do wyeksportowania. + + + Exported %1 covers out of %2 (%3 skipped) + Wyodrębniono okładek: %1 z %2 (pominięto: %3) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Menedżer okładek + + + Artist + Artysta + + + Album + + + + Search + Szukaj + + + Covers from %1 + Okładki z %1 + + + Abort + Przerwij + + + + AnalyzerContainer + + Framerate + Liczba klatek na sekundę + + + Low (%1 fps) + Mało (%1 kl./s) + + + Medium (%1 fps) + Średnio (%1 kl./s) + + + High (%1 fps) + Dużo (%1 kl./s) + + + Super high (%1 fps) + Bardzo dużo (%1 kl./s) + + + No analyzer + Bez analizatora + + + Block analyzer + Analizator blokowy + + + Boom analyzer + Analizator słupkowy 2 + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Wygląd + + + Style + Styl + + + Use system theme icons + Używaj ikon z motywu systemowego + + + Settings require restart. + Ustawienia wymagają ponownego uruchomienia Strawberry. + + + Tabbar colors + Kolory paska zakładek + + + &Use the system default color + &Używaj domyślnego koloru systemowego + + + Use custom color + Używaj własnego koloru + + + Use gradient background + Używaj gradientu tła + + + Select tabbar color: + Wybierz kolor paska zakładek: + + + Background image + Obraz tła + + + Default bac&kground image + Domyślny ob&raz tła + + + &No background image + &Bez obrazu tła + + + The album cover of the currently playing song + Okładka albumu odtwarzanego utworu + + + Albu&m cover + Okładka albu&mu + + + Custom image: + Własny obraz: + + + Browse... + Przeglądaj… + + + Position + Położenie + + + Upper Left + U góry po lewej + + + Upper Right + U góry po prawej + + + Middle + Po środku + + + Bottom Left + U dołu z lewej + + + Bottom Right + U dołu z prawej + + + Max cover size + Maksymalny rozmiar okładki + + + Stretch image to fill playlist + Rozciągnij obraz, aby wypełnić listę odtwarzania + + + Keep aspect ratio + Zachowaj proporcje + + + Do not cut image + Nie przycinaj obrazu + + + Blur amount + Stopień rozmycia + + + 0px + 0 px + + + Opacity + Poziom nieprzezroczystości + + + 40% + + + + Icon sizes + Rozmiary ikon + + + Playlist buttons + Lista odtwarzania + + + Tabbar large mode + Duży pasek zakładek + + + Play control buttons + Odtwarzacz + + + Configure buttons + Konfiguracja przycisków + + + Files, playlists and queue buttons + Pliki, listy odtwarzania i kolejka + + + Tabbar small mode + Mały pasek zakładek + + + Playlist playing song color + Kolor podświetlenia odtwarzanego utworu + + + System highlight color + Kolor systemowy + + + Custom color + Własny kolor + + + Select playlist playing song color: + Wybierz kolor: + + + Select background image + Wybierz obraz tła + + + + BackendSettingsPage + + Backend + Dźwięk + + + Audio output + Wyjście + + + Device + Urządzenie + + + Output + Wyjście + + + Engine + Silnik + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + Włącz sterowanie głośnością + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + Bufor + + + ms + + + + Buffer duration + Długość bufora + + + High watermark + Wysoki znak wodny + + + Low watermark + Niski znak wodny + + + Defaults + Domyślne + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + Używaj metadanych Replay Gain, jeśli są dostępne + + + Replay Gain mode + Tryb Replay Gain + + + Radio (equal loudness for all tracks) + Radio (równa głośność wszystkich ścieżek) + + + Album (ideal loudness for all tracks) + Według albumu (najlepsza głośność dla wszystkich ścieżek) + + + Pre-amp + Przedwzmacniacz + + + Apply compression to prevent clipping + Skompresuj, aby zapobiec przesterowaniu + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Przejście + + + Fade out when stopping a track + Przyciszaj ścieżkę, gdy jest zatrzymywana + + + Cross-fade when changing tracks manually + Płynne przejście przy ręcznej zmianie ścieżek + + + Cross-fade when changing tracks automatically + Płynne przejście przy automatycznej zmianie ścieżek + + + Except between tracks on the same album or in the same CUE sheet + Za wyjątkiem utworów z tego samego albumu lub arkusza CUE + + + Fading duration + Czas przejścia + + + Fade out on pause / fade in on resume + Przyciszanie przed pauzą i łagodne podgłośnianie przy wznawianiu + + + + BehaviourSettingsPage + + Behavior + Zachowanie + + + Show system tray icon + Pokazuj ikonę tacki systemowej + + + Keep running in the background when the window is closed + Działaj w tle po zamknięciu okna + + + Show song progress on system tray icon + Pokazuj postęp utwory na ikonie zasobnika + + + Show song progress on taskbar + + + + Resume playback on start + Wznawiaj odtwarzanie po uruchomieniu programu + + + Show playing widget + Pokazuj widżet odtwarzania + + + On startup + Po uruchomieniu + + + Remember from &last time + Zapamiętaj z &ostatniego użycia + + + Show the main window + Pokazuj główne okno + + + Hide the main window + Ukrywaj główne okno + + + Show the main window maximized + Maksymalizuj główne okno + + + Show the main window minimized + Minimalizuj główne okno + + + Language + Język + + + Use the system default + Używaj domyślnych ustawień systemowych + + + You will need to restart Strawberry if you change the language. + Po zmianie języka należy uruchomić Strawberry ponownie. + + + Using the menu to add a song will... + Po dodaniu utworu z menu kontekstowego... + + + Never start playing + Nie odtwarzaj automatycznie + + + Play if there is nothing already playing + Odtwarzaj, jeśli nic nie jest aktualnie odtwarzane + + + Always start playing + Odtwarzaj automatycznie + + + Pressing "Previous" in player will... + Po wciśnięciu „Wstecz” na odtwarzaczu… + + + Jump to previous song right away + Natychmiast przeskocz do poprzedniego utworu + + + Restart song, then jump to previous if pressed again + Rozpocznie utwór od nowa, przeskoczy przy kolejnym wciśnięciu + + + Double clicking a song will... + Po podwójnym kliknięciu utworu… + + + Append to the playlist + Dołącz do listy odtwarzania + + + Replace the playlist + Zastąpienie listy odtwarzania + + + Open in new playlist + Otwórz w nowej liście odtwarzania + + + Add to the queue + Dodaj do kolejki + + + Double clicking a song in the playlist will... + Po podwójnym kliknięciu utworu na liście odtwarzania… + + + Change the currently playing song + Zmień aktualnie odtwarzany utwór + + + Seeking using a keyboard shortcut or mouse wheel + Przewijanie za pomocą skrótu klawiaturowego lub rolki w myszce + + + Time step + Odstęp czasu + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Błąd podczas przełączania urządzenia CDDA w stan gotowości. + + + Error while setting CDDA device to pause state. + Błąd podczas przełączania urządzenia CDDA w stan wstrzymania. + + + Error while querying CDDA tracks. + Błąd podczas odpytywania o ścieżki CDDA. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + Filtr kolekcji + + + Enter search terms here + Wpisz szukane wyrażenie tutaj + + + MenuPopupToolButton + + + + Entire collection + Cała kolekcja + + + Added today + Dodane dzisiaj + + + Added this week + Dodane w tym tygodniu + + + Added within three months + Dodane w ciągu ostatnich trzech miesięcy + + + Added this year + Dodane w tym roku + + + Added this month + Dodane w tym miesiącu + + + Save current grouping + Zapisz bieżące grupowanie + + + Manage saved groupings + Zarządzaj zapisanymi grupowaniami + + + Show + Pokaż + + + Group by + Grupuj według + + + Display options + Opcje wyświetlania + + + Group by Album artist/Album + Artysta albumu/Album + + + Group by Album artist/Album - Disc + Artysta albumu/Album - Płyta + + + Group by Album artist/Year - Album + Artysta albumu/Rok - Album + + + Group by Album artist/Year - Album - Disc + Artysta albumu/Rok - Album - Płyta + + + Group by Artist/Album + Artysta/Album + + + Group by Artist/Album - Disc + Artysta/Album - Płyta + + + Group by Artist/Year - Album + Artysta/Rok - Album + + + Group by Artist/Year - Album - Disc + Artysta/Rok - Album - Płyta + + + Group by Genre/Album artist/Album + Gatunek/Artysta albumu/Album + + + Group by Genre/Artist/Album + Gatunek/Artysta/Album + + + Group by Album Artist + Artysta albumu + + + Group by Artist + Artysta + + + Group by Album + Album + + + Group by Genre/Album + Gatunek/Album + + + Advanced grouping... + Zaawansowane grupowanie… + + + Grouping Name + Nazwa grupowania + + + Grouping name: + Nazwa grupowania: + + + + CollectionModel + + Various artists + Różni artyści + + + Loading... + Wczytywanie… + + + Unknown + nieznany + + + + CollectionSettingsPage + + Collection + Kolekcja + + + These folders will be scanned for music to make up your collection + Te katalogi będą skanowane w poszukiwaniu muzyki + + + Add new folder... + Dodaj nowy katalog… + + + Remove folder + Usuń katalog + + + Automatic updating + Aktualizacja automatyczna + + + Update the collection when Strawberry starts + Odświeżaj kolekcję przy uruchamianiu Strawberry + + + Monitor the collection for changes + Monitoruj zmiany w kolekcji + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + Oznacz brakujące utwory jako niedostępne + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + Preferuj okładki w plikach zawierających w nazwie (oddziel przecinkami): + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Szukając okładki, Strawberry w pierwszej kolejności przeszuka pliki obrazów zawierające któreś z podanych słów. +W przypadku braku takich plików użyty zostanie największy obraz z danego katalogu. + + + Display options + Opcje wyświetlania + + + Automatically open single categories in the collection tree + Automatycznie rozwiń pojedyncze kategorie w drzewie kolekcji + + + Show dividers + Pokazuj separatory + + + Show album cover art in collection + Pokazuj okładki albumów w kolekcji + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Pamięć podręczna pixmap okładek albumów + + + Size + Rozmiar + + + Enable Disk Cache + Włącz pamięć podręczną na dysku + + + Disk Cache Size + Rozmiar pamięci podręcznej na dysku + + + Current disk cache in use: + Bieżące użycie pamięci podręcznej na dysku: + + + Clear Disk Cache + Wyczyść pamięć podręczną na dysku + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + Włącz opcję usuwania plików w menu kontekstowym + + + Add directory... + Dodaj katalog… + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + Twoja kolekcja jest pusta! + + + Click here to add some music + Kliknij tutaj, aby dodać jakąś muzykę + + + Append to current playlist + Dołącz do aktualnej listy odtwarzania + + + Replace current playlist + Zastąp aktualną listę odtwarzania + + + Open in new playlist + Otwórz w nowej liście odtwarzania + + + Queue track + Dodaj ścieżkę do kolejki + + + Queue to play next + Dodaj do kolejki, aby następnie odtworzyć + + + Search for this + Szukaj tego: + + + Organize files... + Organizuj pliki… + + + Copy to device... + Skopiuj na urządzenie… + + + Delete from disk... + Usuń z dysku… + + + Edit track information... + Edytuj informacje o ścieżce… + + + Edit tracks information... + Edytuj informacje o ścieżkach… + + + Show in file browser... + Pokaż w menedżerze plików… + + + Rescan song(s) + Przeskanuj utwór/utwory ponownie + + + Show in various artists + Pokaż w „różni artyści” + + + Don't show in various artists + Nie pokazuj w „różni artyści” + + + There are other songs in this album + Na tym albumie są inne utwory + + + Would you like to move the other songs on this album to Various Artists as well? + Chcesz przenieść pozostałe utwory z tego albumu do Różnych Wykonawców? + + + Error + Błąd + + + None of the selected songs were suitable for copying to a device + Żaden z zaznaczonych utworów nie był odpowiedni do skopiowania na urządzenie + + + + CollectionViewContainer + + Form + Forma + + + + CollectionWatcher + + Updating collection + Aktualizowanie kolekcji + + + Updating %1 + Odświeżanie %1 + + + + Console + + Console + Konsola + + + Run + Uruchom + + + + ContextSettingsPage + + Context + Kontekst + + + Custom text settings + Własne ustawienia tekstu + + + MenuPopupToolButton + + + + Title + Tytuł + + + Summary + Podsumowanie + + + Enable Items + Pokazuj + + + Album + + + + Technical Data + Dane techniczne + + + Song Lyrics + Tekst utworu + + + Automatically search for album cover + Automatycznie wyszukuj okładek albumów + + + Automatically search for song lyrics + Automatycznie szukaj tekstu utworu + + + Font for headline + Font nagłówka + + + Font + + + + Font size + Rozmiar fontu + + + pt + pkt + + + Preview + Podgląd + + + Font for data and lyrics + Font danych i tekstu utworu + + + Add song artist tag + Dodaj znacznik artysty + + + Add song album tag + Dodaj znacznik albumu + + + Add song title tag + Dodaj znacznik tytułu + + + Add song albumartist tag + Dodaj znacznik artysty na albumie + + + Add song year tag + Dodaj znacznik roku + + + Add song composer tag + Dodaj znacznik kompozytora + + + Add song performer tag + Dodaj znacznik wykonawcy + + + Add song grouping tag + Dodaj znacznik grupowania + + + Add song disc tag + Dodaj znacznik płyty + + + Add song track tag + Dodaj znacznik numeru + + + Add song genre tag + Dodaj znacznik gatunku + + + Add song length tag + Dodaj znacznik długości + + + Add song play count + Dodaj znacznik liczby odtworzeń + + + Add song skip count + Dodaj znacznik licznika pominięć + + + Add a new line if supported by the notification type + Dodaj nową linię (jeśli dany rodzaj powiadomień pozwala) + + + %filename% + + + + Add song filename + Dodaj znacznik nazwy pliku + + + %url% + + + + Add song URL + Dodaj adres URL utworu + + + %rating% + + + + Add song rating + Dodaj znacznik oceny + + + %originalyear% + + + + Add song original year tag + Dodaj rok utworu + + + + ContextView + + Filetype + Rodzaj pliku + + + Length + Długość + + + Samplerate + Częstotliwość próbkowania + + + Bit depth + Rozdzielczość bitowa + + + Bitrate + Przepływność + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Pokazuj okładkę albumu + + + Show song technical data + Pokazuj dane techniczne utworu + + + Show song lyrics + Pokazuj tekst utworu + + + Automatically search for song lyrics + Automatycznie szukaj tekstu utworu + + + No song playing + Żaden utwór nie jest odtwarzany + + + %1 song + %1 utwór + + + %1 songs + %1 utwory(ów) + + + %1 artist + %1 artysta + + + %1 artists + %1 artyści(ów) + + + %1 album + + + + %1 albums + %1 albumy(ów) + + + kbps + kb/s + + + + CoverFromURLDialog + + Load cover from URL + Wczytaj okładkę z adresu URL + + + Enter a URL to download a cover from the Internet: + Podaj adres URL, aby pobierać okładki albumów z Internetu: + + + Fetching cover error + Błąd podczas pobierania okładki + + + The site you requested does not exist! + Żądana strona nie istnieje! + + + The site you requested is not an image! + Żądana strona nie jest obrazem! + + + + CoverManager + + Cover Manager + Menedżer okładek + + + Enter search terms here + Wpisz szukane wyrażenie tutaj + + + MenuPopupToolButton + + + + View + Pokaż + + + Total albums: + Całkowita liczba albumów: + + + Without cover: + Bez okładki: + + + 0 + + + + Fetch Missing Covers + Pobierz brakujące okładki + + + Export Covers + Eksportuj okładki + + + Fetch automatically + Pobierz automatycznie + + + Load + Wczytaj + + + Add to playlist + Dodaj do listy odtwarzania + + + + CoverSearchStatisticsDialog + + Fetch completed + Pobieranie ukończone + + + Got %1 covers out of %2 (%3 failed) + Uzyskano okładek: %1 z %2 (%3 nieudane) + + + Covers from %1 + Okładki z %1 + + + Total network requests made + Całkowita liczba wykonanych zapytań sieciowych + + + Average image size + Przeciętny rozmiar obrazu + + + Total bytes transferred + Całkowita liczba przesłanych bajtów + + + + CoversSettingsPage + + Covers + Okładki + + + Cover providers + Dostawcy okładek + + + Choose the providers you want to use when searching for covers. + Wybierz dostawców używanych do wyszukiwania okładek. + + + Move up + Przesuń w górę + + + Move down + Przesuń w dół + + + Authentication + Uwierzytelnianie + + + Login + Zaloguj się + + + Album cover types + + + + Saving album covers + Zapisywanie okładek albumów + + + Save album covers in album directory + Zapisuj okładki w katalogach albumów + + + Save album covers in cache directory + Zapisuj okładki w katalogu podręcznym + + + Save album covers as embedded cover + Zapisuj okładki w plikach utworów + + + Filename: + Nazwa pliku: + + + Pattern + Wzorzec + + + Random + Losowo + + + Overwrite existing file + Nadpisz istniejący plik + + + Lowercase filename + Nazwa pliku małymi literami + + + Replace spaces with dashes + Zamień znaki odstępu na myślniki + + + Use Tidal settings to authenticate. + Używaj ustawień Tidala do uwierzytelniania. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Używaj ustawień Qobuz do autentykacji. + + + %1 needs authentication. + %1 wymaga uwierzytelniania. + + + %1 does not need authentication. + %1 nie wymaga uwierzytelniania. + + + No provider selected. + Nie wybrano żadnego dostawcy. + + + Authentication failed + Błąd uwierzytelniania + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Sprawdzanie spójności + + + Database corruption detected. + Wykryto uszkodzenie bazy danych! + + + Backing up database + Tworzenie kopii zapasowej bazy danych + + + + DeleteConfirmationDialog + + Delete files + Usuń pliki + + + The following files will be deleted from disk: + Następujące pliki zostaną usunięte z dysku: + + + Are you sure you want to continue? + Na pewno chcesz kontynuować? + + + + DeleteFiles + + Deleting files + Usuwanie plików + + + + DeviceItemDelegate + + Updating %1%... + Odświeżanie %1%… + + + Not connected + Nie podłączono + + + Not mounted - double click to mount + Nie zamontowano - kliknij dwukrotnie, aby zamontować + + + Double click to open + Kliknij podwójnie, by otworzyć + + + %1 song%2 + %1 utwory(ów)%2 + + + + DeviceManager + + Connect device + Podłącz urządzenie + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Pierwszy raz podłączyłeś to urządzenie. Strawberry przeskanuje je teraz w poszukiwaniu plików z muzyką - może to zająć trochę czasu. + + + This device will not work properly + To urządzenie nie będzie działać prawidłowo + + + This is an MTP device, but you compiled Strawberry without libmtp support. + To jest urządzenie MTP, ale skompilowałeś Strawberry bez obsługi libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Jeśli będziesz kontynuował, urządzenie będzie działać wolniej i skopiowane na nie utwory mogą nie działać. + + + This is an iPod, but you compiled Strawberry without libgpod support. + To jest iPod, ale skompilowałeś Strawberry bez obsługi libgpod. + + + This type of device is not supported: %1 + Ten typ urządzenia nie jest obsługiwany: %1 + + + + DeviceProperties + + Device Properties + Właściwości urządzenia + + + Information + Informacje + + + Name + Nazwa + + + Icon + Ikona + + + Hardware information + Informacje sprzętowe + + + Hardware information is only available while the device is connected. + Informacje sprzętowe są widoczne tylko wtedy, gdy urządzenie jest podłączone. + + + File formats + Formaty plików + + + Supported formats + Obsługiwane formaty + + + This device supports the following file formats: + To urządzenie obsługuje następujące formaty plików: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry potrafi automatycznie konwertować muzykę kopiowaną na to urządzenie do formatu, który potrafi ono odtwarzać. + + + Do not convert any music + Nic nie konwertuj + + + Convert any music that the device can't play + Przekonwertuj muzykę, której nie może odtworzyć urządzenie + + + Convert all music + Przekonwertuj całą muzykę + + + Preferred format + Preferowany format + + + This device must be connected and opened before Strawberry can see what file formats it supports. + To urządzenie musi być podłączone i otwarte zanim Strawberry zobaczy, jakie formaty plików ono obsługuje. + + + Open device + Otwórz urządzenie + + + Querying device... + Odpytywanie urządzenia… + + + Model + + + + Manufacturer + Wytwórca + + + + DeviceView + + Safely remove device + Bezpiecznie usuń urządzenie + + + Forget device + Zapomnij urządzenie + + + Device properties... + Właściwości urządzenia… + + + Append to current playlist + Dołącz do aktualnej listy odtwarzania + + + Replace current playlist + Zastąp aktualną listę odtwarzania + + + Open in new playlist + Otwórz w nowej liście odtwarzania + + + Copy to collection... + Skopiuj do kolekcji… + + + Delete from device... + Usuń z urządzenia… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Zapomnienie urządzenia spowoduje usunięcie go z listy. Strawberry będzie musiał ponownie przeskanować wszystkie utwory przy następnym podłączeniu urządzenia. + + + Delete files + Usuń pliki + + + These files will be deleted from the device, are you sure you want to continue? + Te pliki zostaną usunięte z urządzenia. Czy na pewno chcesz kontynuować? + + + + DeviceViewContainer + + Form + Forma + + + + DynamicPlaylistControls + + Dynamic mode is on + Tryb dynamiczny jest włączony + + + New tracks will be added automatically. + Nowe ścieżki będą dodawane automatycznie. + + + Expand + Rozwiń + + + Repopulate + Zapełnij od nowa + + + Turn off + Wyłącz + + + + EditTagDialog + + Edit track information + Edytuj informacje o ścieżce + + + Summary + Podsumowanie + + + Date created + Data utworzenia + + + Art Automatic + Automatycznie + + + Date modified + Data modyfikacji + + + Art Embedded + + + + Last played + A playlist's tag. + Ostatnio odtwarzane + + + File type + Rodzaj pliku + + + Length + Długość + + + Play count + Liczba odtworzeń + + + Bit depth + Rozdzielczość bitowa + + + EBU R 128 integrated loudness + + + + Bit rate + Przepływność + + + Skip count + Liczba pominięć utworu + + + Sample rate + Częstotliwość próbkowania + + + Path + Ścieżka + + + Filename + Nazwa pliku + + + Art Unset + + + + File size + Wielkość pliku + + + Art Manual + Manualnie + + + EBU R 128 loudness range + + + + Reset play counts + Wyzeruj licznik odtworzeń + + + Tags + Tagi + + + MenuPopupToolButton + + + + Change art + Zmień okładkę + + + Embedded cover + Okładka wbudowana + + + Disc + Płyta + + + Grouping + Grupowanie + + + Album artist + Artysta albumu + + + Album + + + + Year + Rok + + + Title + Tytuł + + + Artist + Artysta + + + Composer + Kompozytor + + + Complete tags automatically + Automatycznie uzupełnij znaczniki + + + Genre + Gatunek + + + Comment + Komentarz + + + Performer + Wykonawca + + + Compilation + Kompilacja + + + Track + Ścieżka + + + Rating + Ocena + + + Lyrics + Tekst + + + Complete lyrics automatically + + + + Previous + Wstecz + + + Next + Dalej + + + Saving tracks + Zapisywanie ścieżek + + + Loading tracks + Wczytywanie ścieżek + + + %1 songs selected. + Wybrane %1 utwory(ów). + + + kbps + kb/s + + + Unknown + nieznany + + + Yes + + + + No + + + + None + Brak + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Brak okładki + + + Album cover editing is only available for collection songs. + Edycja okładki dostępna jest tylko dla utworów z kolekcji. + + + Cover changed: Will be cleared when saved. + Okładka zmieniona: zostanie odświeżona przy zapisie. + + + Cover changed: Will be unset when saved. + Okładka zmieniona: zostanie odłączona przy zapisie. + + + Cover changed: Will be deleted when saved. + Okładka zmieniona: zostanie usunięta przy zapisie. + + + Cover changed: Will set new when saved. + Okładka zmieniona: zostanie ustawiona nowa przy zapisie. + + + Never + Nigdy + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Korektor graficzny + + + Preset: + Ustawienie: + + + Save preset + Zapisz ustawienia korektora + + + Delete preset + Usuń ustawienie korektora + + + Enable equalizer + Włącz korektor graficzny + + + Enable stereo balancer + Włącz regulację stereo + + + Left + Lewy + + + Balance + Balans + + + Right + Prawy + + + Pre-amp + Przedwzmacniacz + + + Custom + Własne + + + Classical + Klasyczna + + + Club + Klubowa + + + Dance + + + + Full Bass + Pełny bas + + + Full Treble + Pełne soprany + + + Full Bass + Treble + Pełny bas + soprany + + + Laptop/Headphones + Laptop/Słuchawki + + + Large Hall + Duża sala + + + Live + Na żywo + + + Party + Impreza + + + Pop + + + + Reggae + + + + Rock + + + + Soft + Miękki + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + + + + Name + Nazwa + + + Are you sure you want to delete the "%1" preset? + Na pewno chcesz usunąć ustawienie „%1”? + + + + EqualizerSlider + + Equalizer + Korektor graficzny + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Błąd Strawberry + + + + FancyTabWidget + + Large sidebar + Duży pasek boczny + + + Icons sidebar + + + + Small sidebar + Mały pasek boczny + + + Plain sidebar + Pasek boczny bez efektów + + + Tabs on top + Zakładki na górze + + + Icons on top + Ikony na górze + + + + FileTypeItemDelegate + + Unknown + nieznany + + + + FileView + + Form + Forma + + + + FileViewList + + Append to current playlist + Dołącz do aktualnej listy odtwarzania + + + Replace current playlist + Zastąp aktualną listę odtwarzania + + + Open in new playlist + Otwórz w nowej liście odtwarzania + + + Copy to collection... + Skopiuj do kolekcji… + + + Move to collection... + Przenieś do kolekcji… + + + Copy to device... + Skopiuj na urządzenie… + + + Delete from disk... + Usuń z dysku… + + + Edit track information... + Edytuj informacje o ścieżce… + + + Show in file browser... + Pokaż w menedżerze plików… + + + + FreeSpaceBar + + Available + Dostępny + + + New songs + Nowe utwory + + + Exceeded by + + + + Used + Użyto + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Wczytywanie bazy danych iPoda + + + An error occurred loading the iTunes database + Wystąpił błąd podczas ładowania bazy danych iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Uwierzytelnianie Geniusa + + + Please open this URL in your browser + Proszę otworzyć ten adres URL w przeglądarce internetowej + + + Redirect missing token code! + Przekieruj brakujący kod tokenu! + + + Received invalid reply from web browser. + Otrzymano niepoprawną odpowiedź z przeglądarki internetowej. + + + Redirect from Genius is missing query items code or state. + W przekierowaniu z Geniusa brakuje kodu lub statusu elementów zapytania. + + + + GioLister + + Mount point + Punkt montowania + + + Device + Urządzenie + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Naciśnij klawisz + + + Press a key combination to use for %1... + Naciśnij kombinację klawiszy dla %1… + + + + GlobalShortcutsManager + + Play + Odtwarzaj + + + Pause + Wstrzymaj + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + Poprzednia ścieżka + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + Wycisz + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + Pokochaj + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Skróty globalne + + + Use Gnome (GSD) shortcuts when available + Używaj skrótów Gnome (GSD) jeśli możliwe + + + Open... + Otwórz… + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + Używaj skrótów KDE (KGlobalAccel) jeśli możliwe + + + Use X11 shortcuts when available + Używaj skrótów X11 jeśli możliwe + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Aby używać globalnych skrótów klawiaturowych w Strawberry, musisz uruchomić Preferencje systemowe i pozwolić Strawberry „<span style="font-style:italic">sterować komputerem</span>”. + + + Action + Category label + Akcja + + + Shortcut + Skrót + + + Shortcut for %1 + Skrót do %1 + + + &None + &Brak + + + &Default + &Domyślny + + + &Custom + &Własny + + + Change shortcut... + Zmień skrót… + + + The "%1" command could not be started. + Nie można było uruchomić komendy „%1”. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Używanie skrótów klawiaturowych X11 w %1 jest niewskazane i może doprowadzić do blokowania klawiatury! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Skróty do %1 są zwykle używane poprzez MPRIS i KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + Zaawansowanie grupowanie kolekcji + + + You can change the way the songs in the collection are organized. + Możesz zmienić sposób organizacji utworów w kolekcji. + + + Group Collection by... + Grupuj kolekcję według… + + + First level + Pierwszy poziom + + + None + Brak + + + Artist + Artysta + + + Album artist + Artysta albumu + + + Album + + + + Album - Disc + Album - Płyta + + + Disc + Płyta + + + Format + + + + Genre + Gatunek + + + Year + Rok + + + Year - Album + Rok - Album + + + Year - Album - Disc + Rok - Album - Płyta + + + Original year + Oryginalny rok + + + Original year - Album + Oryginalny rok - Album + + + Composer + Kompozytor + + + Performer + Wykonawca + + + Grouping + Grupowanie + + + File type + Rodzaj pliku + + + Sample rate + Częstotliwość próbkowania + + + Bit depth + Rozdzielczość bitowa + + + Bitrate + Przepływność + + + Second level + Drugi poziom + + + Third level + Trzeci poziom + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Buforowanie + + + + LastFMImport + + Missing username, please login to last.fm first! + Brakuje nazwy użytkownika. Proszę najpierw zalogować się do last.fm! + + + + LastFMImportDialog + + Import data from last.fm + Zaimportuj dane z last.fm + + + Choose data to import from last.fm + Wybierz dane do zaimportowania z last.fm + + + Last played + Ostatnio odtwarzane + + + Play counts + Liczba odtworzeń + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Uwaga: Liczba odtworzeń i „ostatnio odtwarzany” z last.fm całkowicie zastąpi bieżące dane dla pasujących utworów. Liczba odtworzeń zastąpi dane oparte na artystach i tytułach utworów dla tych samych albumów! Proszę zrobić kopię zapasową bazy danych przed rozpoczęciem! + + + Go! + Ruszaj! + + + Close + Zamknij + + + Cancel + Anuluj + + + Receiving initial data from last.fm... + Pobieranie wstępnych danych z last.fm… + + + Receiving playcount for %1 songs and last played for %2 songs. + Pobieranie liczby odtworzeń dla %1 utworu(ów) i „ostatnio odtwarzany” dla %2 utworu(ów)… + + + Receiving last played for %1 songs. + Pobieranie „ostatnio odtwarzany” dla %1 utworu(ów)… + + + Receiving playcounts for %1 songs. + Pobieranie liczby odtworzeń dla %1 utworu(ów)… + + + Playcounts for %1 songs and last played for %2 songs received. + Pobrano liczbę odtworzeń dla %1 utworu(ów) i „ostatnio odtwarzany” dla %2 utworu(ów). + + + Last played for %1 songs received. + Pobrano „ostatnio odtwarzany” dla %1 utworu(ów). + + + Playcounts for %1 songs received. + Pobierano liczbę odtworzeń dla %1 utworu(ów). + + + + LastPlayedItemDelegate + + Never + Nigdy + + + + Library + + Least favourite tracks + Najmniej lubiane utwory + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Uwierzytelnianie ListenBrainz + + + Please open this URL in your browser + Proszę otworzyć ten adres URL w przeglądarce internetowej + + + Redirect missing token code! + Przekieruj brakujący kod tokenu! + + + Received invalid reply from web browser. + Otrzymano niepoprawną odpowiedź z przeglądarki internetowej. + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Forma + + + You are not signed in. + Wylogowano. + + + Sign out + Wyloguj + + + Signing in... + Logowanie… + + + You are signed in. + Zalogowano. + + + You are signed in as %1. + Zalogowano jako „%1”. + + + Expires on %1 + Wygasa %1 + + + + LyricsSettingsPage + + Lyrics + Tekst + + + Lyrics providers + Dostawcy tekstów + + + Choose the providers you want to use when searching for lyrics. + Wybierz dostawców używanych do wyszukiwania tekstów. + + + Move up + Przesuń w górę + + + Move down + Przesuń w dół + + + Authentication + Uwierzytelnianie + + + Login + Zaloguj się + + + No provider selected. + Nie wybrano żadnego dostawcy. + + + Authentication failed + Błąd uwierzytelniania + + + + MainWindow + + Strawberry Music Player + Odtwarzacz muzyki Strawberry + + + MenuPopupToolButton + + + + &Music + &Muzyka + + + P&laylist + &Lista odtwarzania + + + Help + Pomoc + + + &Tools + Narzędzia + + + Previous track + Poprzednia ścieżka + + + F5 + + + + &Play + &Odtwarzaj + + + F6 + + + + &Stop + &Zatrzymaj + + + F7 + + + + &Next track + &Następna ścieżka + + + F8 + + + + &Quit + &Zakończ + + + Ctrl+Q + + + + Stop after this track + Zatrzymaj po tej ścieżce + + + Ctrl+Alt+V + + + + Love + Pokochaj + + + &Clear playlist + &Wyczyść listę odtwarzania + + + Clear playlist + Wyczyść listę odtwarzania + + + Ctrl+K + + + + Edit track information... + Edytuj informacje o ścieżce… + + + Ctrl+E + + + + Renumber tracks in this order... + Ponumeruj utwory według tej kolejności… + + + Set value for all selected tracks... + Ustaw wartość dla wszystkich zaznaczonych utworów… + + + Edit tag... + Edytuj znacznik… + + + &Settings... + &Ustawienia… + + + Ctrl+P + + + + &About Strawberry + &O Strawberry + + + F1 + + + + S&huffle playlist + Losuj z listy odtwarzania + + + Ctrl+H + + + + &Add file... + &Dodaj plik… + + + Ctrl+Shift+A + + + + &Open file... + &Otwórz plik… + + + Open audio &CD... + Otwórz pł&ytę audio… + + + &Cover Manager + M&enedżer okładek + + + C&onsole + K&onsola + + + &Shuffle mode + &Tryb losowania + + + &Repeat mode + Tryb powtarzania + + + Remove from playlist + Usuń z listy odtwarzania + + + &Equalizer + &Korektor graficzny + + + &Transcode Music + &Transkoduj muzykę + + + Add &folder... + Dodaj &katalog… + + + &Jump to the currently playing track + &przeskocz do odtwarzanej ścieżki + + + Ctrl+J + + + + &New playlist + &Nowa lista odtwarzania + + + Ctrl+N + + + + Save &playlist... + Zapisz &listę odtwarzania… + + + Ctrl+S + + + + &Load playlist... + Wczytaj &listę odtwarzania… + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Przejdź do kolejnej zakładki z listą odtwarzania + + + Go to previous playlist tab + Przejdź do poprzedniej zakładki z listą odtwarzania + + + &Update changed collection folders + &Zaktualizuj zmienione katalogi kolekcji + + + About &Qt + O &Qt + + + &Mute + &Wycisz + + + Ctrl+M + + + + &Do a full collection rescan + &Przeskanuj całą kolekcję od nowa + + + Stop collection scan + + + + Complete tags automatically... + Automatycznie uzupełnij znaczniki… + + + Ctrl+T + + + + Toggle scrobbling + Włącz scrobling + + + Remove &duplicates from playlist + Usuń &duplikaty z listy odtwarzania + + + Remove &unavailable tracks from playlist + Usuń &niedostępne utwory z listy odtwarzania + + + Add file(s) to transcoder + Dodaj plik(i) do transkodera + + + Add file to transcoder + Dodaj plik do transkodera + + + Add stream... + Dodaj strumień… + + + Show sidebar + Pokazuj pasek boczny + + + Import data from last.fm... + Zaimportuj dane z last.fm… + + + All Files (*) + Wszystkie pliki (*) + + + Context + Kontekst + + + Collection + Kolekcja + + + Queue + Kolejka + + + Playlists + Listy odtw. + + + Smart playlists + Smartlisty + + + Files + Pliki + + + Radios + + + + Devices + Urządzenia + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Pokazuj wszystkie utwory + + + Show only duplicates + Pokazuj tylko duplikaty + + + Show only untagged + Pokazuj tylko nieoznaczone + + + Configure collection... + Konfiguruj bibliotekę… + + + Play + Odtwarzaj + + + Toggle queue status + Przełącz stan kolejki + + + Queue selected tracks to play next + Dodaj zaznaczone ścieżki do kolejki, aby odtworzyć w następnej kolejności + + + Toggle skip status + Przełącz stan pominięcia + + + Rescan song(s)... + Przeskanuj ponownie utwory… + + + Copy URL(s)... + Skopiuj adres(y) URL… + + + Show in collection... + Pokaż w kolekcji… + + + Show in file browser... + Pokaż w menedżerze plików… + + + Organize files... + Organizuj pliki… + + + Copy to collection... + Skopiuj do kolekcji… + + + Move to collection... + Przenieś do kolekcji… + + + Copy to device... + Skopiuj na urządzenie… + + + Delete from disk... + Usuń z dysku… + + + Check for updates... + Sprawdź dostępność aktualizacji… + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Wstrzymaj + + + Dequeue track + Usuń ścieżkę z kolejki + + + Dequeue selected tracks + Usuń zaznaczone ścieżki z kolejki + + + Queue track + Dodaj ścieżkę do kolejki + + + Queue selected tracks + Dodaj zaznaczone ścieżki do kolejki + + + Queue to play next + Dodaj do kolejki, aby następnie odtworzyć + + + Unskip track + Nie pomijaj ścieżki + + + Unskip selected tracks + Nie pomijaj zaznaczonych ścieżek + + + Skip track + Pomiń ścieżkę + + + Skip selected tracks + Pomiń zaznaczone ścieżki + + + Set %1 to "%2"... + Ustaw %1 na „%2”… + + + Edit tag "%1"... + Edytuj znacznik „%1”… + + + Add to another playlist + Dodaj do innej listy odtwarzania + + + New playlist + Nowa lista odtwarzania + + + Add file + Dodaj plik + + + Music + Muzyka + + + Add folder + Dodaj katalog + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Lista odtwarzania jest za duża (utworów: %1), by cofnąć operację. Na pewno chcesz ją wyczyścić? + + + Error + Błąd + + + None of the selected songs were suitable for copying to a device + Żaden z zaznaczonych utworów nie był odpowiedni do skopiowania na urządzenie + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Wersja, do której właśnie zaktualizowano odtwarzacz Strawberry, wymaga odświeżenia całej biblioteki. Wynika to z wprowadzenia następujących zmian: + + + Would you like to run a full rescan right now? + Chcesz wykonać pełne skanowanie od nowa teraz? + + + Collection rescan notice + Konieczność odświeżenia kolekcji + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + Nie pokazuj tego ponownie. + + + + MimeData + + Playlist + Lista odtwarzania + + + + MoodbarProxyStyle + + Show moodbar + Pokazuj pasek nastroju + + + Moodbar style + Styl paska nastroju + + + + MoodbarSettingsPage + + Moodbar + Pasek nastroju + + + Show a moodbar in the track progress bar + Pokazuj pasek postępu ścieżki w formie paska nastroju + + + Moodbar style + Styl paska nastroju + + + Save the .mood files directly in the songs folders + Zapisuj pliki .mood bezpośrednio w katalogach utworów + + + Enabled + Włączony + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Wczytywanie urządzenia MTP + + + Error connecting MTP device %1 + Błąd połączenia z urządzeniem MTP „%1” + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Serwer pośredniczący + + + &Use the system proxy settings + &Używaj ustawień systemowych + + + Direct internet connection + Bezpośrednie połączenie z Internetem + + + &Manual proxy configuration + &Konfiguracja ręczna + + + HTTP proxy + Serwer pośredniczący HTTP + + + SOCKS proxy + Serwer pośredniczący SOCKS + + + Port + + + + Use authentication + Używaj uwierzytelniania + + + Username + Nazwa użytkownika + + + Password + Hasło + + + Use proxy settings for streaming + Używaj ustawień proxy do strumieniowania + + + + NotificationsSettingsPage + + Notifications + Powiadomienia + + + Strawberry can show a message when the track changes. + Strawberry może pokazywać powiadomienia, gdy zmienia się ścieżka. + + + Notification type + Rodzaj powiadomień + + + Disabled + Refers to a disabled notification type in Notification settings. + Wyłączone + + + Show a &native desktop notification + Pokazuj &natywne powiadomienia pulpitu + + + Show a pretty OSD + Pokazuj ładne menu ekranowe (OSD) + + + Show a popup fro&m the system tray + Pokazuj powiadomienia z ikony zaso&bnika + + + General settings + Ustawienia ogólne + + + Popup duration + Czas powiadomienia + + + seconds + sek + + + Disable duration + Wyłącz czas + + + Show a notification when I change the volume + Pokazuj powiadomienia o zmianie poziomu głośności + + + Show a notification when I change the repeat/shuffle mode + Pokazuj powiadomienia o zmianie trybu powtarzania/losowania + + + Show a notification when I pause playback + Pokazuj powiadomienia o wstrzymaniu odtwarzania + + + Show a notification when I resume playback + Pokazuj powiadomienia o wznowieniu odtwarzania + + + Include album art in the notification + Dołącz okładkę albumu + + + Custom message settings + Własne ustawienia wiadomości + + + Use a custom message for notifications + Używaj niestandardowej treści powiadomień + + + Preview + Podgląd + + + MenuPopupToolButton + + + + Summary + Podsumowanie + + + Body + Treść + + + Pretty OSD options + Opcje ładnego menu ekranowego (OSD) + + + Background color + Kolor tła + + + Text options + Opcje tekstu + + + Choose font... + Wybierz font… + + + Choose color... + Wybierz kolor… + + + Background opacity + Nieprzezroczystość tła + + + Basic Blue + Prosty niebieski + + + Strawberry Red + Czerwony Strawberry + + + Custom... + Własny… + + + Enable fading + Włącz zanikanie + + + Add song artist tag + Dodaj znacznik artysty + + + Add song album tag + Dodaj znacznik albumu + + + Add song title tag + Dodaj znacznik tytułu + + + Add song albumartist tag + Dodaj znacznik artysty na albumie + + + Add song year tag + Dodaj znacznik roku + + + Add song composer tag + Dodaj znacznik kompozytora + + + Add song performer tag + Dodaj znacznik wykonawcy + + + Add song grouping tag + Dodaj znacznik grupowania + + + Add song disc tag + Dodaj znacznik płyty + + + Add song track tag + Dodaj znacznik numeru + + + Add song genre tag + Dodaj znacznik gatunku + + + Add song length tag + Dodaj znacznik długości + + + Add song play count + Dodaj znacznik liczby odtworzeń + + + Add song skip count + Dodaj znacznik licznika pominięć + + + Add song rating + Dodaj znacznik oceny + + + Add a new line if supported by the notification type + Dodaj nową linię (jeśli dany rodzaj powiadomień pozwala) + + + %filename% + + + + Add song filename + Dodaj znacznik nazwy pliku + + + %url% + + + + Add song URL + Dodaj adres URL utworu + + + %originalyear% + + + + Add song original year tag + Dodaj rok utworu + + + OSD Preview + Podgląd menu ekranowego (OSD) + + + Drag to reposition + Przeciągnij, aby zmienić pozycję + + + + OSDBase + + disc %1 + płyta %1 + + + track %1 + ścieżka %1 + + + Paused + Wstrzymane + + + Stopped + Zatrzymano + + + Stop playing after track: %1 + Zatrzymaj po ścieżce: %1 + + + On + + + + Off + Wył + + + Playlist finished + Zakończono odtwarzanie listy + + + Volume %1% + Głośność %1% + + + Don't shuffle + Nie losuj + + + Shuffle all + Losuj wszystko + + + Shuffle tracks in this album + Losuj utwory z tego albumu + + + Shuffle albums + Losuj albumy + + + Don't repeat + Nie powtarzaj + + + Repeat track + Powtarzaj utwór + + + Repeat album + Powtarzaj album + + + Repeat playlist + Powtarzaj listę odtwarzania + + + Stop after every track + Zatrzymaj po każdej ścieżce + + + Intro tracks + Czołówki + + + + Organize + + Organizing files + Organizuję pliki + + + + OrganizeDialog + + Organize Files + Organizuj pliki + + + Destination + Miejsce docelowe + + + After copying... + Po skopiowaniu… + + + Keep the original files + Zachowaj oryginalne pliki + + + Delete the original files + Usuń oryginalne pliki + + + Naming options + Opcje nazewnictwa + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Znaczniki zaczynają się od %, na przykład: %artist %album %title</p> + +<p>Fragmenty tekstu zawierające znaczniki można umieścić w nawiasach +klamrowych. Jeżeli znacznik będzie miał pustą wartość, zamknięty fragment +tekstu zostanie ukryty.</p> + + + Insert... + Wstaw… + + + Remove problematic characters from filenames + Usuń problematyczne znaki z nazw plików + + + Restrict to characters allowed on FAT filesystems + Ogranicz do znaków dozwolonych na systemach plików FAT + + + Restrict characters to ASCII + Ogranicz zestaw znaków do ASCII + + + Allow extended ASCII characters + Pozwól na rozszerzony zestaw znaków ASCII + + + Replace spaces with underscores + Zamień znaki odstępu na podkreślniki + + + Overwrite existing files + Nadpisz istniejące pliki + + + Copy album cover artwork + Skopiuj okładki albumów + + + Preview + Podgląd + + + Loading... + Wczytywanie… + + + Safely remove the device after copying + Bezpiecznie usuń urządzenie po skopiowaniu + + + Title + Tytuł + + + Album + + + + Artist + Artysta + + + Artist's initial + Inicjały artysty + + + Album artist + Artysta albumu + + + Composer + Kompozytor + + + Performer + Wykonawca + + + Grouping + Grupowanie + + + Track + Ścieżka + + + Disc + Płyta + + + Year + Rok + + + Original year + Oryginalny rok + + + Genre + Gatunek + + + Comment + Komentarz + + + Length + Długość + + + Bitrate + Refers to bitrate in file organize dialog. + Przepływność + + + Sample rate + Częstotliwość próbkowania + + + Bit depth + Rozdzielczość bitowa + + + File extension + Rozszerzenie pliku + + + + OrganizeErrorDialog + + Error copying songs + Błąd przy kopiowaniu utworów + + + There were problems copying some songs. The following files could not be copied: + Wystąpiły problemy podczas kopiowania utworów. Nie można było skopiować następujących plików: + + + Error deleting songs + Błąd przy usuwaniu utworów + + + There were problems deleting some songs. The following files could not be deleted: + Wystąpiły problemy podczas kasowania utworów. Nie można było usunąć następujących plików: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Mała okładka albumu + + + Large album cover + Duża okładka albumu + + + Fit cover to width + Dopasuj okładkę do szerokości + + + Show above status bar + Pokazuj ponad paskiem stanu + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Tytuł + + + Artist + Artysta + + + Album + + + + Track + Ścieżka + + + Disc + Płyta + + + Length + Długość + + + Year + Rok + + + Original Year + + + + Genre + Gatunek + + + Album Artist + + + + Composer + Kompozytor + + + Performer + Wykonawca + + + Grouping + Grupowanie + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Przepływność + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Komentarz + + + Source + Źródło + + + Mood + Nastrój + + + Rating + Ocena + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Forma + + + Undo + + + + Redo + + + + Playlist + Lista odtwarzania + + + Load playlist + Wczytaj listę odtwarzania + + + No matches found. Clear the search box to show the whole playlist again. + Nie znaleziono dopasowań. Wyczyść pole wyszukiwania, by wyświetlić listę odtwarzania + + + + PlaylistDelegateBase + + stop + zatrzymaj + + + + PlaylistGeneratorInserter + + Loading smart playlist + Ładowanie smartlisty + + + + PlaylistHeader + + &Hide... + &Ukryj… + + + &Stretch columns to fit window + &Rozciągaj kolumny, aby dopasować do okna + + + &Reset columns to default + &Przywróć kolumny do postaci domyślnej + + + &Lock rating + Zab&lokuj ocenę + + + &Align text + &Wyrównaj tekst + + + &Left + Do &lewej + + + &Center + Do śr&odka + + + &Right + Do p&rawej + + + &Hide %1 + &Ukryj %1 + + + + PlaylistListContainer + + Form + Forma + + + New folder + Nowy katalog + + + Delete + Usuń + + + Save playlist + Save playlist menu action. + Zapisz listę odtwarzania + + + Copy to device... + Skopiuj na urządzenie… + + + Enter the name of the folder + Wprowadź nazwę katalogu + + + Playlist + Lista odtwarzania + + + Copy to device + Skopiuj na urządzenie + + + Playlist must be open first. + Lista odtwarzania musi być najpierw otwarta. + + + Remove playlists + Usuń listy odtwarzania + + + You are about to remove %1 playlists from your favorites, are you sure? + Czy na pewno chcesz usunąć listy odtwarzania (%1) z ulubionych?? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Możesz dodać listę odtwarzania do ulubionych poprzez kliknięcie w ikonę gwiazdki obok jej nazwy na zakładce + + + Favorited playlists will be saved here + Ulubione listy odtwarzania zostaną zapisane tutaj + + + + PlaylistManager + + Playlist + Lista odtwarzania + + + Couldn't create playlist + Nie można utworzyć listy odtwarzania + + + Save playlist + Title of the playlist save dialog. + Zapisz listę odtwarzania + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + zaznaczono %1 z + + + %n track(s) + + + + + + + + Unknown + nieznany + + + Various artists + Różni artyści + + + + PlaylistParser + + All playlists (%1) + Wszystkie listy odtwarzania (%1) + + + %1 playlists (%2) + %1 list(y) odtwarzania (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Opcje listy odtwarzania + + + File paths + Ścieżki plików + + + This can be changed later through the preferences + Można to zmienić później w ustawieniach + + + Remember my choice + Zapamiętaj mój wybór + + + Automatic + Ustalane automatycznie + + + Relative + Względna + + + Absolute + Absolutne + + + + PlaylistSequence + + Repeat + Powtarzaj + + + Shuffle + Losuj + + + Don't repeat + Nie powtarzaj + + + Repeat track + Powtarzaj utwór + + + Repeat album + Powtarzaj album + + + Repeat playlist + Powtarzaj listę odtwarzania + + + Stop after each track + Zatrzymaj po każdej ścieżce + + + Intro tracks + Czołówki + + + Don't shuffle + Nie losuj + + + Shuffle tracks in this album + Losuj utwory z tego albumu + + + Shuffle all + Losuj wszystko + + + Shuffle albums + Losuj albumy + + + + PlaylistSettingsPage + + Playlist + Lista odtwarzania + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Ostrzeż mnie przed zamknięciem zakładki z listą odtwarzania + + + Continue to the next item in the playlist if a song is unavailable + Jeśli utwór jest niedostępny, przechodź do następnego + + + Grey out unavailable songs in playlists on playback + Wyszarzaj na liście odtwarzania niedostępne utwory przy próbie odtworzenia + + + Grey out unavailable songs in playlists on startup + Wyszarzaj na liście odtwarzania niedostępne utwory podczas uruchomienia + + + Automatically select current playing track + Automatycznie zaznaczaj odtwarzaną ścieżkę + + + Enable playlist toolbar + + + + Enable playlist clear button + Włącz przycisk czyszczenia listwy odtwarzania + + + Enable delete files in the right click context menu + Włącz opcję usuwania plików w menu kontekstowym + + + Automatically sort playlist when inserting songs + Automatycznie sortuj listę odtwarzania przy wstawianiu utworów + + + When saving a playlist, file paths should be + Podczas zapisywania listy odtwarzania, ścieżki plików mają być + + + A&utomatic + Ustalane a&utomatycznie + + + Absolu&te + Absolu&tne + + + Re&lative + Wzg&lędne + + + As&k when saving + &Pytaj przed zapisaniem + + + Metadata + Metadane + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Jeżeli aktywne, kliknięcie zaznaczonego utworu na liście odtwarzania pozwoli na bezpośrednią edycje znaczników + + + Enable song metadata inline edition with click + Włącz bezpośrednią edycję metadanych utworu po kliknięciu na liście odtwarzania + + + Write metadata when saving playlists + Zapisuj medatane podczas zapisywania list odtwarzania + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Zamknij listę odtwarzania + + + Rename playlist... + Zmień nazwę listy odtwarzania… + + + Save playlist... + Zapisz listę odtwarzania… + + + Rename playlist + Zmień nazwę listy odtwarzania + + + Enter a new name for this playlist + Wpisz nową nazwę dla tej listy odtwarzania + + + Remove playlist + Usuń listę odtwrzania + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Zamierzasz usunąć listę odtwarzania spoza listy ulubionych. Zostanie ona skasowana (tej akcji nie da się cofnąć). +Na pewno chcesz usunąć? + + + Warn me when closing a playlist tab + Ostrzeż mnie przed zamknięciem zakładki z listą odtwarzania + + + This option can be changed in the "Behavior" preferences + Ta opcja może zostać zmieniona w ustawieniach „Zachowanie” + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + Lista odtwarzania + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + dodaj utworów: %n + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + przenieś utworów: %n + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + usuń utworów: %n + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + losuj utwory + + + + PlaylistUndoCommands::SortItems + + sort songs + sortuj utwory + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + kb/s + + + + QObject + + Usage + Użycie + + + options + opcje + + + URL(s) + URL(e) + + + Player options + Opcje odtwarzacza + + + Start the playlist currently playing + Rozpocznij aktualnie odtwarzaną listę + + + Play if stopped, pause if playing + Odtwarzaj, gdy zatrzymane; zatrzymaj, gdy odtwarzane + + + Pause playback + Wstrzymaj odtwarzanie + + + Stop playback + Zatrzymaj odtwarzanie + + + Stop playback after current track + Zatrzymaj odtwarzanie po obecnej ścieżce + + + Skip backwards in playlist + Przeskocz wstecz na liście odtwarzania + + + Skip forwards in playlist + Przeskocz w przód na liście odtwarzania + + + Set the volume to <value> percent + Ustaw głośność na n-procent + + + Increase the volume by 4 percent + Zwiększ głośność o 4 punkty procentowe + + + Decrease the volume by 4 percent + Zmniejsz głośność o 4 punkty procentowe. + + + Increase the volume by <value> percent + Zwiększ głośność o n-punktów procentowych + + + Decrease the volume by <value> percent + Zmniejsz głośność o n-punktów procentowych + + + Seek the currently playing track to an absolute position + Przesuń obecnie odtwarzaną ścieżkę do określonej pozycji + + + Seek the currently playing track by a relative amount + Przesuń obecnie odtwarzaną ścieżkę o względną wartość + + + Restart the track, or play the previous track if within 8 seconds of start. + Odtwarzaj od początku, a jeżeli nie minęło 8 sekund aktualnego utworu - przeskocz do poprzedniego. + + + Playlist options + Opcje listy odtwarzania + + + Create a new playlist with files + Utwórz nową listę odtwarzania z plikami + + + Append files/URLs to the playlist + Dodaj pliki/adresy URL do listy odtwarzania + + + Loads files/URLs, replacing current playlist + Wczytuje pliki/adresy URL, zastępując obecną listę odtwarzania + + + Play the <n>th track in the playlist + Odtwórz n-tą ścieżkę na liście odtwarzania + + + Play given playlist + Odtwórz listę odtwarzania + + + Other options + Inne opcje + + + Display the on-screen-display + Pokaż menu ekranowe (OSD) + + + Toggle visibility for the pretty on-screen-display + Przełącz wyświetlanie ładnego menu ekranowego (OSD) + + + Change the language + Zmień język + + + Resize the window + Zmień rozmiar okna + + + Equivalent to --log-levels *:1 + Równoważne z --log-levels *:1 + + + Equivalent to --log-levels *:3 + Równoważne z --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Rozdzielona przecinkami lista „klasa:poziom”, gdzie poziom ma wartość od 0 do 3 + + + Print out version information + Wypisz informacje o wersji + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + nieznany + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Plik „%1” nie jest rozpoznany jako plik dźwiękowy. + + + 1 day + 1 dzień + + + %1 days + %1 dni + + + Today + Dzisiaj + + + Yesterday + Wczoraj + + + %1 days ago + %1 dni temu + + + Tomorrow + Jutro + + + In %1 days + W ciągu %1 dni(a) + + + Next week + W następnym tygodniu + + + In %1 weeks + W ciągu %1 tygodni(a) + + + Show in file browser + Pokaż w menedżerze plików + + + Too many songs selected. + Zaznaczono za dużo utworów. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + Zaznaczonych utworów: %1, w katalogach: %2. Czy na pewno chcesz je wszystkie otworzyć? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Nieznany błąd + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + artysta + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Dostępne znaczniki + + + after + po + + + before + przed + + + on + na + + + not on + nie + + + in the last + w ciągu ostatnich + + + not in the last + nie w ciągu ostatnich + + + between + pomiędzy + + + contains + zawiera + + + does not contain + nie zawiera + + + starts with + zaczyna się od + + + ends with + kończy się na + + + greater than + > + + + less than + < + + + equals + = + + + not equals + + + + empty + pusta + + + not empty + niepuste + + + Comment + Komentarz + + + A-Z + A-Ż + + + Z-A + Ż-A + + + oldest first + najpierw najstarsze + + + newest first + najpierw najnowsze + + + shortest first + najpierw najkrótsze + + + longest first + najpierw najdłuższe + + + smallest first + najpierw najmniejsze + + + biggest first + najpierw największe + + + Hours + Godzin + + + Days + Dni + + + Weeks + Tygodni + + + Months + Miesięcy + + + Years + Lat + + + Normal + Zwykły + + + Angry + Gniewny + + + Frozen + Zamrożony + + + Happy + Szczęśliwy + + + System colors + Kolory systemowe + + + + QWidget + + Clear + Wyczyść + + + Reset + Wyzeruj + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Wyszukiwanie… + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Brak dopasowania. + + + Unknown error + Nieznany błąd + + + + QobuzService + + Authenticating... + Uwierzytelnianie… + + + Maximum number of login attempts reached. + Osiągnięto limit prób zalogowania. + + + Missing Qobuz app ID. + Brakuje ID aplikacji Qobuz. + + + Missing Qobuz username. + Brakuje nazwy użytkownika Qobuz. + + + Missing Qobuz password. + Brakuje hasła Qobuz. + + + Not authenticated with Qobuz. + Nie zautentyfikowano w Qobuz. + + + Missing Qobuz app ID or secret. + Brakuje ID aplikacji lub tokenu Qobuz. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Włącz + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Obsługa Qobuz nie jest oficjalna i wymaga ID aplikacji i tokenu. Musisz utworzyć je samodzielnie. + + + Authentication + Uwierzytelnianie + + + App ID + ID aplikacji + + + Username + Nazwa użytkownika + + + Password + Hasło + + + App Secret + Token aplikacji + + + Login + Zaloguj się + + + Preferences + Ustawienia + + + Audio format + Format dźwięku + + + Search delay + Opóźnienie wyszukiwania + + + ms + + + + Artists search limit + Limit wyszukiwania artystów + + + Albums search limit + Limit wyszukiwania albumów + + + Songs search limit + Limit wyszukiwania utworów + + + Download album covers + Pobieraj okładki albumów + + + Base64 encoded secret + + + + Configuration incomplete + Konfiguracja niekompletna + + + Missing app id. + Brakuje ID aplikacji. + + + Missing username. + Brakuje nazwy użytkownika. + + + Missing password. + Brakuje hasła. + + + Authentication failed + Błąd uwierzytelniania + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Brakuje ID aplikacji lub tokenu Qobuz. + + + Cancelled. + Anulowano. + + + + Queue + + %n track(s) + + + + + + + + + QueueView + + QueueView + Widok kolejki + + + Move down + Przesuń w dół + + + Ctrl+Up + Ctrl+Góra + + + Move up + Przesuń w górę + + + Ctrl+Down + Ctrl+Dół + + + Remove + Usuń + + + Clear + Wyczyść + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Dołącz do aktualnej listy odtwarzania + + + Replace current playlist + Zastąp aktualną listę odtwarzania + + + Open in new playlist + Otwórz w nowej liście odtwarzania + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + Forma + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Menedżer zapisanych grupowań + + + Remove + Usuń + + + Ctrl+Up + Ctrl+Góra + + + Name + Nazwa + + + First level + Pierwszy poziom + + + Second Level + Drugi Poziom + + + Third Level + Trzeci poziom + + + None + Brak + + + Album artist + Artysta albumu + + + Artist + Artysta + + + Album + + + + Album - Disc + Album - Płyta + + + Year - Album + Rok - Album + + + Year - Album - Disc + Rok - Album - Płyta + + + Original year - Album + Oryginalny rok - Album + + + Original year - Album - Disc + Oryginalny rok - Album - Płyta + + + Disc + Płyta + + + Year + Rok + + + Original year + Oryginalny rok + + + Genre + Gatunek + + + Composer + Kompozytor + + + Performer + Wykonawca + + + Grouping + Grupowanie + + + File type + Rodzaj pliku + + + Format + + + + Sample rate + Częstotliwość próbkowania + + + Bit depth + Rozdzielczość bitowa + + + Bitrate + Przepływność + + + Unknown + nieznany + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Włącz + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Utwory są scrobblowane, jeśli mają poprawne metadane, są dłuższe niż 30 sekund oraz były odtwarzane przez przynajmniej połowę swojej długości lub przez 4 minuty. + + + Work in offline mode (Only cache scrobbles) + Pracuj w trybie offline (tylko scrobble z pamięci podręcznej) + + + Show scrobble button + Pokazuj przycisk scrobblowania + + + Show love button + Pokazuj przycisk pokochania + + + Submit scrobbles every + Przesyłaj scrobble co + + + seconds + sek + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + Preferuj artystę albumu podczas wysyłania scrobbli + + + Show dialog for errors + Pokazuj okna z błędami + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Włącz scrobblowanie dla następujących źródeł: + + + Collection + Kolekcja + + + Subsonic + + + + Local file + Plik lokalny + + + Tidal + + + + Device + Urządzenie + + + Qobuz + + + + CDDA + CD-Audio + + + SomaFM + + + + Stream + Strumień + + + Radio Paradise + + + + Unknown + nieznany + + + Last.fm + + + + Login + Zaloguj się + + + Libre.fm + + + + Listenbrainz + + + + User token: + Token użytkownika: + + + Enter your user token from + Wprowadź swój token użytkownika z + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + Uwierzytelnianie w scrobblera %1 + + + Open URL in web browser? + Otworzyć adres URL w przeglądarce internetowej? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Kliknij w „Zapisz”, aby skopiować adres URL do schowka i ręcznie otworzyć go w przeglądarce internetowej. + + + Could not open URL. Please open this URL in your browser + Nie udało się otworzyć adresu URL. Proszę otworzyć go w przeglądarce internetowej + + + Invalid reply from web browser. Missing token. + Niepoprawna odpowiedź z przeglądarki internetowej. Brakuje tokenu. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + Scrobblerowi %1 brakuje uwierzytelnienia. + + + Scrobbler %1 error: %2 + Błąd scrobblera %1: %2 + + + + SettingsDialog + + Settings + Ustawienia + + + General + Ogólne + + + User interface + Interfejs użytkownika + + + Streaming + Strumieniowanie + + + + SmartPlaylistQuerySearchPage + + Form + Forma + + + Search mode + Tryb wyszukiwania + + + Match every search term (AND) + Spełnij wszystkie warunki (I) + + + Match one or more search terms (OR) + Spełnij przynajmniej jeden warunek (LUB) + + + Include all songs + Uwzględnij wszystkie utwory + + + Search terms + Warunki wyszukiwania + + + + SmartPlaylistQuerySortPage + + Form + Forma + + + Sorting + Sortowanie + + + Put songs in a random order + Odtwarzaj utwory w losowej kolejności + + + Sort songs by + Sortuj utwory po + + + Limits + Ograniczenia + + + Show all the songs + Pokazuj wszystkie utwory + + + Only show the first + Pokaż tylko pierwsze + + + songs + utwory + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Przeszukiwanie kolekcji + + + Find songs in your collection that match the criteria you specify. + Znajdź w swojej kolekcji utwór spełniający zadane kryteria. + + + Search terms + Warunki wyszukiwania + + + A song will be included in the playlist if it matches these conditions. + Utwór będzie dołączony do listy odtwarzania po spełnieniu tych warunków. + + + Search options + Opcje wyszukiwania + + + Choose how the playlist is sorted and how many songs it will contain. + Ustal sortowanie listy odtwarzania i liczbę zawartych w niej utworów. + + + + SmartPlaylistSearchPreview + + Form + Forma + + + Preview + Podgląd + + + Loading... + Wczytywanie… + + + %1 songs found (showing %2) + znaleziono utworów: %1 (pokazanych: %2) + + + %1 songs found + znaleziono utworów: %1 + + + + SmartPlaylistSearchTermWidget + + Form + Forma + + + and + i + + + ago + temu + + + The second value must be greater than the first one! + Druga wartość musi być większa od pierwszej! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Dodaj warunek + + + + SmartPlaylistWizard + + Smart playlist + Smartlista + + + Playlist type + Rodzaj listy odtwarzania + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Smartlista jest dynamiczną listą odtwarzania utworów z Twojej kolekcji. Różne typy smartlist oferują różne sposoby wybierania utworów. + + + Finish + Zakończ + + + Choose a name for your smart playlist + Wybierz nazwę smartlisty + + + + SmartPlaylistWizardFinishPage + + Form + Forma + + + Name + Nazwa + + + Use dynamic mode + Używaj trybu dynamicznego + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + W trybie dynamicznym nowe ścieżki będą wybierane i dodawane do listy odtwarzania po każdym zakończeniu utworu. + + + + SmartPlaylists + + Newest tracks + Najnowsze ścieżki + + + 50 random tracks + 50 losowych utworów + + + Ever played + Kiedykolwiek odtworzony + + + Never played + Nigdy nie odtwarzane + + + Last played + Ostatnio odtwarzane + + + Most played + Najczęściej odtwarzane + + + Favourite tracks + Ulubione ścieżki + + + All tracks + Wszystkie ścieżki + + + Dynamic random mix + Dynamiczny losowy mix + + + + SmartPlaylistsViewContainer + + New smart playlist + Nowa smartlista + + + Edit smart playlist + Edytuj smartlistę + + + Delete smart playlist + Usuń smartlistę + + + New smart playlist... + Nowa smartlista… + + + Append to current playlist + Dołącz do aktualnej listy odtwarzania + + + Replace current playlist + Zastąp aktualną listę odtwarzania + + + Open in new playlist + Otwórz w nowej liście odtwarzania + + + Queue track + Dodaj ścieżkę do kolejki + + + Play next + Odtwórz następne + + + Edit smart playlist... + Edytuj smartlistę… + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry działa jako snap + + + It is detected that Strawberry is running as a Snap + Wykryto uruchomienie Strawberry jako snap. + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry uruchomione jako snap jest wolniejsze i podlega ograniczeniom. Dostęp do katalogu głównego (/) jest niemożliwy. Mogą również istnieć inne ograniczenia, jak brak dostępu do niektórych urządzeń czy udziałów sieciowych. + + + For Ubuntu there is an official PPA repository available at %1. + Na %1 dostępne jest oficjalne repozytorium PPA dla Ubuntu. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Oficjalne wydania dla Debiana i Ubuntu działają również na większości ich pochodnych. Zobacz %1 dla uzyskania dalszych informacji. + + + For a better experience please consider the other options above. + Dla lepszych doświadczeń proszę rozważyć użycie poniższych opcji. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + Odinstaluj snap poprzez: + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + Ten URL wymaga silnika GStreamer. + + + Preload function was not set for blocking operation. + Funkcja ładowania wstępnego nie została ustawiona dla blokującej operacji. + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + Odtwarzanie płyt CD jest możliwe tylko przy użyciu silnika GStreamer. + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + Błąd odczytu płyty audio. + + + Loading tracks + Wczytywanie ścieżek + + + Loading tracks info + Wczytywanie informacji o utworze + + + + SpotifyRequest + + Authenticating... + Uwierzytelnianie… + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Wyszukiwanie… + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Brak dopasowania. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Uwierzytelnianie Spotify + + + Please open this URL in your browser + Proszę otworzyć ten adres URL w przeglądarce internetowej + + + Redirect missing token code or state! + W przekierowaniu brakuje kodu lub statusu tokenu. + + + Received invalid reply from web browser. + Otrzymano niepoprawną odpowiedź z przeglądarki internetowej. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Włącz + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Ustawienia + + + Search delay + Opóźnienie wyszukiwania + + + ms + + + + Artists search limit + Limit wyszukiwania artystów + + + Albums search limit + Limit wyszukiwania albumów + + + Songs search limit + Limit wyszukiwania utworów + + + Download album covers + Pobieraj okładki albumów + + + Fetch entire albums when searching songs + Pobieraj całe albumy podczas wyszukiwania utworów + + + Authentication failed + Błąd uwierzytelniania + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Kliknij tutaj, aby pobrać muzykę + + + Append to current playlist + Dołącz do aktualnej listy odtwarzania + + + Replace current playlist + Zastąp aktualną listę odtwarzania + + + Open in new playlist + Otwórz w nowej liście odtwarzania + + + Queue track + Dodaj ścieżkę do kolejki + + + Queue to play next + Dodaj do kolejki, aby następnie odtworzyć + + + Remove from favorites + Usuń z ulubionych + + + + StreamingCollectionViewContainer + + Form + Forma + + + Close + Zamknij + + + Abort + Przerwij + + + Refresh catalogue + Odśwież katalog + + + + StreamingSearchModel + + Various artists + Różni artyści + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + artyści + + + albums + albumy + + + songs + utwory + + + Enter search terms above to find music + Wprowadź kryteria wyszukiwania, aby znaleźć muzykę + + + Configure %1... + Skonfiguruj %1… + + + Append to current playlist + Dołącz do aktualnej listy odtwarzania + + + Replace current playlist + Zastąp aktualną listę odtwarzania + + + Open in new playlist + Otwórz w nowej liście odtwarzania + + + Queue track + Dodaj ścieżkę do kolejki + + + Add to artists + Dodaj do artystów + + + Add to albums + Dodaj do albumów + + + Add to songs + Dodaj do utworów + + + Search for this + Szukaj tego: + + + Group by + Grupuj według + + + + StreamingSongsView + + Configure %1... + Skonfiguruj %1… + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Artyści + + + Albums + Albumy + + + Songs + Utwory + + + Search + Szukaj + + + Configure %1... + Skonfiguruj %1… + + + + SubsonicRequest + + Retrieving albums... + Pobieranie albumów… + + + Retrieving songs for %1 album... + Pobieranie utworów dla albumu „%1”… + + + Retrieving songs for %1 albums... + Pobieranie utworów dla %1 albumu(ów)… + + + Retrieving album cover for %1 album... + Pobieranie okładki albumu dla „%1”… + + + Retrieving album covers for %1 albums... + Pobieranie okładek dla %1 albumu(ów)… + + + Unknown error + Nieznany błąd + + + + SubsonicService + + Server URL is invalid. + Adres URL serwera jest niepoprawny. + + + Missing username or password. + Brakuje nazwy użytkownika lub hasła. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Włącz + + + Server URL + Adres URL serwera + + + Authentication + Uwierzytelnianie + + + Username + Nazwa użytkownika + + + Password + Hasło + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Ustawienia + + + Use HTTP/2 when possible + + + + Verify server certificate + Weryfikuj certyfikat serwera + + + Download album covers + Pobieraj okładki albumów + + + Server-side scrobbling + Scrobblowanie po stronie serwera. + + + Test + + + + Delete songs + + + + Configuration incomplete + Konfiguracja niekompletna + + + Missing server url, username or password. + Brakuje adresu URL serwera, nazwy użytkownika lub hasła. + + + Configuration incorrect + Konfiguracja niepoprawna + + + Server URL is invalid. + Adres URL serwera jest niepoprawny. + + + Test successful! + Test zakończył się powodzeniem! + + + Test failed! + Test zakończył się niepowodzeniem! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Adres URL serwera Subsonic jest niepoprawny. + + + Missing Subsonic username or password. + Brakuje nazwy użytkownika lub hasła Subsonic. + + + + SystemTrayIcon + + Pause + Wstrzymaj + + + Play + Odtwarzaj + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Uwierzytelnianie… + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Wyszukiwanie… + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Brak dopasowania. + + + + TidalService + + Reply from Tidal is missing query items. + Brakuje elementów zapytania w odpowiedzi z Tidal. + + + Missing Tidal API token. + Brakuje tokenu API Tidal. + + + Missing Tidal username. + Brakuje nazwy użytkownika Tidal. + + + Missing Tidal password. + Brakuje hasła Tidal. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Nie uwierzytelniono w Tidal i osiągnięto maksymalną liczbę prób zalogowania. + + + Not authenticated with Tidal. + Nie uwierzytelniono w Tidal. + + + Missing Tidal API token, username or password. + Brakuje tokenu API, nazwy użytkownika lub hasła Tidal. + + + + TidalSettingsPage + + Tidal + + + + Enable + Włącz + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Obsługa Tidal jest nieoficjalna i wymaga do działania tokenu API z zarejestrowanej aplikacji. Nie możemy pomóc Ci w jego zdobyciu. + + + Authentication + Uwierzytelnianie + + + Use OAuth + Używaj OAuth + + + Client ID + Identyfikator klienta + + + API Token + Token API + + + Username + Nazwa użytkownika + + + Password + Hasło + + + Login + Zaloguj się + + + Preferences + Ustawienia + + + Audio quality + Jakość dźwięku + + + Search delay + Opóźnienie wyszukiwania + + + ms + + + + Artists search limit + Limit wyszukiwania artystów + + + Albums search limit + Limit wyszukiwania albumów + + + Songs search limit + Limit wyszukiwania utworów + + + Download album covers + Pobieraj okładki albumów + + + Fetch entire albums when searching songs + Pobieraj całe albumy podczas wyszukiwania utworów + + + Album cover size + Rozmiar okładki albumu + + + Stream URL method + Metoda strumieniowania URL + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + Konfiguracja niekompletna + + + Missing Tidal client ID. + Brakuje identyfikatora klienta Tidal. + + + Missing API token. + Brakuje tokenu API. + + + Missing username. + Brakuje nazwy użytkownika. + + + Missing password. + Brakuje hasła. + + + Authentication failed + Błąd uwierzytelniania + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Nie uwierzytelniono w Tidal. + + + Missing Tidal API token, username or password. + Brakuje tokenu API, nazwy użytkownika lub hasła Tidal. + + + Cancelled. + Anulowano. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + Uzupełnianie znaczników + + + Sorry + Przepraszam + + + Strawberry was unable to find results for this file + Strawberry nie znalazł wyników dla tego pliku + + + Select best possible match + Wybierz najlepsze dopasowanie + + + Track + Ścieżka + + + Year + Rok + + + Title + Tytuł + + + Artist + Artysta + + + Album + + + + Previous + Wstecz + + + Next + Dalej + + + Original tags + Oryginalne znaczniki + + + Suggested tags + Sugerowane znaczniki + + + Saving tracks + Zapisywanie ścieżek + + + + TrackSlider + + Form + Forma + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Przełącz pomiędzy czasem odtwarzania a czasem pozostałym + + + + TranscodeDialog + + Transcode Music + Transkoduj muzykę + + + Files to transcode + Pliki do transkodowania + + + Filename + Nazwa pliku + + + Directory + Katalog + + + Add... + Dodaj… + + + Remove + Usuń + + + Add all tracks from a directory and all its subdirectories + Dodaj wszystkie ścieżki z podanego katalogu i wszystkich jego podkatalogów. + + + Import... + Importuj… + + + Output options + Opcje wyjścia + + + Audio format + Format dźwięku + + + Options... + Opcje… + + + Destination + Miejsce docelowe + + + Alongside the originals + Wraz z oryginałami + + + Select... + Wybierz… + + + Progress + Postęp + + + Details... + Szczegóły… + + + Clear + Wyczyść + + + Start transcoding + Rozpocznij transkodowanie + + + %n remaining + + pozostało %n + + + + + + %n finished + + zakończonych: %n + + + + + + %n failed + + nieudanych: %n + + + + + + Add files to transcode + Dodaj pliki to transkodowania + + + Music + Muzyka + + + Open a directory to import music from + Importuj muzykę z katalogu + + + Add folder + Dodaj katalog + + + + TranscodeLogDialog + + Transcoder Log + Dziennik transkodera + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Nie można utworzyć elementu „%1” GStreamera - upewnij się, czy są zainstalowane wszystkie wymagane wtyczki GStreamera + + + Successfully written %1 + Pomyślnie zapisano %1 + + + Transcoding %1 files using %2 threads + Transkodowanie plików: %1, za pomocą wątków: %2 + + + Error processing %1: %2 + Błąd przetwarzania %1: %2 + + + Starting %1 + Uruchamianie %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Nie można odnaleźć kodera dla %1. Sprawdź, czy masz zainstalowane właściwe wtyczki GStreamera + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Nie można odnaleźć muksera dla %1. Sprawdź, czy masz zainstalowane właściwe wtyczki GStreamera + + + + TranscoderOptionsAAC + + Form + Forma + + + Bitrate + Przepływność + + + kbps + kb/s + + + Profile + Profil + + + Main profile (MAIN) + Profil główny (MAIN) + + + Low complexity profile (LC) + Profil niskiej złożoności (LC) + + + Scalable sampling rate profile (SSR) + Profil skalowalnej częstotliwości próbkowania (SSR) + + + Long term prediction profile (LTP) + Profil przewidywania długoterminowego (LTP) + + + Use temporal noise shaping + Użyj chwilowego kształtowania szumu + + + Allow mid/side encoding + Pozwól na kodowanie mid-side + + + Block type + Rodzaj bloku + + + Normal block type + Zwykły rodzaj bloku + + + No short blocks + Bez krótkich bloków + + + No long blocks + Bez długich bloków + + + + TranscoderOptionsASF + + Form + Forma + + + Bitrate + Przepływność + + + kbps + kb/s + + + + TranscoderOptionsDialog + + Transcoding options + Opcje transkodowania + + + + TranscoderOptionsFLAC + + Form + Forma + + + Quality + Sound quality + Jakość + + + Fast + Szybki + + + Best + Najlepsza + + + + TranscoderOptionsMP3 + + Form + Forma + + + Optimize for &quality + Optymalizuj na rzecz &jakości + + + Quality + Sound quality + Jakość + + + Opti&mize for bitrate + Opty&malizuj na rzecz przepływności + + + Bitrate + Przepływność + + + kbps + kb/s + + + Constant bitrate + Stała przepływność (CBR) + + + Encoding engine quality + Jakość silnika kodowania + + + Fast + Szybki + + + Standard + Standardowy + + + High + Wysoki + + + Force mono encoding + Wymuś kodowanie mono + + + + TranscoderOptionsOpus + + Form + Forma + + + Bitrate + Przepływność + + + kbps + kb/s + + + + TranscoderOptionsSpeex + + Form + Forma + + + Quality + Sound quality + Jakość + + + Bitrate + Przepływność + + + automatic + automatycznie + + + kbps + kb/s + + + Average bitrate + Średnia przepływność + + + disabled + wyłączony + + + Encoding mode + Tryb kodowania + + + Auto + Automatycznie + + + Ultra wide band (UWB) + Ultraszerokie pasmo (UWB) + + + Wide band (WB) + Szerokie pasmo (WB) + + + Narrow band (NB) + Wąskie pasmo (NB) + + + Variable bit rate + Zmienna przepływność (VBR) + + + Voice activity detection + Wykrywanie aktywności głosowej + + + Discontinuous transmission + Nieciągła transmisja (DTX) + + + Encoding complexity + Złożoność kodowania + + + Frames per buffer + Klatki na bufor + + + + TranscoderOptionsVorbis + + Form + Forma + + + Quality + Sound quality + Jakość + + + Use bitrate management engine + Używaj silnika zarządzania przepływnością + + + Target bitrate + Docelowa przepływność + + + kbps + kb/s + + + Minimum bitrate + Minimalna przepływność + + + disabled + wyłączony + + + Maximum bitrate + Maksymalna przepływność + + + + TranscoderOptionsWavPack + + Form + Forma + + + + TranscoderSettingsPage + + Transcoding + Transkodowanie + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Te ustawienia są używane w „Transkodowaniu muzyki” oraz podczas konwertowania muzyki przed kopiowaniem jej na urządzenie. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + Ścieżka D-Bus + + + Serial number + Numer seryjny + + + Mount points + Punkty montowania + + + Partition label + Etykieta partycji + + + UUID + + + + + UserPassDialog + + Enter username and password + Podaj nazwę użytkownika i hasło + + + Username + Nazwa użytkownika + + + Password + Hasło + + + diff --git a/src/translations/strawberry_pt_BR.ts b/src/translations/strawberry_pt_BR.ts new file mode 100644 index 00000000..4515ff4f --- /dev/null +++ b/src/translations/strawberry_pt_BR.ts @@ -0,0 +1,7569 @@ + + + + + About + + About + + + + About Strawberry + Sobre o Strawberry + + + Version %1 + + + + Strawberry is a music player and music collection organizer. + + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + + + + Contributors + + + + Clementine authors + + + + Clementine contributors + + + + Thanks to + + + + Thanks to all the other Amarok and Clementine contributors. + + + + + AddStreamDialog + + Add Stream + + + + Enter the URL of a stream: + + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Imagens (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Imagens (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Todos os arquivos (*) + + + Load cover from disk... + Carregar capa do disco... + + + Save cover to disk... + Gravar capa para o disco... + + + Load cover from URL... + Carregar capa da URL... + + + Search for album covers... + Procurar por capas dos álbuns... + + + Unset cover + Capa não fixada + + + Delete cover + + + + Clear cover + + + + Show fullsize... + Exibir em tamanho real... + + + Search automatically + Buscar automaticamente + + + Load cover from disk + Carregar capa do disco + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + Desconhecido + + + Save album cover + Salvar capa do álbum + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Exportar capas + + + Output + Saída + + + Enter a filename for exported covers (no extension): + Digite um nome de arquivo para capas exportadas (sem extensão): + + + Export downloaded covers + Exportar capas baixadas + + + Export embedded covers + Exportar capas embutidas + + + Existing covers + Capas existentes + + + Do not overwrite + Não substituir + + + O&verwrite all + + + + Overwrite s&maller ones only + + + + Size + Tamanho + + + Scale size + Tamanho de escala + + + Size: + Tamanho: + + + Pixel + + + + + AlbumCoverManager + + Abort + Abortar + + + All albums + Todos os álbuns + + + Albums with covers + Álbuns com capas + + + Albums without covers + Álbuns sem capas + + + Really cancel? + Deseja realmente cancelar? + + + Closing this window will stop searching for album covers. + Fechar esta janela irá parar a busca por capas de álbuns + + + Don't stop! + Não parar! + + + All artists + Todos os artistas + + + Various artists + Vários artistas + + + Got %1 covers out of %2 (%3 failed) + Conseguiu %1 capa(s) de %2 (%3 falharam) + + + %1 transferred + %1 transferido + + + Export finished + Exportação terminou + + + No covers to export. + Não há capas para exportar. + + + Exported %1 covers out of %2 (%3 skipped) + Exportado %1 capa(s) de %2 (%3 pulado) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Gerenciador de capas + + + Artist + Artista + + + Album + Álbum + + + Search + Pesquisar + + + Covers from %1 + Capas do %1 + + + Abort + Abortar + + + + AnalyzerContainer + + Framerate + Quadros por segundo + + + Low (%1 fps) + Baixo (%1 fps) + + + Medium (%1 fps) + Médio (%1 fps) + + + High (%1 fps) + Alto (%1 fps) + + + Super high (%1 fps) + Super alto (%1 fps) + + + No analyzer + Sem visualização + + + Block analyzer + Analizador de bloco + + + Boom analyzer + Explosão + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Aparência + + + Style + + + + Use system theme icons + + + + Settings require restart. + + + + Tabbar colors + + + + &Use the system default color + + + + Use custom color + + + + Use gradient background + + + + Select tabbar color: + + + + Background image + Imagem de fundo + + + Default bac&kground image + + + + &No background image + + + + The album cover of the currently playing song + A capa do álbum da música atual + + + Albu&m cover + + + + Custom image: + Imagem personalizada: + + + Browse... + Procurar... + + + Position + + + + Upper Left + + + + Upper Right + + + + Middle + + + + Bottom Left + Inferior esquerdo + + + Bottom Right + Inferior direito + + + Max cover size + + + + Stretch image to fill playlist + + + + Keep aspect ratio + + + + Do not cut image + + + + Blur amount + Quantidade borrão + + + 0px + + + + Opacity + Opacidade + + + 40% + + + + Icon sizes + + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + Escolha uma imagem de fundo + + + + BackendSettingsPage + + Backend + + + + Audio output + Saída de áudio + + + Device + Dispositivo + + + Output + Saída + + + Engine + Mecanismo + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + Habilitar o controle de volume + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + + + + Buffer duration + Duração do buffer + + + High watermark + + + + Low watermark + + + + Defaults + + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + Usar metadados Replay Gain, se estiver disponível + + + Replay Gain mode + Modo ReplayGain + + + Radio (equal loudness for all tracks) + Rádio (volume igual para todas as faixas) + + + Album (ideal loudness for all tracks) + Álbum (volume ideal para todas as faixas) + + + Pre-amp + Pré-amplificação + + + Apply compression to prevent clipping + Aplicar compressão para prevenir picos + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Diminuindo + + + Fade out when stopping a track + Diminuir o som gradativamente quando terminar uma faixa + + + Cross-fade when changing tracks manually + Transição suave quando mudar de faixa manualmente + + + Cross-fade when changing tracks automatically + Transição suave quando mudar de faixa automaticamente + + + Except between tracks on the same album or in the same CUE sheet + Exceto entre as faixas do mesmo álbum ou lista CUE + + + Fading duration + Duração da dimunuição + + + Fade out on pause / fade in on resume + Desvanecer ao pausar / Voltar gradualmente ao retomar + + + + BehaviourSettingsPage + + Behavior + Comportamento + + + Show system tray icon + + + + Keep running in the background when the window is closed + Continuar executando quando a janela é fechada + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + Retomar a reprodução ao iniciar + + + Show playing widget + + + + On startup + Na inicialização + + + Remember from &last time + Lembrar da ú&ltima vez + + + Show the main window + + + + Hide the main window + + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + Idioma + + + Use the system default + Usar padrão do sistema + + + You will need to restart Strawberry if you change the language. + Você precisará reiniciar o Strawberry se mudar o idioma. + + + Using the menu to add a song will... + Usar o menu para adicionar uma música irá... + + + Never start playing + Nunca iniciar tocando + + + Play if there is nothing already playing + Tocar se não houver nada tocando + + + Always start playing + Sempre começar tocando + + + Pressing "Previous" in player will... + Pressionar "Anterior" no reprodutor irá... + + + Jump to previous song right away + Pular imediatamente para a faixa anterior + + + Restart song, then jump to previous if pressed again + Reiniciar a faixa e só pular para a faixa anterior caso seja pressionado novamente + + + Double clicking a song will... + Clique duplo em uma música irá... + + + Append to the playlist + Anexar ao fim da lista de reprodução + + + Replace the playlist + Substituir a lista de reprodução + + + Open in new playlist + Abrir em nova lista de reprodução + + + Add to the queue + Adicionar à fila + + + Double clicking a song in the playlist will... + Clique duplo numa música da lista de reprodução irá... + + + Change the currently playing song + Trocar a música em reprodução + + + Seeking using a keyboard shortcut or mouse wheel + Buscar usando um atalho de teclado ou roda do mouse + + + Time step + Intervalo de tempo + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + + + + Enter search terms here + Digite os termos da pesquisa aqui + + + MenuPopupToolButton + + + + Entire collection + Toda a coletânia + + + Added today + Adicionado(s) hoje + + + Added this week + Adicionado(s) esta semana + + + Added within three months + Adicionado(s) há três meses + + + Added this year + Adicionado(s) este ano + + + Added this month + Adicionado(s) este mês + + + Save current grouping + Salvar agrupamento atual + + + Manage saved groupings + Gerenciar agrupamentos salvos + + + Show + Exibir + + + Group by + Organizar por + + + Display options + Opções de exibição + + + Group by Album artist/Album + Organizar por Artista do álbum/Álbum + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + Organizar por Artista/Álbum + + + Group by Artist/Album - Disc + + + + Group by Artist/Year - Album + Organizar por Artista/Ano do Álbum + + + Group by Artist/Year - Album - Disc + + + + Group by Genre/Album artist/Album + + + + Group by Genre/Artist/Album + Organizar por Gênero/Artista/Álbum + + + Group by Album Artist + + + + Group by Artist + Organizar por Artista + + + Group by Album + Organizar por Álbum + + + Group by Genre/Album + Organizar por Gênero/Álbum + + + Advanced grouping... + Organização avançada... + + + Grouping Name + Nome do agrupamento + + + Grouping name: + Nome do agrupamento: + + + + CollectionModel + + Various artists + Vários artistas + + + Loading... + Carregando... + + + Unknown + Desconhecido + + + + CollectionSettingsPage + + Collection + Biblioteca + + + These folders will be scanned for music to make up your collection + As pastas serão escaneadas em busca de músicas para montar sua biblioteca + + + Add new folder... + Adicionar nova pasta... + + + Remove folder + Remover pasta + + + Automatic updating + Atualização automática + + + Update the collection when Strawberry starts + Atualizar a biblioteca quando o Strawberry iniciar + + + Monitor the collection for changes + Vigiar mudanças na biblioteca + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + Nomenclatura para arquivos de capa (separado por vírgulas) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Ao procurar por capas de discos, o Strawberry primeiro procurará por arquivos que contenham uma destas palavras. +Se não houver resultados, ele usará a maior imagem no diretório. + + + Display options + Opções de exibição + + + Automatically open single categories in the collection tree + Abrir categorias únicas da árvore da biblioteca automaticamente + + + Show dividers + Mostrar divisores + + + Show album cover art in collection + + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + + + + Size + Tamanho + + + Enable Disk Cache + + + + Disk Cache Size + + + + Current disk cache in use: + + + + Clear Disk Cache + + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + + + + Add directory... + Adicionar diretório... + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + Sua biblioteca está vazia! + + + Click here to add some music + Clique aqui para adicionar algumas músicas + + + Append to current playlist + Adicionar à lista de reprodução atual + + + Replace current playlist + Substituir lista de reprodução atual + + + Open in new playlist + Abrir em nova lista de reprodução + + + Queue track + Colocar a faixa na fila + + + Queue to play next + + + + Search for this + Buscar por isso + + + Organize files... + + + + Copy to device... + Copiar para o dispositivo... + + + Delete from disk... + Apagar do disco... + + + Edit track information... + Editar informações da faixa... + + + Edit tracks information... + Editar informações da faixa... + + + Show in file browser... + Mostrar no navegador de arquivos... + + + Rescan song(s) + + + + Show in various artists + Exibir em vários artistas + + + Don't show in various artists + Não exibir em vários artistas + + + There are other songs in this album + Há outras músicas neste álbum + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + Erro + + + None of the selected songs were suitable for copying to a device + Nenhuma das músicas selecionadas estão adequadas para copiar para um dispositivo + + + + CollectionViewContainer + + Form + Formulário + + + + CollectionWatcher + + Updating collection + Atualizando biblioteca + + + Updating %1 + Atualizando %1 + + + + Console + + Console + Painel + + + Run + Executar + + + + ContextSettingsPage + + Context + Contexto + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + Tí­tulo + + + Summary + Resumo + + + Enable Items + + + + Album + Álbum + + + Technical Data + + + + Song Lyrics + + + + Automatically search for album cover + + + + Automatically search for song lyrics + + + + Font for headline + + + + Font + + + + Font size + + + + pt + + + + Preview + Pré-visualização + + + Font for data and lyrics + + + + Add song artist tag + Adicionar a tag artista da música + + + Add song album tag + Adicionar tag álbum da música + + + Add song title tag + Adicionar a tag título da música + + + Add song albumartist tag + Adicionar à música a tag artista do álbum + + + Add song year tag + Adicionar a tag ano da música + + + Add song composer tag + Adicionar a tag compositor da música + + + Add song performer tag + Adicionar músicas por tag do artista + + + Add song grouping tag + Adicionar músicas por agrupamento da tag + + + Add song disc tag + Adicionar a tag disco da música + + + Add song track tag + Adicionar a tag faixa da música + + + Add song genre tag + Adicionar a tag gênero da música + + + Add song length tag + Adicionar a tag duração da música + + + Add song play count + Adicionar contagem a reprodução da música + + + Add song skip count + Adicionar contador de pular música + + + Add a new line if supported by the notification type + Adicionar uma nova linha se suportado pelo tipo de notificação + + + %filename% + + + + Add song filename + Adicionar o nome do arquivo da música + + + %url% + + + + Add song URL + + + + %rating% + + + + Add song rating + Adicionar avaliar faixa + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + Tipos de arquivos + + + Length + Duração + + + Samplerate + Taxa de amostragem + + + Bit depth + Profundidade de bits + + + Bitrate + Taxa de Amostragem + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + + + + Show song technical data + + + + Show song lyrics + + + + Automatically search for song lyrics + + + + No song playing + Nenhuma música tocando + + + %1 song + + + + %1 songs + + + + %1 artist + + + + %1 artists + + + + %1 album + + + + %1 albums + + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + Carregar capa da URL + + + Enter a URL to download a cover from the Internet: + Insira uma URL para fazer baixar uma capa da Internet: + + + Fetching cover error + Erro ao buscar a capa + + + The site you requested does not exist! + O site que você pediu não existe! + + + The site you requested is not an image! + O site que você pediu não é uma imagem! + + + + CoverManager + + Cover Manager + Gerenciador de capas + + + Enter search terms here + Digite os termos da pesquisa aqui + + + MenuPopupToolButton + + + + View + Exibir + + + Total albums: + Total de albuns: + + + Without cover: + Sem capas: + + + 0 + + + + Fetch Missing Covers + Buscar as capas que faltam + + + Export Covers + Exportar Capas + + + Fetch automatically + Buscar automaticamente + + + Load + Carregar + + + Add to playlist + Adicionar à lista de reprodução + + + + CoverSearchStatisticsDialog + + Fetch completed + Atualização concluída + + + Got %1 covers out of %2 (%3 failed) + Conseguiu %1 capa(s) de %2 (%3 falharam) + + + Covers from %1 + Capas do %1 + + + Total network requests made + Total de requisições de rede feitas + + + Average image size + Tamanho médio de imagem + + + Total bytes transferred + Total de bytes transferido + + + + CoversSettingsPage + + Covers + + + + Cover providers + + + + Choose the providers you want to use when searching for covers. + + + + Move up + Para cima + + + Move down + Para baixo + + + Authentication + Autenticação + + + Login + + + + Album cover types + + + + Saving album covers + + + + Save album covers in album directory + + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + Nome do arquivo: + + + Pattern + + + + Random + + + + Overwrite existing file + + + + Lowercase filename + Nome de arquivo em minúsculas + + + Replace spaces with dashes + + + + Use Tidal settings to authenticate. + + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + + + + %1 does not need authentication. + + + + No provider selected. + + + + Authentication failed + Falha na autenticação + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Verificar integridade + + + Database corruption detected. + + + + Backing up database + Cópia do banco de dados + + + + DeleteConfirmationDialog + + Delete files + Excluir arquivos + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + + + + + DeleteFiles + + Deleting files + Apagando arquivos + + + + DeviceItemDelegate + + Updating %1%... + Atualizando %1%... + + + Not connected + Desconectado + + + Not mounted - double click to mount + Não montado - clique duas vezes para montar + + + Double click to open + Clique duplo para abrir + + + %1 song%2 + %1 música%2 + + + + DeviceManager + + Connect device + Conectar dispositivo + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Esta é a primeira vez que você conecta este dispositivo. O Strawberry vai escaneá-lo agora para achar músicas - isso pode levar algum tempo. + + + This device will not work properly + Este dispositivo não funcionará corretamente + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Este é um dispositivo MTP, mas você compilou o Strawberry sem suporte a libmtp + + + If you continue, this device will work slowly and songs copied to it may not work. + Se você continar, este dispositivo funcionará lentamente e as músicas copiadas para ele podem não funcionar. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Este é um iPod, mas você compilou o Strawberry sem suporte a libgpod + + + This type of device is not supported: %1 + Este tipo de dispositivo não é suportado: %1 + + + + DeviceProperties + + Device Properties + Propriedades do dispositivo + + + Information + Informação + + + Name + Nome + + + Icon + Ícone + + + Hardware information + Informação de hardware + + + Hardware information is only available while the device is connected. + Informação do hardware só está disponível quando o dispositivo está conectado. + + + File formats + Formatos de arquivo + + + Supported formats + Formatos suportados + + + This device supports the following file formats: + Este dispositivo suporta os seguintes formatos de arquivo: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + O Strawberry pode converter automaticamente a música que você copiar para o dispositivo no formato que pode ser executado. + + + Do not convert any music + Não converter nenhuma música + + + Convert any music that the device can't play + Converter qualquer música que o dispositivo não puder tocar + + + Convert all music + Converter todas as músicas + + + Preferred format + Formato preferido + + + This device must be connected and opened before Strawberry can see what file formats it supports. + O dispositivo deve estar conectado e aberto antes que o Strawberry possa ver que formatos de arquivo ele suporta. + + + Open device + Abrir dispositivo + + + Querying device... + Consultando dispositivo... + + + Model + Modelo + + + Manufacturer + Fabricante + + + + DeviceView + + Safely remove device + Remover o dispositivo com segurança + + + Forget device + Esquecer dispositivo + + + Device properties... + Propriedades do dispositivo... + + + Append to current playlist + Adicionar à lista de reprodução atual + + + Replace current playlist + Substituir lista de reprodução atual + + + Open in new playlist + Abrir em nova lista de reprodução + + + Copy to collection... + Copiar para biblioteca... + + + Delete from device... + Apagar do dispositivo... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Esquecer um dispositivo irá removê-lo desta lista e o Strawberry terá que examinar todas as músicas de novo, da próxima vez que você conectá-lo. + + + Delete files + Excluir arquivos + + + These files will be deleted from the device, are you sure you want to continue? + Estes arquivos serão deletados do dispositivo, tem certeza que deseja continuar? + + + + DeviceViewContainer + + Form + Formulário + + + + DynamicPlaylistControls + + Dynamic mode is on + + + + New tracks will be added automatically. + + + + Expand + + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + Editar informações da faixa + + + Summary + Resumo + + + Date created + Data de criação + + + Art Automatic + + + + Date modified + Data de modificação + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + Tipo de arquivo + + + Length + Duração + + + Play count + Número de reproduções + + + Bit depth + Profundidade de bits + + + EBU R 128 integrated loudness + + + + Bit rate + Taxa de bits + + + Skip count + Número de pulos + + + Sample rate + Taxa de amostragem + + + Path + + + + Filename + Nome do arquivo + + + Art Unset + + + + File size + Tamanho do arquivo + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + Limpar contador de reprodução + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + Disco + + + Grouping + Agrupamento + + + Album artist + Artista do álbum + + + Album + Álbum + + + Year + Ano + + + Title + Tí­tulo + + + Artist + Artista + + + Composer + Compositor + + + Complete tags automatically + Completar tags automaticamente + + + Genre + Gênero + + + Comment + Comentário + + + Performer + Artista + + + Compilation + + + + Track + Faixa + + + Rating + + + + Lyrics + Letras + + + Complete lyrics automatically + + + + Previous + Anterior + + + Next + Próximo + + + Saving tracks + Gravando faixas + + + Loading tracks + Carregando faixas + + + %1 songs selected. + + + + kbps + + + + Unknown + Desconhecido + + + Yes + + + + No + + + + None + Nenhum + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Capa não definida + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + Nunca + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Equalizador + + + Preset: + Pré-regulagem: + + + Save preset + Salvar pré-regulagem + + + Delete preset + Apagar pré-regulagem + + + Enable equalizer + Habilitar equalizador + + + Enable stereo balancer + + + + Left + Esquerda + + + Balance + Balanço + + + Right + Direita + + + Pre-amp + Pré-amplificação + + + Custom + Personalizado + + + Classical + Clássica + + + Club + Clube + + + Dance + + + + Full Bass + Graves + + + Full Treble + Muito Agudo + + + Full Bass + Treble + Graves + Agudos + + + Laptop/Headphones + Notebook / fones de ouvido + + + Large Hall + Salão Grande + + + Live + Ao vivo + + + Party + Festa + + + Pop + + + + Reggae + + + + Rock + + + + Soft + Suave + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + + + + Name + Nome + + + Are you sure you want to delete the "%1" preset? + Tem certeza que deseja apagar a pré-regulagem "%1" ? + + + + EqualizerSlider + + Equalizer + Equalizador + + + %1 dB + %1 dB + + + + ErrorDialog + + Strawberry Error + Erro no Strawberry + + + + FancyTabWidget + + Large sidebar + Barra lateral grande + + + Icons sidebar + + + + Small sidebar + Barra lateral compacta + + + Plain sidebar + Barra lateral simples + + + Tabs on top + Mostrar abas no topo + + + Icons on top + Ícones acima + + + + FileTypeItemDelegate + + Unknown + Desconhecido + + + + FileView + + Form + Formulário + + + + FileViewList + + Append to current playlist + Adicionar à lista de reprodução atual + + + Replace current playlist + Substituir lista de reprodução atual + + + Open in new playlist + Abrir em nova lista de reprodução + + + Copy to collection... + Copiar para biblioteca... + + + Move to collection... + Mover para biblioteca... + + + Copy to device... + Copiar para o dispositivo... + + + Delete from disk... + Apagar do disco... + + + Edit track information... + Editar informações da faixa... + + + Show in file browser... + Mostrar no navegador de arquivos... + + + + FreeSpaceBar + + Available + Disponível + + + New songs + Novas músicas + + + Exceeded by + + + + Used + Usado + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Carregando banco de dados do iPod + + + An error occurred loading the iTunes database + Ocorreu um erro no carregamento do banco de dados do iTunes + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + Ponto de montagem + + + Device + Dispositivo + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Pressione uma tecla + + + Press a key combination to use for %1... + Pressione uma combinação de teclas para %1... + + + + GlobalShortcutsManager + + Play + Reproduzir + + + Pause + Pausar + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + Mudo + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + Abrir... + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Você deve iniciar as Preferências do Sistema e permitir que o Strawberry "<span style="font-style:italic">controle o seu computador</span>" para poder usar atalhos globais no Strawberry. + + + Action + Category label + Ação + + + Shortcut + Atalho + + + Shortcut for %1 + Atalho para %1 + + + &None + &Nenhum + + + &Default + + + + &Custom + &Personalizado + + + Change shortcut... + Mudar atalho... + + + The "%1" command could not be started. + O comando "%1" não pôde ser iniciado. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + Organização avançada de biblioteca + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + Organizar Biblioteca por... + + + First level + Primeiro nível + + + None + Nenhum + + + Artist + Artista + + + Album artist + Artista do álbum + + + Album + Álbum + + + Album - Disc + Álbum - Disco + + + Disc + Disco + + + Format + Formato + + + Genre + Gênero + + + Year + Ano + + + Year - Album + Ano - Álbum + + + Year - Album - Disc + + + + Original year + Ano original + + + Original year - Album + Ano original - álbum + + + Composer + Compositor + + + Performer + Artista + + + Grouping + Agrupamento + + + File type + Tipo de arquivo + + + Sample rate + Taxa de amostragem + + + Bit depth + Profundidade de bits + + + Bitrate + Taxa de Amostragem + + + Second level + Segundo nível + + + Third level + Terceiro nível + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Armazenando em buffer + + + + LastFMImport + + Missing username, please login to last.fm first! + + + + + LastFMImportDialog + + Import data from last.fm + + + + Choose data to import from last.fm + + + + Last played + + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + Fechar + + + Cancel + + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + Nunca + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Autenticação no ListenBrainz + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Formulário + + + You are not signed in. + Você não está logado. + + + Sign out + Sair + + + Signing in... + Conectando... + + + You are signed in. + Você está logado. + + + You are signed in as %1. + Você está logado como %1. + + + Expires on %1 + Expira em %1 + + + + LyricsSettingsPage + + Lyrics + Letras + + + Lyrics providers + + + + Choose the providers you want to use when searching for lyrics. + + + + Move up + Para cima + + + Move down + Para baixo + + + Authentication + Autenticação + + + Login + + + + No provider selected. + + + + Authentication failed + Falha na autenticação + + + + MainWindow + + Strawberry Music Player + + + + MenuPopupToolButton + + + + &Music + Música + + + P&laylist + + + + Help + Ajuda + + + &Tools + &Ferramentas + + + Previous track + + + + F5 + + + + &Play + &Reproduzir + + + F6 + + + + &Stop + &Parar + + + F7 + + + + &Next track + &Próxima faixa + + + F8 + + + + &Quit + &Sair + + + Ctrl+Q + + + + Stop after this track + Parar depois desta música + + + Ctrl+Alt+V + + + + Love + + + + &Clear playlist + &Limpar lista de reprodução + + + Clear playlist + Limpar lista de reprodução + + + Ctrl+K + + + + Edit track information... + Editar informações da faixa... + + + Ctrl+E + + + + Renumber tracks in this order... + Renumerar faixas nesta ordem... + + + Set value for all selected tracks... + Mudar o valor para todas as faixas selecionadas... + + + Edit tag... + Editar tag... + + + &Settings... + &Configurações... + + + Ctrl+P + + + + &About Strawberry + &Sobre o Strawberry + + + F1 + + + + S&huffle playlist + + + + Ctrl+H + + + + &Add file... + &Adicionar arquivo... + + + Ctrl+Shift+A + + + + &Open file... + &Abrir arquivo... + + + Open audio &CD... + + + + &Cover Manager + &Gerenciador de capas + + + C&onsole + + + + &Shuffle mode + Modo aleatório + + + &Repeat mode + &Mode de Repetição + + + Remove from playlist + Remover da lista de reprodução + + + &Equalizer + &Equalizador + + + &Transcode Music + + + + Add &folder... + + + + &Jump to the currently playing track + + + + Ctrl+J + + + + &New playlist + &Nova lista de reprodução + + + Ctrl+N + + + + Save &playlist... + + + + Ctrl+S + + + + &Load playlist... + &Carregar lista de reprodução... + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + Ir até a aba do próximo playlist + + + Go to previous playlist tab + Ir até a aba lista de reprodução anterior + + + &Update changed collection folders + + + + About &Qt + + + + &Mute + &Mudo + + + Ctrl+M + + + + &Do a full collection rescan + &Fazer uma varredura completa da coleção + + + Stop collection scan + + + + Complete tags automatically... + Preencher tags automaticamente... + + + Ctrl+T + + + + Toggle scrobbling + Ativar/desativar scrobbling + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + Adicionar arquivo(s) para conversor + + + Add file to transcoder + Adicionar arquivo para conversor + + + Add stream... + + + + Show sidebar + + + + Import data from last.fm... + + + + All Files (*) + Todos os arquivos (*) + + + Context + Contexto + + + Collection + Biblioteca + + + Queue + + + + Playlists + + + + Smart playlists + + + + Files + Arquivos + + + Radios + + + + Devices + Dispositivos + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Mostrar todas as músicas + + + Show only duplicates + Mostrar somente os duplicados + + + Show only untagged + Mostrar somente os sem tag + + + Configure collection... + Configurar biblioteca... + + + Play + Reproduzir + + + Toggle queue status + Mudar status da fila + + + Queue selected tracks to play next + + + + Toggle skip status + + + + Rescan song(s)... + + + + Copy URL(s)... + + + + Show in collection... + Mostrar na biblioteca... + + + Show in file browser... + Mostrar no navegador de arquivos... + + + Organize files... + + + + Copy to collection... + Copiar para biblioteca... + + + Move to collection... + Mover para biblioteca... + + + Copy to device... + Copiar para o dispositivo... + + + Delete from disk... + Apagar do disco... + + + Check for updates... + Procurar por atualizações... + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Pausar + + + Dequeue track + Retirar faixa da fila + + + Dequeue selected tracks + Retirar faixas selecionadas da fila + + + Queue track + Colocar a faixa na fila + + + Queue selected tracks + Colocar as faixas selecionadas na fila + + + Queue to play next + + + + Unskip track + Não pular faixa + + + Unskip selected tracks + Não pular faixas selecionadas + + + Skip track + Pular faixa + + + Skip selected tracks + Pular faixas selecionadas + + + Set %1 to "%2"... + Mudar %1 para "%2"... + + + Edit tag "%1"... + Editar tag "%1"... + + + Add to another playlist + Adicionar a outra lista de reprodução + + + New playlist + Nova lista de reprodução + + + Add file + Adicionar arquivo + + + Music + Música + + + Add folder + Adicionar pasta + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + Erro + + + None of the selected songs were suitable for copying to a device + Nenhuma das músicas selecionadas estão adequadas para copiar para um dispositivo + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + A versão do Strawberry para a qual você atualizou requer um reescaneamento completo da biblioteca por causa dos novos recursos listados abaixo: + + + Would you like to run a full rescan right now? + Gostaria de realizar um reescaneamento completo agora? + + + Collection rescan notice + Aviso de reescaneamento da biblioteca + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + + + + + MimeData + + Playlist + Lista de Reprodução + + + + MoodbarProxyStyle + + Show moodbar + + + + Moodbar style + + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + + + + Moodbar style + + + + Save the .mood files directly in the songs folders + + + + Enabled + Habilitado + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Carregando dispositivo MTP + + + Error connecting MTP device %1 + Erro ao conectar ao dispositivo MTP %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Proxy da Rede + + + &Use the system proxy settings + + + + Direct internet connection + Conexão direta à Internet + + + &Manual proxy configuration + + + + HTTP proxy + Proxy HTTP + + + SOCKS proxy + Proxy SOCKS + + + Port + Porta + + + Use authentication + Usar autenticação + + + Username + Nome de usuário + + + Password + Senha + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + Notificações + + + Strawberry can show a message when the track changes. + O Strawberry pode exibir uma mensagem quando a faixa mudar. + + + Notification type + Tipo de notificação + + + Disabled + Refers to a disabled notification type in Notification settings. + Desativado + + + Show a &native desktop notification + + + + Show a pretty OSD + Mostrar aviso estilizado na tela + + + Show a popup fro&m the system tray + + + + General settings + Configurações gerais + + + Popup duration + Duração do aviso + + + seconds + segundos + + + Disable duration + Desativar duração + + + Show a notification when I change the volume + Mostrar notificação quando mudar o volume + + + Show a notification when I change the repeat/shuffle mode + Mostrar uma notificação quando eu mudar o modo repetir/aleatório + + + Show a notification when I pause playback + Exibir uma notificação ao pausar a reprodução + + + Show a notification when I resume playback + + + + Include album art in the notification + Incluir capa do álbum na notificação + + + Custom message settings + Configurações de mensagem personalizada + + + Use a custom message for notifications + Usar uma mensagem personalizada para notificações + + + Preview + Pré-visualização + + + MenuPopupToolButton + + + + Summary + Resumo + + + Body + Conteúdo + + + Pretty OSD options + Opções de aviso estilizado + + + Background color + Cor de fundo + + + Text options + Opções de texto + + + Choose font... + Escolher fonte... + + + Choose color... + Escolher cor... + + + Background opacity + Opacidade de fundo + + + Basic Blue + Azul básico + + + Strawberry Red + + + + Custom... + Personalizado... + + + Enable fading + + + + Add song artist tag + Adicionar a tag artista da música + + + Add song album tag + Adicionar tag álbum da música + + + Add song title tag + Adicionar a tag título da música + + + Add song albumartist tag + Adicionar à música a tag artista do álbum + + + Add song year tag + Adicionar a tag ano da música + + + Add song composer tag + Adicionar a tag compositor da música + + + Add song performer tag + Adicionar músicas por tag do artista + + + Add song grouping tag + Adicionar músicas por agrupamento da tag + + + Add song disc tag + Adicionar a tag disco da música + + + Add song track tag + Adicionar a tag faixa da música + + + Add song genre tag + Adicionar a tag gênero da música + + + Add song length tag + Adicionar a tag duração da música + + + Add song play count + Adicionar contagem a reprodução da música + + + Add song skip count + Adicionar contador de pular música + + + Add song rating + Adicionar avaliar faixa + + + Add a new line if supported by the notification type + Adicionar uma nova linha se suportado pelo tipo de notificação + + + %filename% + + + + Add song filename + Adicionar o nome do arquivo da música + + + %url% + + + + Add song URL + + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + Pré-visualização de informações na tela + + + Drag to reposition + Arraste para reposicionar + + + + OSDBase + + disc %1 + disco %1 + + + track %1 + faixa %1 + + + Paused + Pausado + + + Stopped + Parado + + + Stop playing after track: %1 + Parar de reproduzir depois desta faixa: %1 + + + On + Ligado + + + Off + Desligado + + + Playlist finished + A lista de reprodução terminou + + + Volume %1% + + + + Don't shuffle + Não embaralhar + + + Shuffle all + Embaralhar tudo + + + Shuffle tracks in this album + Embaralhar faixas dos albuns + + + Shuffle albums + Embaralhar albuns + + + Don't repeat + Não repetir + + + Repeat track + Repetir uma faixa + + + Repeat album + Repetir um álbum + + + Repeat playlist + Repetir lista de reprodução + + + Stop after every track + Parar depois de todas as faixas + + + Intro tracks + Introdução das faixas + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + Destino + + + After copying... + Depois de copiar... + + + Keep the original files + Manter arquivos originais + + + Delete the original files + Apagar os arquivos originais + + + Naming options + Opções de nomes + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Símbolos iniciam com %, por exemplo: %artist %album %title </p> + +<p>Se você inserir trechos do texto que contem um símbolo com chaves, esta seção será oculta se o símbolo estiver vazio.</p> + + + Insert... + Inserir... + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + + + + Restrict characters to ASCII + + + + Allow extended ASCII characters + Permitir caracteres ASCII estendidos + + + Replace spaces with underscores + + + + Overwrite existing files + Sobrescrever arquivos existentes + + + Copy album cover artwork + Copiar a arte da capa do álbum + + + Preview + Pré-visualização + + + Loading... + Carregando... + + + Safely remove the device after copying + Remover o dispositivo com segurança após copiar + + + Title + Tí­tulo + + + Album + Álbum + + + Artist + Artista + + + Artist's initial + Inicial do artista + + + Album artist + Artista do álbum + + + Composer + Compositor + + + Performer + Artista + + + Grouping + Agrupamento + + + Track + Faixa + + + Disc + Disco + + + Year + Ano + + + Original year + Ano original + + + Genre + Gênero + + + Comment + Comentário + + + Length + Duração + + + Bitrate + Refers to bitrate in file organize dialog. + Taxa de Amostragem + + + Sample rate + Taxa de amostragem + + + Bit depth + Profundidade de bits + + + File extension + Extensão de arquivo + + + + OrganizeErrorDialog + + Error copying songs + Erro ao copiar músicas + + + There were problems copying some songs. The following files could not be copied: + Houve problemas na cópia de algumas músicas. Os seguintes arquivos não puderam ser copiados: + + + Error deleting songs + Erro ao apagar músicas + + + There were problems deleting some songs. The following files could not be deleted: + Houve problemas ao deletar algumas músicas. Os seguintes arquivos não puderam ser deletados: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Capa pequena de álbum + + + Large album cover + Capa grande de álbum + + + Fit cover to width + Ajustar capa à largura + + + Show above status bar + Mostrar acima da barra de status + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Tí­tulo + + + Artist + Artista + + + Album + Álbum + + + Track + Faixa + + + Disc + Disco + + + Length + Duração + + + Year + Ano + + + Original Year + + + + Genre + Gênero + + + Album Artist + + + + Composer + Compositor + + + Performer + Artista + + + Grouping + Agrupamento + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Taxa de Amostragem + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Comentário + + + Source + Fonte + + + Mood + + + + Rating + + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Formulário + + + Undo + + + + Redo + + + + Playlist + Lista de Reprodução + + + Load playlist + Carregar lista de reprodução + + + No matches found. Clear the search box to show the whole playlist again. + Nenhum resultado encontrado. Limpe a caixa de busca para ver a lista de reprodução completa novamente. + + + + PlaylistDelegateBase + + stop + parar + + + + PlaylistGeneratorInserter + + Loading smart playlist + + + + + PlaylistHeader + + &Hide... + &Ocultar... + + + &Stretch columns to fit window + &Esticar colunas para ajustar a janela + + + &Reset columns to default + + + + &Lock rating + + + + &Align text + &Alinhar texto + + + &Left + &Esquerda + + + &Center + &Centro + + + &Right + &Direita + + + &Hide %1 + &Ocultar %1 + + + + PlaylistListContainer + + Form + Formulário + + + New folder + Nova pasta + + + Delete + Apagar + + + Save playlist + Save playlist menu action. + Salvar lista de reprodução + + + Copy to device... + Copiar para o dispositivo... + + + Enter the name of the folder + Digite o nome da pasta + + + Playlist + Lista de Reprodução + + + Copy to device + + + + Playlist must be open first. + + + + Remove playlists + Remover listas de reprodução + + + You are about to remove %1 playlists from your favorites, are you sure? + Você está prestes a apagar %1 listas de seus favoritos, tem certeza? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Você pode favoritar playlsts clicando no ícone de estrela, próximo ao nome da playlist + + + Favorited playlists will be saved here + Playlists favoritas serão salvas aqui + + + + PlaylistManager + + Playlist + Lista de Reprodução + + + Couldn't create playlist + Não foi possível criar a lista de reprodução + + + Save playlist + Title of the playlist save dialog. + Salvar lista de reprodução + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + %1 selecionado(s) de + + + %n track(s) + + + + + + + Unknown + Desconhecido + + + Various artists + Vários artistas + + + + PlaylistParser + + All playlists (%1) + Todas as listas de reprodução (%1) + + + %1 playlists (%2) + %1 listas de reprodução (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Opções da lista de reprodução + + + File paths + Endereços dos arquivos + + + This can be changed later through the preferences + Isso pode ser alterado posteriormente nas configurações + + + Remember my choice + Lembrar-se da minha escolha + + + Automatic + Automático + + + Relative + Relativo + + + Absolute + Absoluto + + + + PlaylistSequence + + Repeat + Repetir + + + Shuffle + Aleatória + + + Don't repeat + Não repetir + + + Repeat track + Repetir uma faixa + + + Repeat album + Repetir um álbum + + + Repeat playlist + Repetir lista de reprodução + + + Stop after each track + Parar depois de cada faixa + + + Intro tracks + Introdução das faixas + + + Don't shuffle + Não embaralhar + + + Shuffle tracks in this album + Embaralhar faixas dos albuns + + + Shuffle all + Embaralhar tudo + + + Shuffle albums + Embaralhar albuns + + + + PlaylistSettingsPage + + Playlist + Lista de Reprodução + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Avisar-me quando fechar uma guia de lista de reprodução + + + Continue to the next item in the playlist if a song is unavailable + Continue para o próximo item na playlist se a música não estiver disponível + + + Grey out unavailable songs in playlists on playback + Desabilitar músicas não disponíveis nas playlists durante a reprodução + + + Grey out unavailable songs in playlists on startup + Desabilitar músicas não disponíveis na playlist durante a inicialização + + + Automatically select current playing track + + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + Ao salvar uma lista de reprodução, os endereços dos arquivos devem ser + + + A&utomatic + A&utomático + + + Absolu&te + + + + Re&lative + + + + As&k when saving + Per&guntar ao salvar + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Caso ativado, ao clicar numa música na lista de reprodução, você poderá editar diretamente os valores de sua etiqueta. + + + Enable song metadata inline edition with click + Habilitar edição dos metadados da música com um clique + + + Write metadata when saving playlists + + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + Fechar lista de reprodução + + + Rename playlist... + Renomear lista de reprodução... + + + Save playlist... + Salvar lista de reprodução... + + + Rename playlist + Renomear lista de reprodução + + + Enter a new name for this playlist + Digite um novo nome para esta lista + + + Remove playlist + Remover lista de reprodução + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Você está prestes a remover uma lista de reprodução que não é parte de suas listas de reproduções favoritas: a lista de reprodução será removida (esta ação não pode ser desfeita). +Deseja continuar? + + + Warn me when closing a playlist tab + Avisar-me quando fechar uma guia de lista de reprodução + + + This option can be changed in the "Behavior" preferences + Essa opção pode ser alterada nas preferências de "Comportamento" + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + Lista de Reprodução + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + Adicionar %n músicas + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + mover %n músicas + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + Remover %n músicas + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + músicas aleatórias + + + + PlaylistUndoCommands::SortItems + + sort songs + Classificação das músicas + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + Utilização + + + options + opções + + + URL(s) + Site(s) + + + Player options + Opções do player + + + Start the playlist currently playing + Iniciar a lista que está em execução + + + Play if stopped, pause if playing + Reproduzir se estiver parado, pausar se estiver tocando + + + Pause playback + Pausar reprodução + + + Stop playback + Parar reprodução + + + Stop playback after current track + Parar reprodução depois da música atual + + + Skip backwards in playlist + Pular para a música anterior da lista + + + Skip forwards in playlist + Pular para a próxima música da lista + + + Set the volume to <value> percent + Mudar volume para <value> por cento + + + Increase the volume by 4 percent + + + + Decrease the volume by 4 percent + + + + Increase the volume by <value> percent + Aumentar o volume por porcentagem <valor> + + + Decrease the volume by <value> percent + Diminuir o volume por porcentagem <valor> + + + Seek the currently playing track to an absolute position + Avançar na faixa atual para uma posição absoluta + + + Seek the currently playing track by a relative amount + Avançar na faixa atual por um tempo relativo + + + Restart the track, or play the previous track if within 8 seconds of start. + Reiniciar a faixa, ou reproduzir a faixa anterior, se dentro de 8 segundos começar. + + + Playlist options + Opções da lista de reprodução + + + Create a new playlist with files + + + + Append files/URLs to the playlist + Acrescentar arquivos/sites para a lista de reprodução + + + Loads files/URLs, replacing current playlist + Carregar arquivos/sites, substiuindo a lista de reprodução atual + + + Play the <n>th track in the playlist + Tocar a <n>ª faixa da lista + + + Play given playlist + + + + Other options + Outras opções + + + Display the on-screen-display + Mostrar na tela + + + Toggle visibility for the pretty on-screen-display + Ativar/desativar visibilidade das notificações em modo bonito + + + Change the language + Alterar idioma + + + Resize the window + + + + Equivalent to --log-levels *:1 + Equivalente ao --log-levels *:1 + + + Equivalent to --log-levels *:3 + Equivalente ao --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Lista separada por vírgulas de classe: o nível, o nível é 0-3 + + + Print out version information + Imprimir informação da versão + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Desconhecido + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + + + + 1 day + 1 dia + + + %1 days + %1 dias + + + Today + Hoje + + + Yesterday + Ontem + + + %1 days ago + %1 dias atrás + + + Tomorrow + Amanhã + + + In %1 days + Em %1 dias + + + Next week + Próxima semana + + + In %1 weeks + Em %1 semanas + + + Show in file browser + + + + Too many songs selected. + + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + + + + after + + + + before + + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + + + + contains + + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + + + + not empty + + + + Comment + Comentário + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + + + + Days + + + + Weeks + + + + Months + + + + Years + + + + Normal + + + + Angry + + + + Frozen + + + + Happy + + + + System colors + + + + + QWidget + + Clear + Limpar + + + Reset + Redefinir + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Nenhuma correspondência. + + + Unknown error + + + + + QobuzService + + Authenticating... + Autenticando... + + + Maximum number of login attempts reached. + Atingido o número máximo de tentativas de login. + + + Missing Qobuz app ID. + + + + Missing Qobuz username. + + + + Missing Qobuz password. + + + + Not authenticated with Qobuz. + Não autenticado no Qobuz. + + + Missing Qobuz app ID or secret. + + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Habilitar + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + Autenticação + + + App ID + + + + Username + Nome de usuário + + + Password + Senha + + + App Secret + + + + Login + + + + Preferences + Preferências + + + Audio format + Formato de áudio + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + Limite de busca por álbuns + + + Songs search limit + + + + Download album covers + + + + Base64 encoded secret + + + + Configuration incomplete + Configuração incompleta + + + Missing app id. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Falha na autenticação + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + + + + Cancelled. + Cancelado. + + + + Queue + + %n track(s) + + + + + + + + QueueView + + QueueView + + + + Move down + Para baixo + + + Ctrl+Up + + + + Move up + Para cima + + + Ctrl+Down + + + + Remove + Remover + + + Clear + Limpar + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Adicionar à lista de reprodução atual + + + Replace current playlist + Substituir lista de reprodução atual + + + Open in new playlist + Abrir em nova lista de reprodução + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + Formulário + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Gerenciador de agrupamentos salvos + + + Remove + Remover + + + Ctrl+Up + + + + Name + Nome + + + First level + Primeiro nível + + + Second Level + Segundo nível + + + Third Level + Terceiro nível + + + None + Nenhum + + + Album artist + Artista do álbum + + + Artist + Artista + + + Album + Álbum + + + Album - Disc + Álbum - Disco + + + Year - Album + Ano - Álbum + + + Year - Album - Disc + + + + Original year - Album + Ano original - álbum + + + Original year - Album - Disc + + + + Disc + Disco + + + Year + Ano + + + Original year + Ano original + + + Genre + Gênero + + + Composer + Compositor + + + Performer + Artista + + + Grouping + Agrupamento + + + File type + Tipo de arquivo + + + Format + Formato + + + Sample rate + Taxa de amostragem + + + Bit depth + Profundidade de bits + + + Bitrate + Taxa de Amostragem + + + Unknown + Desconhecido + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + Habilitar + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + + + + Show love button + + + + Submit scrobbles every + + + + seconds + segundos + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + Biblioteca + + + Subsonic + + + + Local file + + + + Tidal + + + + Device + Dispositivo + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Transmissão + + + Radio Paradise + + + + Unknown + Desconhecido + + + Last.fm + + + + Login + + + + Libre.fm + + + + Listenbrainz + + + + User token: + + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + + + + Open URL in web browser? + + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + + + + Could not open URL. Please open this URL in your browser + + + + Invalid reply from web browser. Missing token. + Resposta inválida do servidor web. Faltando o token. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + Configurações + + + General + Geral + + + User interface + Interface + + + Streaming + + + + + SmartPlaylistQuerySearchPage + + Form + Formulário + + + Search mode + + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + + + + + SmartPlaylistQuerySortPage + + Form + Formulário + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + + + + Show all the songs + + + + Only show the first + + + + songs + + + + + SmartPlaylistQueryWizardPlugin + + Collection search + + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + + + + A song will be included in the playlist if it matches these conditions. + + + + Search options + + + + Choose how the playlist is sorted and how many songs it will contain. + + + + + SmartPlaylistSearchPreview + + Form + Formulário + + + Preview + Pré-visualização + + + Loading... + Carregando... + + + %1 songs found (showing %2) + + + + %1 songs found + + + + + SmartPlaylistSearchTermWidget + + Form + Formulário + + + and + + + + ago + + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + + + + + SmartPlaylistWizard + + Smart playlist + + + + Playlist type + + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + + + + Finish + + + + Choose a name for your smart playlist + + + + + SmartPlaylistWizardFinishPage + + Form + Formulário + + + Name + Nome + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + + + + 50 random tracks + + + + Ever played + + + + Never played + + + + Last played + + + + Most played + + + + Favourite tracks + + + + All tracks + + + + Dynamic random mix + + + + + SmartPlaylistsViewContainer + + New smart playlist + + + + Edit smart playlist + + + + Delete smart playlist + + + + New smart playlist... + + + + Append to current playlist + Adicionar à lista de reprodução atual + + + Replace current playlist + Substituir lista de reprodução atual + + + Open in new playlist + Abrir em nova lista de reprodução + + + Queue track + Colocar a faixa na fila + + + Play next + + + + Edit smart playlist... + + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + A reprodução de CDs só está disponível com o mecanismo GStreamer. + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + Erro ao carregar o CD de áudio. + + + Loading tracks + Carregando faixas + + + Loading tracks info + Carregando informações da faixa + + + + SpotifyRequest + + Authenticating... + Autenticando... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Nenhuma correspondência. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Habilitar + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Preferências + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + Limite de busca por álbuns + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + Buscar álbuns inteiros ao pesquisar músicas + + + Authentication failed + Falha na autenticação + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + + + + Append to current playlist + Adicionar à lista de reprodução atual + + + Replace current playlist + Substituir lista de reprodução atual + + + Open in new playlist + Abrir em nova lista de reprodução + + + Queue track + Colocar a faixa na fila + + + Queue to play next + + + + Remove from favorites + + + + + StreamingCollectionViewContainer + + Form + Formulário + + + Close + Fechar + + + Abort + Abortar + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + Vários artistas + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + + + + albums + + + + songs + + + + Enter search terms above to find music + Insira os termos de busca acima para encontrar as músicas + + + Configure %1... + Configurar %1... + + + Append to current playlist + Adicionar à lista de reprodução atual + + + Replace current playlist + Substituir lista de reprodução atual + + + Open in new playlist + Abrir em nova lista de reprodução + + + Queue track + Colocar a faixa na fila + + + Add to artists + Adicionar aos artistas + + + Add to albums + Adicionar aos álbuns + + + Add to songs + Adicionar às músicas + + + Search for this + Buscar por isso + + + Group by + Organizar por + + + + StreamingSongsView + + Configure %1... + Configurar %1... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Artistas + + + Albums + Álbuns + + + Songs + + + + Search + Pesquisar + + + Configure %1... + Configurar %1... + + + + SubsonicRequest + + Retrieving albums... + + + + Retrieving songs for %1 album... + + + + Retrieving songs for %1 albums... + + + + Retrieving album cover for %1 album... + + + + Retrieving album covers for %1 albums... + + + + Unknown error + + + + + SubsonicService + + Server URL is invalid. + + + + Missing username or password. + + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Habilitar + + + Server URL + + + + Authentication + Autenticação + + + Username + Nome de usuário + + + Password + Senha + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Preferências + + + Use HTTP/2 when possible + + + + Verify server certificate + + + + Download album covers + + + + Server-side scrobbling + + + + Test + + + + Delete songs + + + + Configuration incomplete + Configuração incompleta + + + Missing server url, username or password. + + + + Configuration incorrect + Configuração incorreta + + + Server URL is invalid. + + + + Test successful! + + + + Test failed! + + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + + + + Missing Subsonic username or password. + + + + + SystemTrayIcon + + Pause + Pausar + + + Play + Reproduzir + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Autenticando... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Nenhuma correspondência. + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + + + + Missing Tidal username. + + + + Missing Tidal password. + + + + Not authenticated with Tidal and reached maximum number of login attempts. + Não autenticado no Tidal e atingido o limite de tentativas de login. + + + Not authenticated with Tidal. + Não autenticado no Tidal. + + + Missing Tidal API token, username or password. + + + + + TidalSettingsPage + + Tidal + + + + Enable + Habilitar + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + Autenticação + + + Use OAuth + + + + Client ID + + + + API Token + + + + Username + Nome de usuário + + + Password + Senha + + + Login + + + + Preferences + Preferências + + + Audio quality + Qualidade de áudio + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + Limite de busca por álbuns + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + Buscar álbuns inteiros ao pesquisar músicas + + + Album cover size + Dimensões da capa do álbum + + + Stream URL method + + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + Configuração incompleta + + + Missing Tidal client ID. + + + + Missing API token. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Falha na autenticação + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Não autenticado no Tidal. + + + Missing Tidal API token, username or password. + + + + Cancelled. + Cancelado. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + Buscador de tag + + + Sorry + Desculpe + + + Strawberry was unable to find results for this file + O Strawberry não conseguiu encontrar resultados para este arquivo + + + Select best possible match + Selecionar o melhor resultado possível + + + Track + Faixa + + + Year + Ano + + + Title + Tí­tulo + + + Artist + Artista + + + Album + Álbum + + + Previous + Anterior + + + Next + Próximo + + + Original tags + Tags originais + + + Suggested tags + Tags sugeridas + + + Saving tracks + Gravando faixas + + + + TrackSlider + + Form + Formulário + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Clique para alternar entre tempo restante e tempo total + + + + TranscodeDialog + + Transcode Music + Converter Música + + + Files to transcode + Arquivos para converter + + + Filename + Nome do arquivo + + + Directory + Diretório + + + Add... + Adicionar... + + + Remove + Remover + + + Add all tracks from a directory and all its subdirectories + Adicionar todas as faixas de uma pasta e de suas subpastas + + + Import... + Importar... + + + Output options + Opções de Saída + + + Audio format + Formato de áudio + + + Options... + Opções... + + + Destination + Destino + + + Alongside the originals + Juntamente com os originais + + + Select... + Selecionar... + + + Progress + Andamento + + + Details... + Detalhes... + + + Clear + Limpar + + + Start transcoding + Começar conversão + + + %n remaining + + %n faltando + + + + + %n finished + + %n finalizado + + + + + %n failed + + %n falhou + + + + + Add files to transcode + Adicionar arquivos para converter + + + Music + Música + + + Open a directory to import music from + Abrir uma pasta para importar músicas + + + Add folder + Adicionar pasta + + + + TranscodeLogDialog + + Transcoder Log + Log do conversor + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Incapaz de criar o elemento GStreamer "%1" - confira se você possui todos os plugins requeridos pelo GStreamer instalados + + + Successfully written %1 + %1 gravado com sucesso + + + Transcoding %1 files using %2 threads + Convertendo %1 arquivos usando %2 núcleos + + + Error processing %1: %2 + Erro processando %1:%2 + + + Starting %1 + Iniciando %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Não foi possível encontrar um codificador para %1, verifique se você tem os plugins corretos do GStreamer instalados + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Não foi possível encontrar um multiplexador para %1, verifique se você tem os plugins corretos do GStreamer instalados + + + + TranscoderOptionsAAC + + Form + Formulário + + + Bitrate + Taxa de Amostragem + + + kbps + + + + Profile + Perfil + + + Main profile (MAIN) + Menu perfil (PRINCIPAL) + + + Low complexity profile (LC) + Perfil de baixa complexidade (LC) + + + Scalable sampling rate profile (SSR) + Perfil evolutivo taxa de amostragem (SSR) + + + Long term prediction profile (LTP) + Perfil de previsão a longo prazo (LTP) + + + Use temporal noise shaping + Usar padronização de ruídos temporais + + + Allow mid/side encoding + Permitir codificação mid/side + + + Block type + Tipo de bloco + + + Normal block type + Tipo de blocos normal + + + No short blocks + Sem blocos curtos + + + No long blocks + Sem blocos longos + + + + TranscoderOptionsASF + + Form + Formulário + + + Bitrate + Taxa de Amostragem + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + Opção de conversão + + + + TranscoderOptionsFLAC + + Form + Formulário + + + Quality + Sound quality + Qualidade + + + Fast + Rápida + + + Best + Melhor + + + + TranscoderOptionsMP3 + + Form + Formulário + + + Optimize for &quality + + + + Quality + Sound quality + Qualidade + + + Opti&mize for bitrate + + + + Bitrate + Taxa de Amostragem + + + kbps + + + + Constant bitrate + Taxa de bits constante + + + Encoding engine quality + Qualidade da codificação + + + Fast + Rápida + + + Standard + Padrão + + + High + Alta + + + Force mono encoding + Forçar codificação em mono + + + + TranscoderOptionsOpus + + Form + Formulário + + + Bitrate + Taxa de Amostragem + + + kbps + + + + + TranscoderOptionsSpeex + + Form + Formulário + + + Quality + Sound quality + Qualidade + + + Bitrate + Taxa de Amostragem + + + automatic + automático + + + kbps + + + + Average bitrate + Taxa de bits média + + + disabled + desabilitado + + + Encoding mode + Modo de codificação + + + Auto + Automático + + + Ultra wide band (UWB) + Banda ultralarga (UWB) + + + Wide band (WB) + Banda larga (WB) + + + Narrow band (NB) + Banda baixa (NB) + + + Variable bit rate + Taxa de bits variável + + + Voice activity detection + Detecção de atividade de voz + + + Discontinuous transmission + Transmissão descontínua + + + Encoding complexity + Complexidade de codificação + + + Frames per buffer + Quadros por buffer + + + + TranscoderOptionsVorbis + + Form + Formulário + + + Quality + Sound quality + Qualidade + + + Use bitrate management engine + Configurar taxa de bits + + + Target bitrate + Taxa de bits alvo + + + kbps + + + + Minimum bitrate + Taxa de bits mínima + + + disabled + desabilitado + + + Maximum bitrate + Taxa de bits máxima + + + + TranscoderOptionsWavPack + + Form + Formulário + + + + TranscoderSettingsPage + + Transcoding + Conversão + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Essas configurações são usadas na "Conversão de Músicas" e, ao converter a música antes de copiar para um dispositivo. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + Localização do D-Bus + + + Serial number + Número de série + + + Mount points + Pontos de montagem + + + Partition label + Nome da partição + + + UUID + + + + + UserPassDialog + + Enter username and password + + + + Username + Nome de usuário + + + Password + Senha + + + diff --git a/src/translations/strawberry_ru_RU.ts b/src/translations/strawberry_ru_RU.ts new file mode 100644 index 00000000..e8d5b815 --- /dev/null +++ b/src/translations/strawberry_ru_RU.ts @@ -0,0 +1,7577 @@ + + + + + About + + About + О программе + + + About Strawberry + О Strawberry + + + Version %1 + Версия %1 + + + Strawberry is a music player and music collection organizer. + Strawberry — музыкальный проигрыватель и органайзер фонотеки. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Это форк Clementine, выпущенный в 2018 году, специально для коллекционеров музыки и меломанов. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry — бесплатное программное обеспечение, выпущенное под лицензией GPL. Исходный код доступен на %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Вы должны были получить копию GNU General Public License вместе с этой программой. Если нет, смотрите раздел %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Если вам приглянулся Strawberry, пожалуйста, рассмотрите возможность спонсорства или пожертвования. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Вы можете материально поддержать автора на %1. Также можно произвести единовременный платёж на %2. + + + Author and maintainer + Автор и куратор + + + Contributors + Участники + + + Clementine authors + Авторы Clementine + + + Clementine contributors + Разработчики Clementine + + + Thanks to + Благодарности + + + Thanks to all the other Amarok and Clementine contributors. + Спасибо всем прочим разработчикам Amarok и Clementine. + + + + AddStreamDialog + + Add Stream + Добавить поток + + + Enter the URL of a stream: + Введите адрес потока: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Изображения (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Изображения (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Все файлы (*) + + + Load cover from disk... + Загрузить обложку с диска… + + + Save cover to disk... + Сохранить обложку на диск… + + + Load cover from URL... + Загрузить обложку из адреса… + + + Search for album covers... + Поиск обложек альбомов… + + + Unset cover + Удалить обложку + + + Delete cover + Удалить обложку + + + Clear cover + Очистить обложку + + + Show fullsize... + Открыть в полный размер… + + + Search automatically + Искать автоматически + + + Load cover from disk + Загрузка обложки с диска + + + Failed to open cover file %1 for reading: %2 + Не удалось открыть файл обложки %1 для чтения: %2 + + + Cover file %1 is empty. + Файл обложки %1 пуст. + + + unknown + неизвестно + + + Save album cover + Сохранить обложку альбома + + + Failed to open cover file %1 for writing: %2 + Не удалось открыть файл обложки %1 для записи: %2 + + + Failed writing cover to file %1: %2 + Не удалось записать обложку в файл %1: %2 + + + Failed writing cover to file %1. + Не удалось записать обложку в файл %1. + + + Failed to delete cover file %1: %2 + Не удалось удалить файл обложки %1: %2 + + + Failed to write cover to file %1: %2 + Не удалось записать обложку в файл %1: %2 + + + Could not save cover to file %1. + Не удалось сохранить обложку в файл %1. + + + + AlbumCoverExport + + Export covers + Экспорт обложек + + + Output + Вывод + + + Enter a filename for exported covers (no extension): + Введите имя файла для экспортируемых обложек (без расширения): + + + Export downloaded covers + Экспорт загруженных обложек + + + Export embedded covers + Экспорт вложенных обложек + + + Existing covers + Существующие обложки + + + Do not overwrite + Не перезаписывать + + + O&verwrite all + &Перезаписать все + + + Overwrite s&maller ones only + Перезаписать только более маленькие + + + Size + Размер + + + Scale size + Размер масштабирования + + + Size: + Размер: + + + Pixel + Пиксель + + + + AlbumCoverManager + + Abort + Прервать + + + All albums + Все альбомы + + + Albums with covers + Альбомы с обложками + + + Albums without covers + Альбомы без обложек + + + Really cancel? + Действительно отменить? + + + Closing this window will stop searching for album covers. + Закрытие этого окна остановит поиск обложек для альбомов. + + + Don't stop! + Не останавливать! + + + All artists + Все артисты + + + Various artists + Различные артисты + + + Got %1 covers out of %2 (%3 failed) + Получено %1 обложек из %2 (%3 загрузить не удалось) + + + %1 transferred + %1 передано + + + Export finished + Экспорт завершён + + + No covers to export. + Нет обложек для экспорта. + + + Exported %1 covers out of %2 (%3 skipped) + Экспортировано %1 обложек из %2 (%3 пропущено) + + + Could not save cover to file %1. + Не удалось сохранить обложку в файл %1. + + + + AlbumCoverSearcher + + Cover Manager + Менеджер обложек + + + Artist + Артист + + + Album + Альбом + + + Search + Поиск + + + Covers from %1 + Обложки из %1 + + + Abort + Прервать + + + + AnalyzerContainer + + Framerate + Частота кадров + + + Low (%1 fps) + Низкая (%1 к/с) + + + Medium (%1 fps) + Средняя (%1 к/с) + + + High (%1 fps) + Высокая (%1 к/с) + + + Super high (%1 fps) + Очень высокая (%1 к/с) + + + No analyzer + Без анализатора + + + Block analyzer + Блоковый анализатор + + + Boom analyzer + Подъёмный анализатор + + + Turbine + Turbine + + + Sonogram + Сонограмма + + + WaveRubber + WaveRubber + + + + AppearanceSettingsPage + + Appearance + Внешний вид + + + Style + Стиль + + + Use system theme icons + Использовать системную тему значков + + + Settings require restart. + Применение настроек требует перезапуска. + + + Tabbar colors + Цвета вкладок + + + &Use the system default color + &Использовать стандартный цвет системы + + + Use custom color + Использовать собственный цвет + + + Use gradient background + Использовать градиентный фон + + + Select tabbar color: + Выбрать цвет панели вкладок: + + + Background image + Фоновое изображение + + + Default bac&kground image + &Стандартное фоновое изображение + + + &No background image + &Без фонового изображения + + + The album cover of the currently playing song + Обложка альбома активной композиции + + + Albu&m cover + О&бложка альбома + + + Custom image: + Своё изображение: + + + Browse... + Обзор… + + + Position + Позиция + + + Upper Left + Сверху слева + + + Upper Right + Сверху справа + + + Middle + Середина + + + Bottom Left + Слева внизу + + + Bottom Right + Справа внизу + + + Max cover size + Максимальный размер обложки + + + Stretch image to fill playlist + Подгонять к размеру плейлиста + + + Keep aspect ratio + Сохранять пропорции + + + Do not cut image + Не обрезать изображение + + + Blur amount + Степень размытия + + + 0px + 0 пикс + + + Opacity + Непрозрачность + + + 40% + 40% + + + Icon sizes + Размер значков + + + Playlist buttons + Кнопки плейлиста + + + Tabbar large mode + Режим широкой боковой панели + + + Play control buttons + Кнопки управления проигрыванием + + + Configure buttons + Настройка кнопок + + + Files, playlists and queue buttons + Кнопки файлов, плейлистов и очереди + + + Tabbar small mode + Режим узкой боковой панели + + + Playlist playing song color + Цвет текущей песни в плейлисте + + + System highlight color + Системный цвет подсвечивания + + + Custom color + Собственный цвет + + + Select playlist playing song color: + Выбрать цвет активной песни в плейлисте: + + + Select background image + Выбрать фоновое изображение + + + + BackendSettingsPage + + Backend + Звук + + + Audio output + Вывод звука + + + Device + Устройство + + + Output + Вывод + + + Engine + Движок + + + ALSA plugin: + Модуль ALSA: + + + hw + hw + + + p&lughw + p&lughw + + + pcm + pcm + + + Exclusive mode (Experimental) + Исключительный режим (экспериментально) + + + Options + Параметры + + + Enable volume control + Включить управление громкостью + + + Upmix / downmix to + Преобразовать до + + + channels + каналов + + + Improve headphone listening of stereo audio records (bs2b) + Улучшить прослушивание стереозаписей через наушники (bs2b) + + + Enable HTTP/2 for streaming + Включить HTTP/2 для потокового вещания + + + Use strict SSL mode + Использовать строгий режим SSL + + + Buffer + Буфер + + + ms + мс + + + Buffer duration + Размер буфера + + + High watermark + Верхний уровень + + + Low watermark + Нижний уровень + + + Defaults + По умолчанию + + + Audio normalization + Нормализация звука + + + No audio normalization + Без нормализации звука + + + Replay Gain + Нормализация громкости + + + Use Replay Gain metadata if it is available + Использовать метаданные нормализации по возможности + + + Replay Gain mode + Режим нормализации + + + Radio (equal loudness for all tracks) + Радио (равная громкость для всех треков) + + + Album (ideal loudness for all tracks) + Альбом (идеальная громкость всех треков) + + + Pre-amp + Предусиление + + + Apply compression to prevent clipping + Применять сжатие для предотвращения искажений + + + Fallback-gain + Стандартное усиление + + + EBU R 128 Loudness Normalization + Нормализация громкости EBU R 128 + + + Perform track loudness normalization + Выполнять нормализацию громкости дорожки + + + Target Level + Целевой уровень + + + Fading + Затухание звука + + + Fade out when stopping a track + Затухание при остановке трека + + + Cross-fade when changing tracks manually + Перекрёстное затухание при ручной смене трека + + + Cross-fade when changing tracks automatically + Перекрёстное затухание при автоматической смене трека + + + Except between tracks on the same album or in the same CUE sheet + Кроме треков с одного и того же альбома или CUE-файла + + + Fading duration + Длительность затухания + + + Fade out on pause / fade in on resume + Затухание при паузе / нарастание при продолжении воспроизведения + + + + BehaviourSettingsPage + + Behavior + Поведение + + + Show system tray icon + Показывать значок в трее + + + Keep running in the background when the window is closed + Продолжать работу в фоне по закрытии окна + + + Show song progress on system tray icon + Показывать ход проигрывания песни на значке в трее + + + Show song progress on taskbar + Показывать ход прослушивания песни на панели задач + + + Resume playback on start + Продолжить воспроизведение при запуске + + + Show playing widget + Показывать виджет воспроизведения + + + On startup + При запуске + + + Remember from &last time + Вернуть преды&дущее состояние + + + Show the main window + Показать главное окно + + + Hide the main window + Скрыть главное окно + + + Show the main window maximized + Показать главное окно развёрнутым + + + Show the main window minimized + Показать главное окно свёрнутым + + + Language + Язык + + + Use the system default + Использовать язык системы + + + You will need to restart Strawberry if you change the language. + Для применения языка потребуется перезапуск Strawberry. + + + Using the menu to add a song will... + После добавления песни через меню… + + + Never start playing + Никогда не начинать воспроизведение + + + Play if there is nothing already playing + Проиграть, если ничего не играет + + + Always start playing + Всегда начинать воспроизведение + + + Pressing "Previous" in player will... + Нажатие кнопки «Предыдущий» осуществит… + + + Jump to previous song right away + Немедленный переход к предыдущей песне + + + Restart song, then jump to previous if pressed again + Перезапуск песни, при повторном нажатии — переход к предыдущей + + + Double clicking a song will... + Двойной щелчок по песне… + + + Append to the playlist + Добавить в плейлист + + + Replace the playlist + Заменить плейлист + + + Open in new playlist + Открыть в новом плейлисте + + + Add to the queue + Добавить в очередь + + + Double clicking a song in the playlist will... + Двойной щелчок по песне в плейлисте… + + + Change the currently playing song + Сменить активный трек + + + Seeking using a keyboard shortcut or mouse wheel + Перемотка с помощью горячих клавиш клавиатуры или колеса мыши + + + Time step + Шаг времени + + + s + с + + + Volume Increment + Шаг громкости + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Ошибка при установке устройства CDDA в состояние готовности. + + + Error while setting CDDA device to pause state. + Ошибка при установке устройства CDDA в состояние паузы. + + + Error while querying CDDA tracks. + Ошибка при запросе треков CDDA. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + Невозможно выполнить запрос SQL к фонотеке: %1 + + + Failed SQL query: %1 + Ошибка запроса SQL: %1 + + + Updating %1 database. + Идёт обновление базы данных %1. + + + + CollectionFilterWidget + + Collection Filter + Фильтр фонотеки + + + Enter search terms here + Введите критерии поиска + + + MenuPopupToolButton + MenuPopupToolButton + + + Entire collection + Вся фонотека + + + Added today + Добавлено сегодня + + + Added this week + Добавлено за неделю + + + Added within three months + Добавлено за три месяца + + + Added this year + Добавлено за год + + + Added this month + Добавлено за месяц + + + Save current grouping + Сохранить текущую группу + + + Manage saved groupings + Менеджер сохранённых групп + + + Show + Показать + + + Group by + Группировать по + + + Display options + Настройки вида + + + Group by Album artist/Album + Группировать по артисту альбома/альбому + + + Group by Album artist/Album - Disc + Группировать по артисту альбома/альбому - диску + + + Group by Album artist/Year - Album + Группировать по артисту альбома/году - альбому + + + Group by Album artist/Year - Album - Disc + Группировать по артисту альбома/году - альбому - диску + + + Group by Artist/Album + Группировать по артисту/альбому + + + Group by Artist/Album - Disc + Группировать по артисту/альбому - диску + + + Group by Artist/Year - Album + Группировать по артисту/году - альбому + + + Group by Artist/Year - Album - Disc + Группировать по артисту/году - альбому - диску + + + Group by Genre/Album artist/Album + Группировать по жанру/артисту альбома/альбому + + + Group by Genre/Artist/Album + Группировать по жанру/артисту/альбому + + + Group by Album Artist + Группировать по артисту альбома + + + Group by Artist + Группировать по артисту + + + Group by Album + Группировать по альбомам + + + Group by Genre/Album + Группировать по жанру/альбому + + + Advanced grouping... + Расширенная группировка… + + + Grouping Name + Имя группы + + + Grouping name: + Имя группы: + + + + CollectionModel + + Various artists + Различные артисты + + + Loading... + Загрузка… + + + Unknown + Неизвестный + + + + CollectionSettingsPage + + Collection + Фонотека + + + These folders will be scanned for music to make up your collection + В этих папках происходит поиск музыки для создания вашей фонотеки + + + Add new folder... + Добавить новую папку… + + + Remove folder + Удалить папку + + + Automatic updating + Автоматическое обновление + + + Update the collection when Strawberry starts + Обновлять фонотеку при запуске Strawberry + + + Monitor the collection for changes + Следить за изменениями фонотеки + + + Song fingerprinting and tracking + Отпечаток и отслеживание песни + + + Mark disappeared songs unavailable + Помечать пропавшие песни недоступными + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + Выполнить анализ композиции EBU R 128 (требуется для нормализации громкости EBU R 128) + + + Expire unavailable songs after + Забывать недоступные песни после + + + days + дн. + + + Preferred album art filenames (comma separated) + Приоритетные имена файлов обложек (через запятую) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + При поиске обложек альбомов Strawberry будет искать файлы изображений с одним из этих слов. +При отсутствии совпадений будет использовано наибольшее изображение в каталоге. + + + Display options + Настройки вида + + + Automatically open single categories in the collection tree + Автоматически раскрывать одиночные категории в дереве фонотеки + + + Show dividers + Показывать разделители + + + Show album cover art in collection + Показывать обложку альбома в фонотеке + + + Use various artists for compilation albums + Использовать разных артистов для альбомов-компиляций + + + Skip leading articles ("the", "a", "an") when sorting artist names + Пропускать начальные артикли («the», «a», «an») при сортировке имён артистов + + + Album cover pixmap cache + Кэш обложек альбомов в формате Pixmap + + + Size + Размер + + + Enable Disk Cache + Включить дисковый кэш + + + Disk Cache Size + Размер кэша диска + + + Current disk cache in use: + Используемый сейчас дисковый кэш: + + + Clear Disk Cache + Очистить дисковый кэш + + + Song playcounts and ratings + Счётчики прослушивания и оценки песни + + + Save playcounts to song tags when possible + Записывать счётчики прослушивания и оценки в теги песен по возможности + + + Save ratings to song tags when possible + Записывать оценки в теги песен по возможности + + + Overwrite database playcount when songs are re-read from disk + Обновлять счётчик прослушивания базы данных при повторном чтении песен с диска + + + Overwrite database rating when songs are re-read from disk + Перезаписывать оценки в базе данных при повторном чтении песен с диска + + + Save playcounts and ratings to files now + Записать счётчики прослушивания и оценки в файлы сейчас + + + Enable delete files in the right click context menu + Включить удаление файлов в контекстное меню правого щелчка + + + Add directory... + Добавить каталог… + + + Write all playcounts and ratings to files + Записать счётчики прослушивания и оценки в файлы + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Вы действительно хотите записать счётчики прослушивания и оценки во все файлы песен вашей фонотеки? + + + + CollectionView + + Your collection is empty! + Ваша фонотека пуста! + + + Click here to add some music + Нажмите сюда для добавления музыки + + + Append to current playlist + Добавить в текущий плейлист + + + Replace current playlist + Заменить текущий плейлист + + + Open in new playlist + Открыть в новом плейлисте + + + Queue track + Добавить трек в очередь + + + Queue to play next + Добавить в начало очереди + + + Search for this + Поиск этого + + + Organize files... + Организовать файлы… + + + Copy to device... + Копировать на устройство… + + + Delete from disk... + Удалить с диска… + + + Edit track information... + Править сведения о треке… + + + Edit tracks information... + Править сведения о треках… + + + Show in file browser... + Показать в проводнике… + + + Rescan song(s) + Пересканировать песню(и) + + + Show in various artists + Показывать в «Различных артистах» + + + Don't show in various artists + Не показывать в «Различных артистах» + + + There are other songs in this album + В альбоме присутствуют другие композиции + + + Would you like to move the other songs on this album to Various Artists as well? + Хотите ли вы переместить и другие песни из этого альбома в «Различные артисты»? + + + Error + Ошибка + + + None of the selected songs were suitable for copying to a device + Ни одна из выбранных песен не подходит для копирования на устройство + + + + CollectionViewContainer + + Form + Форма + + + + CollectionWatcher + + Updating collection + Обновляется фонотека + + + Updating %1 + Идёт обновление %1 + + + + Console + + Console + Консоль + + + Run + Выполнить + + + + ContextSettingsPage + + Context + Эфир + + + Custom text settings + Собственные настройки текста + + + MenuPopupToolButton + MenuPopupToolButton + + + Title + Название + + + Summary + Сводка + + + Enable Items + Задействовать элементы + + + Album + Альбом + + + Technical Data + Технические данные + + + Song Lyrics + Тексты песен + + + Automatically search for album cover + Автоматический поиск обложки альбома + + + Automatically search for song lyrics + Автоматический поиск текста песни + + + Font for headline + Шрифт заголовка + + + Font + Шрифт + + + Font size + Размер шрифта + + + pt + пт + + + Preview + Предпросмотр + + + Font for data and lyrics + Шрифт данных и текста песни + + + Add song artist tag + Добавить тег «Артист» + + + Add song album tag + Добавить тег «Альбом» + + + Add song title tag + Добавить тег «Название» + + + Add song albumartist tag + Добавить тег «Артист альбома» + + + Add song year tag + Добавить тег «Год» + + + Add song composer tag + Добавить тег «Композитор» + + + Add song performer tag + Добавить тег «Исполнитель» + + + Add song grouping tag + Добавить тег «Группа» + + + Add song disc tag + Добавить тег «Диск» + + + Add song track tag + Добавить тег «Трек» песни + + + Add song genre tag + Добавить тег «Жанр» + + + Add song length tag + Добавить тег «Длина» + + + Add song play count + Добавить число прослушиваний песни + + + Add song skip count + Добавить число пропусков песни + + + Add a new line if supported by the notification type + Добавить новую строку, если поддерживается типом уведомления + + + %filename% + %filename% + + + Add song filename + Добавить имя файла для песни + + + %url% + %url% + + + Add song URL + Добавить адрес песни + + + %rating% + %rating% + + + Add song rating + Оценить песню + + + %originalyear% + %originalyear% + + + Add song original year tag + Добавить тег «Год оригинала» + + + + ContextView + + Filetype + Тип файла + + + Length + Длина + + + Samplerate + Частота + + + Bit depth + Разрядность + + + Bitrate + Битрейт + + + EBU R 128 Integrated Loudness + Встроенная громкость EBU R 128 + + + EBU R 128 Loudness Range + Диапазон громкости EBU R 128 + + + Show album cover + Показать обложку альбома + + + Show song technical data + Показать технические данные песни + + + Show song lyrics + Показать текст песни + + + Automatically search for song lyrics + Автоматический поиск текста песни + + + No song playing + Ничего не играет + + + %1 song + %1 песня + + + %1 songs + %1 композиций + + + %1 artist + %1 артист + + + %1 artists + %1 артистов + + + %1 album + %1 альбом + + + %1 albums + %1 альбомов + + + kbps + кбит/с + + + + CoverFromURLDialog + + Load cover from URL + Загрузка обложки из адреса + + + Enter a URL to download a cover from the Internet: + Введите адрес для скачивания обложки из Интернета: + + + Fetching cover error + Ошибка получения обложки + + + The site you requested does not exist! + Запрошенный сайт не существует! + + + The site you requested is not an image! + Запрошенная ссылка не является изображением! + + + + CoverManager + + Cover Manager + Менеджер обложек + + + Enter search terms here + Введите критерии поиска + + + MenuPopupToolButton + MenuPopupToolButton + + + View + Просмотр + + + Total albums: + Всего альбомов: + + + Without cover: + Без обложек: + + + 0 + 0 + + + Fetch Missing Covers + Получить недостающие обложки + + + Export Covers + Экспорт обложек + + + Fetch automatically + Получать автоматически + + + Load + Загрузить + + + Add to playlist + Добавить в плейлист + + + + CoverSearchStatisticsDialog + + Fetch completed + Получение завершено + + + Got %1 covers out of %2 (%3 failed) + Получено %1 обложек из %2 (%3 загрузить не удалось) + + + Covers from %1 + Обложки из %1 + + + Total network requests made + Всего выполнено сетевых запросов + + + Average image size + Средний размер изображений + + + Total bytes transferred + Всего передано байт + + + + CoversSettingsPage + + Covers + Обложки + + + Cover providers + Поставщики обложек + + + Choose the providers you want to use when searching for covers. + Выберите поставщиков для поиска обложек. + + + Move up + Вверх + + + Move down + Вниз + + + Authentication + Аутентификация + + + Login + Вход + + + Album cover types + Типы обложек альбомов + + + Saving album covers + Сохранение обложек альбомов + + + Save album covers in album directory + Сохранять обложки альбомов в каталоге альбомов + + + Save album covers in cache directory + Сохранять обложки альбомов в каталоге кэша + + + Save album covers as embedded cover + Сохранять обложки альбомов в качестве вложенных + + + Filename: + Имя файла: + + + Pattern + Шаблон + + + Random + Случайное + + + Overwrite existing file + Перезаписать существующий файл + + + Lowercase filename + Строчные имена файлов + + + Replace spaces with dashes + Заменить пробелы на тире + + + Use Tidal settings to authenticate. + Использовать настройки Tidal для аутентификации. + + + Use Spotify settings to authenticate. + Использовать настройки Spotify для аутентификации. + + + Use Qobuz settings to authenticate. + Использовать настройки Qobuz для аутентификации. + + + %1 needs authentication. + %1 требует аутентификации. + + + %1 does not need authentication. + %1 не требует аутентификации. + + + No provider selected. + Поставщик не выбран. + + + Authentication failed + Ошибка аутентификации + + + Manually unset (%1) + Вручную не задана (%1) + + + Set through album cover search (%1) + Задать с помощью поиска обложек альбомов (%1) + + + Automatically picked up from album directory (%1) + Автовыбранная из каталога с альбомом (%1) + + + Embedded album cover art (%1) + Вложенная обложка альбома (%1) + + + + CueParser + + Saving CUE files is not supported. + Сохранение файлов CUE не поддерживается. + + + + Database + + Unable to execute SQL query: %1 + Невозможно выполнить запрос SQL: %1 + + + Failed SQL query: %1 + Ошибка запроса SQL: %1 + + + Integrity check + Проверка целостности + + + Database corruption detected. + Обнаружено повреждение базы данных. + + + Backing up database + Резервное копирование базы данных + + + + DeleteConfirmationDialog + + Delete files + Удалить файлы + + + The following files will be deleted from disk: + Следующие файлы будут удалены с диска: + + + Are you sure you want to continue? + Уверены, что хотите продолжить? + + + + DeleteFiles + + Deleting files + Удаление файлов + + + + DeviceItemDelegate + + Updating %1%... + Идёт обновление %1%… + + + Not connected + Не подключено + + + Not mounted - double click to mount + Не подключено — щёлкните дважды для подключения + + + Double click to open + Щёлкните дважды для открытия + + + %1 song%2 + %1 песня%2 + + + + DeviceManager + + Connect device + Подключить устройство + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Это устройство подключено впервые. Strawberry выполнит поиск музыкальных файлов на устройстве. Это может занять некоторое время. + + + This device will not work properly + Это устройство не будет работать правильно + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Это устройство MTP, а вы собрали Strawberry без поддержки libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + При продолжении, устройство будет работать медленно и скопированные песни не будут работать. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Это iPod, а вы собрали Strawberry без поддержки libgpod. + + + This type of device is not supported: %1 + Не поддерживаемый тип устройства: %1 + + + + DeviceProperties + + Device Properties + Свойства носителя + + + Information + Информация + + + Name + Имя + + + Icon + Значок + + + Hardware information + Сведения об оборудовании + + + Hardware information is only available while the device is connected. + Сведения об оборудовании доступны только при подключении устройства. + + + File formats + Форматы файлов + + + Supported formats + Поддерживаемые форматы + + + This device supports the following file formats: + Это устройство поддерживает следующие форматы: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry может автоматически конвертировать музыку при копировании на это устройство в формат, который оно поддерживает. + + + Do not convert any music + Не конвертировать какую-либо музыку + + + Convert any music that the device can't play + Конвертировать всю музыку, которую не может проигрывать устройство + + + Convert all music + Конвертировать всю музыку + + + Preferred format + Предпочитаемый формат + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Устройство должно быть подключено и открыто перед тем, как Strawberry определит, какой формат оно поддерживает. + + + Open device + Открыть устройство + + + Querying device... + Производится опрос носителя… + + + Model + Модель + + + Manufacturer + Производитель + + + + DeviceView + + Safely remove device + Безопасно извлечь устройство + + + Forget device + Забыть устройство + + + Device properties... + Свойства носителя… + + + Append to current playlist + Добавить в текущий плейлист + + + Replace current playlist + Заменить текущий плейлист + + + Open in new playlist + Открыть в новом плейлисте + + + Copy to collection... + Копировать в фонотеку… + + + Delete from device... + Удалить с носителя… + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Команда «Забыть устройство» удалит его из этого списка и заставит Strawberry пересканировать все песни на нём при следующем подключении. + + + Delete files + Удалить файлы + + + These files will be deleted from the device, are you sure you want to continue? + Эти файлы будут удалены с устройства. Вы действительно хотите продолжить? + + + + DeviceViewContainer + + Form + Форма + + + + DynamicPlaylistControls + + Dynamic mode is on + Динамический режим включён + + + New tracks will be added automatically. + Новые треки добавляются автоматически. + + + Expand + Расширить + + + Repopulate + Пересоздать + + + Turn off + Отключить + + + + EditTagDialog + + Edit track information + Правка сведений о треке + + + Summary + Сводка + + + Date created + Дата создания + + + Art Automatic + Обложка автоматическая + + + Date modified + Дата изменения + + + Art Embedded + Вложенная обложка + + + Last played + A playlist's tag. + Последний раз + + + File type + Тип файла + + + Length + Длина + + + Play count + Разы + + + Bit depth + Разрядность + + + EBU R 128 integrated loudness + Встроенная громкость EBU R 128 + + + Bit rate + Битрейт + + + Skip count + Пропуски + + + Sample rate + Частота + + + Path + Путь + + + Filename + Имя файла + + + Art Unset + Обложка не задана + + + File size + Размер файла + + + Art Manual + Обложка ручная + + + EBU R 128 loudness range + Диапазон громкости EBU R 128 + + + Reset play counts + Сбросить счётчики прослушивания + + + Tags + Теги + + + MenuPopupToolButton + MenuPopupToolButton + + + Change art + Сменить обложку + + + Embedded cover + Вложенная обложка + + + Disc + Диск + + + Grouping + Группа + + + Album artist + Артист альбома + + + Album + Альбом + + + Year + Год + + + Title + Название + + + Artist + Артист + + + Composer + Композитор + + + Complete tags automatically + Автозаполнение тегов + + + Genre + Жанр + + + Comment + Комментарий + + + Performer + Исполнитель + + + Compilation + Сборник + + + Track + Трек + + + Rating + Оценка + + + Lyrics + Текст песни + + + Complete lyrics automatically + Заполнять тексты песен автоматически + + + Previous + Предыдущий + + + Next + Следующий + + + Saving tracks + Сохранение треков + + + Loading tracks + Загрузка композиций + + + %1 songs selected. + %1 песен выбрано. + + + kbps + кбит/с + + + Unknown + Неизвестный + + + Yes + Да + + + No + Нет + + + None + Нет + + + Cover is unset. + Обложка не задана. + + + Cover from embedded image. + Обложка из вложенного изображения. + + + Cover from %1 + Обложка из %1 + + + Cover art not set + Обложка не задана + + + Album cover editing is only available for collection songs. + Правка обложки альбома доступна только для песен из фонотеки. + + + Cover changed: Will be cleared when saved. + Смена обложки: будет очищена при сохранении. + + + Cover changed: Will be unset when saved. + Смена обложки: будет снята при сохранении. + + + Cover changed: Will be deleted when saved. + Смена обложки: будет удалена при сохранении. + + + Cover changed: Will set new when saved. + Смена обложки: будет обновлена при сохранении. + + + Never + Никогда + + + Reset song play statistics + Сбросить статистику воспроизведения песни + + + Are you sure you want to reset this song's play statistics? + Уверены, что хотите сбросить статистику воспроизведения этой песни? + + + loading... + загружается… + + + Not found. + Не найдено. + + + Could not write metadata to %1 + Не удалось записать метаданные в %1 + + + Could not write metadata to %1: %2 + Не удалось записать метаданные в %1: %2 + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Эквалайзер + + + Preset: + Предустановка: + + + Save preset + Сохранить предустановку + + + Delete preset + Удалить предустановку + + + Enable equalizer + Включить эквалайзер + + + Enable stereo balancer + Включить баланс стерео + + + Left + Левый канал + + + Balance + Баланс + + + Right + Правый канал + + + Pre-amp + Предусиление + + + Custom + Пользовательская + + + Classical + Классика + + + Club + Клуб + + + Dance + Танец + + + Full Bass + Бас + + + Full Treble + Высокие частоты + + + Full Bass + Treble + Бас + высокие частоты + + + Laptop/Headphones + Наушники/ноутбук + + + Large Hall + Большой зал + + + Live + Лайв + + + Party + Вечеринка + + + Pop + Поп + + + Reggae + Регги + + + Rock + Рок + + + Soft + Лёгкая + + + Ska + Ска + + + Soft Rock + Софт-рок + + + Techno + Техно + + + Zero + Стандартная + + + Name + Имя + + + Are you sure you want to delete the "%1" preset? + Вы действительно хотите удалить предустановку «%1»? + + + + EqualizerSlider + + Equalizer + Эквалайзер + + + %1 dB + %1 дБ + + + + ErrorDialog + + Strawberry Error + Ошибка Strawberry + + + + FancyTabWidget + + Large sidebar + Широкая боковая панель + + + Icons sidebar + Боковая панель значков + + + Small sidebar + Узкая боковая панель + + + Plain sidebar + Обычная боковая панель + + + Tabs on top + Вкладки сверху + + + Icons on top + Значки сверху + + + + FileTypeItemDelegate + + Unknown + Неизвестный + + + + FileView + + Form + Форма + + + + FileViewList + + Append to current playlist + Добавить в текущий плейлист + + + Replace current playlist + Заменить текущий плейлист + + + Open in new playlist + Открыть в новом плейлисте + + + Copy to collection... + Копировать в фонотеку… + + + Move to collection... + Перенести в фонотеку… + + + Copy to device... + Копировать на устройство… + + + Delete from disk... + Удалить с диска… + + + Edit track information... + Править сведения о треке… + + + Show in file browser... + Показать в проводнике… + + + + FreeSpaceBar + + Available + Доступно + + + New songs + Новые композиции + + + Exceeded by + Превышено + + + Used + Использовано + + + + GPodDevice + + Could not copy %1 to %2: %3 + Не удалось скопировать %1 в %2: %3 + + + Writing database failed: %1 + Запись базы данных не удалась: %1 + + + Writing database failed. + Запись базы данных не удалась. + + + + GPodLoader + + Loading iPod database + Загружается база данных iPod + + + An error occurred loading the iTunes database + Произошла ошибка при загрузке базы данных iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Аутентификация Genius + + + Please open this URL in your browser + Пожалуйста, откройте эту ссылку в вашем браузере + + + Redirect missing token code! + В перенаправлении отсутствует код токена! + + + Received invalid reply from web browser. + Получен неверный ответ от веб-браузера. + + + Redirect from Genius is missing query items code or state. + В перенаправлении с Genius отсутствует код или состояние элементов запроса. + + + + GioLister + + Mount point + Точка монтирования + + + Device + Устройство + + + URI + Ссылка + + + + GlobalShortcutGrabber + + Press a key + Нажмите клавиши + + + Press a key combination to use for %1... + Нажмите сочетание клавиш для: «%1»… + + + + GlobalShortcutsManager + + Play + Играть + + + Pause + Пауза + + + Play/Pause + Играть/пауза + + + Stop + Стоп + + + Stop playing after current track + Остановить после текущего трека + + + Next track + Следующий трек + + + Previous track + Предыдущий трек + + + Restart or previous track + Перезапустить или предыдущий трек + + + Increase volume + Увеличить громкость + + + Decrease volume + Уменьшить громкость + + + Mute + Приглушить звук + + + Seek forward + Перемотка вперёд + + + Seek backward + Перемотка назад + + + Show/Hide + Показать/скрыть + + + Show OSD + Показать экранное меню + + + Toggle Pretty OSD + Показать/скрыть модное экранное меню + + + Change shuffle mode + Сменить режим перемешивания + + + Change repeat mode + Сменить режим повторения + + + Enable/disable scrobbling + Включить/отключить скробблинг + + + Love + В любимые + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Глобальные клавиши + + + Use Gnome (GSD) shortcuts when available + Использовать сочетания клавиш Gnome (GSD) по возможности + + + Open... + Открыть… + + + Use MATE shortcuts when available + Использовать сочетания клавиш MATE по возможности + + + Use KDE (KGlobalAccel) shortcuts when available + Использовать сочетания клавиш KDE (KGlobalAccel) по возможности + + + Use X11 shortcuts when available + Использовать сочетания клавиш X11 по возможности + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Вы должны запустить «Параметры системы» и позволить Clemetine «<span style=" font-style:italic;">управлять вашим компьютером</span>» для использования глобальных горячих клавиш в Strawberry. + + + Action + Category label + Действие + + + Shortcut + Сочетание клавиш + + + Shortcut for %1 + Сочетание клавиш «%1» + + + &None + &Нет + + + &Default + &По умолчанию + + + &Custom + &Другое + + + Change shortcut... + Изменить сочетание… + + + The "%1" command could not be started. + Команда «%1» не может быть выполнена. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Использование сочетаний клавиш X11 на %1 не рекомендуется и может привести к тому, что клавиатура перестанет отвечать! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Горячие клавиши на %1 обычно работают через MPRIS и KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Горячие клавиши на %1 обычно работают через Gnome Settings Daemon и должны быть настроены в gnome-settings-daemon. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Горячие клавиши на %1 обычно работают через Gnome Settings Daemon и должны быть настроены в cinnamon-settings-daemon. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Горячие клавиши на %1 обычно работают через MATE Settings Daemon и должны быть настроены в нём. + + + + GroupByDialog + + Collection advanced grouping + Расширенная группировка фонотеки + + + You can change the way the songs in the collection are organized. + Вы можете изменить способ организации композиций в фонотеке. + + + Group Collection by... + Группировать фонотеку по… + + + First level + Первый уровень + + + None + Нет + + + Artist + Артист + + + Album artist + Артист альбома + + + Album + Альбом + + + Album - Disc + Альбом - Диск + + + Disc + Диск + + + Format + Формат + + + Genre + Жанр + + + Year + Год + + + Year - Album + Год - Альбом + + + Year - Album - Disc + Год - Альбом - Диск + + + Original year + Год оригинала + + + Original year - Album + Год оригинала - Альбом + + + Composer + Композитор + + + Performer + Исполнитель + + + Grouping + Группа + + + File type + Тип файла + + + Sample rate + Частота + + + Bit depth + Разрядность + + + Bitrate + Битрейт + + + Second level + Второй уровень + + + Third level + Третий уровень + + + Separate albums by grouping tag + Разделять альбому по тегу группировки + + + + GstEngine + + Buffering + Буферизация + + + + LastFMImport + + Missing username, please login to last.fm first! + Отсутствует имя пользователя, пожалуйста, сперва авторизируйтесь в Last.fm! + + + + LastFMImportDialog + + Import data from last.fm + Импорт данных из Last.fm + + + Choose data to import from last.fm + Выберите данные для импорта из Last.fm + + + Last played + Последний раз + + + Play counts + Счётчики прослушивания + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Предупреждение: Счётчики прослушиваний и последнее проигрывание с Last.fm полностью заменят те же данные в соответствующих песнях. Счётчики прослушиваний заменят данные, основанные на артисте и названии песни для тех же альбомов! Пожалуйста, сделайте резервную копию вашей базы данных перед началом работы. + + + Go! + Пуск! + + + Close + Закрыть + + + Cancel + Отмена + + + Receiving initial data from last.fm... + Получение исходных данных от Last.fm… + + + Receiving playcount for %1 songs and last played for %2 songs. + Получение счётчиков прослушивания для %1 песен и последнее прослушивание для %2 песен. + + + Receiving last played for %1 songs. + Получение последнего прослушивание для %1 песен. + + + Receiving playcounts for %1 songs. + Получение счётчиков прослушивания для %1 песен. + + + Playcounts for %1 songs and last played for %2 songs received. + Получены счётчики прослушивания для %1 песен и последнее прослушивание для %2 песен. + + + Last played for %1 songs received. + Последнее прослушивание для %1 песен получено. + + + Playcounts for %1 songs received. + Получены счётчики прослушивания для %1 песен. + + + + LastPlayedItemDelegate + + Never + Никогда + + + + Library + + Least favourite tracks + Нелюбимые треки + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Аутентификация ListenBrainz + + + Please open this URL in your browser + Пожалуйста, откройте эту ссылку в вашем браузере + + + Redirect missing token code! + В перенаправлении отсутствует код токена! + + + Received invalid reply from web browser. + Получен неверный ответ от веб-браузера. + + + Unable to scrobble %1 - %2 because of error: %3 + Не удаётся заскробблить %1 — %2 из-за ошибки: %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + Отсутствует идентификатор записи MusicBrainz для %1 %2 %3 + + + ListenBrainz error: %1 + Ошибка ListenBrainz: %1 + + + + LoginStateWidget + + Form + Форма + + + You are not signed in. + Вход не выполнен. + + + Sign out + Выйти + + + Signing in... + Выполняется вход… + + + You are signed in. + Вы вошли в систему. + + + You are signed in as %1. + Вы вошли в систему как %1. + + + Expires on %1 + Истекает %1 + + + + LyricsSettingsPage + + Lyrics + Текст песни + + + Lyrics providers + Поставщики текста песен + + + Choose the providers you want to use when searching for lyrics. + Выберите поставщиков для поиска текста песен. + + + Move up + Вверх + + + Move down + Вниз + + + Authentication + Аутентификация + + + Login + Вход + + + No provider selected. + Поставщик не выбран. + + + Authentication failed + Ошибка аутентификации + + + + MainWindow + + Strawberry Music Player + Музыкальный проигрыватель Strawberry + + + MenuPopupToolButton + MenuPopupToolButton + + + &Music + &Музыка + + + P&laylist + &Плейлист + + + Help + &Справка + + + &Tools + С&ервис + + + Previous track + Предыдущий трек + + + F5 + F5 + + + &Play + &Играть + + + F6 + F6 + + + &Stop + &Стоп + + + F7 + F7 + + + &Next track + С&ледующий трек + + + F8 + F8 + + + &Quit + &Выход + + + Ctrl+Q + Ctrl+Q + + + Stop after this track + Стоп после этого трека + + + Ctrl+Alt+V + Ctrl+Alt+V + + + Love + В любимые + + + &Clear playlist + &Очистить плейлист + + + Clear playlist + Очистить плейлист + + + Ctrl+K + Ctrl+K + + + Edit track information... + Править сведения о треке… + + + Ctrl+E + Ctrl+E + + + Renumber tracks in this order... + Перенумеровать треки в данном порядке… + + + Set value for all selected tracks... + Установить значение для всех выделенных треков… + + + Edit tag... + Править тег… + + + &Settings... + &Настройки… + + + Ctrl+P + Ctrl+P + + + &About Strawberry + &О Strawberry + + + F1 + F1 + + + S&huffle playlist + Пере&мешать плейлист + + + Ctrl+H + Ctrl+H + + + &Add file... + &Добавить файл… + + + Ctrl+Shift+A + Ctrl+Shift+A + + + &Open file... + &Открыть файл… + + + Open audio &CD... + Открыть &аудио-CD… + + + &Cover Manager + &Менеджер обложек + + + C&onsole + &Консоль + + + &Shuffle mode + &Режим перемешивания + + + &Repeat mode + Ре&жим повторения + + + Remove from playlist + Убрать из плейлиста + + + &Equalizer + &Эквалайзер + + + &Transcode Music + &Конвертер музыки + + + Add &folder... + Добавить &папку… + + + &Jump to the currently playing track + Перейти к &активному треку + + + Ctrl+J + Ctrl+J + + + &New playlist + &Новый плейлист + + + Ctrl+N + Ctrl+N + + + Save &playlist... + &Сохранить плейлист… + + + Ctrl+S + Ctrl+S + + + &Load playlist... + &Загрузить плейлист… + + + Ctrl+Shift+O + Ctrl+Shift+O + + + &Save all playlists... + Сохранить все плейлист&ы… + + + Go to next playlist tab + Перейти к следующему плейлисту + + + Go to previous playlist tab + Перейти к предыдущему плейлисту + + + &Update changed collection folders + &Обновить изменения папок фонотеки + + + About &Qt + О &фреймворке Qt + + + &Mute + &Приглушить звук + + + Ctrl+M + Ctrl+M + + + &Do a full collection rescan + &Полное пересканирование фонотеки + + + Stop collection scan + Остановить сканирование фонотеки + + + Complete tags automatically... + Автозаполнение тегов… + + + Ctrl+T + Ctrl+T + + + Toggle scrobbling + Вкл./откл. скробблинг + + + Remove &duplicates from playlist + Убрать по&вторы из плейлиста + + + Remove &unavailable tracks from playlist + Уб&рать недоступные треки + + + Add file(s) to transcoder + Конвертировать файлы + + + Add file to transcoder + Добавить в конвертер + + + Add stream... + Добавить поток… + + + Show sidebar + Показывать боковую панель + + + Import data from last.fm... + Импорт данных из Last.fm… + + + All Files (*) + Все файлы (*) + + + Context + Эфир + + + Collection + Фонотека + + + Queue + Очередь + + + Playlists + Списки + + + Smart playlists + Умные списки + + + Files + Файлы + + + Radios + Радио + + + Devices + Носители + + + Subsonic + Subsonic + + + Tidal + Tidal + + + Spotify + Spotify + + + Qobuz + Qobuz + + + Show all songs + Показывать все композиции + + + Show only duplicates + Показывать только повторяющиеся + + + Show only untagged + Показывать только без тегов + + + Configure collection... + Настроить фонотеку… + + + Play + Играть + + + Toggle queue status + Переключить состояние очереди + + + Queue selected tracks to play next + Очередь выбранных треков для последующего воспроизведения + + + Toggle skip status + Переключить статус пропуска + + + Rescan song(s)... + Пересканировать песни… + + + Copy URL(s)... + Копировать адрес(а)… + + + Show in collection... + Показать в фонотеке… + + + Show in file browser... + Показать в проводнике… + + + Organize files... + Организовать файлы… + + + Copy to collection... + Копировать в фонотеку… + + + Move to collection... + Перенести в фонотеку… + + + Copy to device... + Копировать на устройство… + + + Delete from disk... + Удалить с диска… + + + Check for updates... + Проверить обновления… + + + Strawberry running under Rosetta + Strawberry запущен под управлением Rosetta + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + Вы запустили Strawberry под управлением Rosetta. Работа проигрывателя в Rosetta не поддерживается и вызывает проблемы. Вам следует скачать Strawberry для нужной архитектуры ЦП из %1 + + + Sponsoring Strawberry + Поддержать Strawberry + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry — это бесплатное и открытое программное обеспечение. Если вам приглянулось оно, пожалуйста, рассмотрите возможность пожертвования. Для подробностей о спонсорстве посетите наш сайт %1 + + + Pause + Пауза + + + Dequeue track + Убрать трек из очереди + + + Dequeue selected tracks + Убрать выбранные треки из очереди + + + Queue track + Добавить трек в очередь + + + Queue selected tracks + Выбранные треки в очередь + + + Queue to play next + Добавить в начало очереди + + + Unskip track + Не пропускать трек + + + Unskip selected tracks + Не пропускать выбранные треки + + + Skip track + Пропустить трек + + + Skip selected tracks + Пропустить выбранные треки + + + Set %1 to "%2"... + Установить %1 в «%2»… + + + Edit tag "%1"... + Править тег «%1»… + + + Add to another playlist + Добавить в другой плейлист + + + New playlist + Новый плейлист + + + Add file + Добавить файл + + + Music + Музыка + + + Add folder + Добавление папки + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Плейлист содержит %1 песен, что слишком много для отмены. Уверены, что хотите очистить плейлист? + + + Error + Ошибка + + + None of the selected songs were suitable for copying to a device + Ни одна из выбранных песен не подходит для копирования на устройство + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Обновлённая версия Strawberry требует повторного сканирования фонотеки из-за следующих новых возможностей: + + + Would you like to run a full rescan right now? + Хотите выполнить полное пересканирование сейчас? + + + Collection rescan notice + Уведомление о пересканировании фонотеки + + + + MessageDialog + + Message Dialog + Диалог сообщения + + + Do not show this message again. + Не показывать это сообщение снова. + + + + MimeData + + Playlist + Плейлист + + + + MoodbarProxyStyle + + Show moodbar + Показывать индикатор тона + + + Moodbar style + Стиль индикатора тона + + + + MoodbarSettingsPage + + Moodbar + Индикатор тона + + + Show a moodbar in the track progress bar + Показывать индикатор тона в полосе прогресса + + + Moodbar style + Стиль индикатора тона + + + Save the .mood files directly in the songs folders + Сохранять файлы тона .mood в папках песен + + + Enabled + Включено + + + + MtpConnection + + Invalid MTP device: %1 + Недопустимое устройство MTP: %1 + + + Could not open MTP device. + Не удалось открыть устройство MTP. + + + MTP error: %1 + Ошибка MTP: %1 + + + MTP device not found. + Устройство MTP не найдено. + + + + MtpLoader + + Loading MTP device + Загрузка устройства MTP + + + Error connecting MTP device %1 + Ошибка подключения устройства MTP %1 + + + Error connecting MTP device %1: %2 + Ошибка подключения устройства MTP %1: %2 + + + + NetworkProxySettingsPage + + Network Proxy + Прокси-сервер + + + &Use the system proxy settings + &Использовать системные настройки прокси + + + Direct internet connection + Прямое интернет-подключение + + + &Manual proxy configuration + &Ручная настройка прокси + + + HTTP proxy + HTTP-прокси + + + SOCKS proxy + Прокси SOCKS + + + Port + Порт + + + Use authentication + Использовать аутентификацию + + + Username + Имя пользователя + + + Password + Пароль + + + Use proxy settings for streaming + Использовать настройки прокси для потокового прослушивания + + + + NotificationsSettingsPage + + Notifications + Уведомления + + + Strawberry can show a message when the track changes. + Strawberry может показывать уведомление при смене трека. + + + Notification type + Тип уведомления + + + Disabled + Refers to a disabled notification type in Notification settings. + Отключено + + + Show a &native desktop notification + Показыва&ть встроенные уведомления рабочего стола + + + Show a pretty OSD + Показывать модное экранное меню + + + Show a popup fro&m the system tray + &Показывать всплывающее окно из трея + + + General settings + Общие настройки + + + Popup duration + Длительность отображения + + + seconds + секунд + + + Disable duration + Отключить длительность + + + Show a notification when I change the volume + Уведомлять о смене громкости + + + Show a notification when I change the repeat/shuffle mode + Уведомлять о смене режимов повторения/перемешивания + + + Show a notification when I pause playback + Уведомлять о приостановке проигрывания + + + Show a notification when I resume playback + Уведомлять о возобновлении воспроизведения + + + Include album art in the notification + Показывать обложку альбома в уведомлении + + + Custom message settings + Настройки сообщения + + + Use a custom message for notifications + Использовать собственное сообщение для уведомлений + + + Preview + Предпросмотр + + + MenuPopupToolButton + MenuPopupToolButton + + + Summary + Сводка + + + Body + Содержимое + + + Pretty OSD options + Параметры модного экранного меню + + + Background color + Цвет фона + + + Text options + Свойства текста + + + Choose font... + Выбрать шрифт… + + + Choose color... + Выбрать цвет… + + + Background opacity + Прозрачность фона + + + Basic Blue + Стандартный голубой + + + Strawberry Red + Клубничный красный + + + Custom... + Пользовательский… + + + Enable fading + Включить исчезание + + + Add song artist tag + Добавить тег «Артист» + + + Add song album tag + Добавить тег «Альбом» + + + Add song title tag + Добавить тег «Название» + + + Add song albumartist tag + Добавить тег «Артист альбома» + + + Add song year tag + Добавить тег «Год» + + + Add song composer tag + Добавить тег «Композитор» + + + Add song performer tag + Добавить тег «Исполнитель» + + + Add song grouping tag + Добавить тег «Группа» + + + Add song disc tag + Добавить тег «Диск» + + + Add song track tag + Добавить тег «Трек» песни + + + Add song genre tag + Добавить тег «Жанр» + + + Add song length tag + Добавить тег «Длина» + + + Add song play count + Добавить число прослушиваний песни + + + Add song skip count + Добавить число пропусков песни + + + Add song rating + Оценить песню + + + Add a new line if supported by the notification type + Добавить новую строку, если поддерживается типом уведомления + + + %filename% + %filename% + + + Add song filename + Добавить имя файла для песни + + + %url% + %url% + + + Add song URL + Добавить адрес песни + + + %originalyear% + %originalyear% + + + Add song original year tag + Добавить тег «Год оригинала» + + + OSD Preview + Предпросмотр экранного меню + + + Drag to reposition + Перетащите для размещения + + + + OSDBase + + disc %1 + диск %1 + + + track %1 + трек %1 + + + Paused + Приостановлен + + + Stopped + Остановлено + + + Stop playing after track: %1 + Остановить воспроизведение после трека: %1 + + + On + Вкл. + + + Off + Откл. + + + Playlist finished + Плейлист закончился + + + Volume %1% + Громкость %1% + + + Don't shuffle + Не перемешивать + + + Shuffle all + Перемешать все + + + Shuffle tracks in this album + Перемешать треки в этом альбоме + + + Shuffle albums + Перемешать альбомы + + + Don't repeat + Не повторять + + + Repeat track + Повторять трек + + + Repeat album + Повторять альбом + + + Repeat playlist + Повторять плейлист + + + Stop after every track + Стоп после каждого трека + + + Intro tracks + Вступительные треки + + + + Organize + + Organizing files + Организация файлов + + + + OrganizeDialog + + Organize Files + Организовать файлы + + + Destination + Назначение + + + After copying... + После копирования… + + + Keep the original files + Сохранять исходные файлы + + + Delete the original files + Удалять исходные файлы + + + Naming options + Параметры именования + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Токены начинаются со знака %, например: %artist %album %title </p> + +<p>Если вы окружили часть текста фигурными скобками, то эта часть текста не будет видна при пустом токене</p> + + + Insert... + Вставить… + + + Remove problematic characters from filenames + Удалить проблемные символы из имён файлов + + + Restrict to characters allowed on FAT filesystems + Ограничить разрешёнными символами в файловых системах FAT + + + Restrict characters to ASCII + Ограничить символы до ASCII + + + Allow extended ASCII characters + Разрешить расширенные символы ASCII + + + Replace spaces with underscores + Заменять пробелы на нижнее подчёркивание + + + Overwrite existing files + Перезаписать существующие файлы + + + Copy album cover artwork + Копировать обложку альбома + + + Preview + Предпросмотр + + + Loading... + Загрузка… + + + Safely remove the device after copying + Безопасно извлечь устройство после копирования + + + Title + Название + + + Album + Альбом + + + Artist + Артист + + + Artist's initial + Инициалы артиста + + + Album artist + Артист альбома + + + Composer + Композитор + + + Performer + Исполнитель + + + Grouping + Группа + + + Track + Трек + + + Disc + Диск + + + Year + Год + + + Original year + Год оригинала + + + Genre + Жанр + + + Comment + Комментарий + + + Length + Длина + + + Bitrate + Refers to bitrate in file organize dialog. + Битрейт + + + Sample rate + Частота + + + Bit depth + Разрядность + + + File extension + Расширение файла + + + + OrganizeErrorDialog + + Error copying songs + Ошибка копирования композиций + + + There were problems copying some songs. The following files could not be copied: + В процессе копирования некоторых композиций возникли проблемы. Следующие файлы не могут быть скопированы: + + + Error deleting songs + Ошибка удаления композиций + + + There were problems deleting some songs. The following files could not be deleted: + В процессе удаления некоторых композиций возникли проблемы. Следующие файлы не могут быть удалены: + + + + ParserBase + + Don't know how to handle %1 + Неизвестно, как обработать %1 + + + + PlayingWidget + + Small album cover + Маленькая обложка альбома + + + Large album cover + Крупная обложка альбома + + + Fit cover to width + Подогнать обложку по ширине + + + Show above status bar + Показать над строкой состояния + + + + Playlist + + Could not write metadata to %1 + Не удалось записать метаданные в %1 + + + Could not write metadata to %1: %2 + Не удалось записать метаданные в %1: %2 + + + Title + Название + + + Artist + Артист + + + Album + Альбом + + + Track + Трек + + + Disc + Диск + + + Length + Длина + + + Year + Год + + + Original Year + Год оригинала + + + Genre + Жанр + + + Album Artist + Артист альбома + + + Composer + Композитор + + + Performer + Исполнитель + + + Grouping + Группа + + + Play Count + Разы + + + Skip Count + Пропуски + + + Last Played + Последний раз + + + Sample Rate + Частота + + + Bit Depth + Разрядность + + + Bitrate + Битрейт + + + File Name + Имя файла + + + File Name (without path) + Имя файла (без пути) + + + File Size + Размер файла + + + File Type + Тип файла + + + Date Modified + Дата изменения + + + Date Created + Дата создания + + + Comment + Комментарий + + + Source + Источник + + + Mood + Тон + + + Rating + Оценка + + + CUE + CUE-файл + + + Integrated Loudness + Встроенная громкость + + + Loudness Range + Диапазон громкости + + + + PlaylistContainer + + Form + Форма + + + Undo + Отменить + + + Redo + Вернуть + + + Playlist + Плейлист + + + Load playlist + Загрузить плейлист + + + No matches found. Clear the search box to show the whole playlist again. + Совпадения не найдены. Очистите строку поиска, чтобы увидеть плейлист снова. + + + + PlaylistDelegateBase + + stop + стоп + + + + PlaylistGeneratorInserter + + Loading smart playlist + Загрузка умного плейлиста + + + + PlaylistHeader + + &Hide... + &Скрыть… + + + &Stretch columns to fit window + &Подгонять к размеру окна + + + &Reset columns to default + С&бросить вид столбцов + + + &Lock rating + &Заблокировать оценку + + + &Align text + Выровнять &текст + + + &Left + С&лева + + + &Center + По &центру + + + &Right + С&права + + + &Hide %1 + &Скрыть «%1» + + + + PlaylistListContainer + + Form + Форма + + + New folder + Новая папка + + + Delete + Удалить + + + Save playlist + Save playlist menu action. + Сохранить плейлист + + + Copy to device... + Копировать на устройство… + + + Enter the name of the folder + Введите имя папки + + + Playlist + Плейлист + + + Copy to device + Копировать на устройство + + + Playlist must be open first. + Сначала надо открыть плейлист. + + + Remove playlists + Удалить плейлисты + + + You are about to remove %1 playlists from your favorites, are you sure? + Вы хотите удалить %1 плейлистов из избранных, уверены? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Вы можете занести плейлист в избранные двойным щелчком по звезде возле имени списка + + + Favorited playlists will be saved here + Избранные плейлисты будут храниться здесь + + + + PlaylistManager + + Playlist + Плейлист + + + Couldn't create playlist + Невозможно создать плейлист + + + Save playlist + Title of the playlist save dialog. + Сохранить плейлист + + + Unknown playlist extension + Неизвестное расширение плейлиста + + + Unknown file extension for playlist. + Неизвестное расширение файла плейлиста. + + + %1 selected of + %1 выбрано из + + + %n track(s) + + %n трек(ов) + + + + + + Unknown + Неизвестный + + + Various artists + Различные артисты + + + + PlaylistParser + + All playlists (%1) + Все плейлисты (%1) + + + %1 playlists (%2) + %1 плейлистов (%2) + + + Unknown filetype: %1 + Неизвестный тип файла: %1 + + + Could not open file %1 + Не удалось открыть файл %1 + + + Directory %1 does not exist. + Каталог %1 не существует. + + + Failed to open %1 for writing. + Не удалось открыть %1 для записи. + + + + PlaylistSaveOptionsDialog + + Playlist options + Настройки плейлиста + + + File paths + Пути файлов + + + This can be changed later through the preferences + В дальнейшем это может быть изменено в настройках + + + Remember my choice + Запомнить мой выбор + + + Automatic + Автоматические + + + Relative + Относительные + + + Absolute + Абсолютные + + + + PlaylistSequence + + Repeat + Повторять + + + Shuffle + Перемешать + + + Don't repeat + Не повторять + + + Repeat track + Повторять трек + + + Repeat album + Повторять альбом + + + Repeat playlist + Повторять плейлист + + + Stop after each track + Стоп после каждого трека + + + Intro tracks + Вступительные треки + + + Don't shuffle + Не перемешивать + + + Shuffle tracks in this album + Перемешать треки в этом альбоме + + + Shuffle all + Перемешать все + + + Shuffle albums + Перемешать альбомы + + + + PlaylistSettingsPage + + Playlist + Плейлист + + + Use alternating row colors + Чередовать цвета строк + + + Show bars on the currently playing track + Показывать полоски на активном треке + + + Show a glowing animation on the currently playing track + Подсвечивать активный трек анимацией + + + Warn me when closing a playlist tab + Спрашивать при закрытии вкладки плейлиста + + + Continue to the next item in the playlist if a song is unavailable + Переходить к следующей позиции плейлиста, если песня недоступна + + + Grey out unavailable songs in playlists on playback + Помечать серым недоступные песни в плейлистах при воспроизведении + + + Grey out unavailable songs in playlists on startup + Помечать недоступные песни в плейлистах при запуске + + + Automatically select current playing track + Автоматически выбирать текущий проигрываемый трек + + + Enable playlist toolbar + Включить панель управления плейлиста + + + Enable playlist clear button + Включить кнопку очистки плейлиста + + + Enable delete files in the right click context menu + Включить удаление файлов в контекстное меню правого щелчка + + + Automatically sort playlist when inserting songs + Автоматически сортировать плейлист при добавлении песен + + + When saving a playlist, file paths should be + При сохранении плейлистов пути файлов должны быть + + + A&utomatic + А&втоматические + + + Absolu&te + Абсолю&тные + + + Re&lative + &Относительные + + + As&k when saving + Сп&рашивать при сохранении + + + Metadata + Метаданные + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Если включить, то щелчок по выбранной песне в плейлисте позволит править тег напрямую + + + Enable song metadata inline edition with click + Включить встроенную правку метаданных песни по щелчку + + + Write metadata when saving playlists + Записывать метаданные при сохранении плейлистов + + + + PlaylistTabBar + + Star playlist + Убрать/добавить в избранное + + + Close playlist + Закрыть плейлист + + + Rename playlist... + Переименовать плейлист… + + + Save playlist... + Сохранить плейлист… + + + Rename playlist + Переименовать плейлист + + + Enter a new name for this playlist + Введите новое имя для этого плейлиста + + + Remove playlist + Удалить плейлист + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Вы хотите убрать плейлист, не являющийся избранным: список удалится полностью (действие необратимо). +Продолжить? + + + Warn me when closing a playlist tab + Спрашивать при закрытии вкладки плейлиста + + + This option can be changed in the "Behavior" preferences + Этот параметр можно изменить в настройках раздела «Поведение» + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Щёлкните сюда дважды для добавления плейлиста в избранное, он будет сохранён в разделе «Списки» левой боковой панели + + + Playlist + Плейлист + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + добавку %n песен + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + перемещение %n песен + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + удаление %n песен + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + перемешивание песен + + + + PlaylistUndoCommands::SortItems + + sort songs + сортировку песен + + + + PlaylistView + + Hz + Гц + + + Bit + Бит + + + kbps + кбит/с + + + + QObject + + Usage + Использование + + + options + параметры + + + URL(s) + Ссылки + + + Player options + Настройки проигрывателя + + + Start the playlist currently playing + Запустить проигрываемый сейчас плейлист + + + Play if stopped, pause if playing + Играть если остановлено, пауза если воспроизводится + + + Pause playback + Приостановить воспроизведение + + + Stop playback + Остановить воспроизведение + + + Stop playback after current track + Остановить после текущего трека + + + Skip backwards in playlist + Переместить назад в плейлисте + + + Skip forwards in playlist + Переместить вперёд в плейлисте + + + Set the volume to <value> percent + Установить громкость в <value> процентов + + + Increase the volume by 4 percent + Увеличить громкость на 4 процента + + + Decrease the volume by 4 percent + Уменьшить громкость на 4 процента + + + Increase the volume by <value> percent + Увеличить громкость на <value> процентов + + + Decrease the volume by <value> percent + Уменьшить громкость на <value> процентов + + + Seek the currently playing track to an absolute position + Перемотать активный трек на абсолютную позицию + + + Seek the currently playing track by a relative amount + Перемотать активный трек на относительную позицию + + + Restart the track, or play the previous track if within 8 seconds of start. + Перезапустить трек или проиграть предыдущий, если не прошло 8 секунд от начала. + + + Playlist options + Настройки плейлиста + + + Create a new playlist with files + Создать новый плейлист с файлами + + + Append files/URLs to the playlist + Добавить файлы/адреса в плейлист + + + Loads files/URLs, replacing current playlist + Загрузка файлов/ссылок с заменой текущего плейлиста + + + Play the <n>th track in the playlist + Играть <n> трек в плейлисте + + + Play given playlist + Проиграть данный плейлист + + + Other options + Прочие настройки + + + Display the on-screen-display + Показывать экранное уведомление + + + Toggle visibility for the pretty on-screen-display + Переключить видимость модного экранного меню + + + Change the language + Сменить язык + + + Resize the window + Изменить размер окна + + + Equivalent to --log-levels *:1 + Аналогично --log-levels *:1 + + + Equivalent to --log-levels *:3 + Аналогично --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Разделённый запятыми список «класс:уровень», где уровень от 0 до 3 + + + Print out version information + Вывести информацию о версии + + + Failed to create directory %1. + Не удалось создать каталог %1. + + + Destination file %1 exists, but not allowed to overwrite. + Файл назначения %1 уже существует, но его перезапись не разрешена. + + + Destination file %1 exists, but not allowed to overwrite + Файл назначения %1 уже существует, но его перезапись не разрешена + + + Could not copy file %1 to %2. + Не удалось скопировать файл %1 в %2. + + + Unknown + Неизвестный + + + LUFS + Единица громкости относительно полной шкалы (LUFS) + + + LU + Eдиница громкости (LU) + + + File %1 is not recognized as a valid audio file. + Файл %1 не распознан как допустимый аудиофайл. + + + 1 day + 1 день + + + %1 days + %1 дн. + + + Today + Сегодня + + + Yesterday + Вчера + + + %1 days ago + %1 дн. назад + + + Tomorrow + Завтра + + + In %1 days + В течение %1 дн. + + + Next week + На следующей неделе + + + In %1 weeks + В течение %1 недель + + + Show in file browser + Показать в проводнике + + + Too many songs selected. + Слишком много песен выбрано. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + Выбрано %1 песен из %2 разных каталогов. Уверены, что хотите открыть их все? + + + Failed to load image from data for %1 + Не удалось загрузить изображение из данных для %1 + + + Success + Успешно + + + File is unsupported + Файл не поддерживается + + + Filename is missing + Отсутствует имя файла + + + File does not exist + Файл не существует + + + File could not be opened + Не удалось открыть файл + + + Could not parse file + Не удалось разобрать файл + + + Could save file + Не удалось сохранить файл + + + Unknown error + Неизвестная ошибка + + + Prefix a search term with a field name to limit the search to that field, e.g.: + Приставка имени поля в поисковом термине позволяет ограничить поиск этим полем, например: + + + artist + артист + + + searches for all artists containing the word %1. + выполняет поиск всех артистов со словом %1. + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + Для уточнения поиска в числовых полях можно использовать приставки %1 или %2, например: + + + rating + оценка + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + Несколько поисковых терминов можно объединить с помощью символов «%1» (по умолчанию) и «%2», а сгруппировать с помощью круглых скобок. + + + Available fields + Доступные поля + + + after + после + + + before + до + + + on + на + + + not on + не на + + + in the last + в последние + + + not in the last + не в последние + + + between + между + + + contains + содержит + + + does not contain + не содержит + + + starts with + начинается с + + + ends with + оканчивается на + + + greater than + больше чем + + + less than + меньше чем + + + equals + совпадает с + + + not equals + не совпадает с + + + empty + пусто + + + not empty + не пусто + + + Comment + Комментарий + + + A-Z + А-Я (A-Z) + + + Z-A + Я-А (Z-A) + + + oldest first + сначала самые старые + + + newest first + сначала самые новые + + + shortest first + сначала короткий + + + longest first + сначала самые длинные + + + smallest first + сначала наименьший + + + biggest first + наибольшие сначала + + + Hours + Часы + + + Days + Дни + + + Weeks + Недели + + + Months + Месяцы + + + Years + Годы + + + Normal + Спокойный + + + Angry + Сердитый + + + Frozen + Холодный + + + Happy + Счастливый + + + System colors + Системные цвета + + + + QWidget + + Clear + Очистить + + + Reset + Сброс + + + + QobuzRequest + + Receiving artists... + Получение артистов… + + + Receiving albums... + Получение альбомов… + + + Receiving songs... + Получение песен… + + + Searching... + Поиск… + + + Receiving albums for %1 artist... + Получение альбомов для %1 артиста… + + + Receiving albums for %1 artists... + Получение альбомов для %1 артиста… + + + Receiving songs for %1 album... + Получение песен для %1 альбома… + + + Receiving songs for %1 albums... + Получение песен для %1 альбомов… + + + Receiving album cover for %1 album... + Получение обложки для %1 альбома… + + + Receiving album covers for %1 albums... + Получение обложек для %1 альбомов… + + + No match. + Не совпадает. + + + Unknown error + Неизвестная ошибка + + + + QobuzService + + Authenticating... + Аутентификация… + + + Maximum number of login attempts reached. + Достигнут максимум попыток входа в систему. + + + Missing Qobuz app ID. + Отсутствует идентификатор приложения Qobuz. + + + Missing Qobuz username. + Отсутствует имя пользователя Qobuz. + + + Missing Qobuz password. + Отсутствует пароль Qobuz. + + + Not authenticated with Qobuz. + Не аутентифицирован с помощью Qobuz. + + + Missing Qobuz app ID or secret. + Отсутствует идентификатор приложения Qobuz или секрет. + + + + QobuzSettingsPage + + Qobuz + Qobuz + + + Enable + Включить + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Поддержка Qobuz не является официальной, для работы требуется идентификатор приложения API и секретный ключ зарегистрированного приложения. Мы не можем помочь вам в их получении. + + + Authentication + Аутентификация + + + App ID + ИД приложения + + + Username + Имя пользователя + + + Password + Пароль + + + App Secret + Секретный ключ приложения + + + Login + Вход + + + Preferences + Настройки + + + Audio format + Формат аудио + + + Search delay + Задержка поиска + + + ms + мс + + + Artists search limit + Предел поиска артистов + + + Albums search limit + Предел поиска по альбомам + + + Songs search limit + Предел поиска песен + + + Download album covers + Скачивать обложки альбомов + + + Base64 encoded secret + Секретный ключ в кодировке Base64 + + + Configuration incomplete + Конфигурация не завершена + + + Missing app id. + Отсутствуют ИД приложения. + + + Missing username. + Отсутствует имя пользователя. + + + Missing password. + Отсутствует пароль. + + + Authentication failed + Ошибка аутентификации + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Отсутствует идентификатор приложения Qobuz или секрет. + + + Cancelled. + Отменено. + + + + Queue + + %n track(s) + + %n трек(ов) + + + + + + + QueueView + + QueueView + Обзор очереди + + + Move down + Вниз + + + Ctrl+Up + Ctrl+Вверх + + + Move up + Вверх + + + Ctrl+Down + Ctrl+Вниз + + + Remove + Удалить + + + Clear + Очистить + + + Ctrl+K + Ctrl+K + + + + RadioParadiseService + + Getting %1 channels + Получение %1 каналов + + + + RadioView + + Append to current playlist + Добавить в текущий плейлист + + + Replace current playlist + Заменить текущий плейлист + + + Open in new playlist + Открыть в новом плейлисте + + + Open homepage + Открыть домашнюю страницу + + + Donate + Пожертвовать + + + Refresh channels + Обновить каналы + + + + RadioViewContainer + + Form + Форма + + + + SCollection + + Saving playcounts and ratings + Сохранение счётчиков прослушивания и оценок + + + + SavePlaylistsDialog + + Select directory for saving playlists + Выберите каталог для сохранения плейлистов + + + Type + Тип + + + Select directory for the playlists + Выбрать каталог для плейлистов + + + Directory does not exist. + Каталог не существует. + + + + SavedGroupingManager + + Saved Grouping Manager + Менеджер сохранённых групп + + + Remove + Удалить + + + Ctrl+Up + Ctrl+Вверх + + + Name + Имя + + + First level + Первый уровень + + + Second Level + Второй уровень + + + Third Level + Третий уровень + + + None + Нет + + + Album artist + Артист альбома + + + Artist + Артист + + + Album + Альбом + + + Album - Disc + Альбом - Диск + + + Year - Album + Год - Альбом + + + Year - Album - Disc + Год - Альбом - Диск + + + Original year - Album + Год оригинала - Альбом + + + Original year - Album - Disc + Год оригинала - Альбом - Диск + + + Disc + Диск + + + Year + Год + + + Original year + Год оригинала + + + Genre + Жанр + + + Composer + Композитор + + + Performer + Исполнитель + + + Grouping + Группа + + + File type + Тип файла + + + Format + Формат + + + Sample rate + Частота + + + Bit depth + Разрядность + + + Bitrate + Битрейт + + + Unknown + Неизвестный + + + + ScrobblerSettingsPage + + Scrobbler + Скробблер + + + Enable + Включить + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Песни скробблятся, если они содержат допустимые метаданные, длятся более 30 секунд и воспроизводятся не менее половины своей длительности или в течение 4 минут (в зависимости от того, что произойдёт раньше). + + + Work in offline mode (Only cache scrobbles) + Работать в автономном режиме (только кэшировать скробблы) + + + Show scrobble button + Показывать кнопку скробблинга + + + Show love button + Показывать кнопку «В любимые» + + + Submit scrobbles every + Отправлять скробблы каждые + + + seconds + секунд + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (Это задержка между моментами, когда песня заскробблится и когда скроббл отправится на сервер. Установка времени в 0 секунд сделает отправку скроббла мгновенной). + + + Prefer album artist when sending scrobbles + Предпочитать артиста альбома при отправке скробблов + + + Show dialog for errors + Показывать окно ошибок + + + Strip "remastered" and similar from album and title + Вырезать «ремастеринг» и прочее из альбома и имени + + + Enable scrobbling for the following sources: + Включить скробблинг для следующих источников: + + + Collection + Фонотека + + + Subsonic + Subsonic + + + Local file + Локальный файл + + + Tidal + Tidal + + + Device + Устройство + + + Qobuz + Qobuz + + + CDDA + CDDA + + + SomaFM + SomaFM + + + Stream + Поток + + + Radio Paradise + Радио Paradise + + + Unknown + Неизвестный + + + Last.fm + Last.fm + + + Login + Вход + + + Libre.fm + Libre.fm + + + Listenbrainz + Listenbrainz + + + User token: + Пользовательский токен: + + + Enter your user token from + Укажите ваш пользовательский токен из + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + Аутентификация скробблера %1 + + + Open URL in web browser? + Открыть адрес в веб-браузере? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Нажмите «Сохранить», чтобы скопировать адрес в буфер обмена и вручную открыть его в веб-браузере. + + + Could not open URL. Please open this URL in your browser + Не удалось открыть адрес. Пожалуйста, откройте эту ссылку в вашем браузере + + + Invalid reply from web browser. Missing token. + Неверный ответ от веб-браузера. Отсутствует токен. + + + Received invalid reply from web browser. Try another browser. + Получен неверный ответ от веб-браузера. Попробуйте другой браузер. + + + Scrobbler %1 is not authenticated! + Скробблер %1 не аутентифицирован! + + + Scrobbler %1 error: %2 + Ошибка %1 скробблера: %2 + + + + SettingsDialog + + Settings + Настройки + + + General + Общие + + + User interface + Интерфейс + + + Streaming + Проигрывание потоков + + + + SmartPlaylistQuerySearchPage + + Form + Форма + + + Search mode + Режим поиска + + + Match every search term (AND) + Совпадает с каждым условием поиска (И) + + + Match one or more search terms (OR) + Совпадает с одним или несколькими условиями (ИЛИ) + + + Include all songs + Включить все песни + + + Search terms + Условия поиска + + + + SmartPlaylistQuerySortPage + + Form + Форма + + + Sorting + Сортировка + + + Put songs in a random order + Перемешать порядок песен + + + Sort songs by + Сортировать песни по + + + Limits + Ограничения + + + Show all the songs + Показать все песни + + + Only show the first + Показывать только первый + + + songs + песен + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Поиск фонотеки + + + Find songs in your collection that match the criteria you specify. + Найти композиции в фонотеке по указанным вами критериям. + + + Search terms + Условия поиска + + + A song will be included in the playlist if it matches these conditions. + Композиция будет добавлена в плейлист, если соответствует этим условиям. + + + Search options + Параметры поиска + + + Choose how the playlist is sorted and how many songs it will contain. + Настройка сортировки плейлиста и числа песен в нём. + + + + SmartPlaylistSearchPreview + + Form + Форма + + + Preview + Предпросмотр + + + Loading... + Загрузка… + + + %1 songs found (showing %2) + Найдено %1 песен (отображается %2) + + + %1 songs found + Найдено %1 песен + + + + SmartPlaylistSearchTermWidget + + Form + Форма + + + and + и + + + ago + тому назад + + + The second value must be greater than the first one! + Второе значение должно быть выше первого! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Добавить условие поиска + + + + SmartPlaylistWizard + + Smart playlist + Умный плейлист + + + Playlist type + Тип плейлиста + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Умный плейлист — это динамический список композиций из вашей фонотеки. Существуют разные типы умных плейлистов с различными способами подбора треков. + + + Finish + Готово + + + Choose a name for your smart playlist + Выберите название вашего умного плейлиста + + + + SmartPlaylistWizardFinishPage + + Form + Форма + + + Name + Имя + + + Use dynamic mode + Использовать динамический режим + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + В динамическом режиме новые треки подбираются и добавляются в плейлист каждый раз, когда заканчивается очередная песня. + + + + SmartPlaylists + + Newest tracks + Свежие треки + + + 50 random tracks + 50 случайных треков + + + Ever played + Любые прослушанные + + + Never played + Никогда не прослушивались + + + Last played + Последний раз + + + Most played + Часто прослушиваемые + + + Favourite tracks + Любимые треки + + + All tracks + Все треки + + + Dynamic random mix + Динамичный случайный микс + + + + SmartPlaylistsViewContainer + + New smart playlist + Новый умный плейлист + + + Edit smart playlist + Править умный плейлист + + + Delete smart playlist + Удалить умный плейлист + + + New smart playlist... + Новый умный плейлист… + + + Append to current playlist + Добавить в текущий плейлист + + + Replace current playlist + Заменить текущий плейлист + + + Open in new playlist + Открыть в новом плейлисте + + + Queue track + Добавить трек в очередь + + + Play next + Играть следующий + + + Edit smart playlist... + Править умный плейлист… + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry работает через Snap + + + It is detected that Strawberry is running as a Snap + Обнаружено, что Strawberry работает через Snap + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry работает медленно и ограниченно при запуске через Snap. Доступ к корневой файловой системе (/) не будет работать. Также могут существовать другие ограничения, связанные с доступом к определённым устройствам или общим сетевым ресурсам. + + + For Ubuntu there is an official PPA repository available at %1. + Для Ubuntu доступен официальный репозиторий PPA в %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Официальные выпуски доступны для Debian и Ubuntu, они также работают с большинством их производных. См. подробности на %1. + + + For a better experience please consider the other options above. + Для лучшего опыта, пожалуйста, рассмотрите другие варианты выше. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Скопируйте ваши strawberry.conf и strawberry.db из вашего каталога ~/snap, чтобы избежать потери настроек, перед удалением snap: + + + Uninstall the snap with: + Удалить Snap с помощью: + + + Install strawberry through PPA: + Установить Strawberry через PPA: + + + + SomaFMService + + Getting %1 channels + Получение %1 каналов + + + + SongLoader + + You need GStreamer for this URL. + Вам нужен GStreamer для этого адреса. + + + Preload function was not set for blocking operation. + Функция предварительной нагрузки не была установлена ​​для операции блокировки. + + + File %1 does not exist. + Файл %1 не существует. + + + CD playback is only available with the GStreamer engine. + Воспроизведение CD доступно только с движком GStreamer. + + + Could not open file %1 for reading: %2 + Не удалось открыть файл %1 для чтения: %2 + + + Could not open CUE file %1 for reading: %2 + Не удалось открыть CUE-файл %1 для чтения: %2 + + + Could not open playlist file %1 for reading: %2 + Не удалось открыть файл плейлиста %1 для чтения: %2 + + + Couldn't create GStreamer source element for %1 + Не удалось создать объект источника GStreamer для %1 + + + Couldn't create GStreamer typefind element for %1 + Не удалось создать элемент GStreamer typefind для %1 + + + Couldn't create GStreamer fakesink element for %1 + Не удалось создать элемент GStreamer fakesink для %1 + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + Не удалось связать элементы GStreamer источник, typefind и fakesink для %1 + + + + SongLoaderInserter + + Error while loading audio CD. + Ошибка при загрузке аудио-CD. + + + Loading tracks + Загрузка композиций + + + Loading tracks info + Загрузка сведений о треках + + + + SpotifyRequest + + Authenticating... + Аутентификация… + + + Receiving artists... + Получение артистов… + + + Receiving albums... + Получение альбомов… + + + Receiving songs... + Получение песен… + + + Searching... + Поиск… + + + Receiving albums for %1 artist... + Получение альбомов для %1 артиста… + + + Receiving albums for %1 artists... + Получение альбомов для %1 артиста… + + + Receiving songs for %1 album... + Получение песен для %1 альбома… + + + Receiving songs for %1 albums... + Получение песен для %1 альбомов… + + + Receiving album cover for %1 album... + Получение обложки для %1 альбома… + + + Receiving album covers for %1 albums... + Получение обложек для %1 альбомов… + + + No match. + Не совпадает. + + + Data missing error + Ошибка отсутствия данных + + + + SpotifyService + + Spotify Authentication + Аутентификация Spotify + + + Please open this URL in your browser + Пожалуйста, откройте эту ссылку в вашем браузере + + + Redirect missing token code or state! + В перенаправлении отсутствует код или состояние токена! + + + Received invalid reply from web browser. + Получен неверный ответ от веб-браузера. + + + Not authenticated with Spotify. + Не аутентифицировано со Spotify. + + + + SpotifySettingsPage + + Spotify + Spotify + + + Enable + Включить + + + Basic authentication + Основная аутентификация + + + Authenticate + Аутентификация + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + <html><head/><body><p>Плагин GStreamer для Spotify не обнаружен, вы не сможете транслировать песни из Spotify без него. См. <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Вики</span></a>, чтобы узнать как установить плагин.</p></body></html> + + + Preferences + Настройки + + + Search delay + Задержка поиска + + + ms + мс + + + Artists search limit + Предел поиска артистов + + + Albums search limit + Предел поиска по альбомам + + + Songs search limit + Предел поиска песен + + + Download album covers + Скачивать обложки альбомов + + + Fetch entire albums when searching songs + Получать весь альбом при поиске песен + + + Authentication failed + Ошибка аутентификации + + + + StreamingCollectionView + + The streaming collection is empty! + Фонотека потоков пуста! + + + Click here to retrieve music + Щёлкните сюда, чтобы получить музыку + + + Append to current playlist + Добавить в текущий плейлист + + + Replace current playlist + Заменить текущий плейлист + + + Open in new playlist + Открыть в новом плейлисте + + + Queue track + Добавить трек в очередь + + + Queue to play next + Добавить в начало очереди + + + Remove from favorites + Удалить из избранного + + + + StreamingCollectionViewContainer + + Form + Форма + + + Close + Закрыть + + + Abort + Прервать + + + Refresh catalogue + Обновить каталог + + + + StreamingSearchModel + + Various artists + Различные артисты + + + + StreamingSearchView + + Streaming Search View + Вид поиска потоков + + + MenuPopupToolButton + MenuPopupToolButton + + + artists + артисты + + + albums + альбомы + + + songs + песен + + + Enter search terms above to find music + Введите условия поиска выше, чтобы найти музыку + + + Configure %1... + Настроить %1… + + + Append to current playlist + Добавить в текущий плейлист + + + Replace current playlist + Заменить текущий плейлист + + + Open in new playlist + Открыть в новом плейлисте + + + Queue track + Добавить трек в очередь + + + Add to artists + Добавить в артисты + + + Add to albums + Добавить в альбомы + + + Add to songs + Добавить в песни + + + Search for this + Поиск этого + + + Group by + Группировать по + + + + StreamingSongsView + + Configure %1... + Настроить %1… + + + + StreamingTabsView + + Streaming Tabs View + Вид вкладок потоков + + + Artists + Артисты + + + Albums + Альбомы + + + Songs + Песни + + + Search + Поиск + + + Configure %1... + Настроить %1… + + + + SubsonicRequest + + Retrieving albums... + Получение альбомов… + + + Retrieving songs for %1 album... + Получение песен для альбома %1… + + + Retrieving songs for %1 albums... + Получение песен для альбомов %1… + + + Retrieving album cover for %1 album... + Получение обложки альбома для %1… + + + Retrieving album covers for %1 albums... + Получение обложек альбомов для %1… + + + Unknown error + Неизвестная ошибка + + + + SubsonicService + + Server URL is invalid. + Адрес сервера недействителен. + + + Missing username or password. + Отсутствует имя пользователя или пароль. + + + + SubsonicSettingsPage + + Subsonic + Subsonic + + + Enable + Включить + + + Server URL + Адрес сервера + + + Authentication + Аутентификация + + + Username + Имя пользователя + + + Password + Пароль + + + Authentication method: + Метод аутентификации: + + + Hex + Шестнадцатеричный + + + MD5 token (Recommended) + Токен MD5 (рекомендуется) + + + Preferences + Настройки + + + Use HTTP/2 when possible + Использовать HTTP/2 по возможности + + + Verify server certificate + Проверять сертификат сервера + + + Download album covers + Скачивать обложки альбомов + + + Server-side scrobbling + Скробблинг на стороне сервера + + + Test + Проверить + + + Delete songs + Удалить песни + + + Configuration incomplete + Конфигурация не завершена + + + Missing server url, username or password. + Отсутствует адрес сервера, имя пользователя или пароль. + + + Configuration incorrect + Некорректная конфигурация + + + Server URL is invalid. + Адрес сервера недействителен. + + + Test successful! + Проверка прошла успешно! + + + Test failed! + Проверка не пройдена! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Адрес сервера Subsonic неверен. + + + Missing Subsonic username or password. + Отсутствует имя пользователя или пароль Subsonic. + + + + SystemTrayIcon + + Pause + Пауза + + + Play + Играть + + + + TagFetcher + + Identifying song + Определяется песня + + + Fingerprinting song + Получается отпечаток песни + + + Downloading metadata + Загружаются метаданные + + + + TidalRequest + + Authenticating... + Аутентификация… + + + Receiving artists... + Получение артистов… + + + Receiving albums... + Получение альбомов… + + + Receiving songs... + Получение песен… + + + Searching... + Поиск… + + + Receiving albums for %1 artist... + Получение альбомов для %1 артиста… + + + Receiving albums for %1 artists... + Получение альбомов для %1 артиста… + + + Receiving songs for %1 album... + Получение песен для %1 альбома… + + + Receiving songs for %1 albums... + Получение песен для %1 альбомов… + + + Receiving album cover for %1 album... + Получение обложки для %1 альбома… + + + Receiving album covers for %1 albums... + Получение обложек для %1 альбомов… + + + No match. + Не совпадает. + + + + TidalService + + Reply from Tidal is missing query items. + В ответе от Tidal отсутствуют элементы запроса. + + + Missing Tidal API token. + Отсутствует токен API Tidal. + + + Missing Tidal username. + Отсутствует имя пользователя Tidal. + + + Missing Tidal password. + Отсутствует Tidal пароль. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Не аутентифицировано с Tidal и достигнуто максимум попыток входа в систему. + + + Not authenticated with Tidal. + Не аутентифицировано с Tidal. + + + Missing Tidal API token, username or password. + Отсутствуют токен API, имя пользователя или пароль. + + + + TidalSettingsPage + + Tidal + Tidal + + + Enable + Включить + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Поддержка Tidal не является официальной и для работы требует токен API из зарегистрированного приложения. Мы не можем помочь вам в его получении. + + + Authentication + Аутентификация + + + Use OAuth + Использовать OAuth + + + Client ID + ИД клиента + + + API Token + Токен API + + + Username + Имя пользователя + + + Password + Пароль + + + Login + Вход + + + Preferences + Настройки + + + Audio quality + Качество звука + + + Search delay + Задержка поиска + + + ms + мс + + + Artists search limit + Предел поиска артистов + + + Albums search limit + Предел поиска по альбомам + + + Songs search limit + Предел поиска песен + + + Download album covers + Скачивать обложки альбомов + + + Fetch entire albums when searching songs + Получать весь альбом при поиске песен + + + Album cover size + Размер обложки альбома + + + Stream URL method + Метод адреса потока + + + Append explicit to album title for explicit albums + Добавлять «Explicit» в имена альбомов с нецензурной лексикой + + + Configuration incomplete + Конфигурация не завершена + + + Missing Tidal client ID. + Отсутствует идентификатор клиента Tidal. + + + Missing API token. + Отсутствует токен API. + + + Missing username. + Отсутствует имя пользователя. + + + Missing password. + Отсутствует пароль. + + + Authentication failed + Ошибка аутентификации + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Не аутентифицировано с Tidal. + + + Missing Tidal API token, username or password. + Отсутствуют токен API, имя пользователя или пароль. + + + Cancelled. + Отменено. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Получен адрес с шифрованным потоком %1 от Tidal. Strawberry в настоящее время не поддерживает шифрованные потоки. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Получен адрес с шифрованным потоком от Tidal. Strawberry в настоящее время не поддерживает шифрованные потоки. + + + + TrackSelectionDialog + + Tag fetcher + Сборщик тегов + + + Sorry + Извините + + + Strawberry was unable to find results for this file + Strawberry не смог найти результаты по запросу для этого файла + + + Select best possible match + Выберите наиболее подходящее совпадение + + + Track + Трек + + + Year + Год + + + Title + Название + + + Artist + Артист + + + Album + Альбом + + + Previous + Предыдущий + + + Next + Следующий + + + Original tags + Исходные теги + + + Suggested tags + Предлагаемые теги + + + Saving tracks + Сохранение треков + + + + TrackSlider + + Form + Форма + + + 0:00:00 + 0:00:00 + + + Click to toggle between remaining time and total time + Щёлкните для переключения между оставшимся и полным временем + + + + TranscodeDialog + + Transcode Music + Конвертер музыки + + + Files to transcode + Файлы для конвертации + + + Filename + Имя файла + + + Directory + Каталог + + + Add... + Добавить… + + + Remove + Удалить + + + Add all tracks from a directory and all its subdirectories + Добавить все треки из каталога и всех его подкаталогов + + + Import... + Импорт… + + + Output options + Выходные параметры + + + Audio format + Формат аудио + + + Options... + Настройки… + + + Destination + Назначение + + + Alongside the originals + Рядом с исходными + + + Select... + Выбрать… + + + Progress + Ход выполнения + + + Details... + Подробнее… + + + Clear + Очистить + + + Start transcoding + Конвертировать + + + %n remaining + + %n осталось + + + + + + %n finished + + %n завершено + + + + + + %n failed + + %n с ошибкой + + + + + + Add files to transcode + Добавить файлы для конвертирования + + + Music + Музыка + + + Open a directory to import music from + Открыть папку для импорта музыки + + + Add folder + Добавление папки + + + + TranscodeLogDialog + + Transcoder Log + Журнал конвертера + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Не удалось создать элемент GStreamer «%1» — убедитесь, что у вас установлены все необходимые модули GStreamer + + + Successfully written %1 + Успешно записано %1 + + + Transcoding %1 files using %2 threads + Конвертировано %1 файлов в %2 потока + + + Error processing %1: %2 + Ошибка при обработке %1: %2 + + + Starting %1 + Запуск %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Не удалось найти кодировщик для %1, проверьте, что у вас установлены все необходимые модули GStreamer + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Не удалось найти мультиплексор для %1. Убедитесь, что у вас установлены необходимые модули GStreamer + + + + TranscoderOptionsAAC + + Form + Форма + + + Bitrate + Битрейт + + + kbps + кбит/с + + + Profile + Профиль + + + Main profile (MAIN) + Основной профиль (MAIN) + + + Low complexity profile (LC) + Профиль низкой сложности (LC) + + + Scalable sampling rate profile (SSR) + Профиль Scalable sampling rate (SSR) + + + Long term prediction profile (LTP) + Профиль Long term prediction (LTP) + + + Use temporal noise shaping + Использовать временнóе сглаживание шумов + + + Allow mid/side encoding + Разрешить кодирование в виде суммы и разности двух каналов + + + Block type + Тип блока + + + Normal block type + Обычный тип блоков + + + No short blocks + Без коротких блоков + + + No long blocks + Без длинных блоков + + + + TranscoderOptionsASF + + Form + Форма + + + Bitrate + Битрейт + + + kbps + кбит/с + + + + TranscoderOptionsDialog + + Transcoding options + Настройки конвертации + + + + TranscoderOptionsFLAC + + Form + Форма + + + Quality + Sound quality + Качество + + + Fast + Быстрое + + + Best + Лучшее + + + + TranscoderOptionsMP3 + + Form + Форма + + + Optimize for &quality + Оптимизировать по &качеству + + + Quality + Sound quality + Качество + + + Opti&mize for bitrate + Опти&мизировать по битрейту + + + Bitrate + Битрейт + + + kbps + кбит/с + + + Constant bitrate + Постоянный битрейт + + + Encoding engine quality + Качество кодирования + + + Fast + Быстрое + + + Standard + Стандартное + + + High + Высокое + + + Force mono encoding + Принудительно кодировать в моно + + + + TranscoderOptionsOpus + + Form + Форма + + + Bitrate + Битрейт + + + kbps + кбит/с + + + + TranscoderOptionsSpeex + + Form + Форма + + + Quality + Sound quality + Качество + + + Bitrate + Битрейт + + + automatic + автоматически + + + kbps + кбит/с + + + Average bitrate + Средний битрейт + + + disabled + отключён + + + Encoding mode + Режим кодирования + + + Auto + Авто + + + Ultra wide band (UWB) + Сверхширокая полоса пропускания (UWB) + + + Wide band (WB) + Шировая полоса пропускания (WB) + + + Narrow band (NB) + Узкая полоса пропускания (NB) + + + Variable bit rate + Переменный битрейт + + + Voice activity detection + Обнаружение голосовой активности + + + Discontinuous transmission + Непрерывная передача + + + Encoding complexity + Сложность кодирования + + + Frames per buffer + Фреймов на буфер + + + + TranscoderOptionsVorbis + + Form + Форма + + + Quality + Sound quality + Качество + + + Use bitrate management engine + Использовать движок управления битрейтом + + + Target bitrate + Целевой битрейт + + + kbps + кбит/с + + + Minimum bitrate + Минимальный битрейт + + + disabled + отключён + + + Maximum bitrate + Максимальный битрейт + + + + TranscoderOptionsWavPack + + Form + Форма + + + + TranscoderSettingsPage + + Transcoding + Конвертер + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Эти настройки используются в окне «Конвертация музыки» и при конвертировании музыки перед копированием на устройство. + + + FLAC + FLAC + + + WavPack + WavPack + + + Vorbis + Vorbis + + + Opus + Opus + + + Speex + Speex + + + AAC + AAC + + + ASF (WMA) + ASF (WMA) + + + MP3 + MP3 + + + + Udisks2Lister + + D-Bus path + Путь D-Bus + + + Serial number + Серийный номер + + + Mount points + Точки монтирования + + + Partition label + Метка раздела + + + UUID + UUID + + + + UserPassDialog + + Enter username and password + Укажите имя пользователя и пароль + + + Username + Имя пользователя + + + Password + Пароль + + + diff --git a/src/translations/strawberry_sv_SE.ts b/src/translations/strawberry_sv_SE.ts new file mode 100644 index 00000000..76e94fd6 --- /dev/null +++ b/src/translations/strawberry_sv_SE.ts @@ -0,0 +1,7577 @@ + + + + + About + + About + Om + + + About Strawberry + Om Strawberry + + + Version %1 + + + + Strawberry is a music player and music collection organizer. + Strawberry är en musikspelare och musiksamlingsorganisatör. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Det är en förgrening av Clementine som släpptes 2018 riktad till musiksamlare och audiofiler. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry är fri programvara som släpps under GPL. Källkoden är tillgänglig på %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Du borde ha fått en kopia av GNU General Public License tillsammans med det här programmet. Om inte, se %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Om du gillar Strawberry och har nytta av det, överväg att sponsra eller donera. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Du kan sponsra upphovsmannen på %1. Du kan också göra en engångsbetalning genom %2. + + + Author and maintainer + Upphovsman och underhållare + + + Contributors + Bidragsgivare + + + Clementine authors + Clementine-upphovsmän + + + Clementine contributors + Clementine-bidragsgivare + + + Thanks to + Tack till + + + Thanks to all the other Amarok and Clementine contributors. + Tack till alla andra Amarok- och Clementine-bidragsgivare. + + + + AddStreamDialog + + Add Stream + Lägg till flöde + + + Enter the URL of a stream: + Ange webbadressen till ett flöde: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Bilder (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Bilder (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Alla filer (*) + + + Load cover from disk... + Läs in omslag från disk... + + + Save cover to disk... + Spara omslag till disk... + + + Load cover from URL... + Läs in omslag från webbadress... + + + Search for album covers... + Sök efter albumomslag... + + + Unset cover + Ta bort omslag + + + Delete cover + Ta bort omslag + + + Clear cover + Rensa omslag + + + Show fullsize... + Visa i full storlek... + + + Search automatically + Sök automatiskt + + + Load cover from disk + Läs in omslag från disk + + + Failed to open cover file %1 for reading: %2 + Det gick inte att öppna omslagsfilen %1 för läsning: %2 + + + Cover file %1 is empty. + Omslagsfilen %1 är tom. + + + unknown + okänt + + + Save album cover + Spara albumomslag + + + Failed to open cover file %1 for writing: %2 + Det gick inte att öppna omslagsfilen %1 för att skriva: %2 + + + Failed writing cover to file %1: %2 + Det gick inte att skriva omslaget till filen %1: %2 + + + Failed writing cover to file %1. + Det gick inte att skriva omslaget till filen %1. + + + Failed to delete cover file %1: %2 + Det gick inte att ta bort omslagsfilen %1: %2 + + + Failed to write cover to file %1: %2 + Det gick inte att skriva omslaget till filen %1: %2 + + + Could not save cover to file %1. + Det gick inte att spara omslag till filen %1. + + + + AlbumCoverExport + + Export covers + Exportera omslag + + + Output + Utgång + + + Enter a filename for exported covers (no extension): + Ange ett filnamn för exporterade omslag (utan ändelse): + + + Export downloaded covers + Exportera hämtade omslag + + + Export embedded covers + Exportera inbäddade omslag + + + Existing covers + Befintliga omslag + + + Do not overwrite + Skriv inte över + + + O&verwrite all + S&kriv över alla + + + Overwrite s&maller ones only + Skriv endast över m&indre + + + Size + Storlek + + + Scale size + Skalningsstorlek + + + Size: + Storlek: + + + Pixel + + + + + AlbumCoverManager + + Abort + Avbryt + + + All albums + Alla album + + + Albums with covers + Album med omslag + + + Albums without covers + Album utan omslag + + + Really cancel? + Verkligen avbryta? + + + Closing this window will stop searching for album covers. + Stängning av det här fönstret kommer att stoppa sökningen efter albumomslag. + + + Don't stop! + Stoppa inte! + + + All artists + Alla artister + + + Various artists + Diverse artister + + + Got %1 covers out of %2 (%3 failed) + Erhöll %1 omslag av %2 (%3 misslyckades) + + + %1 transferred + %1 överfört + + + Export finished + Exporten är klar + + + No covers to export. + Inga omslag att exportera. + + + Exported %1 covers out of %2 (%3 skipped) + Exporterat %1 omslag av %2 (%3 överhoppade) + + + Could not save cover to file %1. + Det gick inte att spara omslag till filen %1. + + + + AlbumCoverSearcher + + Cover Manager + Omslagshanterare + + + Artist + Artist + + + Album + Album + + + Search + Sök + + + Covers from %1 + Omslag från %1 + + + Abort + Avbryt + + + + AnalyzerContainer + + Framerate + Bildfrekvens + + + Low (%1 fps) + Låg (%1 fps) + + + Medium (%1 fps) + Mellan (%1 fps) + + + High (%1 fps) + Hög (%1 fps) + + + Super high (%1 fps) + Väldigt hög (%1 fps) + + + No analyzer + Ingen analysator + + + Block analyzer + Blockanalysator + + + Boom analyzer + Boom-analysator + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Utseende + + + Style + Format + + + Use system theme icons + Använd systemtemaikoner + + + Settings require restart. + Inställningar kräver omstart. + + + Tabbar colors + Färger för flikfält + + + &Use the system default color + &Använd systemets standardfärg + + + Use custom color + Använd anpassad färg + + + Use gradient background + Använd tonad bakgrund + + + Select tabbar color: + Välj färg för flikfält: + + + Background image + Bakgrundsbild + + + Default bac&kground image + Standardba&kgrundsbild + + + &No background image + &Ingen bakgrundsbild + + + The album cover of the currently playing song + Albumomslaget för låt som nu spelas + + + Albu&m cover + Albu&momslag + + + Custom image: + Anpassad bild: + + + Browse... + Bläddra... + + + Position + + + + Upper Left + Övre vänster + + + Upper Right + Övre högra + + + Middle + Mellan + + + Bottom Left + Nedre vänstra + + + Bottom Right + Nedre högra + + + Max cover size + Största omslagsstorleken + + + Stretch image to fill playlist + Sträck ut bilden för att fylla spellista + + + Keep aspect ratio + Bevara bildförhållandet + + + Do not cut image + Klipp inte av bilden + + + Blur amount + Suddighet + + + 0px + + + + Opacity + Opacitet + + + 40% + 40% + + + Icon sizes + Ikonstorlekar + + + Playlist buttons + Spellistknappar + + + Tabbar large mode + Stort läge för flikfält + + + Play control buttons + Spela kontrollknappar + + + Configure buttons + Anpassa knappar + + + Files, playlists and queue buttons + Filer, spellistor och köknappar + + + Tabbar small mode + Litet läge för flikfält + + + Playlist playing song color + Låtfärg för uppspelning av spellista + + + System highlight color + Systemets markeringsfärg + + + Custom color + Anpassad färg + + + Select playlist playing song color: + Välj låtfärg för uppspelning av spellista: + + + Select background image + Väl en bakgrundsbild + + + + BackendSettingsPage + + Backend + + + + Audio output + Ljudutgång + + + Device + Enhet + + + Output + Utgång + + + Engine + Motor + + + ALSA plugin: + ALSA-insticksmodul: + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + Alternativ + + + Enable volume control + Aktivera volymkontroll + + + Upmix / downmix to + Uppmixa / nedmixa till + + + channels + kanaler + + + Improve headphone listening of stereo audio records (bs2b) + Förbättra hörlurslyssning av stereoljudskivor (bs2b) + + + Enable HTTP/2 for streaming + Aktivera HTTP/2 för att flöda + + + Use strict SSL mode + Använd strikt SSL-läge + + + Buffer + Buffert + + + ms + + + + Buffer duration + Buffert varaktighet + + + High watermark + Hög vattenstämpel + + + Low watermark + Låg vattenstämpel + + + Defaults + Standardvärden + + + Audio normalization + Ljudnormalisering + + + No audio normalization + Ingen ljudnormalisering + + + Replay Gain + + + + Use Replay Gain metadata if it is available + Använd Replay Gain-metadata om det finns tillgängligt + + + Replay Gain mode + Replay Gain-läge + + + Radio (equal loudness for all tracks) + Radio (samma ljudstyrka för alla spår + + + Album (ideal loudness for all tracks) + Album (lämplig ljudstyrka för alla spår) + + + Pre-amp + Förförstärkare + + + Apply compression to prevent clipping + Tillämpa komprimering för att förhindra klippning + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + EBU R 128 ljudstyrkenormalisering + + + Perform track loudness normalization + Utför normalisering av spårets ljudstyrka + + + Target Level + Målnivå + + + Fading + Toning + + + Fade out when stopping a track + Tona ut när ett spår stoppas + + + Cross-fade when changing tracks manually + Övertona vid manuellt byte av spår + + + Cross-fade when changing tracks automatically + Övertona vid automatiskt byte av spår + + + Except between tracks on the same album or in the same CUE sheet + Förutom mellan spår på samma album eller i samma CUE-fil + + + Fading duration + Toningsvaraktighet + + + Fade out on pause / fade in on resume + Tona ut vid pausning / tona in vid återupptagning + + + + BehaviourSettingsPage + + Behavior + Beteende + + + Show system tray icon + Visa ikon i systemfältet + + + Keep running in the background when the window is closed + Fortsätt köra i bakgrunden när fönstret är stängt + + + Show song progress on system tray icon + Visa sångförlopp på systemfältikonen + + + Show song progress on taskbar + + + + Resume playback on start + Fortsätt uppspelning vid start + + + Show playing widget + Visa spelande gränssnittskomponent + + + On startup + Vid start + + + Remember from &last time + Kom ihåg från &förra gången + + + Show the main window + Visa huvudfönstret + + + Hide the main window + Dölj huvudfönstret + + + Show the main window maximized + Visa huvudfönstret som maximerat + + + Show the main window minimized + Visa huvudfönstret som minimerat + + + Language + Språk + + + Use the system default + Använd systemets standard + + + You will need to restart Strawberry if you change the language. + Du måste starta om Strawberry om du ändrar språket. + + + Using the menu to add a song will... + Använda menyn för att lägga till en låt kommer att... + + + Never start playing + Aldrig starta uppspelning + + + Play if there is nothing already playing + Spela om ingenting redan spelas + + + Always start playing + Alltid starta uppspelning + + + Pressing "Previous" in player will... + Klicka på "Föregående" i spelaren kommer att... + + + Jump to previous song right away + Hoppa till föregående låt direkt + + + Restart song, then jump to previous if pressed again + Starta om låten, hoppa till föregående låt vid dubbelklickning + + + Double clicking a song will... + Dubbelklicka på en låt kommer att... + + + Append to the playlist + Lägga till i spellistan + + + Replace the playlist + Ersätta spellistan + + + Open in new playlist + Öppna i ny spellista + + + Add to the queue + Lägga till i kön + + + Double clicking a song in the playlist will... + Dubbelklicka på en låt i spellistan kommer att... + + + Change the currently playing song + Byta låt som nu spelas + + + Seeking using a keyboard shortcut or mouse wheel + Tidshopp vid sökning med tangentbordsgenväg eller mushjul + + + Time step + Tidssteg + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Fel när CDDA-enheten ställdes till klartillstånd. + + + Error while setting CDDA device to pause state. + Fel när CDDA-enheten ställdes till pausläge. + + + Error while querying CDDA tracks. + Fel vid förfrågan om CDDA-spår. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + Det gick inte att köra samlings-SQL-förfråga: %1 + + + Failed SQL query: %1 + Misslyckad SQL-förfråga: %1 + + + Updating %1 database. + Uppdaterar %1-databasen. + + + + CollectionFilterWidget + + Collection Filter + Samlingsfilter + + + Enter search terms here + Ange söktermer här + + + MenuPopupToolButton + + + + Entire collection + Hela samlingen + + + Added today + Tillagda idag + + + Added this week + Tillagda den här veckan + + + Added within three months + Tillagda inom tre månader + + + Added this year + Tillagda i år + + + Added this month + Tillagda den här månaden + + + Save current grouping + Spara aktuell gruppering + + + Manage saved groupings + Hantera sparade grupperingar + + + Show + Visa + + + Group by + Gruppera efter + + + Display options + Visningsalternativ + + + Group by Album artist/Album + Gruppera efter artist/album + + + Group by Album artist/Album - Disc + Gruppera efter albumartist/album - Skiva + + + Group by Album artist/Year - Album + Gruppera efter albumartist/år - album + + + Group by Album artist/Year - Album - Disc + Gruppera efter albumartist/år - album - skiva + + + Group by Artist/Album + Gruppera efter artist/album + + + Group by Artist/Album - Disc + Gruppera efter artist/album - skiva + + + Group by Artist/Year - Album + Gruppera efter artist/år - album + + + Group by Artist/Year - Album - Disc + Gruppera efter artist/år - album - skiva + + + Group by Genre/Album artist/Album + Gruppera efter genre/albumartist/album + + + Group by Genre/Artist/Album + Gruppera efter genre/artist/album + + + Group by Album Artist + Gruppera efter Albumartist + + + Group by Artist + Gruppera efter artist + + + Group by Album + Gruppera efter album + + + Group by Genre/Album + Gruppera efter genre/album + + + Advanced grouping... + Avancerad gruppering... + + + Grouping Name + Grupperingsnamn + + + Grouping name: + Grupperingsnamn: + + + + CollectionModel + + Various artists + Diverse artister + + + Loading... + Läser in... + + + Unknown + Okänt + + + + CollectionSettingsPage + + Collection + Samling + + + These folders will be scanned for music to make up your collection + Dessa mappar kommer att skannas för musik för att fylla upp ditt bibliotek + + + Add new folder... + Lägg till ny mapp... + + + Remove folder + Ta bort mapp + + + Automatic updating + Automatisk uppdatering + + + Update the collection when Strawberry starts + Uppdatera samlingen när Strawberry startar + + + Monitor the collection for changes + Bevaka ändringar i samlingen + + + Song fingerprinting and tracking + Fingeravtryck och spårning av låtar + + + Mark disappeared songs unavailable + Markera försvunna låtar som otillgängliga + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + Utför låt EBU R 128 analys (krävs för EBU R 128 ljudstyrkenormalisering) + + + Expire unavailable songs after + Utgå otillgängliga låtar efter + + + days + dagar + + + Preferred album art filenames (comma separated) + Föredragna filnamn för albumomslagsbilder (kommaseparerade) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Vid sökning efter albumomslag letar Strawberry först efter bildfiler som innehåller ett av dessa ord. +Om det inte finns några matchningar så kommer den största bilden i mappen att användas. + + + Display options + Visningsalternativ + + + Automatically open single categories in the collection tree + Öppna enskilda kategorier automatiskt i samlingsträdet + + + Show dividers + Visa avdelare + + + Show album cover art in collection + Visa omslagsbilder i samlingen + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Albumomslag pixmap-cache + + + Size + Storlek + + + Enable Disk Cache + Aktivera diskcache + + + Disk Cache Size + Diskcache storlek + + + Current disk cache in use: + Aktuell diskcache i användning: + + + Clear Disk Cache + Rensa diskcache + + + Song playcounts and ratings + Antal spelningar och betyg för låtar + + + Save playcounts to song tags when possible + Spara antal spelningar till låttaggar när det är möjligt + + + Save ratings to song tags when possible + Spara betyg till låttaggar när det är möjligt + + + Overwrite database playcount when songs are re-read from disk + Skriv över databasspelningsantal när låtar läses om från disken + + + Overwrite database rating when songs are re-read from disk + Skriv över databasbetyg när låtar läses om från disk + + + Save playcounts and ratings to files now + Spara antal spelningar och betyg till filer nu + + + Enable delete files in the right click context menu + Aktivera att ta bort filer i högerklickssnabbmenyn + + + Add directory... + Lägg till mapp... + + + Write all playcounts and ratings to files + Skriv alla antal spelningar och betyg till filer + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Är du säker på att du vill skriva antal spelningar och betyg för alla låtar i din samling? + + + + CollectionView + + Your collection is empty! + Din samling är tom! + + + Click here to add some music + Klicka här för att lägga till musik + + + Append to current playlist + Lägg till i aktuell spellista + + + Replace current playlist + Ersätt aktuell spellista + + + Open in new playlist + Öppna i ny spellista + + + Queue track + Lägg till spår i kön + + + Queue to play next + Lägg till i kön för att spela som nästa + + + Search for this + Sök efter det här + + + Organize files... + Organisera filer... + + + Copy to device... + Kopiera till enhet... + + + Delete from disk... + Ta bort från disk... + + + Edit track information... + Redigera spårinformation... + + + Edit tracks information... + Redigera spårinformation... + + + Show in file browser... + Visa i filhanterare... + + + Rescan song(s) + Skanna om av låt(ar)... + + + Show in various artists + Visa i diverse artister + + + Don't show in various artists + Visa inte i diverse artister + + + There are other songs in this album + Det finns andra låtar i det här albumet + + + Would you like to move the other songs on this album to Various Artists as well? + Vill du flytta de andra låtarna i det här albumet till diverse artister också? + + + Error + Fel + + + None of the selected songs were suitable for copying to a device + Ingen av de valda låtarna lämpar sig för kopiering till en enhet + + + + CollectionViewContainer + + Form + Formulär + + + + CollectionWatcher + + Updating collection + Uppdaterar samlingen + + + Updating %1 + Uppdaterar %1 + + + + Console + + Console + Konsol + + + Run + Kör + + + + ContextSettingsPage + + Context + Kontext + + + Custom text settings + Anpassade textinställningar + + + MenuPopupToolButton + + + + Title + Titel + + + Summary + Sammandrag + + + Enable Items + Aktivera poster + + + Album + Album + + + Technical Data + Tekniska data + + + Song Lyrics + Låttexter + + + Automatically search for album cover + Sök automatiskt efter albumomslag + + + Automatically search for song lyrics + Sök automatiskt efter låttexter + + + Font for headline + Teckensnitt för rubrik + + + Font + Teckensnitt + + + Font size + Teckensnittsstorlek + + + pt + + + + Preview + Förhandsvisning + + + Font for data and lyrics + Teckensnitt för data och låttexter + + + Add song artist tag + Lägg till tagg för låtens artist + + + Add song album tag + Lägg till tagg för låtens album + + + Add song title tag + Lägg till tagg för låtens titel + + + Add song albumartist tag + Lägg till tagg för låtens albumartist + + + Add song year tag + Lägg till tagg för år + + + Add song composer tag + Lägg till tagg för låtens kompositör + + + Add song performer tag + Lägg till tagg för aktör + + + Add song grouping tag + Lägg till tagg för låtgruppering + + + Add song disc tag + Lägg till tagg för skivnummer + + + Add song track tag + Lägg till tagg för spårnummer + + + Add song genre tag + Lägg till tagg för låtgenre + + + Add song length tag + Lägg till tagg för låtens längd + + + Add song play count + Lägg till antal spelningar av låtar + + + Add song skip count + Lägg till antal överhoppningar + + + Add a new line if supported by the notification type + Lägg till en ny rad om det stöds av aviseringstypen + + + %filename% + + + + Add song filename + Lägg till låtens filnamn + + + %url% + + + + Add song URL + Lägg till låtens webbadress + + + %rating% + + + + Add song rating + Lägg till låtbetyg + + + %originalyear% + + + + Add song original year tag + Lägg till låtens originalårstagg + + + + ContextView + + Filetype + Filtyp + + + Length + Längd + + + Samplerate + Samplingsfrekvens + + + Bit depth + Bitdjup + + + Bitrate + Bitfrekvens + + + EBU R 128 Integrated Loudness + EBU R 128 integrerad ljudstyrka + + + EBU R 128 Loudness Range + EBU R 128 ljudstyrkeintervall + + + Show album cover + Visa albumomslag + + + Show song technical data + Visa låttekniska data + + + Show song lyrics + Visa låttexter + + + Automatically search for song lyrics + Sök automatiskt efter låttexter + + + No song playing + Ingen låt spelas + + + %1 song + %1 låt + + + %1 songs + %1 låtar + + + %1 artist + %1 artist + + + %1 artists + %1 artister + + + %1 album + %1 album + + + %1 albums + %1 album + + + kbps + kbps + + + + CoverFromURLDialog + + Load cover from URL + Läs in omslag från webbadress + + + Enter a URL to download a cover from the Internet: + Ange en webbadress för att hämta ett omslag från Internet: + + + Fetching cover error + Fel vid hämtning av omslag + + + The site you requested does not exist! + Webbplatsen du söker finns inte! + + + The site you requested is not an image! + Webbplatsen du söker är inte en bild! + + + + CoverManager + + Cover Manager + Omslagshanterare + + + Enter search terms here + Ange söktermer här + + + MenuPopupToolButton + + + + View + Visa + + + Total albums: + Album totalt: + + + Without cover: + Utan omslag: + + + 0 + + + + Fetch Missing Covers + Hämta omslag som saknas + + + Export Covers + Exportera omslag + + + Fetch automatically + Hämta automatiskt + + + Load + Läs in + + + Add to playlist + Lägg till i spellista + + + + CoverSearchStatisticsDialog + + Fetch completed + Hämtning klar + + + Got %1 covers out of %2 (%3 failed) + Erhöll %1 omslag av %2 (%3 misslyckades) + + + Covers from %1 + Omslag från %1 + + + Total network requests made + Totalt antal nätverksförfrågningar + + + Average image size + Genomsnittlig bildstorlek + + + Total bytes transferred + Totalt överförda byte + + + + CoversSettingsPage + + Covers + Omslag + + + Cover providers + Omslagsleverantörer + + + Choose the providers you want to use when searching for covers. + Välj leverantörerna du vill använda vid sökning efter omslag. + + + Move up + Flytta uppåt + + + Move down + Flytta nedåt + + + Authentication + Autentisering + + + Login + Logga in + + + Album cover types + Typer av skivomslag + + + Saving album covers + Spara albumomslag + + + Save album covers in album directory + Spara albumomslag i albummappen + + + Save album covers in cache directory + Spara albumomslag i cachemappen + + + Save album covers as embedded cover + Spara albumomslag som inbäddat omslag + + + Filename: + Filnamn: + + + Pattern + Mönster + + + Random + Slumpat + + + Overwrite existing file + Skriv över befintlig fil + + + Lowercase filename + Filnamn med gemener + + + Replace spaces with dashes + Ersätter mellanslag med understreck + + + Use Tidal settings to authenticate. + Använd Tidal-inställningar för att autentisera. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Använd Qobuz-inställningar för att autentisera. + + + %1 needs authentication. + %1 behöver autentisering. + + + %1 does not need authentication. + %1 behöver inte autentisering. + + + No provider selected. + Ingen leverantör vald. + + + Authentication failed + Autentisering misslyckades + + + Manually unset (%1) + Inaktivera manuellt (%1) + + + Set through album cover search (%1) + Ställ in genom albumomslagssökning (%1) + + + Automatically picked up from album directory (%1) + Hämtas automatiskt från albummappen (%1) + + + Embedded album cover art (%1) + Inbäddat albumomslag (%1) + + + + CueParser + + Saving CUE files is not supported. + Spara CUE-filer stöds inte. + + + + Database + + Unable to execute SQL query: %1 + Det gick inte att köra SQL-förfråga: %1 + + + Failed SQL query: %1 + Misslyckad SQL-förfråga: %1 + + + Integrity check + Integritetskontroll + + + Database corruption detected. + Databasskada upptäcktes. + + + Backing up database + Säkerhetskopierar databas + + + + DeleteConfirmationDialog + + Delete files + Ta bort filer + + + The following files will be deleted from disk: + Följande filer tas bort från hårddisken: + + + Are you sure you want to continue? + Är du säker på att du vill fortsätta? + + + + DeleteFiles + + Deleting files + Tar bort filer + + + + DeviceItemDelegate + + Updating %1%... + Uppdaterar %1%... + + + Not connected + Inte ansluten + + + Not mounted - double click to mount + Inte monterad - dubbelklicka för att montera + + + Double click to open + Dubbelklicka för att öppna + + + %1 song%2 + %1 låt%2 + + + + DeviceManager + + Connect device + Anslut enhet + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Det här är första gången du ansluter den här enheten. Strawberry kommer nu att skanna enheten för att hitta musikfiler - det kan ta lite tid. + + + This device will not work properly + Den här enheten kommer inte att fungera ordentligt + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Det här är en MTP-enhet, men du kompilerade Strawberry utan stöd av libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Om du fortsätter kommer den här enheten att arbeta långsamt och låtar som kopierats till den kanske inte fungerar. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Det här är en iPod, men du har kompilerade Strawberry utan stöd av libgpod. + + + This type of device is not supported: %1 + Den här typen av enhet stöds inte: %1 + + + + DeviceProperties + + Device Properties + Enhetsegenskaper + + + Information + + + + Name + Namn + + + Icon + Ikon + + + Hardware information + Hårdvaruinformation + + + Hardware information is only available while the device is connected. + Hårdvaruinformation är endast tillgänglig när enheten är ansluten. + + + File formats + Filformat + + + Supported formats + Format som stöds + + + This device supports the following file formats: + Den här enheten stöder följande filformat: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry kan automatiskt konvertera musiken du kopierar till den här enheten till ett format som den kan spela. + + + Do not convert any music + Konvertera inte någon musik + + + Convert any music that the device can't play + Konvertera all musik som inte kan spelas av enheten + + + Convert all music + Konvertera all musik + + + Preferred format + Önskat format + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Den här enheten måste vara ansluten och öppnad innan Strawberry kan se vilka filformat den stöder. + + + Open device + Öppna enhet + + + Querying device... + Kommunicerar med enhet... + + + Model + Modell + + + Manufacturer + Tillverkare + + + + DeviceView + + Safely remove device + Säker borttagning av enhet + + + Forget device + Glöm enhet + + + Device properties... + Enhetsegenskaper... + + + Append to current playlist + Lägg till i aktuell spellista + + + Replace current playlist + Ersätt aktuell spellista + + + Open in new playlist + Öppna i ny spellista + + + Copy to collection... + Kopiera till samling... + + + Delete from device... + Ta bort från enhet... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Om en enhet glöms kommer den att tas bort från den här listan och Strawberry kommer att behöva skanna om alla låtar nästa gång du ansluter den. + + + Delete files + Ta bort filer + + + These files will be deleted from the device, are you sure you want to continue? + Filerna kommer att tas bort från enheten, är du säker på att du vill fortsätta? + + + + DeviceViewContainer + + Form + Formulär + + + + DynamicPlaylistControls + + Dynamic mode is on + Dynamiskt läge är på + + + New tracks will be added automatically. + Nya spår läggs till automatiskt. + + + Expand + Expandera + + + Repopulate + Skapa en ny blandning + + + Turn off + Stäng av + + + + EditTagDialog + + Edit track information + Redigera spårinformation + + + Summary + Sammandrag + + + Date created + Datum skapad + + + Art Automatic + Automatiska omslag + + + Date modified + Datum ändrad + + + Art Embedded + Omslaget inbäddat + + + Last played + A playlist's tag. + + + + File type + Filtyp + + + Length + Längd + + + Play count + Antal spelningar + + + Bit depth + Bitdjup + + + EBU R 128 integrated loudness + EBU R 128 integrerad ljudstyrka + + + Bit rate + Bithastighet + + + Skip count + Antal överhoppningar + + + Sample rate + Samplingsfrekvens + + + Path + Sökväg + + + Filename + Filnamn + + + Art Unset + Omslaget inte inställt + + + File size + Filstorlek + + + Art Manual + Manuella omslag + + + EBU R 128 loudness range + EBU R 128 ljudstyrkeintervall + + + Reset play counts + Återställ antal spelningar + + + Tags + Taggar + + + MenuPopupToolButton + + + + Change art + Byt omslag + + + Embedded cover + Inbäddat omslag + + + Disc + Skiva + + + Grouping + Gruppering + + + Album artist + Albumartist + + + Album + Album + + + Year + År + + + Title + Titel + + + Artist + Artist + + + Composer + Kompositör + + + Complete tags automatically + Fyll i taggar automatiskt + + + Genre + Genre + + + Comment + Kommentar + + + Performer + Aktör + + + Compilation + Sammanställning + + + Track + Spår + + + Rating + Betyg + + + Lyrics + Låttexter + + + Complete lyrics automatically + + + + Previous + Föregående + + + Next + Nästa + + + Saving tracks + Sparar spår + + + Loading tracks + Läser in spår + + + %1 songs selected. + %1 låtar valda. + + + kbps + kbps + + + Unknown + Okänt + + + Yes + Ja + + + No + Nej + + + None + Ingen + + + Cover is unset. + Omslaget är inte inställt. + + + Cover from embedded image. + Omslag från inbäddad bild. + + + Cover from %1 + Omslag från %1 + + + Cover art not set + Omslagsbild är inte inställd + + + Album cover editing is only available for collection songs. + Redigering av albumomslag är endast tillgänglig för samlingslåtar. + + + Cover changed: Will be cleared when saved. + Omslaget bytt: kommer att rensas när det sparas. + + + Cover changed: Will be unset when saved. + Omslaget bytt: återställs när det sparas. + + + Cover changed: Will be deleted when saved. + Omslaget bytt: kommer att tas bort när det sparas. + + + Cover changed: Will set new when saved. + Omslaget bytt: ställer in nytt när det sparas. + + + Never + Aldrig + + + Reset song play statistics + Återställ låtuppspelningsstatistik + + + Are you sure you want to reset this song's play statistics? + Är du säker på att du vill återställa den här låtens spelstatistik? + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Frekvenskorrigerare + + + Preset: + Förval: + + + Save preset + Spara förinställning + + + Delete preset + Ta bort förinställning + + + Enable equalizer + Aktivera frekvenskorrigerare + + + Enable stereo balancer + Aktivera stereo-balanserare + + + Left + Vänster + + + Balance + Balans + + + Right + Höger + + + Pre-amp + Förförstärkare + + + Custom + Anpassad + + + Classical + Klassisk + + + Club + Klubb + + + Dance + Dans + + + Full Bass + Hel bas + + + Full Treble + Hel diskant + + + Full Bass + Treble + Hel bas + diskant + + + Laptop/Headphones + Bärbar dator/hörlurar + + + Large Hall + Stor sal + + + Live + Live + + + Party + Fest + + + Pop + Pop + + + Reggae + Reggae + + + Rock + Rock + + + Soft + + + + Ska + Ska + + + Soft Rock + + + + Techno + + + + Zero + Noll + + + Name + Namn + + + Are you sure you want to delete the "%1" preset? + Är du säker på att du vill ta bort förinställningen "%1"? + + + + EqualizerSlider + + Equalizer + Frekvenskorrigerare + + + %1 dB + %1 dB + + + + ErrorDialog + + Strawberry Error + Strawberry-fel + + + + FancyTabWidget + + Large sidebar + Stort sidofält + + + Icons sidebar + + + + Small sidebar + Litet sidofält + + + Plain sidebar + Vanligt sidofält + + + Tabs on top + Flikar längst upp + + + Icons on top + Ikoner längst upp + + + + FileTypeItemDelegate + + Unknown + Okänt + + + + FileView + + Form + Formulär + + + + FileViewList + + Append to current playlist + Lägg till i aktuell spellista + + + Replace current playlist + Ersätt aktuell spellista + + + Open in new playlist + Öppna i ny spellista + + + Copy to collection... + Kopiera till samling... + + + Move to collection... + Flytta till samling... + + + Copy to device... + Kopiera till enhet... + + + Delete from disk... + Ta bort från disk... + + + Edit track information... + Redigera spårinformation... + + + Show in file browser... + Visa i filhanterare... + + + + FreeSpaceBar + + Available + Tillgängligt + + + New songs + Nya låtar + + + Exceeded by + + + + Used + Använt + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Läser in iPod-databas + + + An error occurred loading the iTunes database + Ett fel uppstod vid inläsning av iTunes-databasen + + + + GeniusLyricsProvider + + Genius Authentication + Genius-autentisering + + + Please open this URL in your browser + Öppna den här webbadressen i din webbläsare + + + Redirect missing token code! + Omdirigering saknar token-kod! + + + Received invalid reply from web browser. + Tog emot ogiltigt svar från webbläsaren. + + + Redirect from Genius is missing query items code or state. + Omdirigering från Genius saknar förfrågningsobjektkod eller tillstånd. + + + + GioLister + + Mount point + Monteringspunkt + + + Device + Enhet + + + URI + + + + + GlobalShortcutGrabber + + Press a key + Tryck på en tangent + + + Press a key combination to use for %1... + Tryck en tangentkombination att använda för %1... + + + + GlobalShortcutsManager + + Play + Spela + + + Pause + Pausa + + + Play/Pause + Spela/pausa + + + Stop + Stoppa + + + Stop playing after current track + Stoppa spelning efter aktuellt spår + + + Next track + Nästa spår + + + Previous track + Föregående spår + + + Restart or previous track + + + + Increase volume + Höj volymen + + + Decrease volume + Sänk volymen + + + Mute + Ljud av + + + Seek forward + Sök framåt + + + Seek backward + Sök bakåt + + + Show/Hide + Visa/dölj + + + Show OSD + Visa avisering + + + Toggle Pretty OSD + Växla snygg avisering + + + Change shuffle mode + Ändra blandningsläge + + + Change repeat mode + Ändra upprepningsläge + + + Enable/disable scrobbling + Aktivera/inaktivera skrobbling + + + Love + Älska + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Globala genvägar + + + Use Gnome (GSD) shortcuts when available + Använd Gnome (GSD)-genvägar när de är tillgängliga + + + Open... + Öppna... + + + Use MATE shortcuts when available + Använd MATE-genvägar när de är tillgängliga + + + Use KDE (KGlobalAccel) shortcuts when available + Använd KDE (KGlobalAccel) genvägar när de är tillgängliga + + + Use X11 shortcuts when available + Använd X11-genvägar när de är tillgängliga + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Du behöver starta Systeminställningar och tillåta Strawberry att "<span style="font-style:italic">kontrollera din dator</span>" för att använda globala genvägar i Strawberry. + + + Action + Category label + Åtgärd + + + Shortcut + Genväg + + + Shortcut for %1 + Genväg för %1 + + + &None + I&ngen + + + &Default + &Standard + + + &Custom + A&npassad + + + Change shortcut... + Byt genväg... + + + The "%1" command could not be started. + Kommandot "%1" kunde inte startas. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Användning av X11-genvägar på %1 rekommenderas inte och kan orsaka att tangentbordet inte svarar! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Genvägar på %1 används vanligtvis via MPRIS och KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Genvägar till %1 används vanligtvis via Gnome-inställningsdemon och ska istället anpassas i gnome-settings-daemon. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Genvägar till %1 används vanligtvis via Gnome-inställningsdemon och ska istället anpassas i cinnamon-settings-daemon. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Genvägar till %1 används vanligtvis via Mate-inställningsdemon och ska istället anpassas där. + + + + GroupByDialog + + Collection advanced grouping + Samling avancerad gruppering + + + You can change the way the songs in the collection are organized. + Du kan ändra hur låtarna i biblioteket är organiserade. + + + Group Collection by... + Gruppera samling av... + + + First level + Första nivå + + + None + Ingen + + + Artist + Artist + + + Album artist + Albumartist + + + Album + Album + + + Album - Disc + Album - Skiva + + + Disc + Skiva + + + Format + Format + + + Genre + Genre + + + Year + År + + + Year - Album + År - Album + + + Year - Album - Disc + År - Album - Skiva + + + Original year + Originalår + + + Original year - Album + Originalår - Album + + + Composer + Kompositör + + + Performer + Aktör + + + Grouping + Gruppering + + + File type + Filtyp + + + Sample rate + Samplingsfrekvens + + + Bit depth + Bitdjup + + + Bitrate + Bitfrekvens + + + Second level + Andra nivå + + + Third level + Tredje nivå + + + Separate albums by grouping tag + Separera album genom att gruppera tagg + + + + GstEngine + + Buffering + Buffrar + + + + LastFMImport + + Missing username, please login to last.fm first! + Användarnamn saknas, logga in på last.fm först! + + + + LastFMImportDialog + + Import data from last.fm + Importera data från last.fm + + + Choose data to import from last.fm + Välj data att importera från last.fm + + + Last played + + + + Play counts + Antal spelningar + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Varning: antal spelningar och senast spelade från last.fm ersätter samma data för matchade låtar. Antal spelningar kommer att ersätta data baserat på artist och låttitel för samma album! Säkerhetskopiera din databas innan du börjar. + + + Go! + Starta! + + + Close + Stäng + + + Cancel + Avbryt + + + Receiving initial data from last.fm... + Tar emot initiala data från last.fm... + + + Receiving playcount for %1 songs and last played for %2 songs. + Tar emot antal spelningar för %1 låtar och spelades senast för %2 låtar. + + + Receiving last played for %1 songs. + Tar emot senast spelade för %1 låtar. + + + Receiving playcounts for %1 songs. + Tar emot antal spelningar för %1 låtar. + + + Playcounts for %1 songs and last played for %2 songs received. + Antal spelningar för %1 låtar och senast spelat för %2 mottagna låtar. + + + Last played for %1 songs received. + Senast spelad för %1 mottagna låtar. + + + Playcounts for %1 songs received. + Antal spelningar för %1 mottagna låtar. + + + + LastPlayedItemDelegate + + Never + Aldrig + + + + Library + + Least favourite tracks + Minst omtyckta spår + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz-autentisering + + + Please open this URL in your browser + Öppna den här webbadressen i din webbläsare + + + Redirect missing token code! + Omdirigering saknar token-kod! + + + Received invalid reply from web browser. + Tog emot ogiltigt svar från webbläsaren. + + + Unable to scrobble %1 - %2 because of error: %3 + Det gick inte att skrobbla %1 - %2 på grund av fel: %3 + + + Missing MusicBrainz recording ID for %1 %2 %3 + MusicBrainz-inspelnings-ID saknas för %1 %2 %3 + + + ListenBrainz error: %1 + ListenBrainz-fel: %1 + + + + LoginStateWidget + + Form + Formulär + + + You are not signed in. + Du är inte inloggad. + + + Sign out + Logga ut + + + Signing in... + Loggar in... + + + You are signed in. + Du är inloggad. + + + You are signed in as %1. + Du är inloggad som %1. + + + Expires on %1 + Går ut den %1 + + + + LyricsSettingsPage + + Lyrics + Låttexter + + + Lyrics providers + Låttextleverantörer + + + Choose the providers you want to use when searching for lyrics. + Välj leverantörerna du vill använda vid sökning efter låttexter. + + + Move up + Flytta uppåt + + + Move down + Flytta nedåt + + + Authentication + Autentisering + + + Login + Logga in + + + No provider selected. + Ingen leverantör vald. + + + Authentication failed + Autentisering misslyckades + + + + MainWindow + + Strawberry Music Player + + + + MenuPopupToolButton + + + + &Music + &Musik + + + P&laylist + &Spellista + + + Help + Hjälp + + + &Tools + &Verktyg + + + Previous track + Föregående spår + + + F5 + + + + &Play + &Spela + + + F6 + + + + &Stop + &Stoppa + + + F7 + + + + &Next track + &Nästa spår + + + F8 + + + + &Quit + A&vsluta + + + Ctrl+Q + + + + Stop after this track + Stoppa efter det här spåret + + + Ctrl+Alt+V + + + + Love + Älska + + + &Clear playlist + &Rensa spellista + + + Clear playlist + Rensa spellista + + + Ctrl+K + + + + Edit track information... + Redigera spårinformation... + + + Ctrl+E + + + + Renumber tracks in this order... + Omnumrera spår i den här ordningen... + + + Set value for all selected tracks... + Ställ in värde för alla valda spår... + + + Edit tag... + Redigera tagg... + + + &Settings... + &Inställningar... + + + Ctrl+P + + + + &About Strawberry + &Om Strawberry + + + F1 + + + + S&huffle playlist + B&landa spellista + + + Ctrl+H + + + + &Add file... + &Lägg till fil... + + + Ctrl+Shift+A + Ctrl+Skift+A + + + &Open file... + &Öppna fil... + + + Open audio &CD... + Öppna &ljud-CD... + + + &Cover Manager + &Omslagshanterare + + + C&onsole + K&onsol + + + &Shuffle mode + &Blandningsläge + + + &Repeat mode + &Upprepningsläge + + + Remove from playlist + Ta bort från spellista + + + &Equalizer + &Frekvenskorrigerare + + + &Transcode Music + &Omkoda musik + + + Add &folder... + Lägg till &mapp... + + + &Jump to the currently playing track + &Hoppa till spår som nu spelas + + + Ctrl+J + + + + &New playlist + &Ny spellista + + + Ctrl+N + + + + Save &playlist... + Spara &spellista... + + + Ctrl+S + + + + &Load playlist... + &Läs in spellista... + + + Ctrl+Shift+O + Ctrl+Skift+O + + + &Save all playlists... + &Spara alla spellistor... + + + Go to next playlist tab + Gå till nästa spellisteflik + + + Go to previous playlist tab + Gå till föregående spellisteflik + + + &Update changed collection folders + &Uppdatera ändrade samlingsmappar + + + About &Qt + Om &Qt + + + &Mute + &Ljud av + + + Ctrl+M + + + + &Do a full collection rescan + &Gör en fullständig omskanning av samling + + + Stop collection scan + + + + Complete tags automatically... + Fyll i taggar automatiskt... + + + Ctrl+T + + + + Toggle scrobbling + Växla skrobbling + + + Remove &duplicates from playlist + Ta bort &dubbletter från spellista + + + Remove &unavailable tracks from playlist + Ta bort &otillgängliga spår från spellista + + + Add file(s) to transcoder + Lägg till fil(er) i omkodaren + + + Add file to transcoder + Lägg till fil i omkodaren + + + Add stream... + Lägg till flöde... + + + Show sidebar + Visa sidofält + + + Import data from last.fm... + Importera data från last.fm... + + + All Files (*) + Alla filer (*) + + + Context + Kontext + + + Collection + Samling + + + Queue + + + + Playlists + Spellistor + + + Smart playlists + Smarta spellistor + + + Files + Filer + + + Radios + Radiokanaler + + + Devices + Enheter + + + Subsonic + Subsonic + + + Tidal + Tidal + + + Spotify + Spotify + + + Qobuz + Qobuz + + + Show all songs + Visa alla låtar + + + Show only duplicates + Visa endast dubbletter + + + Show only untagged + Visa endast utan taggar + + + Configure collection... + Anpassa samling... + + + Play + Spela + + + Toggle queue status + Växla köstatus + + + Queue selected tracks to play next + Lägg till valda spår i kön för att spela som nästa + + + Toggle skip status + Växla status för hoppa över + + + Rescan song(s)... + Skanna om låt(ar)... + + + Copy URL(s)... + Kopiera webbadress(er)... + + + Show in collection... + Visa i samlingen... + + + Show in file browser... + Visa i filhanterare... + + + Organize files... + Organisera filer... + + + Copy to collection... + Kopiera till samling... + + + Move to collection... + Flytta till samling... + + + Copy to device... + Kopiera till enhet... + + + Delete from disk... + Ta bort från disk... + + + Check for updates... + Sök efter uppdateringar... + + + Strawberry running under Rosetta + Strawberry körs under Rosetta + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + Du kör Strawberry under Rosetta. Att köra Strawberry under Rosetta stöds inte och är känt för att ha problem. Du bör hämta Strawberry för korrekt CPU-arkitektur från %1 + + + Sponsoring Strawberry + Sponsring av Strawberry + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry är gratis programvara med öppen källkod. Om du gillar Strawberry, överväg att sponsra projektet. För mer information om sponsring, se vår webbplats %1 + + + Pause + Pausa + + + Dequeue track + Ta bort spår från kön + + + Dequeue selected tracks + Ta bort valda spår från kön + + + Queue track + Lägg till spår i kön + + + Queue selected tracks + Lägg till valda spår i kön + + + Queue to play next + Lägg till i kön för att spela som nästa + + + Unskip track + Hoppa inte över valt spår + + + Unskip selected tracks + Hoppa inte över valda spår + + + Skip track + Hoppa över spår + + + Skip selected tracks + Hoppa över valda spår + + + Set %1 to "%2"... + Ställ in %1 till "%2"... + + + Edit tag "%1"... + Redigera taggen "%1"... + + + Add to another playlist + Lägg till i en annan spellista + + + New playlist + Ny spellista + + + Add file + Lägg till fil + + + Music + Musik + + + Add folder + Lägg till mapp + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Spellistan har %1 låtar, för stora för att ångra, är du säker på att du vill rensa spellistan? + + + Error + Fel + + + None of the selected songs were suitable for copying to a device + Ingen av de valda låtarna lämpar sig för kopiering till en enhet + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Den version av Strawberry som du just har uppdaterat till kräver en fullständig omskanning av samlingen på grund av de nya funktionerna nedan: + + + Would you like to run a full rescan right now? + Vill du köra en fullständig omskanning nu? + + + Collection rescan notice + Notis om omskanning av samling + + + + MessageDialog + + Message Dialog + Meddelandedialogruta + + + Do not show this message again. + Visa inte det här meddelandet igen. + + + + MimeData + + Playlist + Spellista + + + + MoodbarProxyStyle + + Show moodbar + Visa stämningsdiagram + + + Moodbar style + Format på stämningsdiagrammet + + + + MoodbarSettingsPage + + Moodbar + Stämningsdiagram + + + Show a moodbar in the track progress bar + Visa ett stämningsdiagram i spårets förloppsfält + + + Moodbar style + Format på stämningsdiagrammet + + + Save the .mood files directly in the songs folders + Spara .mood-filerna direkt i låtmapparna + + + Enabled + Aktiverad + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Läser in MTP-enhet + + + Error connecting MTP device %1 + Fel vid anslutning av MTP-enhet %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Nätverksproxy + + + &Use the system proxy settings + &Använd systemets proxyinställningar + + + Direct internet connection + Direkt internetanslutning + + + &Manual proxy configuration + &Manuell proxykonfiguration + + + HTTP proxy + HTTP-proxy + + + SOCKS proxy + SOCKS-proxy + + + Port + + + + Use authentication + Använd autentisering + + + Username + Användarnamn + + + Password + Lösenord + + + Use proxy settings for streaming + Använd proxyinställningar för att flöda + + + + NotificationsSettingsPage + + Notifications + Aviseringar + + + Strawberry can show a message when the track changes. + Strawberry kan visa ett meddelande vid byte av spår. + + + Notification type + Aviseringstyp + + + Disabled + Refers to a disabled notification type in Notification settings. + Inaktiverad + + + Show a &native desktop notification + Visa en &naturlig skrivbordsavisering + + + Show a pretty OSD + Visa en snygg avisering + + + Show a popup fro&m the system tray + Visa en popup fr&ån systemfältet + + + General settings + Allmänna inställningar + + + Popup duration + Popup-varaktighet + + + seconds + sekunder + + + Disable duration + Inaktivera varaktighet + + + Show a notification when I change the volume + Visa en avisering när jag ändrar volymen + + + Show a notification when I change the repeat/shuffle mode + Visa en avisering när jag ändrar upprepnings-/blandningsläge + + + Show a notification when I pause playback + Visa en avisering när jag pausar uppspelningen + + + Show a notification when I resume playback + Visa en avisering när jag återupptar uppspelningen + + + Include album art in the notification + Inkludera albumomslag i aviseringen + + + Custom message settings + Anpassade meddelandeinställningar + + + Use a custom message for notifications + Använd ett eget meddelande för aviseringar + + + Preview + Förhandsvisning + + + MenuPopupToolButton + + + + Summary + Sammandrag + + + Body + Brödtext + + + Pretty OSD options + Alternativ för snygg avisering + + + Background color + Bakgrundsfärg + + + Text options + Textalternativ + + + Choose font... + Välj teckensnitt... + + + Choose color... + Välj färg... + + + Background opacity + Bakgrundsopacitet + + + Basic Blue + Basblå + + + Strawberry Red + Jordgubbsröd + + + Custom... + Anpassad... + + + Enable fading + Aktivera toning + + + Add song artist tag + Lägg till tagg för låtens artist + + + Add song album tag + Lägg till tagg för låtens album + + + Add song title tag + Lägg till tagg för låtens titel + + + Add song albumartist tag + Lägg till tagg för låtens albumartist + + + Add song year tag + Lägg till tagg för år + + + Add song composer tag + Lägg till tagg för låtens kompositör + + + Add song performer tag + Lägg till tagg för aktör + + + Add song grouping tag + Lägg till tagg för låtgruppering + + + Add song disc tag + Lägg till tagg för skivnummer + + + Add song track tag + Lägg till tagg för spårnummer + + + Add song genre tag + Lägg till tagg för låtgenre + + + Add song length tag + Lägg till tagg för låtens längd + + + Add song play count + Lägg till antal spelningar av låtar + + + Add song skip count + Lägg till antal överhoppningar + + + Add song rating + Lägg till låtbetyg + + + Add a new line if supported by the notification type + Lägg till en ny rad om det stöds av aviseringstypen + + + %filename% + + + + Add song filename + Lägg till låtens filnamn + + + %url% + + + + Add song URL + Lägg till låtens webbadress + + + %originalyear% + + + + Add song original year tag + Lägg till låtens originalårstagg + + + OSD Preview + Förhandsvisning av avisering + + + Drag to reposition + Dra för att ändra position + + + + OSDBase + + disc %1 + skiva %1 + + + track %1 + spår %1 + + + Paused + Pausad + + + Stopped + Stoppad + + + Stop playing after track: %1 + Sluta spela efter spår: %1 + + + On + + + + Off + Av + + + Playlist finished + Spellistan är klar + + + Volume %1% + Volym %1% + + + Don't shuffle + Blanda inte + + + Shuffle all + Blanda alla + + + Shuffle tracks in this album + Blanda låtar i det här albumet + + + Shuffle albums + Blanda album + + + Don't repeat + Upprepa inte + + + Repeat track + Upprepa spår + + + Repeat album + Upprepa album + + + Repeat playlist + Upprepa spellista + + + Stop after every track + Stoppa efter varje låt + + + Intro tracks + Introduktionsspår + + + + Organize + + Organizing files + Organiserar filer + + + + OrganizeDialog + + Organize Files + Organisera filer + + + Destination + + + + After copying... + Efter kopiering... + + + Keep the original files + Behåll originalfiler + + + Delete the original files + Ta bort originalfiler + + + Naming options + Namngivningsalternativ + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>En variabel påbörjas med %, till exempel: %artist %album %title </p> + +<p>Om du omgärdar en variabel med klammerparenteser (måsvingar), så kommer den inte att visas om variabeln är tom.</p> + + + Insert... + Infoga... + + + Remove problematic characters from filenames + Ta bort problematiska tecken från filnamn + + + Restrict to characters allowed on FAT filesystems + Begränsa till tecken som är tillåtna i FAT-filsystem + + + Restrict characters to ASCII + Begränsa tecken till ASCII + + + Allow extended ASCII characters + Tillåt utökade ASCII-tecken + + + Replace spaces with underscores + Ersätter mellanslag med understreck + + + Overwrite existing files + Skriv över befintliga filer + + + Copy album cover artwork + Kopiera albumomslag + + + Preview + Förhandsvisning + + + Loading... + Läser in... + + + Safely remove the device after copying + Säker borttagning av enheten efter kopiering + + + Title + Titel + + + Album + Album + + + Artist + Artist + + + Artist's initial + Artistens initialer + + + Album artist + Albumartist + + + Composer + Kompositör + + + Performer + Aktör + + + Grouping + Gruppering + + + Track + Spår + + + Disc + Skiva + + + Year + År + + + Original year + Originalår + + + Genre + Genre + + + Comment + Kommentar + + + Length + Längd + + + Bitrate + Refers to bitrate in file organize dialog. + Bitfrekvens + + + Sample rate + Samplingsfrekvens + + + Bit depth + Bitdjup + + + File extension + Filändelse + + + + OrganizeErrorDialog + + Error copying songs + Fel vid kopiering av låtar + + + There were problems copying some songs. The following files could not be copied: + Fel uppstod vid kopiering av några låtar. Följande filer kunde inte kopieras: + + + Error deleting songs + Fel vid borttagning av låtar + + + There were problems deleting some songs. The following files could not be deleted: + Fel uppstod vid borttagning av några låtar. Följande filer kunde inte kopieras: + + + + ParserBase + + Don't know how to handle %1 + Vet inte hur man hanterar %1 + + + + PlayingWidget + + Small album cover + Litet albumomslag + + + Large album cover + Stort albumomslag + + + Fit cover to width + Passa omslag till bredd + + + Show above status bar + Visa ovanför statusraden + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Titel + + + Artist + Artist + + + Album + Album + + + Track + Spår + + + Disc + Skiva + + + Length + Längd + + + Year + År + + + Original Year + Originalår + + + Genre + Genre + + + Album Artist + Albumartist + + + Composer + Kompositör + + + Performer + Aktör + + + Grouping + Gruppering + + + Play Count + Antal spelningar + + + Skip Count + Hoppa över räkning + + + Last Played + Senast spelade + + + Sample Rate + Samplingsfrekvens + + + Bit Depth + + + + Bitrate + Bitfrekvens + + + File Name + Filnamn + + + File Name (without path) + Filnamn (utan sökväg) + + + File Size + Filstorlek + + + File Type + Filtyp + + + Date Modified + Datum ändrat + + + Date Created + Datum skapat + + + Comment + Kommentar + + + Source + Källa + + + Mood + Stämning + + + Rating + Betyg + + + CUE + + + + Integrated Loudness + Integrerad ljudstyrka + + + Loudness Range + Ljudstyrkeintervall + + + + PlaylistContainer + + Form + Formulär + + + Undo + Ångra + + + Redo + Gör om + + + Playlist + Spellista + + + Load playlist + Läs in spellista + + + No matches found. Clear the search box to show the whole playlist again. + Inga träffar hittades. Töm sökrutan för att visa hela spellistan igen. + + + + PlaylistDelegateBase + + stop + stoppa + + + + PlaylistGeneratorInserter + + Loading smart playlist + Läser in smart spellista + + + + PlaylistHeader + + &Hide... + &Dölj... + + + &Stretch columns to fit window + &Sträck ut kolumner så de passar i fönstret + + + &Reset columns to default + &Återställ kolumner till standard + + + &Lock rating + &Lås betyg + + + &Align text + &Justera text + + + &Left + &Vänster + + + &Center + &Centrera + + + &Right + &Höger + + + &Hide %1 + &Dölj %1 + + + + PlaylistListContainer + + Form + Formulär + + + New folder + Ny mapp + + + Delete + Ta bort + + + Save playlist + Save playlist menu action. + Spara spellista + + + Copy to device... + Kopiera till enhet... + + + Enter the name of the folder + Ange mappens namn + + + Playlist + Spellista + + + Copy to device + Kopiera till enhet + + + Playlist must be open first. + Spellistan måste vara öppen först. + + + Remove playlists + Ta bort spellistor + + + You are about to remove %1 playlists from your favorites, are you sure? + Du är på väg att ta bort %1 spellistor från dina favoriter, är du säker? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Du kan göra spellistor till favoriter genom att klicka på stjärnikonen intill ett namn på en spellista + + + Favorited playlists will be saved here + Favoritspellistor sparas här + + + + PlaylistManager + + Playlist + Spellista + + + Couldn't create playlist + Kunde inte skapa spellista + + + Save playlist + Title of the playlist save dialog. + Spara spellista + + + Unknown playlist extension + Okänd ändelse för spellista + + + Unknown file extension for playlist. + Okänd filändelse för spellista. + + + %1 selected of + %1 valda av + + + %n track(s) + + + + + + + + Unknown + Okänt + + + Various artists + Diverse artister + + + + PlaylistParser + + All playlists (%1) + Alla spellistor (%1) + + + %1 playlists (%2) + %1 spellistor (%2) + + + Unknown filetype: %1 + Okänd filtyp: %1 + + + Could not open file %1 + Det gick inte att öppna filen %1 + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Alternativ för spellista + + + File paths + Filsökvägar + + + This can be changed later through the preferences + Det här kan ändras senare genom inställningarna + + + Remember my choice + Kom ihåg mitt val + + + Automatic + Automatisk + + + Relative + Relativ + + + Absolute + Absolut + + + + PlaylistSequence + + Repeat + Upprepa + + + Shuffle + Blanda + + + Don't repeat + Upprepa inte + + + Repeat track + Upprepa spår + + + Repeat album + Upprepa album + + + Repeat playlist + Upprepa spellista + + + Stop after each track + Stoppa efter varje låt + + + Intro tracks + Introduktionsspår + + + Don't shuffle + Blanda inte + + + Shuffle tracks in this album + Blanda låtar i det här albumet + + + Shuffle all + Blanda alla + + + Shuffle albums + Blanda album + + + + PlaylistSettingsPage + + Playlist + Spellista + + + Use alternating row colors + Använd alternerande radfärger + + + Show bars on the currently playing track + Visa staplar på det spår som spelas för närvarande + + + Show a glowing animation on the currently playing track + Visa en lysande animation på det spår som spelas för närvarande + + + Warn me when closing a playlist tab + Varna mig när jag stänger en spellisteflik + + + Continue to the next item in the playlist if a song is unavailable + Fortsätt till nästa post i spellistan om en låt inte är tillgänglig + + + Grey out unavailable songs in playlists on playback + Grå text för saknade låtar i mina spellistor vid uppspelning + + + Grey out unavailable songs in playlists on startup + Grå text för saknade låtar i mina spellistor vid uppstart + + + Automatically select current playing track + Välj automatiskt spår som nu spelas + + + Enable playlist toolbar + Aktivera verktygsfältet för spellistan + + + Enable playlist clear button + Aktivera spellistans rensningsknapp + + + Enable delete files in the right click context menu + Aktivera att ta bort filer i högerklickssnabbmenyn + + + Automatically sort playlist when inserting songs + Sortera spellistan automatiskt när du lägger in låtar + + + When saving a playlist, file paths should be + När en spellista sparas ska sökvägarna vara + + + A&utomatic + A&utomatiska + + + Absolu&te + Absolu&ta + + + Re&lative + Re&lativa + + + As&k when saving + Frå&ga när du sparar + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Om aktiverad så kan du klicka på en markerad sång i spellistan för att redigera taggvärdet direkt + + + Enable song metadata inline edition with click + Aktivera redigering av låtmetadata genom klick + + + Write metadata when saving playlists + Skriv metadata när spellistor sparas + + + + PlaylistTabBar + + Star playlist + Stjärnmarkera spellista + + + Close playlist + Stäng spellista + + + Rename playlist... + Byt namn på spellista... + + + Save playlist... + Spara spellista... + + + Rename playlist + Byt namn på spellista + + + Enter a new name for this playlist + Ange ett nytt namn för den här spellistan + + + Remove playlist + Ta bort spellista + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Du är på väg att ta bort en spellista som inte ingår i dina favoritspellistor: spellistan kommer att tas bort (den här åtgärden kan inte ångras). +Är du säker på att du vill fortsätta? + + + Warn me when closing a playlist tab + Varna mig när jag stänger en spellisteflik + + + This option can be changed in the "Behavior" preferences + Det här alternativet kan ändras i inställningarna för "Beteende" + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Dubbelklicka här för att favorisera den här spellistan så att den sparas och förblir tillgänglig från panelen "Spellistor" på det vänstra sidofältet + + + Playlist + Spellista + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + lägg till %n låtar + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + flytta %n låtar + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + ta bort %n låtar + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + blanda låtar + + + + PlaylistUndoCommands::SortItems + + sort songs + sortera låtar + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + kbps + + + + QObject + + Usage + Användning + + + options + alternativ + + + URL(s) + Webbadress(er) + + + Player options + Spelaralternativ + + + Start the playlist currently playing + Starta spellistan som nu spelas + + + Play if stopped, pause if playing + Spela om stoppad, pausa vid spelning + + + Pause playback + Pausa uppspelning + + + Stop playback + Stoppa uppspelning + + + Stop playback after current track + Stoppa uppspelning efter aktuellt spår + + + Skip backwards in playlist + Hoppa bakåt i spellista + + + Skip forwards in playlist + Hoppa framåt i spellista + + + Set the volume to <value> percent + Ställ in volymen till <value> procent + + + Increase the volume by 4 percent + Höj volymen med 4 procent + + + Decrease the volume by 4 percent + Sänk volymen med 4 procent + + + Increase the volume by <value> percent + Höj volymen med <value> procent + + + Decrease the volume by <value> percent + Sänk volymen med <value> procent + + + Seek the currently playing track to an absolute position + Hoppa till en absolut position i spår som nu spelas + + + Seek the currently playing track by a relative amount + Hoppa till en relativ position i spår som nu spelas + + + Restart the track, or play the previous track if within 8 seconds of start. + Starta om spåret, eller spela föregående spår om inom 8 sekunder efter start. + + + Playlist options + Alternativ för spellista + + + Create a new playlist with files + Skapa en ny spellista med filer + + + Append files/URLs to the playlist + Lägg till filer/webbadresser till spellistan + + + Loads files/URLs, replacing current playlist + Läser in filer/webbadresser, ersätter aktuell spellista + + + Play the <n>th track in the playlist + Spela det <n> spåret i spellistan + + + Play given playlist + Spela given spellista + + + Other options + Övriga flaggor + + + Display the on-screen-display + Visa avisering + + + Toggle visibility for the pretty on-screen-display + Växla synlighet för snygg avisering + + + Change the language + Ändra språket + + + Resize the window + Ändra storlek på fönstret + + + Equivalent to --log-levels *:1 + Motsvarar --log-levels *:1 + + + Equivalent to --log-levels *:3 + Motsvarar --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Kommaseparerad lista över class:level; level är 0-3 + + + Print out version information + Visa versionsinformation + + + Failed to create directory %1. + Det gick inte att skapa katalogen %1. + + + Destination file %1 exists, but not allowed to overwrite. + Målfilen %1 finns, men får inte skrivas över. + + + Destination file %1 exists, but not allowed to overwrite + Målfilen %1 finns, men får inte skrivas över + + + Could not copy file %1 to %2. + Det gick inte att kopiera filen %1 till %2. + + + Unknown + Okänt + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Filen %1 känns inte igen som en giltig ljudfil. + + + 1 day + 1 dag + + + %1 days + %1 dagar + + + Today + Idag + + + Yesterday + Igår + + + %1 days ago + %1 dagar sedan + + + Tomorrow + Imorgon + + + In %1 days + Om %1 dagar + + + Next week + Nästa vecka + + + In %1 weeks + Om %1 veckor + + + Show in file browser + Visa i filhanteraren + + + Too many songs selected. + För många låtar valda. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + %1 låtar i %2 olika valda mappar, är du säker på att du vill öppna dem alla? + + + Failed to load image from data for %1 + Det gick inte att läsa in bilden från data för %1 + + + Success + Lyckades + + + File is unsupported + Filen stöds inte + + + Filename is missing + Filnamn saknas + + + File does not exist + Filen finns inte + + + File could not be opened + Det gick inte att öppna filen + + + Could not parse file + + + + Could save file + Det gick att spara filen + + + Unknown error + Okänt fel + + + Prefix a search term with a field name to limit the search to that field, e.g.: + Prefix en sökterm med ett fältnamn för att begränsa sökningen till det fältet, t.ex.: + + + artist + artist + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + Söktermer för numeriska fält kan prefixas med %1 eller %2 för att förfina sökningen, t.ex.: + + + rating + betyg + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + Flera söktermer kan också kombineras med "%1" (standard) och "%2", samt grupperas med parenteser. + + + Available fields + Tillgängliga fält + + + after + efter + + + before + före + + + on + + + + not on + inte den + + + in the last + de senaste + + + not in the last + inte de senaste + + + between + mellan + + + contains + som innehåller + + + does not contain + som inte innehåller + + + starts with + som börjar med + + + ends with + som slutar med + + + greater than + som är större än + + + less than + som är mindre än + + + equals + som är lika med + + + not equals + inte lika med + + + empty + tom + + + not empty + inte tom + + + Comment + Kommentar + + + A-Z + A-Ö + + + Z-A + Ö-A + + + oldest first + äldsta först + + + newest first + nyaste först + + + shortest first + korstaste först + + + longest first + längsta först + + + smallest first + minsta först + + + biggest first + största först + + + Hours + Timmar + + + Days + Dagar + + + Weeks + Veckor + + + Months + Månader + + + Years + År + + + Normal + + + + Angry + Arg + + + Frozen + Frusen + + + Happy + Glad + + + System colors + Systemfärger + + + + QWidget + + Clear + Rensa + + + Reset + Återställ + + + + QobuzRequest + + Receiving artists... + Tar emot artister... + + + Receiving albums... + Tar emot album... + + + Receiving songs... + Tar emot låtar... + + + Searching... + Söker... + + + Receiving albums for %1 artist... + Tar emot album för %1 artist... + + + Receiving albums for %1 artists... + Tar emot album för %1 artister... + + + Receiving songs for %1 album... + Tar emot låtar för %1 album... + + + Receiving songs for %1 albums... + Tar emot låtar för %1 album... + + + Receiving album cover for %1 album... + Tar emot albumomslag för %1 album... + + + Receiving album covers for %1 albums... + Tar emot albumomslag för %1 album... + + + No match. + Ingen matchning. + + + Unknown error + Okänt fel + + + + QobuzService + + Authenticating... + Autentisering... + + + Maximum number of login attempts reached. + Högsta antalet inloggningsförsök har uppnåtts. + + + Missing Qobuz app ID. + Qobuz-app-id saknas. + + + Missing Qobuz username. + Qobuz-användarnamn saknas. + + + Missing Qobuz password. + Qobuz-lösenord saknas. + + + Not authenticated with Qobuz. + Inte autentiserad med Qobuz. + + + Missing Qobuz app ID or secret. + Qobuz-app-ID eller hemlighet saknas. + + + + QobuzSettingsPage + + Qobuz + Qobuz + + + Enable + Aktivera + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Qobuz stöds inte officiellt och kräver ett API-app-ID och hemlighet från en registrerad applikation för att fungera. Vi kan inte hjälpa dig att få dessa. + + + Authentication + Autentisering + + + App ID + App-ID + + + Username + Användarnamn + + + Password + Lösenord + + + App Secret + Apphemlighet + + + Login + Logga in + + + Preferences + Inställningar + + + Audio format + Ljudformat + + + Search delay + Sökfördröjning + + + ms + + + + Artists search limit + Sökgräns för artister + + + Albums search limit + Sökgräns för album + + + Songs search limit + Sökgräns för låtar + + + Download album covers + Hämta albumomslag + + + Base64 encoded secret + Base64-kodad hemlighet + + + Configuration incomplete + Konfigurationen ofullständig + + + Missing app id. + App-id saknas. + + + Missing username. + Användarnamn saknas. + + + Missing password. + Lösenord saknas. + + + Authentication failed + Autentisering misslyckades + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Qobuz-app-ID eller hemlighet saknas. + + + Cancelled. + Avbruten. + + + + Queue + + %n track(s) + + + + + + + + + QueueView + + QueueView + + + + Move down + Flytta nedåt + + + Ctrl+Up + Ctrl+Upp + + + Move up + Flytta uppåt + + + Ctrl+Down + Ctrl+Ner + + + Remove + Ta bort + + + Clear + Rensa + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + Hämtar %1 kanaler + + + + RadioView + + Append to current playlist + Lägg till i aktuell spellista + + + Replace current playlist + Ersätt aktuell spellista + + + Open in new playlist + Öppna i ny spellista + + + Open homepage + Öppna webbplats + + + Donate + Donera + + + Refresh channels + Uppdatera kanaler + + + + RadioViewContainer + + Form + Formulär + + + + SCollection + + Saving playcounts and ratings + Sparar antal spelningar och betyg + + + + SavePlaylistsDialog + + Select directory for saving playlists + Välj mapp för att spara spellistor + + + Type + Typ + + + Select directory for the playlists + Välj mapp för spellistorna + + + Directory does not exist. + Mappen finns inte. + + + + SavedGroupingManager + + Saved Grouping Manager + Sparad grupperingshanterare + + + Remove + Ta bort + + + Ctrl+Up + Ctrl+Upp + + + Name + Namn + + + First level + Första nivå + + + Second Level + Andra nivå + + + Third Level + Tredje nivå + + + None + Ingen + + + Album artist + Albumartist + + + Artist + Artist + + + Album + Album + + + Album - Disc + Album - Skiva + + + Year - Album + År - Album + + + Year - Album - Disc + År - Album - Skiva + + + Original year - Album + Originalår - Album + + + Original year - Album - Disc + Originalår - Album - Skiva + + + Disc + Skiva + + + Year + År + + + Original year + Originalår + + + Genre + Genre + + + Composer + Kompositör + + + Performer + Aktör + + + Grouping + Gruppering + + + File type + Filtyp + + + Format + Format + + + Sample rate + Samplingsfrekvens + + + Bit depth + Bitdjup + + + Bitrate + Bitfrekvens + + + Unknown + Okänt + + + + ScrobblerSettingsPage + + Scrobbler + Skrobbling + + + Enable + Aktivera + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Låtar skrobblas om de har giltiga metadata och är längre än 30 sekunder, har spelats under minst halva dess varaktighet eller i 4 minuter (beroende på vilket som inträffar först). + + + Work in offline mode (Only cache scrobbles) + Arbeta i frånkopplat läge (cacha endast skrobblingar) + + + Show scrobble button + Visa knappen skrobbla + + + Show love button + Visa knappen älska + + + Submit scrobbles every + Skicka skrobblingar varje + + + seconds + sekunder + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (Det här är fördröjningen mellan när en låt skrobblas och när skrobblingar skickas till servern. Om tiden ställs in på 0 sekunder skickas skrobblingar direkt). + + + Prefer album artist when sending scrobbles + Föredra albumartist vid sändning av skrobblingar + + + Show dialog for errors + Visa dialogruta vid fel + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Aktivera skrobbling för följande källor: + + + Collection + Samling + + + Subsonic + Subsonic + + + Local file + Lokal fil + + + Tidal + Tidal + + + Device + Enhet + + + Qobuz + Qobuz + + + CDDA + CD-ljud + + + SomaFM + + + + Stream + Flöde + + + Radio Paradise + + + + Unknown + Okänt + + + Last.fm + + + + Login + Logga in + + + Libre.fm + + + + Listenbrainz + + + + User token: + Användartoken: + + + Enter your user token from + Ange din användartoken från + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + %1 skrobblarautentisering + + + Open URL in web browser? + Öppna webbadress i webbläsaren? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Tryck på "Spara" för att kopiera webbadressen till urklipp och öppna den manuellt i en webbläsare. + + + Could not open URL. Please open this URL in your browser + Det gick inte att öppna webbadressen. Öppna den här webbadressen i din webbläsare + + + Invalid reply from web browser. Missing token. + Ogiltigt svar från webbläsaren. Saknar token. + + + Received invalid reply from web browser. Try another browser. + Fick ogiltigt svar från webbläsaren. Prova en annan webbläsare. + + + Scrobbler %1 is not authenticated! + Skrobblare %1 är inte autentiserad! + + + Scrobbler %1 error: %2 + Skrobblare %1 fel: %2 + + + + SettingsDialog + + Settings + Inställningar + + + General + Allmänt + + + User interface + Användargränssnitt + + + Streaming + Flöden + + + + SmartPlaylistQuerySearchPage + + Form + Formulär + + + Search mode + Sökläge + + + Match every search term (AND) + Matcha varje sökterm (OCH) + + + Match one or more search terms (OR) + Matcha en eller flera söktermer (ELLER) + + + Include all songs + Inkludera alla spår + + + Search terms + Söktermer + + + + SmartPlaylistQuerySortPage + + Form + Formulär + + + Sorting + Sortering + + + Put songs in a random order + Lägg till låtar i slumpmässig ordning + + + Sort songs by + Sortera låtar efter + + + Limits + Begränsningar + + + Show all the songs + Visa alla låtarna + + + Only show the first + Visa endast de första + + + songs + låtar + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Samlingssökning + + + Find songs in your collection that match the criteria you specify. + Hitta låtar i ditt bibliotek som matchar de kriterier du anger. + + + Search terms + Söktermer + + + A song will be included in the playlist if it matches these conditions. + En låt kommer att inkluderas i spellistan om den matchar dessa villkor. + + + Search options + Sökalternativ + + + Choose how the playlist is sorted and how many songs it will contain. + Välj hur spellistan ska sorteras och hur många låtar den ska innehålla. + + + + SmartPlaylistSearchPreview + + Form + Formulär + + + Preview + Förhandsvisning + + + Loading... + Läser in... + + + %1 songs found (showing %2) + %1 låtar hittades (visar %2) + + + %1 songs found + %1 låtar hittades + + + + SmartPlaylistSearchTermWidget + + Form + Formulär + + + and + och + + + ago + sedan + + + The second value must be greater than the first one! + Det andra värdet måste vara större än det första! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Lägg till sökterm + + + + SmartPlaylistWizard + + Smart playlist + Smart spellista + + + Playlist type + Spellistetyp + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + En smart spellista är en dynamisk lista över låtar som finns i ditt bibliotek. Det finns olika typer av smarta spellistor som väljer låtar på olika sätt. + + + Finish + Avsluta + + + Choose a name for your smart playlist + Välj ett namn för din smarta spellista + + + + SmartPlaylistWizardFinishPage + + Form + Formulär + + + Name + Namn + + + Use dynamic mode + Aktivera dynamiskt läge + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + I dynamiskt läge kommer nya spår väljas och läggas till i spellistan varje gång en låt tar slut. + + + + SmartPlaylists + + Newest tracks + Nyaste spåren + + + 50 random tracks + 50 slumpmässiga spår + + + Ever played + Någonsin spelade + + + Never played + Aldrig spelade + + + Last played + + + + Most played + Mest spelade + + + Favourite tracks + Favoritspår + + + All tracks + Alla spår + + + Dynamic random mix + Dynamisk slumpmässig mixning + + + + SmartPlaylistsViewContainer + + New smart playlist + Ny smart spellista + + + Edit smart playlist + Redigera smart spellista + + + Delete smart playlist + Ta bort smart spellista + + + New smart playlist... + Ny smart spellista... + + + Append to current playlist + Lägg till i aktuell spellista + + + Replace current playlist + Ersätt aktuell spellista + + + Open in new playlist + Öppna i ny spellista + + + Queue track + Lägg till spår i kön + + + Play next + Spela nästa + + + Edit smart playlist... + Redigera smart spellista... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry körs som en Snap + + + It is detected that Strawberry is running as a Snap + Det upptäcktes att Strawberry körs som en Snap + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry är långsammare och har begränsningar när den körs som en Snap. Åtkomst till rotfilsystemet (/) fungerar inte. Det kan också finnas andra begränsningar som att komma åt vissa enheter eller nätverksresurser. + + + For Ubuntu there is an official PPA repository available at %1. + För Ubuntu finns ett officiellt PPA-förråd tillgängligt på %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Officiella versioner är tillgängliga för Debian och Ubuntu som också fungerar på de flesta av deras derivat. Se %1 för mer information. + + + For a better experience please consider the other options above. + För en bättre upplevelse, överväg de andra alternativen ovan. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Kopiera din strawberry.conf och strawberry.db från din ~/snap-mapp för att undvika att förlora konfigurationen innan du avinstallerar snap: + + + Uninstall the snap with: + Avinstallera snap med: + + + Install strawberry through PPA: + Installera strawberry via PPA: + + + + SomaFMService + + Getting %1 channels + Hämtar %1 kanaler + + + + SongLoader + + You need GStreamer for this URL. + Du behöver GStreamer för den här webbadressen. + + + Preload function was not set for blocking operation. + Förinläsningsfunktionen var inte inställd för blockering. + + + File %1 does not exist. + Filen %1 finns inte. + + + CD playback is only available with the GStreamer engine. + CD-uppspelning är endast tillgänglig med GStreamer-motorn. + + + Could not open file %1 for reading: %2 + Det gick inte att öppna filen %1 för läsning: %2 + + + Could not open CUE file %1 for reading: %2 + Det gick inte att öppna CUE-filen %1 för läsning: %2 + + + Could not open playlist file %1 for reading: %2 + Det gick inte att öppna spellistefilen %1 för läsning: %2 + + + Couldn't create GStreamer source element for %1 + Det gick inte att skapa GStreamer-källelementet för %1 + + + Couldn't create GStreamer typefind element for %1 + Det gick inte att skapa GStreamer typfind-element för %1 + + + Couldn't create GStreamer fakesink element for %1 + Det gick inte att skapa GStreamer fakesink-element för %1 + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + Det gick inte att länka GStreamer-källa, typfind och fakesink-element för %1 + + + + SongLoaderInserter + + Error while loading audio CD. + Fel vid inläsning av ljud-CD. + + + Loading tracks + Läser in spår + + + Loading tracks info + Läser in låtinformation + + + + SpotifyRequest + + Authenticating... + Autentisering... + + + Receiving artists... + Tar emot artister... + + + Receiving albums... + Tar emot album... + + + Receiving songs... + Tar emot låtar... + + + Searching... + Söker... + + + Receiving albums for %1 artist... + Tar emot album för %1 artist... + + + Receiving albums for %1 artists... + Tar emot album för %1 artister... + + + Receiving songs for %1 album... + Tar emot låtar för %1 album... + + + Receiving songs for %1 albums... + Tar emot låtar för %1 album... + + + Receiving album cover for %1 album... + Tar emot albumomslag för %1 album... + + + Receiving album covers for %1 albums... + Tar emot albumomslag för %1 album... + + + No match. + Ingen matchning. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Spotify-autentisering + + + Please open this URL in your browser + Öppna den här webbadressen i din webbläsare + + + Redirect missing token code or state! + Omdirigering saknar tokenkod eller tillstånd! + + + Received invalid reply from web browser. + Tog emot ogiltigt svar från webbläsaren. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + Spotify + + + Enable + Aktivera + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Inställningar + + + Search delay + Sökfördröjning + + + ms + + + + Artists search limit + Sökgräns för artister + + + Albums search limit + Sökgräns för album + + + Songs search limit + Sökgräns för låtar + + + Download album covers + Hämta albumomslag + + + Fetch entire albums when searching songs + Hämta hela album vid sökning av låtar + + + Authentication failed + Autentisering misslyckades + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Klicka här för att hämta musik + + + Append to current playlist + Lägg till i aktuell spellista + + + Replace current playlist + Ersätt aktuell spellista + + + Open in new playlist + Öppna i ny spellista + + + Queue track + Lägg till spår i kön + + + Queue to play next + Lägg till i kön för att spela som nästa + + + Remove from favorites + Ta bort från favoriter + + + + StreamingCollectionViewContainer + + Form + Formulär + + + Close + Stäng + + + Abort + Avbryt + + + Refresh catalogue + Uppdatera katalog + + + + StreamingSearchModel + + Various artists + Diverse artister + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + artister + + + albums + album + + + songs + låtar + + + Enter search terms above to find music + Ange söktermer ovan för att hitta musik + + + Configure %1... + Anpassa %1... + + + Append to current playlist + Lägg till i aktuell spellista + + + Replace current playlist + Ersätt aktuell spellista + + + Open in new playlist + Öppna i ny spellista + + + Queue track + Lägg till spår i kön + + + Add to artists + Lägg till i artister + + + Add to albums + Lägg till i album + + + Add to songs + Lägg till låtar + + + Search for this + Sök efter det här + + + Group by + Gruppera efter + + + + StreamingSongsView + + Configure %1... + Anpassa %1... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Artister + + + Albums + Album + + + Songs + Låtar + + + Search + Sök + + + Configure %1... + Anpassa %1... + + + + SubsonicRequest + + Retrieving albums... + Hämtar album... + + + Retrieving songs for %1 album... + Hämtar låtar för %1 album... + + + Retrieving songs for %1 albums... + Hämtar låtar för %1 album... + + + Retrieving album cover for %1 album... + Hämtar albumomslag för %1 album... + + + Retrieving album covers for %1 albums... + Hämtar albumomslag för %1 album... + + + Unknown error + Okänt fel + + + + SubsonicService + + Server URL is invalid. + Serverwebbadressen är ogiltig. + + + Missing username or password. + Användarnamn eller lösenord saknas. + + + + SubsonicSettingsPage + + Subsonic + Subsonic + + + Enable + Aktivera + + + Server URL + Serverwebbadress + + + Authentication + Autentisering + + + Username + Användarnamn + + + Password + Lösenord + + + Authentication method: + Autentiseringsmetod: + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + Inställningar + + + Use HTTP/2 when possible + Använd HTTP/2 när det är möjligt + + + Verify server certificate + Verifiera servercertifikat + + + Download album covers + Hämta albumomslag + + + Server-side scrobbling + Skrobbling på serversidan + + + Test + Testa + + + Delete songs + Ta bort låtar + + + Configuration incomplete + Konfigurationen ofullständig + + + Missing server url, username or password. + Serveradress, användarnamn eller lösenord saknas. + + + Configuration incorrect + Konfiguration felaktig + + + Server URL is invalid. + Serverwebbadressen är ogiltig. + + + Test successful! + Testet lyckades! + + + Test failed! + Testet misslyckades! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Subsonic-serverwebbadress är ogiltig. + + + Missing Subsonic username or password. + Användarnamn eller lösenord saknas för Subsonic. + + + + SystemTrayIcon + + Pause + Pausa + + + Play + Spela + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Autentisering... + + + Receiving artists... + Tar emot artister... + + + Receiving albums... + Tar emot album... + + + Receiving songs... + Tar emot låtar... + + + Searching... + Söker... + + + Receiving albums for %1 artist... + Tar emot album för %1 artist... + + + Receiving albums for %1 artists... + Tar emot album för %1 artister... + + + Receiving songs for %1 album... + Tar emot låtar för %1 album... + + + Receiving songs for %1 albums... + Tar emot låtar för %1 album... + + + Receiving album cover for %1 album... + Tar emot albumomslag för %1 album... + + + Receiving album covers for %1 albums... + Tar emot albumomslag för %1 album... + + + No match. + Ingen matchning. + + + + TidalService + + Reply from Tidal is missing query items. + Svar från Tidal saknar förfrågningsobjekt. + + + Missing Tidal API token. + Tidal-API-token saknas. + + + Missing Tidal username. + Tidal-användarnamn saknas. + + + Missing Tidal password. + Tidal-lösenord saknas. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Inte autentiserad med Tidal och nådde högsta antalet inloggningsförsök. + + + Not authenticated with Tidal. + Inte autentiserad med Tidal. + + + Missing Tidal API token, username or password. + Användarnamn eller lösenord saknas för Tidal API-token. + + + + TidalSettingsPage + + Tidal + Tidal + + + Enable + Aktivera + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Tidal stöds inte officiellt och kräver en API-token från en registrerad applikation för att fungera. Vi kan inte hjälpa dig att få dessa. + + + Authentication + Autentisering + + + Use OAuth + Använd OAuth + + + Client ID + Klient-ID + + + API Token + API-token + + + Username + Användarnamn + + + Password + Lösenord + + + Login + Logga in + + + Preferences + Inställningar + + + Audio quality + Ljudkvalitet + + + Search delay + Sökfördröjning + + + ms + + + + Artists search limit + Sökgräns för artister + + + Albums search limit + Sökgräns för album + + + Songs search limit + Sökgräns för låtar + + + Download album covers + Hämta albumomslag + + + Fetch entire albums when searching songs + Hämta hela album vid sökning av låtar + + + Album cover size + Albumomslagets storlek + + + Stream URL method + Metod för flödeswebbadress + + + Append explicit to album title for explicit albums + Lägg uttryckligen till albumtitel för explicita album + + + Configuration incomplete + Konfigurationen ofullständig + + + Missing Tidal client ID. + Tidal-klient-ID saknas. + + + Missing API token. + API-token saknas. + + + Missing username. + Användarnamn saknas. + + + Missing password. + Lösenord saknas. + + + Authentication failed + Autentisering misslyckades + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Inte autentiserad med Tidal. + + + Missing Tidal API token, username or password. + Användarnamn eller lösenord saknas för Tidal API-token. + + + Cancelled. + Avbruten. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Mottagen webbadress med %1 krypterad ström från Tidal. Strawberry stöder för närvarande inte krypterade flöden. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Mottagen webbadress med krypterad ström från Tidal. Strawberry stöder för närvarande inte krypterade flöden. + + + + TrackSelectionDialog + + Tag fetcher + Tagghämtare + + + Sorry + Tyvärr + + + Strawberry was unable to find results for this file + Strawberry kunde inte hitta resultat för den här filen + + + Select best possible match + Välj bästa möjliga matchning + + + Track + Spår + + + Year + År + + + Title + Titel + + + Artist + Artist + + + Album + Album + + + Previous + Föregående + + + Next + Nästa + + + Original tags + Ursprungliga taggar + + + Suggested tags + Föreslagna taggar + + + Saving tracks + Sparar spår + + + + TrackSlider + + Form + Formulär + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Klicka för att växla mellan återstående tid och total tid + + + + TranscodeDialog + + Transcode Music + Omkoda musik + + + Files to transcode + Filer att omkoda + + + Filename + Filnamn + + + Directory + Mapp + + + Add... + Lägg till... + + + Remove + Ta bort + + + Add all tracks from a directory and all its subdirectories + Lägg till alla låtar från en mapp och alla dess undermappar + + + Import... + Importera... + + + Output options + Alternativ för utgång + + + Audio format + Ljudformat + + + Options... + Alternativ... + + + Destination + + + + Alongside the originals + Vid sidan av originalen + + + Select... + Välj... + + + Progress + Förlopp + + + Details... + Detaljer... + + + Clear + Rensa + + + Start transcoding + Starta omkodning + + + %n remaining + + %n återstår + + + + + + %n finished + + %n är klar + + + + + + %n failed + + %n misslyckades + + + + + + Add files to transcode + Lägg till filer för omkodning + + + Music + Musik + + + Open a directory to import music from + Öppna en mapp att importera musik från + + + Add folder + Lägg till mapp + + + + TranscodeLogDialog + + Transcoder Log + Omkodningslogg + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Kunde inte skapa GStreamer-elementet "%1" - kontrollera att du har alla GStreamer-insticksmoduler som krävs installerade + + + Successfully written %1 + Skrev %1 med lyckat resultat + + + Transcoding %1 files using %2 threads + Omkodar %1 filer med %2 trådar + + + Error processing %1: %2 + Fel vid bearbetning av %1: %2 + + + Starting %1 + Startar %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Kunde inte hitta en kodare för %1, kontrollera att du har de korrekta GStreamer-insticksmodulerna installerade + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Kunde inte hitta en muxer för %1, kontrollera att du har de korrekta GStreamer-insticksmodulerna installerade + + + + TranscoderOptionsAAC + + Form + Formulär + + + Bitrate + Bitfrekvens + + + kbps + + + + Profile + Profil + + + Main profile (MAIN) + Huvudprofil (MAIN) + + + Low complexity profile (LC) + Låg komplexitetprofil (LC) + + + Scalable sampling rate profile (SSR) + Skalbar samplingsfrekvensprofil (SSR) + + + Long term prediction profile (LTP) + Långsiktig förutsägelseprofil (LTP) + + + Use temporal noise shaping + Använd tidsbaserad brusformning + + + Allow mid/side encoding + Tillåt mellan-/sidokodning + + + Block type + Blocktyp + + + Normal block type + Normal blocktyp + + + No short blocks + Inga korta block + + + No long blocks + Inga långa block + + + + TranscoderOptionsASF + + Form + Formulär + + + Bitrate + Bitfrekvens + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + Alternativ för omkodning + + + + TranscoderOptionsFLAC + + Form + Formulär + + + Quality + Sound quality + Kvalitet + + + Fast + Snabb + + + Best + Bästa + + + + TranscoderOptionsMP3 + + Form + Formulär + + + Optimize for &quality + Optimera för &kvalitet + + + Quality + Sound quality + Kvalitet + + + Opti&mize for bitrate + Optimera för bitfrekvens + + + Bitrate + Bitfrekvens + + + kbps + + + + Constant bitrate + Konstant bitfrekvens + + + Encoding engine quality + Kodningsmotorns kvalitet + + + Fast + Snabb + + + Standard + + + + High + Hög + + + Force mono encoding + Tvinga monokodning + + + + TranscoderOptionsOpus + + Form + Formulär + + + Bitrate + Bitfrekvens + + + kbps + + + + + TranscoderOptionsSpeex + + Form + Formulär + + + Quality + Sound quality + Kvalitet + + + Bitrate + Bitfrekvens + + + automatic + automatisk + + + kbps + + + + Average bitrate + Genomsnittlig bitfrekvens + + + disabled + inaktiverad + + + Encoding mode + Kodningsläge + + + Auto + + + + Ultra wide band (UWB) + Ultrabredband (UWB) + + + Wide band (WB) + Bredband (WB) + + + Narrow band (NB) + Snävt band (NB) + + + Variable bit rate + Variabel bithastighet + + + Voice activity detection + Upptäckt av röstaktivitet + + + Discontinuous transmission + Icke-kontinuerlig sändning + + + Encoding complexity + Kodningskomplexitet + + + Frames per buffer + Ramar per buffert + + + + TranscoderOptionsVorbis + + Form + Formulär + + + Quality + Sound quality + Kvalitet + + + Use bitrate management engine + Använd motor för hantering av bitfrekvens + + + Target bitrate + Önskad bitfrekvens + + + kbps + + + + Minimum bitrate + Lägsta bitfrekvensen + + + disabled + inaktiverad + + + Maximum bitrate + Högsta bitfrekvensen + + + + TranscoderOptionsWavPack + + Form + Formulär + + + + TranscoderSettingsPage + + Transcoding + Omkodning + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Dessa inställningar används i dialogrutan "Omkoda musik" och vid konvertering av musik innan den kopieras till en enhet. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + D-Bus sökväg + + + Serial number + Serienummer + + + Mount points + Monteringspunkter + + + Partition label + Partitionsnamn + + + UUID + + + + + UserPassDialog + + Enter username and password + Ange användarnamn och lösenord + + + Username + Användarnamn + + + Password + Lösenord + + + diff --git a/src/translations/strawberry_tr_CY.ts b/src/translations/strawberry_tr_CY.ts new file mode 100644 index 00000000..0ee3902b --- /dev/null +++ b/src/translations/strawberry_tr_CY.ts @@ -0,0 +1,7589 @@ + + + + + About + + About + + + + About Strawberry + + + + Version %1 + + + + Strawberry is a music player and music collection organizer. + + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + + + + Contributors + + + + Clementine authors + + + + Clementine contributors + + + + Thanks to + + + + Thanks to all the other Amarok and Clementine contributors. + + + + + AddStreamDialog + + Add Stream + + + + Enter the URL of a stream: + + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + + All files (*) + + + + Load cover from disk... + + + + Save cover to disk... + + + + Load cover from URL... + + + + Search for album covers... + + + + Unset cover + + + + Delete cover + + + + Clear cover + + + + Show fullsize... + + + + Search automatically + + + + Load cover from disk + + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + + + + Save album cover + + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + + + + Output + + + + Enter a filename for exported covers (no extension): + + + + Export downloaded covers + + + + Export embedded covers + + + + Existing covers + + + + Do not overwrite + + + + O&verwrite all + + + + Overwrite s&maller ones only + + + + Size + + + + Scale size + + + + Size: + + + + Pixel + + + + + AlbumCoverManager + + Abort + + + + All albums + + + + Albums with covers + + + + Albums without covers + + + + Really cancel? + + + + Closing this window will stop searching for album covers. + + + + Don't stop! + + + + All artists + + + + Various artists + + + + Got %1 covers out of %2 (%3 failed) + + + + %1 transferred + + + + Export finished + + + + No covers to export. + + + + Exported %1 covers out of %2 (%3 skipped) + + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + + + + Artist + + + + Album + + + + Search + + + + Covers from %1 + + + + Abort + + + + + AnalyzerContainer + + Framerate + + + + Low (%1 fps) + + + + Medium (%1 fps) + + + + High (%1 fps) + + + + Super high (%1 fps) + + + + No analyzer + + + + Block analyzer + + + + Boom analyzer + + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + + + + Style + + + + Use system theme icons + + + + Settings require restart. + + + + Tabbar colors + + + + &Use the system default color + + + + Use custom color + + + + Use gradient background + + + + Select tabbar color: + + + + Background image + + + + Default bac&kground image + + + + &No background image + + + + The album cover of the currently playing song + + + + Albu&m cover + + + + Custom image: + + + + Browse... + + + + Position + + + + Upper Left + + + + Upper Right + + + + Middle + + + + Bottom Left + + + + Bottom Right + + + + Max cover size + + + + Stretch image to fill playlist + + + + Keep aspect ratio + + + + Do not cut image + + + + Blur amount + + + + 0px + + + + Opacity + + + + 40% + + + + Icon sizes + + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + + + + + BackendSettingsPage + + Backend + + + + Audio output + + + + Device + + + + Output + + + + Engine + + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + + + + Buffer duration + + + + High watermark + + + + Low watermark + + + + Defaults + + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + + + + Replay Gain mode + + + + Radio (equal loudness for all tracks) + + + + Album (ideal loudness for all tracks) + + + + Pre-amp + + + + Apply compression to prevent clipping + + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + + + + Fade out when stopping a track + + + + Cross-fade when changing tracks manually + + + + Cross-fade when changing tracks automatically + + + + Except between tracks on the same album or in the same CUE sheet + + + + Fading duration + + + + Fade out on pause / fade in on resume + + + + + BehaviourSettingsPage + + Behavior + + + + Show system tray icon + + + + Keep running in the background when the window is closed + + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + + + + Show playing widget + + + + On startup + + + + Remember from &last time + + + + Show the main window + + + + Hide the main window + + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + + + + Use the system default + + + + You will need to restart Strawberry if you change the language. + + + + Using the menu to add a song will... + + + + Never start playing + + + + Play if there is nothing already playing + + + + Always start playing + + + + Pressing "Previous" in player will... + + + + Jump to previous song right away + + + + Restart song, then jump to previous if pressed again + + + + Double clicking a song will... + + + + Append to the playlist + + + + Replace the playlist + + + + Open in new playlist + + + + Add to the queue + + + + Double clicking a song in the playlist will... + + + + Change the currently playing song + + + + Seeking using a keyboard shortcut or mouse wheel + + + + Time step + + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + + + + Enter search terms here + + + + MenuPopupToolButton + + + + Entire collection + + + + Added today + + + + Added this week + + + + Added within three months + + + + Added this year + + + + Added this month + + + + Save current grouping + + + + Manage saved groupings + + + + Show + + + + Group by + + + + Display options + + + + Group by Album artist/Album + + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + + + + Group by Artist/Album - Disc + + + + Group by Artist/Year - Album + + + + Group by Artist/Year - Album - Disc + + + + Group by Genre/Album artist/Album + + + + Group by Genre/Artist/Album + + + + Group by Album Artist + + + + Group by Artist + + + + Group by Album + + + + Group by Genre/Album + + + + Advanced grouping... + + + + Grouping Name + + + + Grouping name: + + + + + CollectionModel + + Various artists + + + + Loading... + + + + Unknown + + + + + CollectionSettingsPage + + Collection + + + + These folders will be scanned for music to make up your collection + + + + Add new folder... + + + + Remove folder + + + + Automatic updating + + + + Update the collection when Strawberry starts + + + + Monitor the collection for changes + + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + + + + Display options + + + + Automatically open single categories in the collection tree + + + + Show dividers + + + + Show album cover art in collection + + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + + + + Size + + + + Enable Disk Cache + + + + Disk Cache Size + + + + Current disk cache in use: + + + + Clear Disk Cache + + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + + + + Add directory... + + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + + + + Click here to add some music + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Queue to play next + + + + Search for this + + + + Organize files... + + + + Copy to device... + + + + Delete from disk... + + + + Edit track information... + + + + Edit tracks information... + + + + Show in file browser... + + + + Rescan song(s) + + + + Show in various artists + + + + Don't show in various artists + + + + There are other songs in this album + + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + + + + None of the selected songs were suitable for copying to a device + + + + + CollectionViewContainer + + Form + + + + + CollectionWatcher + + Updating collection + + + + Updating %1 + + + + + Console + + Console + + + + Run + + + + + ContextSettingsPage + + Context + + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + + + + Summary + + + + Enable Items + + + + Album + + + + Technical Data + + + + Song Lyrics + + + + Automatically search for album cover + + + + Automatically search for song lyrics + + + + Font for headline + + + + Font + + + + Font size + + + + pt + + + + Preview + + + + Font for data and lyrics + + + + Add song artist tag + + + + Add song album tag + + + + Add song title tag + + + + Add song albumartist tag + + + + Add song year tag + + + + Add song composer tag + + + + Add song performer tag + + + + Add song grouping tag + + + + Add song disc tag + + + + Add song track tag + + + + Add song genre tag + + + + Add song length tag + + + + Add song play count + + + + Add song skip count + + + + Add a new line if supported by the notification type + + + + %filename% + + + + Add song filename + + + + %url% + + + + Add song URL + + + + %rating% + + + + Add song rating + + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + + + + Length + + + + Samplerate + + + + Bit depth + + + + Bitrate + + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + + + + Show song technical data + + + + Show song lyrics + + + + Automatically search for song lyrics + + + + No song playing + + + + %1 song + + + + %1 songs + + + + %1 artist + + + + %1 artists + + + + %1 album + + + + %1 albums + + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + + + + Enter a URL to download a cover from the Internet: + + + + Fetching cover error + + + + The site you requested does not exist! + + + + The site you requested is not an image! + + + + + CoverManager + + Cover Manager + + + + Enter search terms here + + + + MenuPopupToolButton + + + + View + + + + Total albums: + + + + Without cover: + + + + 0 + + + + Fetch Missing Covers + + + + Export Covers + + + + Fetch automatically + + + + Load + + + + Add to playlist + + + + + CoverSearchStatisticsDialog + + Fetch completed + + + + Got %1 covers out of %2 (%3 failed) + + + + Covers from %1 + + + + Total network requests made + + + + Average image size + + + + Total bytes transferred + + + + + CoversSettingsPage + + Covers + + + + Cover providers + + + + Choose the providers you want to use when searching for covers. + + + + Move up + + + + Move down + + + + Authentication + + + + Login + + + + Album cover types + + + + Saving album covers + + + + Save album covers in album directory + + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + + + + Pattern + + + + Random + + + + Overwrite existing file + + + + Lowercase filename + + + + Replace spaces with dashes + + + + Use Tidal settings to authenticate. + + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + + + + %1 does not need authentication. + + + + No provider selected. + + + + Authentication failed + + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + + + + Database corruption detected. + + + + Backing up database + + + + + DeleteConfirmationDialog + + Delete files + + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + + + + + DeleteFiles + + Deleting files + + + + + DeviceItemDelegate + + Updating %1%... + + + + Not connected + + + + Not mounted - double click to mount + + + + Double click to open + + + + %1 song%2 + + + + + DeviceManager + + Connect device + + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + + + + This device will not work properly + + + + This is an MTP device, but you compiled Strawberry without libmtp support. + + + + If you continue, this device will work slowly and songs copied to it may not work. + + + + This is an iPod, but you compiled Strawberry without libgpod support. + + + + This type of device is not supported: %1 + + + + + DeviceProperties + + Device Properties + + + + Information + + + + Name + + + + Icon + + + + Hardware information + + + + Hardware information is only available while the device is connected. + + + + File formats + + + + Supported formats + + + + This device supports the following file formats: + + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + + + + Do not convert any music + + + + Convert any music that the device can't play + + + + Convert all music + + + + Preferred format + + + + This device must be connected and opened before Strawberry can see what file formats it supports. + + + + Open device + + + + Querying device... + + + + Model + + + + Manufacturer + + + + + DeviceView + + Safely remove device + + + + Forget device + + + + Device properties... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Copy to collection... + + + + Delete from device... + + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + + + + Delete files + + + + These files will be deleted from the device, are you sure you want to continue? + + + + + DeviceViewContainer + + Form + + + + + DynamicPlaylistControls + + Dynamic mode is on + + + + New tracks will be added automatically. + + + + Expand + + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + + + + Summary + + + + Date created + + + + Art Automatic + + + + Date modified + + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + + + + Length + + + + Play count + + + + Bit depth + + + + EBU R 128 integrated loudness + + + + Bit rate + + + + Skip count + + + + Sample rate + + + + Path + + + + Filename + + + + Art Unset + + + + File size + + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + + + + Grouping + + + + Album artist + + + + Album + + + + Year + + + + Title + + + + Artist + + + + Composer + + + + Complete tags automatically + + + + Genre + + + + Comment + + + + Performer + + + + Compilation + + + + Track + + + + Rating + + + + Lyrics + + + + Complete lyrics automatically + + + + Previous + + + + Next + + + + Saving tracks + + + + Loading tracks + + + + %1 songs selected. + + + + kbps + + + + Unknown + + + + Yes + + + + No + + + + None + + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + + + + Preset: + + + + Save preset + + + + Delete preset + + + + Enable equalizer + + + + Enable stereo balancer + + + + Left + + + + Balance + + + + Right + + + + Pre-amp + + + + Custom + + + + Classical + + + + Club + + + + Dance + + + + Full Bass + + + + Full Treble + + + + Full Bass + Treble + + + + Laptop/Headphones + + + + Large Hall + + + + Live + + + + Party + + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + + + + Name + + + + Are you sure you want to delete the "%1" preset? + + + + + EqualizerSlider + + Equalizer + + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + + + + + FancyTabWidget + + Large sidebar + + + + Icons sidebar + + + + Small sidebar + + + + Plain sidebar + + + + Tabs on top + + + + Icons on top + + + + + FileTypeItemDelegate + + Unknown + + + + + FileView + + Form + + + + + FileViewList + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Copy to collection... + + + + Move to collection... + + + + Copy to device... + + + + Delete from disk... + + + + Edit track information... + + + + Show in file browser... + + + + + FreeSpaceBar + + Available + + + + New songs + + + + Exceeded by + + + + Used + + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + + + + An error occurred loading the iTunes database + + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + + + + Device + + + + URI + + + + + GlobalShortcutGrabber + + Press a key + + + + Press a key combination to use for %1... + + + + + GlobalShortcutsManager + + Play + + + + Pause + + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + + + + Action + Category label + + + + Shortcut + + + + Shortcut for %1 + + + + &None + + + + &Default + + + + &Custom + + + + Change shortcut... + + + + The "%1" command could not be started. + + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + + + + First level + + + + None + + + + Artist + + + + Album artist + + + + Album + + + + Album - Disc + + + + Disc + + + + Format + + + + Genre + + + + Year + + + + Year - Album + + + + Year - Album - Disc + + + + Original year + + + + Original year - Album + + + + Composer + + + + Performer + + + + Grouping + + + + File type + + + + Sample rate + + + + Bit depth + + + + Bitrate + + + + Second level + + + + Third level + + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + + + + + LastFMImport + + Missing username, please login to last.fm first! + + + + + LastFMImportDialog + + Import data from last.fm + + + + Choose data to import from last.fm + + + + Last played + + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + + + + Cancel + + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + + + + You are not signed in. + + + + Sign out + + + + Signing in... + + + + You are signed in. + + + + You are signed in as %1. + + + + Expires on %1 + + + + + LyricsSettingsPage + + Lyrics + + + + Lyrics providers + + + + Choose the providers you want to use when searching for lyrics. + + + + Move up + + + + Move down + + + + Authentication + + + + Login + + + + No provider selected. + + + + Authentication failed + + + + + MainWindow + + Strawberry Music Player + + + + MenuPopupToolButton + + + + &Music + + + + P&laylist + + + + Help + + + + &Tools + + + + Previous track + + + + F5 + + + + &Play + + + + F6 + + + + &Stop + + + + F7 + + + + &Next track + + + + F8 + + + + &Quit + + + + Ctrl+Q + + + + Stop after this track + + + + Ctrl+Alt+V + + + + Love + + + + &Clear playlist + + + + Clear playlist + + + + Ctrl+K + + + + Edit track information... + + + + Ctrl+E + + + + Renumber tracks in this order... + + + + Set value for all selected tracks... + + + + Edit tag... + + + + &Settings... + + + + Ctrl+P + + + + &About Strawberry + + + + F1 + + + + S&huffle playlist + + + + Ctrl+H + + + + &Add file... + + + + Ctrl+Shift+A + + + + &Open file... + + + + Open audio &CD... + + + + &Cover Manager + + + + C&onsole + + + + &Shuffle mode + + + + &Repeat mode + + + + Remove from playlist + + + + &Equalizer + + + + &Transcode Music + + + + Add &folder... + + + + &Jump to the currently playing track + + + + Ctrl+J + + + + &New playlist + + + + Ctrl+N + + + + Save &playlist... + + + + Ctrl+S + + + + &Load playlist... + + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + + + + Go to previous playlist tab + + + + &Update changed collection folders + + + + About &Qt + + + + &Mute + + + + Ctrl+M + + + + &Do a full collection rescan + + + + Stop collection scan + + + + Complete tags automatically... + + + + Ctrl+T + + + + Toggle scrobbling + + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + + + + Add file to transcoder + + + + Add stream... + + + + Show sidebar + + + + Import data from last.fm... + + + + All Files (*) + + + + Context + + + + Collection + + + + Queue + + + + Playlists + + + + Smart playlists + + + + Files + + + + Radios + + + + Devices + + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + + + + Show only duplicates + + + + Show only untagged + + + + Configure collection... + + + + Play + + + + Toggle queue status + + + + Queue selected tracks to play next + + + + Toggle skip status + + + + Rescan song(s)... + + + + Copy URL(s)... + + + + Show in collection... + + + + Show in file browser... + + + + Organize files... + + + + Copy to collection... + + + + Move to collection... + + + + Copy to device... + + + + Delete from disk... + + + + Check for updates... + + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + + + + Dequeue track + + + + Dequeue selected tracks + + + + Queue track + + + + Queue selected tracks + + + + Queue to play next + + + + Unskip track + + + + Unskip selected tracks + + + + Skip track + + + + Skip selected tracks + + + + Set %1 to "%2"... + + + + Edit tag "%1"... + + + + Add to another playlist + + + + New playlist + + + + Add file + + + + Music + + + + Add folder + + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + + + + None of the selected songs were suitable for copying to a device + + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + + + + Would you like to run a full rescan right now? + + + + Collection rescan notice + + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + + + + + MimeData + + Playlist + + + + + MoodbarProxyStyle + + Show moodbar + + + + Moodbar style + + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + + + + Moodbar style + + + + Save the .mood files directly in the songs folders + + + + Enabled + + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + + + + Error connecting MTP device %1 + + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + + + + &Use the system proxy settings + + + + Direct internet connection + + + + &Manual proxy configuration + + + + HTTP proxy + + + + SOCKS proxy + + + + Port + + + + Use authentication + + + + Username + + + + Password + + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + + + + Strawberry can show a message when the track changes. + + + + Notification type + + + + Disabled + Refers to a disabled notification type in Notification settings. + + + + Show a &native desktop notification + + + + Show a pretty OSD + + + + Show a popup fro&m the system tray + + + + General settings + + + + Popup duration + + + + seconds + + + + Disable duration + + + + Show a notification when I change the volume + + + + Show a notification when I change the repeat/shuffle mode + + + + Show a notification when I pause playback + + + + Show a notification when I resume playback + + + + Include album art in the notification + + + + Custom message settings + + + + Use a custom message for notifications + + + + Preview + + + + MenuPopupToolButton + + + + Summary + + + + Body + + + + Pretty OSD options + + + + Background color + + + + Text options + + + + Choose font... + + + + Choose color... + + + + Background opacity + + + + Basic Blue + + + + Strawberry Red + + + + Custom... + + + + Enable fading + + + + Add song artist tag + + + + Add song album tag + + + + Add song title tag + + + + Add song albumartist tag + + + + Add song year tag + + + + Add song composer tag + + + + Add song performer tag + + + + Add song grouping tag + + + + Add song disc tag + + + + Add song track tag + + + + Add song genre tag + + + + Add song length tag + + + + Add song play count + + + + Add song skip count + + + + Add song rating + + + + Add a new line if supported by the notification type + + + + %filename% + + + + Add song filename + + + + %url% + + + + Add song URL + + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + + + + Drag to reposition + + + + + OSDBase + + disc %1 + + + + track %1 + + + + Paused + + + + Stopped + + + + Stop playing after track: %1 + + + + On + + + + Off + + + + Playlist finished + + + + Volume %1% + + + + Don't shuffle + + + + Shuffle all + + + + Shuffle tracks in this album + + + + Shuffle albums + + + + Don't repeat + + + + Repeat track + + + + Repeat album + + + + Repeat playlist + + + + Stop after every track + + + + Intro tracks + + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + + + + After copying... + + + + Keep the original files + + + + Delete the original files + + + + Naming options + + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + + + + Insert... + + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + + + + Restrict characters to ASCII + + + + Allow extended ASCII characters + + + + Replace spaces with underscores + + + + Overwrite existing files + + + + Copy album cover artwork + + + + Preview + + + + Loading... + + + + Safely remove the device after copying + + + + Title + + + + Album + + + + Artist + + + + Artist's initial + + + + Album artist + + + + Composer + + + + Performer + + + + Grouping + + + + Track + + + + Disc + + + + Year + + + + Original year + + + + Genre + + + + Comment + + + + Length + + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + + + + Bit depth + + + + File extension + + + + + OrganizeErrorDialog + + Error copying songs + + + + There were problems copying some songs. The following files could not be copied: + + + + Error deleting songs + + + + There were problems deleting some songs. The following files could not be deleted: + + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + + + + Large album cover + + + + Fit cover to width + + + + Show above status bar + + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + + + + Artist + + + + Album + + + + Track + + + + Disc + + + + Length + + + + Year + + + + Original Year + + + + Genre + + + + Album Artist + + + + Composer + + + + Performer + + + + Grouping + + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + + + + Source + + + + Mood + + + + Rating + + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + + + + Undo + + + + Redo + + + + Playlist + + + + Load playlist + + + + No matches found. Clear the search box to show the whole playlist again. + + + + + PlaylistDelegateBase + + stop + + + + + PlaylistGeneratorInserter + + Loading smart playlist + + + + + PlaylistHeader + + &Hide... + + + + &Stretch columns to fit window + + + + &Reset columns to default + + + + &Lock rating + + + + &Align text + + + + &Left + + + + &Center + + + + &Right + + + + &Hide %1 + + + + + PlaylistListContainer + + Form + + + + New folder + + + + Delete + + + + Save playlist + Save playlist menu action. + + + + Copy to device... + + + + Enter the name of the folder + + + + Playlist + + + + Copy to device + + + + Playlist must be open first. + + + + Remove playlists + + + + You are about to remove %1 playlists from your favorites, are you sure? + + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + + + + Favorited playlists will be saved here + + + + + PlaylistManager + + Playlist + + + + Couldn't create playlist + + + + Save playlist + Title of the playlist save dialog. + + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + + + + %n track(s) + + + + + + + + + + Unknown + + + + Various artists + + + + + PlaylistParser + + All playlists (%1) + + + + %1 playlists (%2) + + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + + + + File paths + + + + This can be changed later through the preferences + + + + Remember my choice + + + + Automatic + + + + Relative + + + + Absolute + + + + + PlaylistSequence + + Repeat + + + + Shuffle + + + + Don't repeat + + + + Repeat track + + + + Repeat album + + + + Repeat playlist + + + + Stop after each track + + + + Intro tracks + + + + Don't shuffle + + + + Shuffle tracks in this album + + + + Shuffle all + + + + Shuffle albums + + + + + PlaylistSettingsPage + + Playlist + + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + + + + Continue to the next item in the playlist if a song is unavailable + + + + Grey out unavailable songs in playlists on playback + + + + Grey out unavailable songs in playlists on startup + + + + Automatically select current playing track + + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + + + + A&utomatic + + + + Absolu&te + + + + Re&lative + + + + As&k when saving + + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + + + + Enable song metadata inline edition with click + + + + Write metadata when saving playlists + + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + + + + Rename playlist... + + + + Save playlist... + + + + Rename playlist + + + + Enter a new name for this playlist + + + + Remove playlist + + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + + + + Warn me when closing a playlist tab + + + + This option can be changed in the "Behavior" preferences + + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + + + + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + + + + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + + + + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + + + + + PlaylistUndoCommands::SortItems + + sort songs + + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + + + + options + + + + URL(s) + + + + Player options + + + + Start the playlist currently playing + + + + Play if stopped, pause if playing + + + + Pause playback + + + + Stop playback + + + + Stop playback after current track + + + + Skip backwards in playlist + + + + Skip forwards in playlist + + + + Set the volume to <value> percent + + + + Increase the volume by 4 percent + + + + Decrease the volume by 4 percent + + + + Increase the volume by <value> percent + + + + Decrease the volume by <value> percent + + + + Seek the currently playing track to an absolute position + + + + Seek the currently playing track by a relative amount + + + + Restart the track, or play the previous track if within 8 seconds of start. + + + + Playlist options + + + + Create a new playlist with files + + + + Append files/URLs to the playlist + + + + Loads files/URLs, replacing current playlist + + + + Play the <n>th track in the playlist + + + + Play given playlist + + + + Other options + + + + Display the on-screen-display + + + + Toggle visibility for the pretty on-screen-display + + + + Change the language + + + + Resize the window + + + + Equivalent to --log-levels *:1 + + + + Equivalent to --log-levels *:3 + + + + Comma separated list of class:level, level is 0-3 + + + + Print out version information + + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + + + + 1 day + + + + %1 days + + + + Today + + + + Yesterday + + + + %1 days ago + + + + Tomorrow + + + + In %1 days + + + + Next week + + + + In %1 weeks + + + + Show in file browser + + + + Too many songs selected. + + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + + + + after + + + + before + + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + + + + contains + + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + + + + not empty + + + + Comment + + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + + + + Days + + + + Weeks + + + + Months + + + + Years + + + + Normal + + + + Angry + + + + Frozen + + + + Happy + + + + System colors + + + + + QWidget + + Clear + + + + Reset + + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Unknown error + + + + + QobuzService + + Authenticating... + + + + Maximum number of login attempts reached. + + + + Missing Qobuz app ID. + + + + Missing Qobuz username. + + + + Missing Qobuz password. + + + + Not authenticated with Qobuz. + + + + Missing Qobuz app ID or secret. + + + + + QobuzSettingsPage + + Qobuz + + + + Enable + + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + + + + App ID + + + + Username + + + + Password + + + + App Secret + + + + Login + + + + Preferences + + + + Audio format + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Base64 encoded secret + + + + Configuration incomplete + + + + Missing app id. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + + + + Cancelled. + + + + + Queue + + %n track(s) + + + + + + + + + + + QueueView + + QueueView + + + + Move down + + + + Ctrl+Up + + + + Move up + + + + Ctrl+Down + + + + Remove + + + + Clear + + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + + + + Remove + + + + Ctrl+Up + + + + Name + + + + First level + + + + Second Level + + + + Third Level + + + + None + + + + Album artist + + + + Artist + + + + Album + + + + Album - Disc + + + + Year - Album + + + + Year - Album - Disc + + + + Original year - Album + + + + Original year - Album - Disc + + + + Disc + + + + Year + + + + Original year + + + + Genre + + + + Composer + + + + Performer + + + + Grouping + + + + File type + + + + Format + + + + Sample rate + + + + Bit depth + + + + Bitrate + + + + Unknown + + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + + + + Show love button + + + + Submit scrobbles every + + + + seconds + + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + + + + Subsonic + + + + Local file + + + + Tidal + + + + Device + + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + + + + Radio Paradise + + + + Unknown + + + + Last.fm + + + + Login + + + + Libre.fm + + + + Listenbrainz + + + + User token: + + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + + + + Open URL in web browser? + + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + + + + Could not open URL. Please open this URL in your browser + + + + Invalid reply from web browser. Missing token. + + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + + + + General + + + + User interface + + + + Streaming + + + + + SmartPlaylistQuerySearchPage + + Form + + + + Search mode + + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + + + + + SmartPlaylistQuerySortPage + + Form + + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + + + + Show all the songs + + + + Only show the first + + + + songs + + + + + SmartPlaylistQueryWizardPlugin + + Collection search + + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + + + + A song will be included in the playlist if it matches these conditions. + + + + Search options + + + + Choose how the playlist is sorted and how many songs it will contain. + + + + + SmartPlaylistSearchPreview + + Form + + + + Preview + + + + Loading... + + + + %1 songs found (showing %2) + + + + %1 songs found + + + + + SmartPlaylistSearchTermWidget + + Form + + + + and + + + + ago + + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + + + + + SmartPlaylistWizard + + Smart playlist + + + + Playlist type + + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + + + + Finish + + + + Choose a name for your smart playlist + + + + + SmartPlaylistWizardFinishPage + + Form + + + + Name + + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + + + + 50 random tracks + + + + Ever played + + + + Never played + + + + Last played + + + + Most played + + + + Favourite tracks + + + + All tracks + + + + Dynamic random mix + + + + + SmartPlaylistsViewContainer + + New smart playlist + + + + Edit smart playlist + + + + Delete smart playlist + + + + New smart playlist... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Play next + + + + Edit smart playlist... + + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + + + + Loading tracks + + + + Loading tracks info + + + + + SpotifyRequest + + Authenticating... + + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Authentication failed + + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Queue to play next + + + + Remove from favorites + + + + + StreamingCollectionViewContainer + + Form + + + + Close + + + + Abort + + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + + + + albums + + + + songs + + + + Enter search terms above to find music + + + + Configure %1... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Add to artists + + + + Add to albums + + + + Add to songs + + + + Search for this + + + + Group by + + + + + StreamingSongsView + + Configure %1... + + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + + + + Albums + + + + Songs + + + + Search + + + + Configure %1... + + + + + SubsonicRequest + + Retrieving albums... + + + + Retrieving songs for %1 album... + + + + Retrieving songs for %1 albums... + + + + Retrieving album cover for %1 album... + + + + Retrieving album covers for %1 albums... + + + + Unknown error + + + + + SubsonicService + + Server URL is invalid. + + + + Missing username or password. + + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + + + + Server URL + + + + Authentication + + + + Username + + + + Password + + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + + + + Use HTTP/2 when possible + + + + Verify server certificate + + + + Download album covers + + + + Server-side scrobbling + + + + Test + + + + Delete songs + + + + Configuration incomplete + + + + Missing server url, username or password. + + + + Configuration incorrect + + + + Server URL is invalid. + + + + Test successful! + + + + Test failed! + + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + + + + Missing Subsonic username or password. + + + + + SystemTrayIcon + + Pause + + + + Play + + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + + + + Missing Tidal username. + + + + Missing Tidal password. + + + + Not authenticated with Tidal and reached maximum number of login attempts. + + + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + + TidalSettingsPage + + Tidal + + + + Enable + + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + + + + Use OAuth + + + + Client ID + + + + API Token + + + + Username + + + + Password + + + + Login + + + + Preferences + + + + Audio quality + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Album cover size + + + + Stream URL method + + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + + + + Missing Tidal client ID. + + + + Missing API token. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + Cancelled. + + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + + + + Sorry + + + + Strawberry was unable to find results for this file + + + + Select best possible match + + + + Track + + + + Year + + + + Title + + + + Artist + + + + Album + + + + Previous + + + + Next + + + + Original tags + + + + Suggested tags + + + + Saving tracks + + + + + TrackSlider + + Form + + + + 0:00:00 + + + + Click to toggle between remaining time and total time + + + + + TranscodeDialog + + Transcode Music + + + + Files to transcode + + + + Filename + + + + Directory + + + + Add... + + + + Remove + + + + Add all tracks from a directory and all its subdirectories + + + + Import... + + + + Output options + + + + Audio format + + + + Options... + + + + Destination + + + + Alongside the originals + + + + Select... + + + + Progress + + + + Details... + + + + Clear + + + + Start transcoding + + + + %n remaining + + + + + + + + + + %n finished + + + + + + + + + + %n failed + + + + + + + + + + Add files to transcode + + + + Music + + + + Open a directory to import music from + + + + Add folder + + + + + TranscodeLogDialog + + Transcoder Log + + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + + + + Successfully written %1 + + + + Transcoding %1 files using %2 threads + + + + Error processing %1: %2 + + + + Starting %1 + + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + + + + + TranscoderOptionsAAC + + Form + + + + Bitrate + + + + kbps + + + + Profile + + + + Main profile (MAIN) + + + + Low complexity profile (LC) + + + + Scalable sampling rate profile (SSR) + + + + Long term prediction profile (LTP) + + + + Use temporal noise shaping + + + + Allow mid/side encoding + + + + Block type + + + + Normal block type + + + + No short blocks + + + + No long blocks + + + + + TranscoderOptionsASF + + Form + + + + Bitrate + + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + + + + + TranscoderOptionsFLAC + + Form + + + + Quality + Sound quality + + + + Fast + + + + Best + + + + + TranscoderOptionsMP3 + + Form + + + + Optimize for &quality + + + + Quality + Sound quality + + + + Opti&mize for bitrate + + + + Bitrate + + + + kbps + + + + Constant bitrate + + + + Encoding engine quality + + + + Fast + + + + Standard + + + + High + + + + Force mono encoding + + + + + TranscoderOptionsOpus + + Form + + + + Bitrate + + + + kbps + + + + + TranscoderOptionsSpeex + + Form + + + + Quality + Sound quality + + + + Bitrate + + + + automatic + + + + kbps + + + + Average bitrate + + + + disabled + + + + Encoding mode + + + + Auto + + + + Ultra wide band (UWB) + + + + Wide band (WB) + + + + Narrow band (NB) + + + + Variable bit rate + + + + Voice activity detection + + + + Discontinuous transmission + + + + Encoding complexity + + + + Frames per buffer + + + + + TranscoderOptionsVorbis + + Form + + + + Quality + Sound quality + + + + Use bitrate management engine + + + + Target bitrate + + + + kbps + + + + Minimum bitrate + + + + disabled + + + + Maximum bitrate + + + + + TranscoderOptionsWavPack + + Form + + + + + TranscoderSettingsPage + + Transcoding + + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + + + + Serial number + + + + Mount points + + + + Partition label + + + + UUID + + + + + UserPassDialog + + Enter username and password + + + + Username + + + + Password + + + + diff --git a/src/translations/strawberry_tr_TR.ts b/src/translations/strawberry_tr_TR.ts new file mode 100644 index 00000000..b66491da --- /dev/null +++ b/src/translations/strawberry_tr_TR.ts @@ -0,0 +1,7558 @@ + + + + + About + + About + + + + About Strawberry + Strawberry hakkında + + + Version %1 + Sürüm %1 + + + Strawberry is a music player and music collection organizer. + Strawberry bir müzik çalar ve müzik koleksiyonu düzenleyicisidir. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + 2018 yılında piyasaya sürülen Clementine'in müzik koleksiyoncuları ve müzik tutkunlarına yönelik bir versiyonudur. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry, GPL altında yayınlanan özgür bir yazılımdır. Kaynak kodu %1'de mevcuttur + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Bu programla birlikte GNU Genel Kamu Lisansı'nın bir kopyasını almış olmalısınız. Eğer almadıysanız, %1'e bakın + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Eğer Strawberry'yi beğendiyseniz ve işinize yarıyorsa sponsor olmayı düşünebilir veya bağışta bulunabilirsiniz. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Geliştiriciye %1 üzerinden sponsor olabilirsiniz. Ayrıca %2 üzerinden tek seferlik ödeme yapabilirsiniz. + + + Author and maintainer + Geliştirici ve bakımcı + + + Contributors + Katkıda bulunanlar + + + Clementine authors + Clementine geliştiricileri + + + Clementine contributors + + + + Thanks to + + + + Thanks to all the other Amarok and Clementine contributors. + + + + + AddStreamDialog + + Add Stream + + + + Enter the URL of a stream: + + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + + All files (*) + Tüm dosyalar (*) + + + Load cover from disk... + Diskten kapak yükle... + + + Save cover to disk... + Kapağı diske kaydet... + + + Load cover from URL... + URL'den kapak yükle... + + + Search for album covers... + Albüm kapağı ara + + + Unset cover + Kapağı kaldır + + + Delete cover + Kapağı sil + + + Clear cover + Kapağı temizle + + + Show fullsize... + Tam boyut göster + + + Search automatically + Otomatik ara + + + Load cover from disk + Diskten kapak yükle + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + bilinmeyen + + + Save album cover + Albüm kapağını kaydet + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + + + + Output + + + + Enter a filename for exported covers (no extension): + + + + Export downloaded covers + + + + Export embedded covers + + + + Existing covers + + + + Do not overwrite + + + + O&verwrite all + + + + Overwrite s&maller ones only + + + + Size + + + + Scale size + + + + Size: + + + + Pixel + + + + + AlbumCoverManager + + Abort + İptal et + + + All albums + Tüm albümler + + + Albums with covers + Kapaklı albümler + + + Albums without covers + Kapaksız albümler + + + Really cancel? + Gerçekten iptal mi? + + + Closing this window will stop searching for album covers. + Bu pencereyi kapatmak albüm kapağı aramasını durduracaktır. + + + Don't stop! + Durma! + + + All artists + Tüm sanatçılar + + + Various artists + Çeşitli sanatçılar + + + Got %1 covers out of %2 (%3 failed) + + + + %1 transferred + %1 transfer edildi + + + Export finished + Dışarı aktarma bitti + + + No covers to export. + Dışarı aktaracak kapak yok. + + + Exported %1 covers out of %2 (%3 skipped) + + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + + + + Artist + Sanatçı + + + Album + Albüm + + + Search + Ara + + + Covers from %1 + + + + Abort + İptal et + + + + AnalyzerContainer + + Framerate + Kare hızı + + + Low (%1 fps) + Düşük (%1 fps) + + + Medium (%1 fps) + Orta (%1 fps) + + + High (%1 fps) + Yüksek (%1 fps) + + + Super high (%1 fps) + Çok yüksek (%1 fps) + + + No analyzer + + + + Block analyzer + + + + Boom analyzer + + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + + + + Style + + + + Use system theme icons + + + + Settings require restart. + + + + Tabbar colors + + + + &Use the system default color + + + + Use custom color + + + + Use gradient background + + + + Select tabbar color: + + + + Background image + + + + Default bac&kground image + + + + &No background image + + + + The album cover of the currently playing song + + + + Albu&m cover + + + + Custom image: + + + + Browse... + + + + Position + + + + Upper Left + + + + Upper Right + + + + Middle + + + + Bottom Left + + + + Bottom Right + + + + Max cover size + + + + Stretch image to fill playlist + + + + Keep aspect ratio + + + + Do not cut image + + + + Blur amount + + + + 0px + + + + Opacity + + + + 40% + + + + Icon sizes + + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + + + + + BackendSettingsPage + + Backend + + + + Audio output + + + + Device + + + + Output + + + + Engine + + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + + + + Buffer duration + + + + High watermark + + + + Low watermark + + + + Defaults + + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + + + + Replay Gain mode + + + + Radio (equal loudness for all tracks) + + + + Album (ideal loudness for all tracks) + + + + Pre-amp + + + + Apply compression to prevent clipping + + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + + + + Fade out when stopping a track + + + + Cross-fade when changing tracks manually + + + + Cross-fade when changing tracks automatically + + + + Except between tracks on the same album or in the same CUE sheet + + + + Fading duration + + + + Fade out on pause / fade in on resume + + + + + BehaviourSettingsPage + + Behavior + + + + Show system tray icon + + + + Keep running in the background when the window is closed + + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + + + + Show playing widget + + + + On startup + + + + Remember from &last time + + + + Show the main window + + + + Hide the main window + + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + + + + Use the system default + + + + You will need to restart Strawberry if you change the language. + + + + Using the menu to add a song will... + + + + Never start playing + + + + Play if there is nothing already playing + + + + Always start playing + + + + Pressing "Previous" in player will... + + + + Jump to previous song right away + + + + Restart song, then jump to previous if pressed again + + + + Double clicking a song will... + + + + Append to the playlist + + + + Replace the playlist + + + + Open in new playlist + Yeni çalma listesinde aç + + + Add to the queue + + + + Double clicking a song in the playlist will... + + + + Change the currently playing song + + + + Seeking using a keyboard shortcut or mouse wheel + + + + Time step + + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + Koleksiyon SQL sorgusu çalıştırılamıyor: %1 + + + Failed SQL query: %1 + SQL sorgusu başarısız: %1 + + + Updating %1 database. + %1 veritabanı güncelleniyor. + + + + CollectionFilterWidget + + Collection Filter + + + + Enter search terms here + + + + MenuPopupToolButton + + + + Entire collection + + + + Added today + + + + Added this week + + + + Added within three months + + + + Added this year + + + + Added this month + + + + Save current grouping + + + + Manage saved groupings + + + + Show + Göster + + + Group by + Grupla + + + Display options + Görüntüleme seçenekleri + + + Group by Album artist/Album + + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + + + + Group by Artist/Album - Disc + + + + Group by Artist/Year - Album + + + + Group by Artist/Year - Album - Disc + + + + Group by Genre/Album artist/Album + + + + Group by Genre/Artist/Album + + + + Group by Album Artist + + + + Group by Artist + + + + Group by Album + + + + Group by Genre/Album + + + + Advanced grouping... + Gelişmiş gruplama... + + + Grouping Name + + + + Grouping name: + + + + + CollectionModel + + Various artists + Çeşitli sanatçılar + + + Loading... + Yükleniyor... + + + Unknown + Bilinmeyen + + + + CollectionSettingsPage + + Collection + Koleksiyon + + + These folders will be scanned for music to make up your collection + + + + Add new folder... + + + + Remove folder + + + + Automatic updating + + + + Update the collection when Strawberry starts + + + + Monitor the collection for changes + + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + + + + Display options + Görüntüleme seçenekleri + + + Automatically open single categories in the collection tree + + + + Show dividers + + + + Show album cover art in collection + + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + + + + Size + + + + Enable Disk Cache + + + + Disk Cache Size + + + + Current disk cache in use: + + + + Clear Disk Cache + + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + + + + Add directory... + Dizin ekle... + + + Write all playcounts and ratings to files + Tüm çalma sayısını ve derecelendirmeleri dosyalara yazdır + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Koleksiyonunuzdaki tüm şarkılar için çalma sayısı ve derecelendirmeleri dosyaya yazdırmak istediğinizden emin misiniz? + + + + CollectionView + + Your collection is empty! + Koleksiyonunuz boş! + + + Click here to add some music + Biraz müzik eklemek için buraya tıklayın + + + Append to current playlist + Geçerli çalma listesine ekle + + + Replace current playlist + + + + Open in new playlist + Yeni çalma listesinde aç + + + Queue track + Parçayı sıraya al + + + Queue to play next + + + + Search for this + Bunun için ara + + + Organize files... + Dosyaları düzenle... + + + Copy to device... + Cihaza kopyala... + + + Delete from disk... + Diskten sil + + + Edit track information... + Parça bilgisini düzenle... + + + Edit tracks information... + Parçaların bilgilerini düzenle... + + + Show in file browser... + Dosya tarayıcısında göster... + + + Rescan song(s) + Şarkıları yeniden tara... + + + Show in various artists + Çeşitli sanatçılar içinde göster + + + Don't show in various artists + Çeşitli sanatçılar içinde gösterme + + + There are other songs in this album + Bu albümde diğer şarkılar var + + + Would you like to move the other songs on this album to Various Artists as well? + Bu albümdeki diğer şarkıları da Çeşitli Sanatçılar'a taşımak ister misiniz? + + + Error + Hata + + + None of the selected songs were suitable for copying to a device + Seçilen parçaların hiçbiri cihaza kopyalamak için uygun değil + + + + CollectionViewContainer + + Form + + + + + CollectionWatcher + + Updating collection + Koleksiyon güncelleniyor + + + Updating %1 + %1 güncelleniyor + + + + Console + + Console + + + + Run + + + + + ContextSettingsPage + + Context + İçerik + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + Başlık + + + Summary + + + + Enable Items + + + + Album + Albüm + + + Technical Data + + + + Song Lyrics + + + + Automatically search for album cover + + + + Automatically search for song lyrics + Şarkı sözlerini otomatik ara + + + Font for headline + + + + Font + + + + Font size + + + + pt + + + + Preview + + + + Font for data and lyrics + + + + Add song artist tag + + + + Add song album tag + + + + Add song title tag + + + + Add song albumartist tag + + + + Add song year tag + + + + Add song composer tag + + + + Add song performer tag + + + + Add song grouping tag + + + + Add song disc tag + + + + Add song track tag + + + + Add song genre tag + + + + Add song length tag + + + + Add song play count + + + + Add song skip count + + + + Add a new line if supported by the notification type + + + + %filename% + + + + Add song filename + + + + %url% + + + + Add song URL + + + + %rating% + + + + Add song rating + + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + Dosya türü + + + Length + Uzunluk + + + Samplerate + Örnek hız + + + Bit depth + Bit derinliği + + + Bitrate + Bit oranı + + + EBU R 128 Integrated Loudness + EBU R 128 Entegre Edilmiş Ses Yüksekliği + + + EBU R 128 Loudness Range + EBU R 128 Ses Yüksekliği Aralığı + + + Show album cover + Albüm kapağını göster + + + Show song technical data + Şarkı teknik verilerini göster + + + Show song lyrics + Şarkı sözlerini göster + + + Automatically search for song lyrics + Şarkı sözlerini otomatik ara + + + No song playing + Şarkı çalmıyor + + + %1 song + %1 şarkı + + + %1 songs + %1 şarkı + + + %1 artist + %1 sanatçı + + + %1 artists + %1 sanatçı + + + %1 album + %1 albüm + + + %1 albums + %1 albüm + + + kbps + kbps + + + + CoverFromURLDialog + + Load cover from URL + + + + Enter a URL to download a cover from the Internet: + + + + Fetching cover error + + + + The site you requested does not exist! + + + + The site you requested is not an image! + + + + + CoverManager + + Cover Manager + + + + Enter search terms here + + + + MenuPopupToolButton + + + + View + + + + Total albums: + + + + Without cover: + + + + 0 + + + + Fetch Missing Covers + + + + Export Covers + + + + Fetch automatically + + + + Load + + + + Add to playlist + + + + + CoverSearchStatisticsDialog + + Fetch completed + + + + Got %1 covers out of %2 (%3 failed) + + + + Covers from %1 + + + + Total network requests made + + + + Average image size + + + + Total bytes transferred + + + + + CoversSettingsPage + + Covers + + + + Cover providers + + + + Choose the providers you want to use when searching for covers. + + + + Move up + + + + Move down + + + + Authentication + + + + Login + + + + Album cover types + + + + Saving album covers + + + + Save album covers in album directory + + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + + + + Pattern + + + + Random + + + + Overwrite existing file + + + + Lowercase filename + + + + Replace spaces with dashes + + + + Use Tidal settings to authenticate. + Kimlik doğrulama için Tidal ayarlarını kullan. + + + Use Spotify settings to authenticate. + Kimlik doğrulama için Spotify ayarlarını kullan. + + + Use Qobuz settings to authenticate. + Kimlik doğrulama için Qobuz ayarlarını kullan. + + + %1 needs authentication. + %1 kimlik doğrulaması gerektiriyor. + + + %1 does not need authentication. + %1 kimlik doğrulaması gerektirmiyor. + + + No provider selected. + Sağlayıcı seçilmedi. + + + Authentication failed + Doğrulama başarısız + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + CUE dosyalarının kaydedilmesi desteklenmiyor. + + + + Database + + Unable to execute SQL query: %1 + SQL sorgusu çalıştırılamıyor: %1 + + + Failed SQL query: %1 + SQL sorgusu başarısız: %1 + + + Integrity check + Bütünlük kontrolü + + + Database corruption detected. + Veritabanı bozulması tespit edildi. + + + Backing up database + Veritabanı yedekleniyor + + + + DeleteConfirmationDialog + + Delete files + + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + + + + + DeleteFiles + + Deleting files + Dosyalar siliniyor + + + + DeviceItemDelegate + + Updating %1%... + + + + Not connected + + + + Not mounted - double click to mount + + + + Double click to open + + + + %1 song%2 + + + + + DeviceManager + + Connect device + + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + + + + This device will not work properly + + + + This is an MTP device, but you compiled Strawberry without libmtp support. + + + + If you continue, this device will work slowly and songs copied to it may not work. + + + + This is an iPod, but you compiled Strawberry without libgpod support. + + + + This type of device is not supported: %1 + + + + + DeviceProperties + + Device Properties + + + + Information + + + + Name + Ad + + + Icon + + + + Hardware information + + + + Hardware information is only available while the device is connected. + + + + File formats + + + + Supported formats + + + + This device supports the following file formats: + + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + + + + Do not convert any music + + + + Convert any music that the device can't play + + + + Convert all music + + + + Preferred format + + + + This device must be connected and opened before Strawberry can see what file formats it supports. + + + + Open device + + + + Querying device... + + + + Model + + + + Manufacturer + + + + + DeviceView + + Safely remove device + + + + Forget device + + + + Device properties... + + + + Append to current playlist + Geçerli çalma listesine ekle + + + Replace current playlist + + + + Open in new playlist + Yeni çalma listesinde aç + + + Copy to collection... + Koleksiyona kopyala... + + + Delete from device... + + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + + + + Delete files + + + + These files will be deleted from the device, are you sure you want to continue? + + + + + DeviceViewContainer + + Form + + + + + DynamicPlaylistControls + + Dynamic mode is on + + + + New tracks will be added automatically. + + + + Expand + + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + + + + Summary + + + + Date created + + + + Art Automatic + + + + Date modified + + + + Art Embedded + + + + Last played + A playlist's tag. + En son çalınan + + + File type + Dosya türü + + + Length + Uzunluk + + + Play count + + + + Bit depth + Bit derinliği + + + EBU R 128 integrated loudness + + + + Bit rate + + + + Skip count + + + + Sample rate + Örnek hızı + + + Path + + + + Filename + + + + Art Unset + + + + File size + + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + Disk + + + Grouping + Gruplandırma + + + Album artist + Albüm sanatçısı + + + Album + Albüm + + + Year + Yıl + + + Title + Başlık + + + Artist + Sanatçı + + + Composer + Besteci + + + Complete tags automatically + + + + Genre + Tarz + + + Comment + Yorum + + + Performer + Sanatçı + + + Compilation + + + + Track + Parça + + + Rating + Derecelendirme + + + Lyrics + + + + Complete lyrics automatically + + + + Previous + + + + Next + + + + Saving tracks + + + + Loading tracks + Parçalar yükleniyor + + + %1 songs selected. + + + + kbps + kbps + + + Unknown + Bilinmeyen + + + Yes + + + + No + + + + None + Hiçbiri + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + Asla + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + %1'e üstveri yazılamadı + + + Could not write metadata to %1: %2 + %1'e üstveri yazılamadı: %2 + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + + + + Preset: + + + + Save preset + Önayarı kaydet + + + Delete preset + Önayarı sil + + + Enable equalizer + + + + Enable stereo balancer + + + + Left + + + + Balance + + + + Right + + + + Pre-amp + + + + Custom + Özel + + + Classical + Klasik + + + Club + Kulüp + + + Dance + Dans + + + Full Bass + Full Bass + + + Full Treble + Full Treble + + + Full Bass + Treble + Full Bass + Treble + + + Laptop/Headphones + Dizüstü/Kulaklık + + + Large Hall + Büyük Salon + + + Live + Canlı + + + Party + Parti + + + Pop + Pop + + + Reggae + Reggae + + + Rock + Rock + + + Soft + Soft + + + Ska + Ska + + + Soft Rock + Soft Rock + + + Techno + Tekno + + + Zero + Sıfır + + + Name + Ad + + + Are you sure you want to delete the "%1" preset? + %1 önayarını silmek istediğinize emin misiniz? + + + + EqualizerSlider + + Equalizer + + + + %1 dB + %1 dB + + + + ErrorDialog + + Strawberry Error + + + + + FancyTabWidget + + Large sidebar + + + + Icons sidebar + + + + Small sidebar + + + + Plain sidebar + + + + Tabs on top + + + + Icons on top + + + + + FileTypeItemDelegate + + Unknown + Bilinmeyen + + + + FileView + + Form + + + + + FileViewList + + Append to current playlist + Geçerli çalma listesine ekle + + + Replace current playlist + + + + Open in new playlist + Yeni çalma listesinde aç + + + Copy to collection... + Koleksiyona kopyala... + + + Move to collection... + Koleksiyona taşı... + + + Copy to device... + Cihaza kopyala... + + + Delete from disk... + Diskten sil + + + Edit track information... + Parça bilgisini düzenle... + + + Show in file browser... + Dosya tarayıcısında göster... + + + + FreeSpaceBar + + Available + + + + New songs + + + + Exceeded by + + + + Used + + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + + + + An error occurred loading the iTunes database + + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + + + + Device + + + + URI + + + + + GlobalShortcutGrabber + + Press a key + + + + Press a key combination to use for %1... + + + + + GlobalShortcutsManager + + Play + Çal + + + Pause + Duraklat + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + + + + Action + Category label + + + + Shortcut + + + + Shortcut for %1 + + + + &None + + + + &Default + + + + &Custom + + + + Change shortcut... + + + + The "%1" command could not be started. + + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + + + + First level + Birinci seviye + + + None + Hiçbiri + + + Artist + Sanatçı + + + Album artist + Albüm sanatçısı + + + Album + Albüm + + + Album - Disc + Albüm - Disk + + + Disc + Disk + + + Format + Format + + + Genre + Tarz + + + Year + Yıl + + + Year - Album + Yıl - Albüm + + + Year - Album - Disc + Yıl - Albüm - Disk + + + Original year + Orijinal yıl + + + Original year - Album + Orijinal yıl - Albüm + + + Composer + Besteci + + + Performer + Sanatçı + + + Grouping + Gruplandırma + + + File type + Dosya türü + + + Sample rate + Örnek hızı + + + Bit depth + Bit derinliği + + + Bitrate + Bit oranı + + + Second level + + + + Third level + + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + + + + + LastFMImport + + Missing username, please login to last.fm first! + + + + + LastFMImportDialog + + Import data from last.fm + + + + Choose data to import from last.fm + + + + Last played + En son çalınan + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + + + + Cancel + + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + Asla + + + + Library + + Least favourite tracks + En az beğenilen parça + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + + + + You are not signed in. + + + + Sign out + + + + Signing in... + + + + You are signed in. + + + + You are signed in as %1. + + + + Expires on %1 + + + + + LyricsSettingsPage + + Lyrics + + + + Lyrics providers + + + + Choose the providers you want to use when searching for lyrics. + + + + Move up + + + + Move down + + + + Authentication + + + + Login + + + + No provider selected. + Sağlayıcı seçilmedi. + + + Authentication failed + Doğrulama başarısız + + + + MainWindow + + Strawberry Music Player + + + + MenuPopupToolButton + + + + &Music + + + + P&laylist + + + + Help + + + + &Tools + + + + Previous track + + + + F5 + + + + &Play + + + + F6 + + + + &Stop + + + + F7 + + + + &Next track + + + + F8 + + + + &Quit + + + + Ctrl+Q + + + + Stop after this track + Bu parçadan sonra dur + + + Ctrl+Alt+V + + + + Love + + + + &Clear playlist + + + + Clear playlist + Çalma listesini temizle + + + Ctrl+K + + + + Edit track information... + Parça bilgisini düzenle... + + + Ctrl+E + + + + Renumber tracks in this order... + + + + Set value for all selected tracks... + + + + Edit tag... + + + + &Settings... + + + + Ctrl+P + + + + &About Strawberry + + + + F1 + + + + S&huffle playlist + + + + Ctrl+H + + + + &Add file... + + + + Ctrl+Shift+A + + + + &Open file... + + + + Open audio &CD... + + + + &Cover Manager + + + + C&onsole + + + + &Shuffle mode + + + + &Repeat mode + + + + Remove from playlist + + + + &Equalizer + + + + &Transcode Music + + + + Add &folder... + + + + &Jump to the currently playing track + + + + Ctrl+J + + + + &New playlist + + + + Ctrl+N + + + + Save &playlist... + + + + Ctrl+S + + + + &Load playlist... + + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + + + + Go to previous playlist tab + + + + &Update changed collection folders + + + + About &Qt + + + + &Mute + + + + Ctrl+M + + + + &Do a full collection rescan + + + + Stop collection scan + + + + Complete tags automatically... + + + + Ctrl+T + + + + Toggle scrobbling + + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + + + + Add file to transcoder + + + + Add stream... + + + + Show sidebar + + + + Import data from last.fm... + + + + All Files (*) + Tüm Dosyalar + + + Context + İçerik + + + Collection + Koleksiyon + + + Queue + Sıra + + + Playlists + Çalma listeleri + + + Smart playlists + Akıllı çalma listeleri + + + Files + Dosyalar + + + Radios + Radyolar + + + Devices + Cihazlar + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Tüm şarkıları göster + + + Show only duplicates + Sadece kopyaları göster + + + Show only untagged + Sadece etiketlenmemişleri göster + + + Configure collection... + Koleksiyon ayarları... + + + Play + Çal + + + Toggle queue status + + + + Queue selected tracks to play next + + + + Toggle skip status + + + + Rescan song(s)... + Şarkıları yeniden tara... + + + Copy URL(s)... + URLleri kopyala... + + + Show in collection... + Koleksiyonda göster... + + + Show in file browser... + Dosya tarayıcısında göster... + + + Organize files... + Dosyaları düzenle... + + + Copy to collection... + Koleksiyona kopyala... + + + Move to collection... + Koleksiyona taşı... + + + Copy to device... + Cihaza kopyala... + + + Delete from disk... + Diskten sil + + + Check for updates... + Güncellemeleri kontrol et... + + + Strawberry running under Rosetta + Strawberry Rosetta'da çalışıyor + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + Strawberry'yi Rosetta'da çalıştırıyorsun. Strawberry'yi Rosetta'da çalıştırmak desteklenmiyor ve sorunlara yol açtığı biliniyor. Doğru CPU mimarisi için Strawberry'yi şu adresten indirmelisiniz: %1 + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + Strawberry ücretsiz ve açık kaynaklı bir yazılımdır. Strawberry'yi beğendiyseniz projeye sponsor olabilirsiniz. Sponsorluk hakkında daha fazla bilgi için web sitemizi ziyaret edin %1 + + + Pause + Duraklat + + + Dequeue track + Parçayı sıradan çıkar + + + Dequeue selected tracks + Seçili parçaları sıradan çıkar + + + Queue track + Parçayı sıraya al + + + Queue selected tracks + Seçili parçaları sıraya al + + + Queue to play next + + + + Unskip track + Parçayı atlama + + + Unskip selected tracks + Seçili parçaları atlama + + + Skip track + Parçayı atla + + + Skip selected tracks + Seçili parçaları atla + + + Set %1 to "%2"... + %1'i %2'ye ayarla + + + Edit tag "%1"... + "%1" etiketini düzenle... + + + Add to another playlist + Başka çalma listesine ekle + + + New playlist + Yeni çalma listesi + + + Add file + Dosya ekle + + + Music + Müzik + + + Add folder + Klasör ekle + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Çalma listesinde, geri alınamayacak kadar fazla %1 şarkı var. Çalma listesini temizlemek istediğinizden emin misiniz? + + + Error + Hata + + + None of the selected songs were suitable for copying to a device + Seçilen parçaların hiçbiri cihaza kopyalamak için uygun değil + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Güncellediğiniz Strawberry sürümü, aşağıda listelenen yeni özellikler nedeniyle koleksiyonun yeniden taranmasını gerektiriyor: + + + Would you like to run a full rescan right now? + Tam yeniden taramayı şimdi yapmak ister misiniz? + + + Collection rescan notice + Koleksiyon yeniden tarama bildirimi + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + + + + + MimeData + + Playlist + Çalma listesi + + + + MoodbarProxyStyle + + Show moodbar + + + + Moodbar style + + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + + + + Moodbar style + + + + Save the .mood files directly in the songs folders + + + + Enabled + + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + + + + Error connecting MTP device %1 + + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + + + + &Use the system proxy settings + + + + Direct internet connection + + + + &Manual proxy configuration + + + + HTTP proxy + + + + SOCKS proxy + + + + Port + + + + Use authentication + + + + Username + + + + Password + + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + + + + Strawberry can show a message when the track changes. + + + + Notification type + + + + Disabled + Refers to a disabled notification type in Notification settings. + + + + Show a &native desktop notification + + + + Show a pretty OSD + + + + Show a popup fro&m the system tray + + + + General settings + + + + Popup duration + + + + seconds + + + + Disable duration + + + + Show a notification when I change the volume + + + + Show a notification when I change the repeat/shuffle mode + + + + Show a notification when I pause playback + + + + Show a notification when I resume playback + + + + Include album art in the notification + + + + Custom message settings + + + + Use a custom message for notifications + + + + Preview + + + + MenuPopupToolButton + + + + Summary + + + + Body + + + + Pretty OSD options + + + + Background color + + + + Text options + + + + Choose font... + + + + Choose color... + + + + Background opacity + + + + Basic Blue + + + + Strawberry Red + + + + Custom... + + + + Enable fading + + + + Add song artist tag + + + + Add song album tag + + + + Add song title tag + + + + Add song albumartist tag + + + + Add song year tag + + + + Add song composer tag + + + + Add song performer tag + + + + Add song grouping tag + + + + Add song disc tag + + + + Add song track tag + + + + Add song genre tag + + + + Add song length tag + + + + Add song play count + + + + Add song skip count + + + + Add song rating + + + + Add a new line if supported by the notification type + + + + %filename% + + + + Add song filename + + + + %url% + + + + Add song URL + + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + + + + Drag to reposition + + + + + OSDBase + + disc %1 + + + + track %1 + + + + Paused + + + + Stopped + + + + Stop playing after track: %1 + + + + On + + + + Off + + + + Playlist finished + + + + Volume %1% + + + + Don't shuffle + + + + Shuffle all + + + + Shuffle tracks in this album + + + + Shuffle albums + + + + Don't repeat + + + + Repeat track + + + + Repeat album + + + + Repeat playlist + + + + Stop after every track + + + + Intro tracks + + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + + + + After copying... + + + + Keep the original files + + + + Delete the original files + + + + Naming options + + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + + + + Insert... + + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + + + + Restrict characters to ASCII + + + + Allow extended ASCII characters + + + + Replace spaces with underscores + + + + Overwrite existing files + + + + Copy album cover artwork + + + + Preview + + + + Loading... + Yükleniyor... + + + Safely remove the device after copying + + + + Title + Başlık + + + Album + Albüm + + + Artist + Sanatçı + + + Artist's initial + + + + Album artist + Albüm sanatçısı + + + Composer + Besteci + + + Performer + Sanatçı + + + Grouping + Gruplandırma + + + Track + Parça + + + Disc + Disk + + + Year + Yıl + + + Original year + Orijinal yıl + + + Genre + Tarz + + + Comment + Yorum + + + Length + Uzunluk + + + Bitrate + Refers to bitrate in file organize dialog. + Bit oranı + + + Sample rate + Örnek hızı + + + Bit depth + Bit derinliği + + + File extension + + + + + OrganizeErrorDialog + + Error copying songs + + + + There were problems copying some songs. The following files could not be copied: + + + + Error deleting songs + + + + There were problems deleting some songs. The following files could not be deleted: + + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + + + + Large album cover + + + + Fit cover to width + + + + Show above status bar + + + + + Playlist + + Could not write metadata to %1 + %1'e üstveri yazılamadı + + + Could not write metadata to %1: %2 + %1'e üstveri yazılamadı: %2 + + + Title + Başlık + + + Artist + Sanatçı + + + Album + Albüm + + + Track + Parça + + + Disc + Disk + + + Length + Uzunluk + + + Year + Yıl + + + Original Year + Orijinal Yıl + + + Genre + Tarz + + + Album Artist + Albüm Sanatçısı + + + Composer + Besteci + + + Performer + Sanatçı + + + Grouping + Gruplandırma + + + Play Count + Çalma Sayısı + + + Skip Count + Atlama Sayısı + + + Last Played + Son Çalma + + + Sample Rate + Örnekleme Sıklığı + + + Bit Depth + Bit Derinliği + + + Bitrate + Bit oranı + + + File Name + Dosya Adı + + + File Name (without path) + Dosya Adı (dosya yolu olmadan) + + + File Size + Dosya Boyutu + + + File Type + Dosya Türü + + + Date Modified + Düzenlendiği Tarih + + + Date Created + Oluşturulduğu Tarih + + + Comment + Yorum + + + Source + Kaynak + + + Mood + Ruh Hali + + + Rating + Derecelendirme + + + CUE + CUE + + + Integrated Loudness + Entegre Edilmiş Ses Yüksekliği + + + Loudness Range + Ses Yüksekliği Aralığı + + + + PlaylistContainer + + Form + + + + Undo + Geri Al + + + Redo + Yinele + + + Playlist + Çalma listesi + + + Load playlist + Çalma listesini yükle + + + No matches found. Clear the search box to show the whole playlist again. + + + + + PlaylistDelegateBase + + stop + durdur + + + + PlaylistGeneratorInserter + + Loading smart playlist + Akıllı çalma listeleri yükleniyor + + + + PlaylistHeader + + &Hide... + &Sakla... + + + &Stretch columns to fit window + &Pencereyi sığdırmak için sütunları uzat + + + &Reset columns to default + &Sütunları varsayılana sıfırla + + + &Lock rating + &Derecelendirmeyi kilitle + + + &Align text + &Metni hizala + + + &Left + &Sol + + + &Center + &Orta + + + &Right + &Sağ + + + &Hide %1 + &%1'i sakla + + + + PlaylistListContainer + + Form + + + + New folder + Yeni klasör + + + Delete + Sil + + + Save playlist + Save playlist menu action. + Çalma listesini kaydet + + + Copy to device... + Cihaza kopyala... + + + Enter the name of the folder + Klasör adını giriniz + + + Playlist + Çalma listesi + + + Copy to device + Cihaza kopyala + + + Playlist must be open first. + Önce çalma listesinin açık olması gerekir. + + + Remove playlists + Çalma listelerini kaldır + + + You are about to remove %1 playlists from your favorites, are you sure? + %1 çalma listesini favorilerinizden kaldırmak üzeresiniz, emin misiniz? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Çalma listesinin adının yanındaki yıldız simgesine basarak çalma listelerini favorilerinize ekleyebilirsiniz + + + Favorited playlists will be saved here + Favorilere eklenen çalma listeleri buraya kaydedilecek + + + + PlaylistManager + + Playlist + Çalma listesi + + + Couldn't create playlist + Çalma listesi oluşturulamadı + + + Save playlist + Title of the playlist save dialog. + Çalma listesini kaydet + + + Unknown playlist extension + Bilinmeyen çalma listesi uzantısı + + + Unknown file extension for playlist. + Çalma listesi için bilinmeyen dosya uzantısı + + + %1 selected of + + + + %n track(s) + + %n parça + + + + Unknown + Bilinmeyen + + + Various artists + Çeşitli sanatçılar + + + + PlaylistParser + + All playlists (%1) + Tüm çalma listeleri (%1) + + + %1 playlists (%2) + %1 çalma listesi (%2) + + + Unknown filetype: %1 + Bilinmeyen dosya türü: %1 + + + Could not open file %1 + %1 dosyası açılamadı + + + Directory %1 does not exist. + %1 dizini mevcut değil. + + + Failed to open %1 for writing. + %1 yazmak için açılamadı. + + + + PlaylistSaveOptionsDialog + + Playlist options + Çalma listesi seçenekleri + + + File paths + + + + This can be changed later through the preferences + + + + Remember my choice + + + + Automatic + Otomatik + + + Relative + Göreceli + + + Absolute + Mutlak + + + + PlaylistSequence + + Repeat + + + + Shuffle + + + + Don't repeat + + + + Repeat track + + + + Repeat album + + + + Repeat playlist + + + + Stop after each track + + + + Intro tracks + + + + Don't shuffle + + + + Shuffle tracks in this album + + + + Shuffle all + + + + Shuffle albums + + + + + PlaylistSettingsPage + + Playlist + Çalma listesi + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Çalma listesi sekmesini kapatırken beni uyar + + + Continue to the next item in the playlist if a song is unavailable + + + + Grey out unavailable songs in playlists on playback + + + + Grey out unavailable songs in playlists on startup + + + + Automatically select current playing track + + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + + + + A&utomatic + + + + Absolu&te + + + + Re&lative + + + + As&k when saving + + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + + + + Enable song metadata inline edition with click + + + + Write metadata when saving playlists + + + + + PlaylistTabBar + + Star playlist + Çalma listesini yıldızla + + + Close playlist + Çalma listesini kapat + + + Rename playlist... + Çalma listesini yeniden adlandır... + + + Save playlist... + Çalma listesini kaydet... + + + Rename playlist + Çalma listesini yeniden adlandır + + + Enter a new name for this playlist + Çalma listesi için yeni bir ad gir + + + Remove playlist + Çalma listesini kaldır + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Favori çalma listelerinizin bir parçası olmayan bir çalma listesini kaldırmak üzeresiniz: çalma listesi silinecektir (bu işlem geri alınamaz). +Devam etmek istediğinizden emin misiniz? + + + Warn me when closing a playlist tab + Çalma listesi sekmesini kapatırken beni uyar + + + This option can be changed in the "Behavior" preferences + + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + Çalma listesi + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + %n şarkı ekle + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + %n şarkı taşı + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + %n şarkı kaldır + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + şarkıları karıştır + + + + PlaylistUndoCommands::SortItems + + sort songs + şarkıları sırala + + + + PlaylistView + + Hz + Hz + + + Bit + Bit + + + kbps + kbps + + + + QObject + + Usage + Kullanım + + + options + seçenekler + + + URL(s) + URL'ler + + + Player options + Oynatıcı seçenekleri + + + Start the playlist currently playing + Devam eden çalma listesini başlat + + + Play if stopped, pause if playing + Durmuşsa çal, çalıyorsa durdur + + + Pause playback + Yeniden çalmayı duraklat + + + Stop playback + Yeniden çalmayı durdur + + + Stop playback after current track + Yeniden çalmayı devam eden parçadan sonra durdur + + + Skip backwards in playlist + Çalma listesinde geriye doğru atla + + + Skip forwards in playlist + Çalma listesinde ileriye doğru atla + + + Set the volume to <value> percent + Ses seviyesini <value>'ye ayarla + + + Increase the volume by 4 percent + Ses seviyesini yüzde 4 arttır + + + Decrease the volume by 4 percent + Ses seviyesini yüzde 4 azalt + + + Increase the volume by <value> percent + Ses seviyesini yüzde <value> arttır + + + Decrease the volume by <value> percent + Ses seviyesini yüzde <value> azalt + + + Seek the currently playing track to an absolute position + + + + Seek the currently playing track by a relative amount + + + + Restart the track, or play the previous track if within 8 seconds of start. + + + + Playlist options + Çalma listesi seçenekleri + + + Create a new playlist with files + Dosyalarla yeni bir çalma listesi oluştur + + + Append files/URLs to the playlist + Çalma listesine dosya/URL'ler ekle + + + Loads files/URLs, replacing current playlist + + + + Play the <n>th track in the playlist + Çalma listesindeki <n>. parçayı çal + + + Play given playlist + Verilen çalma listesini çal + + + Other options + Diğer seçenekler + + + Display the on-screen-display + Ekran üstü görüntüyü görüntüle + + + Toggle visibility for the pretty on-screen-display + Ekran üstü güzel görünüm için görünürlüğü değiştir + + + Change the language + Dili değiştir + + + Resize the window + Ekranı yeniden boyutlandır + + + Equivalent to --log-levels *:1 + -log-levels *:1'e eşit + + + Equivalent to --log-levels *:3 + -log-levels *:3'e eşit + + + Comma separated list of class:level, level is 0-3 + + + + Print out version information + Sürüm bilgisini yazdır + + + Failed to create directory %1. + Klasör oluşturulamadı: %1. + + + Destination file %1 exists, but not allowed to overwrite. + %1 hedef dosyası mevcut, ancak üzerine yazılmasına izin verilmiyor + + + Destination file %1 exists, but not allowed to overwrite + %1 hedef dosyası mevcut, ancak üzerine yazılmasına izin verilmiyor + + + Could not copy file %1 to %2. + + + + Unknown + Bilinmeyen + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + %1 dosyası geçerli bir ses dosyası olarak tanınmıyor. + + + 1 day + 1 gün + + + %1 days + %1 gün + + + Today + Bugün + + + Yesterday + Dün + + + %1 days ago + %1 gün önce + + + Tomorrow + Yarın + + + In %1 days + %1 gün içinde + + + Next week + Gelecek hafta + + + In %1 weeks + %1 hafta içinde + + + Show in file browser + Dosya tarayıcısında göster + + + Too many songs selected. + Çok fazla şarkı seçildi. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + %1 için veriden görüntü yüklenemedi + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + sanatçı + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + derecelendirme + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Kullanılabilir alanlar + + + after + sonra + + + before + önce + + + on + + + + not on + + + + in the last + sondaki + + + not in the last + sondaki değil + + + between + arasında + + + contains + içeren + + + does not contain + içermiyor + + + starts with + ile başlar + + + ends with + ile biter + + + greater than + büyüktür + + + less than + küçüktür + + + equals + eşittir + + + not equals + eşit değildir + + + empty + boş + + + not empty + boş değil + + + Comment + Yorum + + + A-Z + A-Z + + + Z-A + Z-A + + + oldest first + ilk önce en eski + + + newest first + ilk önce en yeni + + + shortest first + ilk önce en kısa + + + longest first + ilk önce en uzun + + + smallest first + ilk önce en küçük + + + biggest first + ilk önce en büyük + + + Hours + Saat + + + Days + Gün + + + Weeks + Hafta + + + Months + Ay + + + Years + Yıl + + + Normal + + + + Angry + + + + Frozen + + + + Happy + + + + System colors + + + + + QWidget + + Clear + + + + Reset + + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Unknown error + + + + + QobuzService + + Authenticating... + + + + Maximum number of login attempts reached. + + + + Missing Qobuz app ID. + + + + Missing Qobuz username. + + + + Missing Qobuz password. + + + + Not authenticated with Qobuz. + + + + Missing Qobuz app ID or secret. + + + + + QobuzSettingsPage + + Qobuz + + + + Enable + + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + + + + App ID + + + + Username + + + + Password + + + + App Secret + + + + Login + + + + Preferences + + + + Audio format + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Base64 encoded secret + + + + Configuration incomplete + + + + Missing app id. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Doğrulama başarısız + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + + + + Cancelled. + + + + + Queue + + %n track(s) + + %n parça + + + + + QueueView + + QueueView + + + + Move down + + + + Ctrl+Up + + + + Move up + + + + Ctrl+Down + + + + Remove + + + + Clear + + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + Geçerli çalma listesine ekle + + + Replace current playlist + + + + Open in new playlist + Yeni çalma listesinde aç + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + + + + + SCollection + + Saving playcounts and ratings + Derecelendirmeler ve oynatma sayısı kaydediliyor + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + + + + Remove + + + + Ctrl+Up + + + + Name + Ad + + + First level + Birinci seviye + + + Second Level + İkinci seviye + + + Third Level + Üçüncü seviye + + + None + Hiçbiri + + + Album artist + Albüm sanatçısı + + + Artist + Sanatçı + + + Album + Albüm + + + Album - Disc + Albüm - Disk + + + Year - Album + Yıl - Albüm + + + Year - Album - Disc + Yıl - Albüm - Disk + + + Original year - Album + Orijinal yıl - Albüm + + + Original year - Album - Disc + Orijinal yıl - Albüm - Disk + + + Disc + Disk + + + Year + Yıl + + + Original year + Orijinal yıl + + + Genre + Tarz + + + Composer + Besteci + + + Performer + Sanatçı + + + Grouping + Gruplandırma + + + File type + Dosya türü + + + Format + Format + + + Sample rate + Örnek hızı + + + Bit depth + Bit derinliği + + + Bitrate + Bit oranı + + + Unknown + Bilinmeyen + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + + + + Show love button + + + + Submit scrobbles every + + + + seconds + + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + Koleksiyon + + + Subsonic + + + + Local file + + + + Tidal + + + + Device + + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + + + + Radio Paradise + + + + Unknown + Bilinmeyen + + + Last.fm + + + + Login + + + + Libre.fm + + + + Listenbrainz + + + + User token: + + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + + + + Open URL in web browser? + + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + + + + Could not open URL. Please open this URL in your browser + + + + Invalid reply from web browser. Missing token. + + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + + + + General + Genel + + + User interface + Kullanıcı arayüzü + + + Streaming + Yayımlanıyor + + + + SmartPlaylistQuerySearchPage + + Form + + + + Search mode + + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + Arama terimleri + + + + SmartPlaylistQuerySortPage + + Form + + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + + + + Show all the songs + + + + Only show the first + + + + songs + + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Koleksiyon araması + + + Find songs in your collection that match the criteria you specify. + Koleksiyonunuzda belirttiğiniz kriterlere uyan şarkıları bulun. + + + Search terms + Arama terimleri + + + A song will be included in the playlist if it matches these conditions. + Bu şartları sağlayan şarkılar listeye eklenecektir. + + + Search options + Arama seçenekleri + + + Choose how the playlist is sorted and how many songs it will contain. + Çalma listesinin nasıl sıralanacağını ve kaç şarkı içereceğini seçin. + + + + SmartPlaylistSearchPreview + + Form + + + + Preview + + + + Loading... + Yükleniyor... + + + %1 songs found (showing %2) + %1 şarkı bulundu (%2 tanesi gösteriliyor) + + + %1 songs found + %1 şarkı bulundu + + + + SmartPlaylistSearchTermWidget + + Form + + + + and + + + + ago + + + + The second value must be greater than the first one! + İkinci değer birinci değerden daha büyük olmalıdır! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Arama terimi sekle + + + + SmartPlaylistWizard + + Smart playlist + Akıllı çalma listesi + + + Playlist type + Çalma listesi türü + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Akıllı çalma listesi, koleksiyonunuzdan gelen şarkıların dinamik bir listesidir. Şarkıları seçmenin farklı yollarını sunan farklı akıllı çalma listesi türleri vardır. + + + Finish + Bitir + + + Choose a name for your smart playlist + Akıllı çalma listen için bir ad seç + + + + SmartPlaylistWizardFinishPage + + Form + + + + Name + Ad + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + En yeni parçalar + + + 50 random tracks + 50 rastgele parça + + + Ever played + + + + Never played + Hiç çalınmamış + + + Last played + En son çalınan + + + Most played + En çok çalınan + + + Favourite tracks + Favori parçalar + + + All tracks + Tüm parçalar + + + Dynamic random mix + Dinamik rastgele miks + + + + SmartPlaylistsViewContainer + + New smart playlist + + + + Edit smart playlist + + + + Delete smart playlist + Akıllı çalma listesini sil + + + New smart playlist... + Yeni akıllı çalma listesi... + + + Append to current playlist + Geçerli çalma listesine ekle + + + Replace current playlist + + + + Open in new playlist + Yeni çalma listesinde aç + + + Queue track + Parçayı sıraya al + + + Play next + Sonrakini çal + + + Edit smart playlist... + Akıllı çalma listesini düzenle... + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + Bu URL için GStreamer'e ihtiyacınız var. + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + %1 dosyası mevcut değil. + + + CD playback is only available with the GStreamer engine. + CD'den oynatma sadece GStreamer motoruyla kullanılabilir. + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + Ses CD'si yüklenirken hata. + + + Loading tracks + Parçalar yükleniyor + + + Loading tracks info + Parça bilgileri yükleniyor + + + + SpotifyRequest + + Authenticating... + + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Authentication failed + Doğrulama başarısız + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + + + + Append to current playlist + Geçerli çalma listesine ekle + + + Replace current playlist + + + + Open in new playlist + Yeni çalma listesinde aç + + + Queue track + Parçayı sıraya al + + + Queue to play next + + + + Remove from favorites + + + + + StreamingCollectionViewContainer + + Form + + + + Close + + + + Abort + İptal et + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + Çeşitli sanatçılar + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + + + + albums + + + + songs + + + + Enter search terms above to find music + + + + Configure %1... + + + + Append to current playlist + Geçerli çalma listesine ekle + + + Replace current playlist + + + + Open in new playlist + Yeni çalma listesinde aç + + + Queue track + Parçayı sıraya al + + + Add to artists + + + + Add to albums + + + + Add to songs + + + + Search for this + Bunun için ara + + + Group by + Grupla + + + + StreamingSongsView + + Configure %1... + + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + + + + Albums + + + + Songs + + + + Search + Ara + + + Configure %1... + + + + + SubsonicRequest + + Retrieving albums... + + + + Retrieving songs for %1 album... + + + + Retrieving songs for %1 albums... + + + + Retrieving album cover for %1 album... + + + + Retrieving album covers for %1 albums... + + + + Unknown error + + + + + SubsonicService + + Server URL is invalid. + + + + Missing username or password. + + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + + + + Server URL + + + + Authentication + + + + Username + + + + Password + + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + + + + Use HTTP/2 when possible + + + + Verify server certificate + + + + Download album covers + + + + Server-side scrobbling + + + + Test + + + + Delete songs + + + + Configuration incomplete + + + + Missing server url, username or password. + + + + Configuration incorrect + + + + Server URL is invalid. + + + + Test successful! + + + + Test failed! + + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + + + + Missing Subsonic username or password. + + + + + SystemTrayIcon + + Pause + Duraklat + + + Play + Çal + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + + + + Missing Tidal username. + + + + Missing Tidal password. + + + + Not authenticated with Tidal and reached maximum number of login attempts. + + + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + + TidalSettingsPage + + Tidal + + + + Enable + + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + + + + Use OAuth + + + + Client ID + + + + API Token + + + + Username + + + + Password + + + + Login + + + + Preferences + + + + Audio quality + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Album cover size + + + + Stream URL method + + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + + + + Missing Tidal client ID. + + + + Missing API token. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + Doğrulama başarısız + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + Cancelled. + + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + + + + Sorry + + + + Strawberry was unable to find results for this file + + + + Select best possible match + + + + Track + Parça + + + Year + Yıl + + + Title + Başlık + + + Artist + Sanatçı + + + Album + Albüm + + + Previous + + + + Next + + + + Original tags + + + + Suggested tags + + + + Saving tracks + + + + + TrackSlider + + Form + + + + 0:00:00 + + + + Click to toggle between remaining time and total time + + + + + TranscodeDialog + + Transcode Music + + + + Files to transcode + + + + Filename + + + + Directory + + + + Add... + + + + Remove + + + + Add all tracks from a directory and all its subdirectories + + + + Import... + + + + Output options + + + + Audio format + + + + Options... + + + + Destination + + + + Alongside the originals + + + + Select... + + + + Progress + + + + Details... + + + + Clear + + + + Start transcoding + + + + %n remaining + + + + + + %n finished + + + + + + %n failed + + + + + + Add files to transcode + + + + Music + Müzik + + + Open a directory to import music from + + + + Add folder + Klasör ekle + + + + TranscodeLogDialog + + Transcoder Log + + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + + + + Successfully written %1 + + + + Transcoding %1 files using %2 threads + + + + Error processing %1: %2 + + + + Starting %1 + + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + + + + + TranscoderOptionsAAC + + Form + + + + Bitrate + Bit oranı + + + kbps + + + + Profile + + + + Main profile (MAIN) + + + + Low complexity profile (LC) + + + + Scalable sampling rate profile (SSR) + + + + Long term prediction profile (LTP) + + + + Use temporal noise shaping + + + + Allow mid/side encoding + + + + Block type + + + + Normal block type + + + + No short blocks + + + + No long blocks + + + + + TranscoderOptionsASF + + Form + + + + Bitrate + Bit oranı + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + + + + + TranscoderOptionsFLAC + + Form + + + + Quality + Sound quality + + + + Fast + + + + Best + + + + + TranscoderOptionsMP3 + + Form + + + + Optimize for &quality + + + + Quality + Sound quality + + + + Opti&mize for bitrate + + + + Bitrate + Bit oranı + + + kbps + + + + Constant bitrate + + + + Encoding engine quality + + + + Fast + + + + Standard + + + + High + + + + Force mono encoding + + + + + TranscoderOptionsOpus + + Form + + + + Bitrate + Bit oranı + + + kbps + + + + + TranscoderOptionsSpeex + + Form + + + + Quality + Sound quality + + + + Bitrate + Bit oranı + + + automatic + + + + kbps + + + + Average bitrate + + + + disabled + + + + Encoding mode + + + + Auto + + + + Ultra wide band (UWB) + + + + Wide band (WB) + + + + Narrow band (NB) + + + + Variable bit rate + + + + Voice activity detection + + + + Discontinuous transmission + + + + Encoding complexity + + + + Frames per buffer + + + + + TranscoderOptionsVorbis + + Form + + + + Quality + Sound quality + + + + Use bitrate management engine + + + + Target bitrate + + + + kbps + + + + Minimum bitrate + + + + disabled + + + + Maximum bitrate + + + + + TranscoderOptionsWavPack + + Form + + + + + TranscoderSettingsPage + + Transcoding + + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + + + + Serial number + + + + Mount points + + + + Partition label + + + + UUID + + + + + UserPassDialog + + Enter username and password + + + + Username + + + + Password + + + + diff --git a/src/translations/strawberry_uk_UA.ts b/src/translations/strawberry_uk_UA.ts new file mode 100644 index 00000000..edee667e --- /dev/null +++ b/src/translations/strawberry_uk_UA.ts @@ -0,0 +1,7577 @@ + + + + + About + + About + Про програму + + + About Strawberry + Про Strawberry + + + Version %1 + Версія %1 + + + Strawberry is a music player and music collection organizer. + Strawberry — це програвач музики та організатор музичних колекцій. + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + Це відгалуження Clementine випущене в 2018 році і призначене для колекціонерів музики та аудіофілів. + + + Strawberry is free software released under GPL. The source code is available on %1 + Strawberry — це безкоштовне програмне забезпечення, випущене під GPL. Вихідний код доступний на %1 + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + Ви повинні були отримати копію Загальної публічної ліцензії GNU разом із цією програмою. В іншому випадку див. %1 + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + Якщо вам подобається Strawberry і ви часто ним користуєтесь, подумайте про спонсорство або пожертвування. + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + Ви можете підтримати автора на %1. Ви також можете зробити одноразовий платіж через %2. + + + Author and maintainer + Координатор + + + Contributors + Учасники проекту + + + Clementine authors + Автори Clementine + + + Clementine contributors + Учасники проекту Clementine + + + Thanks to + Окрема подяка + + + Thanks to all the other Amarok and Clementine contributors. + Дякуємо всім іншим учасникам проектів Amarok і Clementine. + + + + AddStreamDialog + + Add Stream + Додати потік + + + Enter the URL of a stream: + Вкажіть адресу потоку: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + Зображення (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + Зображення (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + Всі файли (*) + + + Load cover from disk... + Завантажити обкладинку з диска... + + + Save cover to disk... + Зберегти обкладинку на диск... + + + Load cover from URL... + Завантажити обкладинку з адресою... + + + Search for album covers... + Шукати обкладинки альбомів... + + + Unset cover + Вилучити обкладинку + + + Delete cover + Видалити обкладинку + + + Clear cover + Стерти обкладинку + + + Show fullsize... + Показати на повний розмір... + + + Search automatically + Шукати автоматично + + + Load cover from disk + Завантаження обкладинки з диска + + + Failed to open cover file %1 for reading: %2 + Не вдалось відкрити файл обкладинки %1 для читання: %2 + + + Cover file %1 is empty. + Файл обкладинки %1 пустий. + + + unknown + невідомо + + + Save album cover + Зберегти обкладинку альбому + + + Failed to open cover file %1 for writing: %2 + Не вдалось відкрити файл обкладинки %1 для запису: %2 + + + Failed writing cover to file %1: %2 + Не вдалось записати обкладинку в файл %1: %2 + + + Failed writing cover to file %1. + Не вдалось записати обкладинку в файл %1. + + + Failed to delete cover file %1: %2 + Не вдалось видалити файл обкладинки %1: %2 + + + Failed to write cover to file %1: %2 + Не вдалось записати обкладинку в файл %1: %2 + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + Експортувати обкладинки + + + Output + Результат + + + Enter a filename for exported covers (no extension): + Вкажіть назву файлу для експортованих обкладинок (без суфікса назви): + + + Export downloaded covers + Експортувати отримані обкладинки + + + Export embedded covers + Експортувати вбудовані обкладинки + + + Existing covers + Наявні обкладинки + + + Do not overwrite + Не перезаписувати + + + O&verwrite all + &Перезаписати все + + + Overwrite s&maller ones only + Перезаписати лише &менші + + + Size + Розмір + + + Scale size + Масштабований розмір + + + Size: + Розмір: + + + Pixel + Піксель + + + + AlbumCoverManager + + Abort + Перервати + + + All albums + Всі альбоми + + + Albums with covers + Альбоми з обкладинками + + + Albums without covers + Альбоми без обкладинок + + + Really cancel? + Дійсно скасувати? + + + Closing this window will stop searching for album covers. + Закриття цього вікна зупинить пошук обкладинок альбомів. + + + Don't stop! + Не зупиняти! + + + All artists + Всі виконавці + + + Various artists + Різні виконавці + + + Got %1 covers out of %2 (%3 failed) + Отримано %1 обкладинок з %2 (%3 не вдалось) + + + %1 transferred + %1 передано + + + Export finished + Експортування завершено + + + No covers to export. + Немає зображень обкладинок для експортування. + + + Exported %1 covers out of %2 (%3 skipped) + Експортовано %1 обкладинок з %2 (%3 пропущено) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + Менеджер обкладинок + + + Artist + Виконавець + + + Album + Альбом + + + Search + Пошук + + + Covers from %1 + Обкладинки з %1 + + + Abort + Перервати + + + + AnalyzerContainer + + Framerate + Частота кадрів + + + Low (%1 fps) + Низька (%1 к/с) + + + Medium (%1 fps) + Середня (%1 к/с) + + + High (%1 fps) + Висока (%1 к/с) + + + Super high (%1 fps) + Найвища (%1 к/с) + + + No analyzer + Без аналізатора + + + Block analyzer + Блок аналізатора + + + Boom analyzer + Плаваючий аналізатор + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + Вигляд + + + Style + Стиль + + + Use system theme icons + Використовувати системний набір піктограм + + + Settings require restart. + Для налаштувань потрібен перезапуск. + + + Tabbar colors + Колір панелі вкладок + + + &Use the system default color + &Використати стандартний системний колір + + + Use custom color + Використовувати власний колір + + + Use gradient background + Використовувати градієнтний фон + + + Select tabbar color: + Виберіть колір панелі вкладок: + + + Background image + Зображення тла + + + Default bac&kground image + Стандартне &фонове зображення + + + &No background image + &Без фонового зображення + + + The album cover of the currently playing song + Обкладинка альбому, до якого увійшла композиція, яка зараз відтворюється + + + Albu&m cover + Обкладинка &альбому + + + Custom image: + Власне зображення: + + + Browse... + Огляд... + + + Position + Розташування + + + Upper Left + Вгорі ліворуч + + + Upper Right + Вгорі праворуч + + + Middle + Середній + + + Bottom Left + Внизу ліворуч + + + Bottom Right + Внизу праворуч + + + Max cover size + Найбільший розмір обкладинки + + + Stretch image to fill playlist + Розтягнути зображення, щоб заповнити список відтворення + + + Keep aspect ratio + Зберегти співвідношення сторін + + + Do not cut image + Не обрізати зображення + + + Blur amount + Рівень розмивання + + + 0px + 0 пкс + + + Opacity + Непрозорість + + + 40% + + + + Icon sizes + Розміри піктограм + + + Playlist buttons + Кнопки керування списком відтворення + + + Tabbar large mode + Велика панель вкладок + + + Play control buttons + Кнопки керування відтворенням + + + Configure buttons + Налаштувати кнопки + + + Files, playlists and queue buttons + Кнопки файлів, списків відтворення і черг + + + Tabbar small mode + Мала панель вкладок + + + Playlist playing song color + Колір відтворюваної композиції у списку + + + System highlight color + Системний колір виділення + + + Custom color + Власний колір + + + Select playlist playing song color: + Виберіть колір відтворюваної композиції у списку: + + + Select background image + Вибір фонового зображення + + + + BackendSettingsPage + + Backend + Бекенд + + + Audio output + Виведення звуку + + + Device + Пристрій + + + Output + Результат + + + Engine + Обробник + + + ALSA plugin: + Плагін ALSA: + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + Дозволити керування гучністю + + + Upmix / downmix to + Знижувальне/збільшувальне мікшування + + + channels + канали + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + Буфер + + + ms + мс + + + Buffer duration + Місткість буфера + + + High watermark + Водяний знак зверху + + + Low watermark + Водяний знак знизу + + + Defaults + Стандартні значення + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + Вирівнювання гучності + + + Use Replay Gain metadata if it is available + Використовувати метадані Replay Gain, якщо можливо + + + Replay Gain mode + Режим вирівнювання гучності + + + Radio (equal loudness for all tracks) + Радіо (однакова гучність всіх композицій) + + + Album (ideal loudness for all tracks) + Альбом (ідеальна гучність для всіх композицій) + + + Pre-amp + Підсилення + + + Apply compression to prevent clipping + Застосувати стиснення для запобігання зрізанню + + + Fallback-gain + Вирівнювання гучності + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + Згасання + + + Fade out when stopping a track + Поступово заглушати під час зупинки відтворення + + + Cross-fade when changing tracks manually + Перехресне згасання під час ручної зміни композицій + + + Cross-fade when changing tracks automatically + Перехресне згасання під час автоматичної зміни композицій + + + Except between tracks on the same album or in the same CUE sheet + Крім як між композиціями у одному альбомі, або в тому ж CUE-листі + + + Fading duration + Тривалість згасання + + + Fade out on pause / fade in on resume + Поступово заглушати під час призупинення і поступово робити голоснішим під час відновлення + + + + BehaviourSettingsPage + + Behavior + Поведінка + + + Show system tray icon + Показувати піктограму в системному лотку + + + Keep running in the background when the window is closed + Продовжувати виконання у фоні коли вікно зачинено + + + Show song progress on system tray icon + Показувати перебіг композиції на піктограмі в системному лотку + + + Show song progress on taskbar + + + + Resume playback on start + Відновлювати відтворення після запуску + + + Show playing widget + Показати віджет відтворення + + + On startup + Під час запуску + + + Remember from &last time + Запам'ятати &останній варіант + + + Show the main window + Показати головне вікно + + + Hide the main window + Сховати головне вікно + + + Show the main window maximized + Показати головне вікно розгорнутим + + + Show the main window minimized + Показати головне вікно згорнутим + + + Language + Мова + + + Use the system default + Використовувати системну + + + You will need to restart Strawberry if you change the language. + Після зміни мови потрібно перезапустити Strawberry. + + + Using the menu to add a song will... + Використання меню для додавання композиції призведе до... + + + Never start playing + Ніколи не починати відтворення + + + Play if there is nothing already playing + Відтворювати, якщо зараз нічого не відтворюється + + + Always start playing + Завжди починати відтворення + + + Pressing "Previous" in player will... + Натискання «Попередня» у програвачі призведе до... + + + Jump to previous song right away + Перейти до попередньої композиції негайно + + + Restart song, then jump to previous if pressed again + Перезапустити композицію, потім перейти до попередньої, якщо натиснуто ще раз + + + Double clicking a song will... + Подвійне клацання на композиції призведе до... + + + Append to the playlist + Додати до списку відтворення + + + Replace the playlist + Замінити список відтворення + + + Open in new playlist + Відкрити у новому списку відтворення + + + Add to the queue + Додати до черги + + + Double clicking a song in the playlist will... + Подвійне клацання на композицій у списку призведе до... + + + Change the currently playing song + Змінити поточну відтворювану композицію + + + Seeking using a keyboard shortcut or mouse wheel + Позиціювання за допомогою сполучення клавіш або коліщатка миші + + + Time step + Крок за часом + + + s + с + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + Не вдалось перевести пристрій CDDA у стан готовності. + + + Error while setting CDDA device to pause state. + Не вдалось перевести пристрій CDDA у стан паузи. + + + Error while querying CDDA tracks. + Не вдалось опитати CDDA-композиції. + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + Оновлення бази даних %1. + + + + CollectionFilterWidget + + Collection Filter + Фільтр фонотеки + + + Enter search terms here + Введіть сюди критерії пошуку + + + MenuPopupToolButton + + + + Entire collection + Вся фонотека + + + Added today + Додано сьогодні + + + Added this week + Додано цього тижня + + + Added within three months + Додано за три місяці + + + Added this year + Додано цього року + + + Added this month + Додано цього місяця + + + Save current grouping + Зберегти поточне групування + + + Manage saved groupings + Керування збереженими групуваннями + + + Show + Показати + + + Group by + Групувати за + + + Display options + Налаштування відображення + + + Group by Album artist/Album + Групувати за виконавцем альбому/альбомом + + + Group by Album artist/Album - Disc + Групувати за виконавцем альбому/альбомом - диском + + + Group by Album artist/Year - Album + Групувати за виконавцем альбому/роком - альбомом + + + Group by Album artist/Year - Album - Disc + Групувати за виконавцем альбому/роком - альбомом - диском + + + Group by Artist/Album + Групувати за виконавецем/альбомом + + + Group by Artist/Album - Disc + Групувати за виконавцем/альбомом - диском + + + Group by Artist/Year - Album + Групувати за виконавцем/роком - альбомом + + + Group by Artist/Year - Album - Disc + Групувати за виконавцем/роком - альбомом - диском + + + Group by Genre/Album artist/Album + Групувати за жанром/виконавцем альбому/альбомом + + + Group by Genre/Artist/Album + Групувати за жанром/виконавцем/альбомом + + + Group by Album Artist + Групувати за виконавцем альбому + + + Group by Artist + Групувати за виконавцем + + + Group by Album + Групувати за альбомом + + + Group by Genre/Album + Групувати за жанром/альбомом + + + Advanced grouping... + Розширене групування... + + + Grouping Name + Назва групування + + + Grouping name: + Назва групування: + + + + CollectionModel + + Various artists + Різні виконавці + + + Loading... + Завантаження... + + + Unknown + Невідомо + + + + CollectionSettingsPage + + Collection + Фонотека + + + These folders will be scanned for music to make up your collection + В цих теках виконуватиметься пошук музики для створення фонотеки + + + Add new folder... + Додати нову папку... + + + Remove folder + Видалити теку + + + Automatic updating + Автоматичне оновлення + + + Update the collection when Strawberry starts + Оновлювати фонотеку під час запуску Strawberry + + + Monitor the collection for changes + Стежити за змінами у фонотеці + + + Song fingerprinting and tracking + Відбитки композицій і стеження + + + Mark disappeared songs unavailable + Позначити зниклі композиції як недоступні + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + Термін дії недоступних композицій закінчується після + + + days + днів + + + Preferred album art filenames (comma separated) + Бажані імена файлів для обкладинок, розділені комами + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + Під час пошуку обкладинок Strawberry спочатку шукатиме файли зображень, що містять одне з цих слів. +Якщо збігів не буде, використовуватиметься найбільше зображення в каталозі. + + + Display options + Налаштування відображення + + + Automatically open single categories in the collection tree + Автоматично відкривати одиночні категорії в дереві фонотеки + + + Show dividers + Показати розділювач + + + Show album cover art in collection + Показати обкладинку альбому в фонотеці + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + Pixmap кеш обкладинки альбому + + + Size + Розмір + + + Enable Disk Cache + Увімкнути кеш диска + + + Disk Cache Size + Розмір кешу диска + + + Current disk cache in use: + Поточний кеш диска: + + + Clear Disk Cache + Очистити кеш диска + + + Song playcounts and ratings + Кількість відтворювань і рейтинги композицій + + + Save playcounts to song tags when possible + Зберегти кількість відтворювань в тегах композиції, якщо можливо + + + Save ratings to song tags when possible + Зберігати рейтинги в теги композиції, якщо можливо + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + Перезаписати рейтинги з бази даних, коли композиції повторно зчитуються з диска + + + Save playcounts and ratings to files now + Зберегти кількість відтворювань і рейтинги в файли + + + Enable delete files in the right click context menu + Додати у контекстне меню команду для видалення файлів + + + Add directory... + Додати папку... + + + Write all playcounts and ratings to files + Записати кількість відтворювань і рейтинги в файли + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + Дійсно записати кількості відтворень та рейтинги композицій в файл для всіх композицій у вашій колекції? + + + + CollectionView + + Your collection is empty! + Ваша фонотека порожня! + + + Click here to add some music + Клацніть тут, щоб додати музику + + + Append to current playlist + Додати до списку відтворення + + + Replace current playlist + Замінити список відтворення + + + Open in new playlist + Відкрити у новому списку відтворення + + + Queue track + Додати до черги + + + Queue to play next + Відтворити наступним + + + Search for this + Шукати наступне + + + Organize files... + Впорядкувати файли... + + + Copy to device... + Копіюваня до пристрою... + + + Delete from disk... + Видалити з диска... + + + Edit track information... + Редагувати дані композиції... + + + Edit tracks information... + Редагувати дані композицій... + + + Show in file browser... + Показати в оглядачі файлів... + + + Rescan song(s) + Сканування композицій + + + Show in various artists + Показувати в різних виконавцях + + + Don't show in various artists + Не показувати в «різних виконавцях» + + + There are other songs in this album + У цьому альбомі є інші композиції + + + Would you like to move the other songs on this album to Various Artists as well? + Перемістити також й інші композиції з цього альбому до різних виконавців? + + + Error + Помилка + + + None of the selected songs were suitable for copying to a device + Жодна з вибраних композицій не придатна для копіювання на пристрій + + + + CollectionViewContainer + + Form + Форма + + + + CollectionWatcher + + Updating collection + Оновлення фонотеки + + + Updating %1 + Оновлення %1 + + + + Console + + Console + Консоль + + + Run + Виконати + + + + ContextSettingsPage + + Context + Контекст + + + Custom text settings + Власні налаштування тексту + + + MenuPopupToolButton + + + + Title + Назва + + + Summary + Зведення + + + Enable Items + Увімкнути елементи + + + Album + Альбом + + + Technical Data + Технічні дані + + + Song Lyrics + Текст пісні + + + Automatically search for album cover + Автоматичний пошук обкладинки альбому + + + Automatically search for song lyrics + Автоматичний пошук текстів композицій + + + Font for headline + Шрифт для заголовка + + + Font + Шрифт + + + Font size + Розмір шрифту + + + pt + пт + + + Preview + Попередній перегляд + + + Font for data and lyrics + Шрифт для даних та текстів пісень + + + Add song artist tag + Додати тег виконавця композиції + + + Add song album tag + Додати тег альбому композиції + + + Add song title tag + Додати тег назви композиції + + + Add song albumartist tag + Додати тег виконавця альбому + + + Add song year tag + Додати тег року композиції + + + Add song composer tag + Додати тег композитора + + + Add song performer tag + Додати тег виконавця композиції + + + Add song grouping tag + Додати тег групування композицій + + + Add song disc tag + Додати тег диску + + + Add song track tag + Додати тег номера композиції + + + Add song genre tag + Додати тег жанру композиції + + + Add song length tag + Додати тег тривалості композиції + + + Add song play count + Додати кількість відтворень композиції + + + Add song skip count + Додати кількість пропусків композиції + + + Add a new line if supported by the notification type + Додати новий рядок, якщо підтримується типом сповіщення + + + %filename% + + + + Add song filename + Додати ім'я файлу композиції + + + %url% + + + + Add song URL + Додати URL-адресу композиції + + + %rating% + + + + Add song rating + Додати рейтинг композиції + + + %originalyear% + + + + Add song original year tag + Додати тег оригінального року композиції + + + + ContextView + + Filetype + Тип файлу + + + Length + Тривалість + + + Samplerate + Частота вибірки + + + Bit depth + Розрядна глибина + + + Bitrate + Бітова швидкість + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + Показати обкладинку альбому + + + Show song technical data + Показати технічні дані композиціїї + + + Show song lyrics + Показати текст пісні + + + Automatically search for song lyrics + Автоматичний пошук текстів композицій + + + No song playing + Нічого не відтворюється + + + %1 song + %1 композиція + + + %1 songs + %1 композицій + + + %1 artist + %1 виконавець + + + %1 artists + %1 виконавців + + + %1 album + %1 альбом + + + %1 albums + %1 альбомів + + + kbps + кбіт/с + + + + CoverFromURLDialog + + Load cover from URL + Завантаження обкладинки за адресою + + + Enter a URL to download a cover from the Internet: + Вкажіть адресу для завантаження обкладинки з Інтернету: + + + Fetching cover error + Не вдалося завантажити обкладинку + + + The site you requested does not exist! + Вказана адреса не існує! + + + The site you requested is not an image! + Вказана адреса не є малюнком! + + + + CoverManager + + Cover Manager + Менеджер обкладинок + + + Enter search terms here + Введіть сюди критерії пошуку + + + MenuPopupToolButton + + + + View + Перегляд + + + Total albums: + Загалом альбомів: + + + Without cover: + Без обкладинки: + + + 0 + + + + Fetch Missing Covers + Завантажити обкладинки, котрих бракує + + + Export Covers + Експортування обкладинок + + + Fetch automatically + Завантажувати автоматично + + + Load + Завантажити + + + Add to playlist + Додати до списку відтворення + + + + CoverSearchStatisticsDialog + + Fetch completed + Завантаження завершено + + + Got %1 covers out of %2 (%3 failed) + Отримано %1 обкладинок з %2 (%3 не вдалось) + + + Covers from %1 + Обкладинки з %1 + + + Total network requests made + Всього зроблено запитів до мережі + + + Average image size + Середній розмір малюнку + + + Total bytes transferred + Всього передано байт + + + + CoversSettingsPage + + Covers + Обкладинки + + + Cover providers + Постачальники обкладинок + + + Choose the providers you want to use when searching for covers. + Виберіть постачальників, яких потрібно використовувати під час пошуку обкладинок. + + + Move up + Перемістити вгору + + + Move down + Перемістити вниз + + + Authentication + Автентифікація + + + Login + Увійти + + + Album cover types + + + + Saving album covers + Збереження обкладинок альбомів + + + Save album covers in album directory + Зберегти обкладинки альбому в каталозі альбому + + + Save album covers in cache directory + Зберегти обкладинки альбому в каталозі кешу + + + Save album covers as embedded cover + Зберегти обкладинки альбому як вбудовані + + + Filename: + Назва файлу: + + + Pattern + Шаблон + + + Random + Випадково + + + Overwrite existing file + Перезаписати наявний файл + + + Lowercase filename + Назва файлу в нижньому регистрі + + + Replace spaces with dashes + Замінити пробіли дефісами + + + Use Tidal settings to authenticate. + Використовувати налаштування Tidal для автентифікації. + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + Використовувати налаштування Qobuz для автентифікації. + + + %1 needs authentication. + %1 потребує автентифікації. + + + %1 does not need authentication. + %1 не потребує автентифікації. + + + No provider selected. + Постачальника не вибрано. + + + Authentication failed + Помилка автентификації + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + Перевірка цілісності даних + + + Database corruption detected. + Виявлено пошкодження бази даних. + + + Backing up database + Створення резервної копії бази даних + + + + DeleteConfirmationDialog + + Delete files + Видалити файли + + + The following files will be deleted from disk: + Наступні файли будуть видалені з диска: + + + Are you sure you want to continue? + Дійсно продовжити? + + + + DeleteFiles + + Deleting files + Видалення файлів + + + + DeviceItemDelegate + + Updating %1%... + Оновлення %1%... + + + Not connected + Не з'єднано + + + Not mounted - double click to mount + Не змонтовано — двічі клацніть, щоб змонтувати + + + Double click to open + Подвійне клацання, щоб відкрити + + + %1 song%2 + %1 композиція %2 + + + + DeviceManager + + Connect device + Підключити пристрій + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + Це перше під'єднання цього пристрою. Strawberry спробує знайти на ньому музичні файли. Це може зайняти деякий час. + + + This device will not work properly + Цей пристрій не працюватиме як слід + + + This is an MTP device, but you compiled Strawberry without libmtp support. + Це пристрій MTP, але Strawberry був зібраний без підтримки libmtp. + + + If you continue, this device will work slowly and songs copied to it may not work. + Якщо продовжити, цей пристрій буде працювати повільно і скопійовані на нього композиції можуть не відтворюватись. + + + This is an iPod, but you compiled Strawberry without libgpod support. + Це пристрій iPod, але Strawberry був зібраний без підтримки libgpod. + + + This type of device is not supported: %1 + Цей тип пристрою не підтримується: %1 + + + + DeviceProperties + + Device Properties + Налаштування пристрою + + + Information + Інформація + + + Name + Назва + + + Icon + Піктограма + + + Hardware information + Відомості про обладнання + + + Hardware information is only available while the device is connected. + Відомості про обладнання доступні лише після під'єднання пристрою. + + + File formats + Формати файлів + + + Supported formats + Підтримувані формати + + + This device supports the following file formats: + Цей пристрій підтримує наступні формати файлів: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry може автоматично конвертувати скопійовану до цього пристрою музику в потрібний формат. + + + Do not convert any music + Не конвертувати ніяку музику + + + Convert any music that the device can't play + Конвертувати всю музику, яку не може відтворити пристрій + + + Convert all music + Конвертувати всю музику + + + Preferred format + Бажаний формат + + + This device must be connected and opened before Strawberry can see what file formats it supports. + Потрібно під'єднати та відкрити пристрій, щоб Strawberry , які формати файлів він підтримує. + + + Open device + Відкрити пристрій + + + Querying device... + Опитування пристрою... + + + Model + Модель + + + Manufacturer + Виробник + + + + DeviceView + + Safely remove device + Безпечно відключити пристрій + + + Forget device + Забути пристрій + + + Device properties... + Налаштування пристрою... + + + Append to current playlist + Додати до списку відтворення + + + Replace current playlist + Замінити список відтворення + + + Open in new playlist + Відкрити у новому списку відтворення + + + Copy to collection... + Скопіювати до фонотеки... + + + Delete from device... + Видалити з пристрою... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + Після забування пристрій буде вилучено з цього списку. Strawberry знову доведеться шукати композиції на ньому під час наступного з'єднання. + + + Delete files + Видалити файли + + + These files will be deleted from the device, are you sure you want to continue? + Ці файли будуть видалені з пристрою. Дійсно видалити їх? + + + + DeviceViewContainer + + Form + Форма + + + + DynamicPlaylistControls + + Dynamic mode is on + Динамічний режим увімкнений + + + New tracks will be added automatically. + Нові композиції будуть додані автоматично. + + + Expand + Розширити + + + Repopulate + Повторно заповнити + + + Turn off + Вимкнути + + + + EditTagDialog + + Edit track information + Редагувати дані композиції + + + Summary + Зведення + + + Date created + Дата створення + + + Art Automatic + Автоматично + + + Date modified + Дата зміни + + + Art Embedded + + + + Last played + A playlist's tag. + Останнє відтворення + + + File type + Тип файлу + + + Length + Тривалість + + + Play count + Кількість відтворень + + + Bit depth + Розрядна глибина + + + EBU R 128 integrated loudness + + + + Bit rate + Бітова швидкість + + + Skip count + Кількість пропусків + + + Sample rate + Частота вибірки + + + Path + Шлях + + + Filename + Назва файлу + + + Art Unset + + + + File size + Розмір файлу + + + Art Manual + Вручну + + + EBU R 128 loudness range + + + + Reset play counts + Скинути лічильник відтворень + + + Tags + Теги + + + MenuPopupToolButton + + + + Change art + Змінити зображення + + + Embedded cover + Вбудована обкладинка + + + Disc + Диск + + + Grouping + Групування + + + Album artist + Виконавець альбому + + + Album + Альбом + + + Year + Рік + + + Title + Назва + + + Artist + Виконавець + + + Composer + Композитор + + + Complete tags automatically + Заповнити мітки автоматично + + + Genre + Жанр + + + Comment + Коментар + + + Performer + Виконавець + + + Compilation + Компіляція + + + Track + Композиція + + + Rating + Рейтинг + + + Lyrics + Тексти пісень + + + Complete lyrics automatically + + + + Previous + Попередня + + + Next + Наступна + + + Saving tracks + Збереження композицій + + + Loading tracks + Завантаження композицій + + + %1 songs selected. + Вибрано %1 композицій. + + + kbps + кбіт/с + + + Unknown + Невідомо + + + Yes + + + + No + + + + None + Немає + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + Обкладинку не встановлено + + + Album cover editing is only available for collection songs. + Редагування обкладинки альбому доступне лише для пісень з колекції. + + + Cover changed: Will be cleared when saved. + Обкладинку змінено: вона буде скасована під час збереження. + + + Cover changed: Will be unset when saved. + Обкладинку змінено: вона буде прибрана під час збереження. + + + Cover changed: Will be deleted when saved. + Обкладинку змінено: вона буде видалена під час збереження. + + + Cover changed: Will set new when saved. + Обкладинку змінено: під час збереження буде встановлена нова. + + + Never + Ніколи + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + Еквалайзер + + + Preset: + Визначені налаштування: + + + Save preset + Зберегти визначені налаштування + + + Delete preset + Видалити визначені налаштування + + + Enable equalizer + Увімкнути еквалайзер + + + Enable stereo balancer + Увімкнути балансування стерео + + + Left + Ліворуч + + + Balance + Баланс + + + Right + Праворуч + + + Pre-amp + Підсилення + + + Custom + Інша + + + Classical + Класична + + + Club + Клубна + + + Dance + Танцювальна + + + Full Bass + Повні баси + + + Full Treble + Повні верхи + + + Full Bass + Treble + Повні баси + верхи + + + Laptop/Headphones + Ноутбук або навушники + + + Large Hall + Велика зала + + + Live + Наживо + + + Party + Вечірка + + + Pop + Поп + + + Reggae + Реґґі + + + Rock + Рок + + + Soft + Легка + + + Ska + Ска + + + Soft Rock + Легкий рок + + + Techno + Техно + + + Zero + + + + Name + Назва + + + Are you sure you want to delete the "%1" preset? + Дійсно видалити визначені налаштування «%1»? + + + + EqualizerSlider + + Equalizer + Еквалайзер + + + %1 dB + %1 дБ + + + + ErrorDialog + + Strawberry Error + Помилка Strawberry + + + + FancyTabWidget + + Large sidebar + Велика бічна панель + + + Icons sidebar + + + + Small sidebar + Маленька бічна панель + + + Plain sidebar + Звичайна бічна панель + + + Tabs on top + Вкладки зверху + + + Icons on top + Піктограми зверху + + + + FileTypeItemDelegate + + Unknown + Невідомо + + + + FileView + + Form + Форма + + + + FileViewList + + Append to current playlist + Додати до списку відтворення + + + Replace current playlist + Замінити список відтворення + + + Open in new playlist + Відкрити у новому списку відтворення + + + Copy to collection... + Скопіювати до фонотеки... + + + Move to collection... + Перемістити до фонотеки... + + + Copy to device... + Копіюваня до пристрою... + + + Delete from disk... + Видалити з диска... + + + Edit track information... + Редагувати дані композиції... + + + Show in file browser... + Показати в оглядачі файлів... + + + + FreeSpaceBar + + Available + Доступне + + + New songs + Нові композиції + + + Exceeded by + + + + Used + Використано + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + Завантаження бази даних iPod + + + An error occurred loading the iTunes database + Виникла помилка завантаження бази даних iTunes + + + + GeniusLyricsProvider + + Genius Authentication + Автентифікація на Genius + + + Please open this URL in your browser + Відкрийте цю адресу у браузері + + + Redirect missing token code! + Переспрямування не містить код маркера! + + + Received invalid reply from web browser. + Отримана недійсна відповідь з веб-браузера. + + + Redirect from Genius is missing query items code or state. + Переспрямування з Genius не містить код або стан елементів запиту. + + + + GioLister + + Mount point + Точка монтування + + + Device + Пристрій + + + URI + Адреса + + + + GlobalShortcutGrabber + + Press a key + Натисніть клавішу + + + Press a key combination to use for %1... + Натисніть комбінацію клавіш для %1... + + + + GlobalShortcutsManager + + Play + Відтворити + + + Pause + Призупинити + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + Попередня композиція + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + Вимкнути звук + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + Люблю + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + Глобальні сполучення клавіш + + + Use Gnome (GSD) shortcuts when available + Використовувати сполучення клавіш Gnome (GSD), якщо можливо + + + Open... + Відкрити... + + + Use MATE shortcuts when available + Використовувати сполучення клавіш MATE, якщо можливо + + + Use KDE (KGlobalAccel) shortcuts when available + Використовувати сполучення клавіш KDE (KGlobalAccel), якщо можливо + + + Use X11 shortcuts when available + Використовувати сполучення клавіш X11, якщо можливо + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + Щоб у Strawberry можна було користуватися глобальними сполученнями клавішу, запустіть програму «Системні налаштування» і дозвольте Strawberry «<span style="font-style:italic">керувати вашим комп'тером</span>». + + + Action + Category label + Дія + + + Shortcut + Сполучення клавіш + + + Shortcut for %1 + Сполучення клавіш для %1 + + + &None + &Нічого + + + &Default + &Стандартний + + + &Custom + &Власний + + + Change shortcut... + Змінити комбінацію клавіш... + + + The "%1" command could not be started. + Команду "%1" не вдалось виконати. + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + Сполучення клавіш X11 не рекомендується використовувати у %1, оскільки це може призвести до того, що клавіатура перестане працювати! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + Ярлики на %1 зазвичай використовують через MPRIS та KGlobalAccel. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + Ярлики на %1 зазвичай використовуються через GSD, і замість цього їх слід налаштовувати у gnome-settings-daemon. + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + Ярлики на %1 зазвичай використовуються через GSD, і замість цього їх слід налаштовувати у cinnamon-settings-daemon. + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + Ярлики на %1 зазвичай використовуються через MSD, і замість цього їх слід налаштовувати там. + + + + GroupByDialog + + Collection advanced grouping + Розширене групування фонотеки + + + You can change the way the songs in the collection are organized. + Ви можете змінити спосіб впорядкування композицій у фонотеці. + + + Group Collection by... + Групувати фонотеку за... + + + First level + Перший рівень + + + None + Немає + + + Artist + Виконавець + + + Album artist + Виконавець альбому + + + Album + Альбом + + + Album - Disc + Альбом - Диск + + + Disc + Диск + + + Format + Формат + + + Genre + Жанр + + + Year + Рік + + + Year - Album + Рік – Альбом + + + Year - Album - Disc + Рік – Альбом – Диск + + + Original year + Рік оригіналу + + + Original year - Album + Рік оригіналу – Альбом + + + Composer + Композитор + + + Performer + Виконавець + + + Grouping + Групування + + + File type + Тип файлу + + + Sample rate + Частота вибірки + + + Bit depth + Розрядна глибина + + + Bitrate + Бітова швидкість + + + Second level + Другий рівень + + + Third level + Третій рівень + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + Буферизація + + + + LastFMImport + + Missing username, please login to last.fm first! + Відсутнє ім'я користувача. Спочатку увійдіть до last.fm! + + + + LastFMImportDialog + + Import data from last.fm + Імпорт даних з last.fm + + + Choose data to import from last.fm + Виберіть дані для імпорту з last.fm + + + Last played + Останнє відтворення + + + Play counts + Кількості відтворень + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + Попередження: кількість відтворень і останні відтворення з last.fm повністю замінять ті самі дані для відповідних пісень. Кількість відтворень буде замінена даними на основі виконавця та назви композиції для тих самих альбомів! Перед початком створіть резервну копію бази даних. + + + Go! + Уперед! + + + Close + Закрити + + + Cancel + Скасувати + + + Receiving initial data from last.fm... + Отримання початкових даних з last.fm... + + + Receiving playcount for %1 songs and last played for %2 songs. + Отримання кількості відтворень для %1композицій і дані про останнє відтворення для %2 композицій. + + + Receiving last played for %1 songs. + Отримання даних про останнє відтворення для %1 композицій. + + + Receiving playcounts for %1 songs. + Отримання кількостей відтворення для %1 композицій. + + + Playcounts for %1 songs and last played for %2 songs received. + Отримано кількість відтворень для %1композицій і дані про останнє відтворення для %2 композицій. + + + Last played for %1 songs received. + Отримано дані про останнє відтворення для %1 композицій. + + + Playcounts for %1 songs received. + Кількість відтворень для %1 отриманих композицій. + + + + LastPlayedItemDelegate + + Never + Ніколи + + + + Library + + Least favourite tracks + Найменш улюблені композиції + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + Автентифікація на ListenBrainz + + + Please open this URL in your browser + Відкрийте цю адресу у браузері + + + Redirect missing token code! + Переспрямування не містить код маркера! + + + Received invalid reply from web browser. + Отримана недійсна відповідь з веб-браузера. + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + Форма + + + You are not signed in. + Ви не ввійшли до системи. + + + Sign out + Вийти + + + Signing in... + Реєстрація... + + + You are signed in. + Ви ввійшли до системи. + + + You are signed in as %1. + Ви ввійшли до системи як %1. + + + Expires on %1 + Діє до %1 + + + + LyricsSettingsPage + + Lyrics + Тексти пісень + + + Lyrics providers + Постачальники текстів пісень + + + Choose the providers you want to use when searching for lyrics. + Виберіть постачальників, яких ви хочете використовувати під час пошуку текстів композицій. + + + Move up + Перемістити вгору + + + Move down + Перемістити вниз + + + Authentication + Автентифікація + + + Login + Увійти + + + No provider selected. + Постачальника не вибрано. + + + Authentication failed + Помилка автентификації + + + + MainWindow + + Strawberry Music Player + Музичний програвач Strawberry + + + MenuPopupToolButton + + + + &Music + &Музика + + + P&laylist + &Список відтворення + + + Help + Довідка + + + &Tools + &Інструменти + + + Previous track + Попередня композиція + + + F5 + + + + &Play + &Відтворити + + + F6 + + + + &Stop + &Зупинити + + + F7 + + + + &Next track + &Наступна композиція + + + F8 + + + + &Quit + &Вийти + + + Ctrl+Q + + + + Stop after this track + Зупинити після цієї композиції + + + Ctrl+Alt+V + + + + Love + Люблю + + + &Clear playlist + &Очистити список відтворення + + + Clear playlist + Очистити список відтворення + + + Ctrl+K + + + + Edit track information... + Редагувати дані композиції... + + + Ctrl+E + + + + Renumber tracks in this order... + Пронумерувати композиції у такому порядку... + + + Set value for all selected tracks... + Встановити значення для всіх вибраних композицій... + + + Edit tag... + Редагувати тег... + + + &Settings... + &Налаштування... + + + Ctrl+P + + + + &About Strawberry + &Про Strawberry + + + F1 + + + + S&huffle playlist + &Перемішати список відтворення + + + Ctrl+H + + + + &Add file... + &Додати файл... + + + Ctrl+Shift+A + + + + &Open file... + &Відкрити файл... + + + Open audio &CD... + Відкрити &аудіо-CD... + + + &Cover Manager + &Менеджер обкладинок + + + C&onsole + &Консоль + + + &Shuffle mode + Режим &перемішування + + + &Repeat mode + Режим &повтору + + + Remove from playlist + Вилучити зі списку відтворення + + + &Equalizer + Еквалайзер + + + &Transcode Music + &Перекодування музики + + + Add &folder... + Додати &папку... + + + &Jump to the currently playing track + &Перейти до композиції, що відтворюється зараз + + + Ctrl+J + + + + &New playlist + &Створити список відтворення + + + Ctrl+N + + + + Save &playlist... + Зберегти &список відтворення... + + + Ctrl+S + + + + &Load playlist... + &Завантажити список відтворення... + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + До наступної вкладки списку відтворення + + + Go to previous playlist tab + До попередньої вкладки списку відтворення + + + &Update changed collection folders + &Оновити змінені теки колекції + + + About &Qt + Про &Qt + + + &Mute + &Вимкнути звук + + + Ctrl+M + + + + &Do a full collection rescan + &Повністю пересканувати колекцію + + + Stop collection scan + + + + Complete tags automatically... + Заповнити мітки автоматично... + + + Ctrl+T + + + + Toggle scrobbling + Змінити режим скроблінгу + + + Remove &duplicates from playlist + Видалити &дублікати зі списку відтворення + + + Remove &unavailable tracks from playlist + Видалити &недоступні композиції зі списку відтворення + + + Add file(s) to transcoder + Додати файли для перекодування + + + Add file to transcoder + Додати файл для перекодування + + + Add stream... + Додати потік... + + + Show sidebar + Показати бічну панель + + + Import data from last.fm... + Імпортувати дані з last.fm... + + + All Files (*) + Всі файли (*) + + + Context + Контекст + + + Collection + Фонотека + + + Queue + Черга + + + Playlists + Списки відтворення + + + Smart playlists + Розумні списки відтворення + + + Files + Файли + + + Radios + Радіостанції + + + Devices + Пристрої + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + Показати всі композиції + + + Show only duplicates + Показати тільки дублікати + + + Show only untagged + Показати тільки без тегів + + + Configure collection... + Налаштувати фонотеку... + + + Play + Відтворити + + + Toggle queue status + Перемикнути статус черги + + + Queue selected tracks to play next + Відтворити наступними обрані композиції + + + Toggle skip status + Змінити стан пропуску + + + Rescan song(s)... + Сканувати композиції... + + + Copy URL(s)... + Копіювати адреси... + + + Show in collection... + Показати у фонотеці... + + + Show in file browser... + Показати в оглядачі файлів... + + + Organize files... + Впорядкувати файли... + + + Copy to collection... + Скопіювати до фонотеки... + + + Move to collection... + Перемістити до фонотеки... + + + Copy to device... + Копіюваня до пристрою... + + + Delete from disk... + Видалити з диска... + + + Check for updates... + Перевірити оновлення... + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + Призупинити + + + Dequeue track + Вилучити композицію з черги + + + Dequeue selected tracks + Вилучити з черги вибрані композиції + + + Queue track + Додати до черги + + + Queue selected tracks + Додати до черги обрані композиції + + + Queue to play next + Відтворити наступним + + + Unskip track + Не пропускати композицію + + + Unskip selected tracks + Не пропускати вибрані композиції + + + Skip track + Пропустити композицію + + + Skip selected tracks + Пропустити позначені композиції + + + Set %1 to "%2"... + Встановити %1 у «%2»... + + + Edit tag "%1"... + Змінити тег «%1»... + + + Add to another playlist + Додати до іншого списку відтворення + + + New playlist + Новий список відтворення + + + Add file + Додати файл + + + Music + Музика + + + Add folder + Додати папку + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + Список відтворення містить %1 композицій, що забагато для скасування. Дійсно очистити список відтворення? + + + Error + Помилка + + + None of the selected songs were suitable for copying to a device + Жодна з вибраних композицій не придатна для копіювання на пристрій + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + Для версії Strawberry, яку ви щойно встановили, потрібно повне сканування фонотеки через наступні нові можливості: + + + Would you like to run a full rescan right now? + Запустити повне сканування фонотеки зараз? + + + Collection rescan notice + Повідомлення про повторне сканування фонотеки + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + Більше не показувати це повідомлення. + + + + MimeData + + Playlist + Список відтворення + + + + MoodbarProxyStyle + + Show moodbar + Показувати панель настрою + + + Moodbar style + Стиль панелі настрою + + + + MoodbarSettingsPage + + Moodbar + Панель настрою + + + Show a moodbar in the track progress bar + Показувати панель настрою на панелі перебігу композиції + + + Moodbar style + Стиль панелі настрою + + + Save the .mood files directly in the songs folders + Зберігати MOOD-файли в каталогах композицій + + + Enabled + Увімкнено + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + Завантаження пристрою MTP + + + Error connecting MTP device %1 + Не вдалось підключитись до MTP-пристрою %1 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + Проксі-сервер + + + &Use the system proxy settings + &Використати системні налаштування проксі + + + Direct internet connection + Пряме з'єднання з Інтернетом + + + &Manual proxy configuration + &Вручну налаштувати проксі + + + HTTP proxy + HTTP-проксі + + + SOCKS proxy + SOCKS-проксі + + + Port + Порт + + + Use authentication + Використовувати автентифікацію + + + Username + Користувач + + + Password + Пароль + + + Use proxy settings for streaming + Використовувати налаштування проксі для потокового передавання + + + + NotificationsSettingsPage + + Notifications + Сповіщення + + + Strawberry can show a message when the track changes. + Strawberry може показувати повідомлення під час зміни композиції. + + + Notification type + Тип сповіщення + + + Disabled + Refers to a disabled notification type in Notification settings. + Вимкнено + + + Show a &native desktop notification + Показувати &системне сповіщення на робочому столі + + + Show a pretty OSD + Показувати спливаючі сповіщення + + + Show a popup fro&m the system tray + Показувати спливаюче сповіщення в &лотку + + + General settings + Загальні налаштування + + + Popup duration + Тривалість спливаючого сповіщення + + + seconds + секунд + + + Disable duration + Вимкнути тривалість + + + Show a notification when I change the volume + Показувати сповіщення після зміни гучністі + + + Show a notification when I change the repeat/shuffle mode + Показувати сповіщення після зміни режиму повторення чи перемішування + + + Show a notification when I pause playback + Показувати сповіщення після призупинення відтворення + + + Show a notification when I resume playback + Показувати сповіщення після відновлення відтворення + + + Include album art in the notification + Показувати обкладинку в сповіщенні + + + Custom message settings + Власні налаштування повідомлень + + + Use a custom message for notifications + Використовувати власне повідомлення для сповіщень + + + Preview + Попередній перегляд + + + MenuPopupToolButton + + + + Summary + Зведення + + + Body + Текст + + + Pretty OSD options + Налаштування спливаючого сповіщення + + + Background color + Колір фону + + + Text options + Налаштування тексту + + + Choose font... + Вибрати шрифт... + + + Choose color... + Вибрати колір... + + + Background opacity + Прозорість фону + + + Basic Blue + Стандартний синій + + + Strawberry Red + Червоний Strawberry + + + Custom... + Власний... + + + Enable fading + Увімкнути згасання + + + Add song artist tag + Додати тег виконавця композиції + + + Add song album tag + Додати тег альбому композиції + + + Add song title tag + Додати тег назви композиції + + + Add song albumartist tag + Додати тег виконавця альбому + + + Add song year tag + Додати тег року композиції + + + Add song composer tag + Додати тег композитора + + + Add song performer tag + Додати тег виконавця композиції + + + Add song grouping tag + Додати тег групування композицій + + + Add song disc tag + Додати тег диску + + + Add song track tag + Додати тег номера композиції + + + Add song genre tag + Додати тег жанру композиції + + + Add song length tag + Додати тег тривалості композиції + + + Add song play count + Додати кількість відтворень композиції + + + Add song skip count + Додати кількість пропусків композиції + + + Add song rating + Додати рейтинг композиції + + + Add a new line if supported by the notification type + Додати новий рядок, якщо підтримується типом сповіщення + + + %filename% + + + + Add song filename + Додати ім'я файлу композиції + + + %url% + + + + Add song URL + Додати URL-адресу композиції + + + %originalyear% + + + + Add song original year tag + Додати тег оригінального року композиції + + + OSD Preview + Попередній перегляд сповіщення + + + Drag to reposition + Перетягніть, щоб змінити розташування + + + + OSDBase + + disc %1 + диск %1 + + + track %1 + композиція %1 + + + Paused + Призупинено + + + Stopped + Зупинено + + + Stop playing after track: %1 + Зупинити відтворення після композиції %1 + + + On + Увімкн + + + Off + Вимкн + + + Playlist finished + Список відтворення завершився + + + Volume %1% + Гучність %1% + + + Don't shuffle + Не перемішувати + + + Shuffle all + Перемішати все + + + Shuffle tracks in this album + Перемішати поточний альбом + + + Shuffle albums + Перемішати альбоми + + + Don't repeat + Не повторювати + + + Repeat track + Повторювати композицію + + + Repeat album + Повторювати альбом + + + Repeat playlist + Повторювати список відтворення + + + Stop after every track + Зупинятися після будь-якої композиції + + + Intro tracks + Вступні композиції + + + + Organize + + Organizing files + Впорядкування файлів + + + + OrganizeDialog + + Organize Files + Впорядкування файлів + + + Destination + Призначення + + + After copying... + Після копіювання... + + + Keep the original files + Зберегти оригінальні файли + + + Delete the original files + Видалити оригінальні файли + + + Naming options + Налаштування найменування + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>Мітки починаються з %, наприклад: %artist %album %title </p> + +<p>Якщо взяти частину тексту з міткою у фігурні дужки, цю частину буде приховано, якщо мітка порожня.</p> + + + Insert... + Вставити... + + + Remove problematic characters from filenames + Видалити проблемні символи з імен файлів + + + Restrict to characters allowed on FAT filesystems + Обмежитись символами, дозволеними у файлових системах FAT + + + Restrict characters to ASCII + Обмежитись символами ASCII + + + Allow extended ASCII characters + Дозволити розширені символи ASCII + + + Replace spaces with underscores + Замінити пробіли символами підкреслення + + + Overwrite existing files + Перезаписати наявні файли + + + Copy album cover artwork + Копіювати обкладинку альбому + + + Preview + Попередній перегляд + + + Loading... + Завантаження... + + + Safely remove the device after copying + Безпечно відключити пристрій після копіювання + + + Title + Назва + + + Album + Альбом + + + Artist + Виконавець + + + Artist's initial + Ініціали виконавця + + + Album artist + Виконавець альбому + + + Composer + Композитор + + + Performer + Виконавець + + + Grouping + Групування + + + Track + Композиція + + + Disc + Диск + + + Year + Рік + + + Original year + Рік оригіналу + + + Genre + Жанр + + + Comment + Коментар + + + Length + Тривалість + + + Bitrate + Refers to bitrate in file organize dialog. + Бітова швидкість + + + Sample rate + Частота вибірки + + + Bit depth + Розрядна глибина + + + File extension + Розширення файлу + + + + OrganizeErrorDialog + + Error copying songs + Не вдалось скопіювати композиції + + + There were problems copying some songs. The following files could not be copied: + Виникли проблеми з копіюванням деяких композицій. Не вдалось скопіювати наступні: + + + Error deleting songs + Не вдалось видалити композиції + + + There were problems deleting some songs. The following files could not be deleted: + Виникли проблеми з видаленням деяких композицій. Не вдалось вилучити наступні: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + Маленька обкладинка альбому + + + Large album cover + Велика обкладинка альбому + + + Fit cover to width + Підібрати розміри обкладинки за шириною + + + Show above status bar + Показати над рядком стану + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + Назва + + + Artist + Виконавець + + + Album + Альбом + + + Track + Композиція + + + Disc + Диск + + + Length + Тривалість + + + Year + Рік + + + Original Year + + + + Genre + Жанр + + + Album Artist + + + + Composer + Композитор + + + Performer + Виконавець + + + Grouping + Групування + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + Бітова швидкість + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + Коментар + + + Source + Джерело + + + Mood + Настрій + + + Rating + Рейтинг + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + Форма + + + Undo + + + + Redo + + + + Playlist + Список відтворення + + + Load playlist + Завантажити список відтворення + + + No matches found. Clear the search box to show the whole playlist again. + Нічого не знайдено. Очистіть вікно пошуку, щоб знову показати весь список відтворення. + + + + PlaylistDelegateBase + + stop + зупинити + + + + PlaylistGeneratorInserter + + Loading smart playlist + Завантаження розумного списку відтворення + + + + PlaylistHeader + + &Hide... + &Приховати... + + + &Stretch columns to fit window + &Розтягнути стовпчики для заповнення вікна + + + &Reset columns to default + &Відновити початковий стан стовпчиків + + + &Lock rating + &Закріпити рейтинг + + + &Align text + &Вирівняти текст + + + &Left + Ліворуч + + + &Center + По &центру + + + &Right + &Праворуч + + + &Hide %1 + Приховати %1 + + + + PlaylistListContainer + + Form + Форма + + + New folder + Нова папка + + + Delete + Видалити + + + Save playlist + Save playlist menu action. + + + + Copy to device... + Копіюваня до пристрою... + + + Enter the name of the folder + Вкажіть назву теки + + + Playlist + Список відтворення + + + Copy to device + Скопіювати до пристрою + + + Playlist must be open first. + Спочатку необхідно відкрити список відтворення. + + + Remove playlists + Видалити списки відтворення + + + You are about to remove %1 playlists from your favorites, are you sure? + Ви збираєтесь видалити %1 списків відтворення з улюблених. Дійсно видалити їх? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + Список відтворення можна зробити улюбленим, натиснувши піктограму + + + Favorited playlists will be saved here + зірки поряд з назвою списку Улюблені списки відтворення буде збережено тут + + + + PlaylistManager + + Playlist + Список відтворення + + + Couldn't create playlist + Не вдалося створити список відтворення + + + Save playlist + Title of the playlist save dialog. + + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + вибрано %1 з + + + %n track(s) + + + + + + + + Unknown + Невідомо + + + Various artists + Різні виконавці + + + + PlaylistParser + + All playlists (%1) + Всі списки відтворення (%1) + + + %1 playlists (%2) + %1 списків відтворення (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + Налаштування списку відтворення + + + File paths + Шляхи до файлів + + + This can be changed later through the preferences + Згодом цей параметр можна буде змінити у налаштуваннях програми + + + Remember my choice + Запам'ятати вибір + + + Automatic + Автоматично + + + Relative + Відносними + + + Absolute + Абсолютний + + + + PlaylistSequence + + Repeat + Повторювати + + + Shuffle + Режим перемішування + + + Don't repeat + Не повторювати + + + Repeat track + Повторювати композицію + + + Repeat album + Повторювати альбом + + + Repeat playlist + Повторювати список відтворення + + + Stop after each track + Зупинятися після кожної композиції + + + Intro tracks + Вступні композиції + + + Don't shuffle + Не перемішувати + + + Shuffle tracks in this album + Перемішати поточний альбом + + + Shuffle all + Перемішати все + + + Shuffle albums + Перемішати альбоми + + + + PlaylistSettingsPage + + Playlist + Список відтворення + + + Use alternating row colors + Чергувати кольори рядків + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + Попереджати про закриття вкладки зі списком відтворення + + + Continue to the next item in the playlist if a song is unavailable + Перейти до наступного пункту в списку відтворення, якщо композиція недоступна + + + Grey out unavailable songs in playlists on playback + Виділяти сірим недоступні пісні у списках відтворення під час відтворення + + + Grey out unavailable songs in playlists on startup + Виділяти сірим недоступні пісні у списках відтворення під час запуску + + + Automatically select current playing track + Автоматично вибирати поточну композицію + + + Enable playlist toolbar + Увімкнути панель інструментів для списку відтворення + + + Enable playlist clear button + Увімкнути кнопку очищення списку відтворення + + + Enable delete files in the right click context menu + Додати у контекстне меню команду для видалення файлів + + + Automatically sort playlist when inserting songs + Автоматично сортувати список відтворення під час додавання композицій + + + When saving a playlist, file paths should be + Шляхи під час збереження списків відтворення мають бути + + + A&utomatic + &Автоматично + + + Absolu&te + &Абсолютний + + + Re&lative + &Відносно + + + As&k when saving + &Питати при збереженні + + + Metadata + Метадані + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + Якщо вибрано, теги композиції можна буде редагувати прямо списку відтворення простим клацанням на відповідному записі + + + Enable song metadata inline edition with click + Дозволити вбудоване редагування метаданих композиції клацанням + + + Write metadata when saving playlists + Записати метадані під час збереження списків відтворення + + + + PlaylistTabBar + + Star playlist + Список відтворення із зіркою + + + Close playlist + Закрити список відтворення + + + Rename playlist... + Перейменувати список відтворення... + + + Save playlist... + Зберегти список відтворення... + + + Rename playlist + Перейменування списку відтворення + + + Enter a new name for this playlist + Введіть назву для цього списку відтворення + + + Remove playlist + Видалити список відтворення + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + Ви збираєтесь видалити список відтворення, який не входить до улюблених. Він буде видалений без можливості відновлення. +Дійсно продовжити й видалити цей список відтворення? + + + Warn me when closing a playlist tab + Попереджати про закриття вкладки зі списком відтворення + + + This option can be changed in the "Behavior" preferences + Цей параметр можна змінити в розділі налаштувань «Поведінка» + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + Двічі клацніть тут, щоб зробити цей список відтворення улюбленим. Тоді він буде збережений і стане доступний на панелі «Списки відтворення» ліворуч + + + Playlist + Список відтворення + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + додати %n композицій + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + пересунути %n композицій + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + вилучити %n композицій + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + перемішати композиції + + + + PlaylistUndoCommands::SortItems + + sort songs + сортувати композиції + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + кбіт/с + + + + QObject + + Usage + Використання + + + options + налаштування + + + URL(s) + Адреси + + + Player options + Налаштування програвача + + + Start the playlist currently playing + Запустити список відтворення, що відтворюється на цей час + + + Play if stopped, pause if playing + Відтворити, якщо зупинено. Призупинити, якщо відтворюється + + + Pause playback + Призупинити відтворення + + + Stop playback + Зупинити відтворення + + + Stop playback after current track + Зупинити відтворення після поточної композиції + + + Skip backwards in playlist + Перескочити назад в списку композицій + + + Skip forwards in playlist + Перескочити вперед у списку композицій + + + Set the volume to <value> percent + Встановити гучність у <value> відсотків + + + Increase the volume by 4 percent + Збільшити гучність на 4 відсотки + + + Decrease the volume by 4 percent + Зменшити гучність на 4 відсотки + + + Increase the volume by <value> percent + Збільшити гучність на <value> відсотків + + + Decrease the volume by <value> percent + Зменшити гучність на <value> відсотків + + + Seek the currently playing track to an absolute position + Перемотати поточну композицію на абсолютну позицію + + + Seek the currently playing track by a relative amount + Трохи перемотати поточну композицію + + + Restart the track, or play the previous track if within 8 seconds of start. + Повторно відтворити композицію або відтворити попередню композицію, якщо було відтворено не більше 8 секунд поточної композиції. + + + Playlist options + Налаштування списку відтворення + + + Create a new playlist with files + Створити новий список відтворення з файлів + + + Append files/URLs to the playlist + Додати файли/адреси до списку відтворення + + + Loads files/URLs, replacing current playlist + Завантажити файли/адреси і замінити поточний список відтворення + + + Play the <n>th track in the playlist + Відтворити композицію <n> у списку відтворення + + + Play given playlist + Відтворити наданий список відтворення + + + Other options + Інші налаштування + + + Display the on-screen-display + Показувати екранні повідомлення + + + Toggle visibility for the pretty on-screen-display + Змінити режим видимості сповіщень + + + Change the language + Змінити мову + + + Resize the window + Змінити розмір вікна + + + Equivalent to --log-levels *:1 + Відповідає --log-levels *:1 + + + Equivalent to --log-levels *:3 + Відповідає --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + Список, розділений комами, виду клас:рівень, рівень може бути від 0 до 3 + + + Print out version information + Показати відомості про версію + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + Невідомо + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + Файл %1 не розпізнано як дійсний аудіофайл. + + + 1 day + 1 день + + + %1 days + %1 днів + + + Today + Сьогодні + + + Yesterday + Вчора + + + %1 days ago + %1 день тому + + + Tomorrow + Завтра + + + In %1 days + За %1 днів + + + Next week + Наступного тижня + + + In %1 weeks + За %1 тижнів + + + Show in file browser + Показати в оглядачі файлів + + + Too many songs selected. + Вибрано забагато композицій. + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + Вибрано %1 композицій з %2 різних каталогів? Дійсно відкрити їх усі? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + Невідома помилка + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + виконавець + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + Доступні поля + + + after + після + + + before + до + + + on + на + + + not on + не на + + + in the last + в минулому + + + not in the last + не в минулому + + + between + поміж + + + contains + містить + + + does not contain + не містить + + + starts with + починається з + + + ends with + закінчується на + + + greater than + більше ніж + + + less than + менше ніж + + + equals + дорівнює + + + not equals + не дорівнює + + + empty + порожній + + + not empty + не порожній + + + Comment + Коментар + + + A-Z + А-Я + + + Z-A + Я-А + + + oldest first + спочатку настаріші + + + newest first + спочатку найновіші + + + shortest first + спочатку найкоротші + + + longest first + спочатку найдовші + + + smallest first + спочатку найменші + + + biggest first + спочатку найбільші + + + Hours + Години + + + Days + Дні + + + Weeks + Тижні + + + Months + Місяці + + + Years + Роки + + + Normal + Звичайний + + + Angry + Лютий + + + Frozen + Заморожений + + + Happy + Щасливий + + + System colors + Системні кольори + + + + QWidget + + Clear + Очистити + + + Reset + Скинути + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Пошук... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Немає збігів. + + + Unknown error + Невідома помилка + + + + QobuzService + + Authenticating... + Автентифікація... + + + Maximum number of login attempts reached. + Досягнута максимальна кількість спроб входу. + + + Missing Qobuz app ID. + Відсутній ідентифікатор додатку Qobuz. + + + Missing Qobuz username. + Відсутнє ім'я користувача Qobuz. + + + Missing Qobuz password. + Відсутній пароль Qobuz. + + + Not authenticated with Qobuz. + Помилка автентифікації на Qobuz. + + + Missing Qobuz app ID or secret. + Відсутній ідентифікатор додатку Qobuz або секрет. + + + + QobuzSettingsPage + + Qobuz + + + + Enable + Увімкнути + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + Підтримка Qobuz не є офіційною, і для роботи потрібен ідентифікатор API додатку та секрет із зареєстрованої програми. Ми не можемо допомогти вам отримати їх. + + + Authentication + Автентифікація + + + App ID + ІД додатку + + + Username + Користувач + + + Password + Пароль + + + App Secret + Ключ додатку + + + Login + Увійти + + + Preferences + Параметри + + + Audio format + Аудіо-формат + + + Search delay + Затримка пошуку + + + ms + мс + + + Artists search limit + Обмеження на пошук виконавців + + + Albums search limit + Обмеження пошуку альбомів + + + Songs search limit + Обмеження пошуку композицій + + + Download album covers + Завантажити обкладинки альбомів + + + Base64 encoded secret + + + + Configuration incomplete + Конфігурація неповна + + + Missing app id. + Відсутній ідентифікатор додатку. + + + Missing username. + Відсутнє ім'я користувача. + + + Missing password. + Відсутній пароль. + + + Authentication failed + Помилка автентификації + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + Відсутній ідентифікатор додатку Qobuz або секрет. + + + Cancelled. + Скасовано. + + + + Queue + + %n track(s) + + + + + + + + + QueueView + + QueueView + Подання черги + + + Move down + Перемістити вниз + + + Ctrl+Up + Ctrl+Вгору + + + Move up + Перемістити вгору + + + Ctrl+Down + Ctrl+Вниз + + + Remove + Видалити + + + Clear + Очистити + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + Отримання %1 каналів + + + + RadioView + + Append to current playlist + Додати до списку відтворення + + + Replace current playlist + Замінити список відтворення + + + Open in new playlist + Відкрити у новому списку відтворення + + + Open homepage + Відкрити домашню сторінку + + + Donate + Пожертвувати + + + Refresh channels + Оновити канали + + + + RadioViewContainer + + Form + Форма + + + + SCollection + + Saving playcounts and ratings + Збереження кількостей відтворювань і рейтингів композицій + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + Керування збереженими групуваннями + + + Remove + Видалити + + + Ctrl+Up + Ctrl+Вгору + + + Name + Назва + + + First level + Перший рівень + + + Second Level + Другий рівень + + + Third Level + Третій рівень + + + None + Немає + + + Album artist + Виконавець альбому + + + Artist + Виконавець + + + Album + Альбом + + + Album - Disc + Альбом - Диск + + + Year - Album + Рік – Альбом + + + Year - Album - Disc + Рік – Альбом – Диск + + + Original year - Album + Рік оригіналу – Альбом + + + Original year - Album - Disc + Рік оригіналу – Альбом – Диск + + + Disc + Диск + + + Year + Рік + + + Original year + Рік оригіналу + + + Genre + Жанр + + + Composer + Композитор + + + Performer + Виконавець + + + Grouping + Групування + + + File type + Тип файлу + + + Format + Формат + + + Sample rate + Частота вибірки + + + Bit depth + Розрядна глибина + + + Bitrate + Бітова швидкість + + + Unknown + Невідомо + + + + ScrobblerSettingsPage + + Scrobbler + Скроблер + + + Enable + Увімкнути + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + Композиції скроблюються, якщо вони мають дійсні метадані, мають тривалість більше 30 секунд та відтворюються щонайменше половину тривалості або 4 хвилини (залежно від того, що станеться раніше). + + + Work in offline mode (Only cache scrobbles) + Робота в автономному режимі (лише записувати дані скроблінгу в кеш) + + + Show scrobble button + Показати кнопку скороблінгу + + + Show love button + Показати кнопку «Люблю» + + + Submit scrobbles every + Надсилати дані скроблінгу кожні + + + seconds + секунд + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + (Це затримка між скроблінгом композиції та надсиланням даних на сервер. Якщо встановити 0 секунд, дані скроблінгу будуть надіслані негайно). + + + Prefer album artist when sending scrobbles + Надавати перевагу виконавцю альбому під час надсилання даних скроблінгу + + + Show dialog for errors + Показати діалогове вікно для помилок + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + Увімкнути скроблінг для наступних джерел: + + + Collection + Фонотека + + + Subsonic + + + + Local file + Локальний файл + + + Tidal + + + + Device + Пристрій + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + Потік + + + Radio Paradise + Радіо Paradise + + + Unknown + Невідомо + + + Last.fm + + + + Login + Увійти + + + Libre.fm + + + + Listenbrainz + + + + User token: + Маркер користувача: + + + Enter your user token from + Введіть свій маркер користувача з + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + Аутентифікація скроблера %1 + + + Open URL in web browser? + Відкрити адресу в браузері? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + Натисніть «Зберегти», щоб скопіювати адресу в буфер обміну, та відкрийте її у веб-браузері. + + + Could not open URL. Please open this URL in your browser + Не вдалось відкрити адресу. Перейдіть за цією адресу у браузері + + + Invalid reply from web browser. Missing token. + Недійсна відповідь з веб-браузера. Відсутній маркер. + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + Помилка автентифікації скроблера %1! + + + Scrobbler %1 error: %2 + Помилка скроблера %1: %2 + + + + SettingsDialog + + Settings + Налаштування + + + General + Загальне + + + User interface + Інтерфейс користувача + + + Streaming + Потік + + + + SmartPlaylistQuerySearchPage + + Form + Форма + + + Search mode + Режим пошуку + + + Match every search term (AND) + Відповідати кожному критерію пошуку (логічне І) + + + Match one or more search terms (OR) + Відповідати одному чи кільком критеріям пошуку (логічне АБО) + + + Include all songs + Показати всі композиції + + + Search terms + Критерії пошуку + + + + SmartPlaylistQuerySortPage + + Form + Форма + + + Sorting + Сортування + + + Put songs in a random order + Перемішати композиції у довільному порядку + + + Sort songs by + Сортувати композиції за + + + Limits + Обмеження + + + Show all the songs + Показати всі композиції + + + Only show the first + Показати тільки перший + + + songs + композиції + + + + SmartPlaylistQueryWizardPlugin + + Collection search + Пошук по фонотеці + + + Find songs in your collection that match the criteria you specify. + Пошук у фонотеці композицій, які відповідають заданим критеріям. + + + Search terms + Критерії пошуку + + + A song will be included in the playlist if it matches these conditions. + Композицію буде включено до списку відтворення, якщо вона відповідає цим умовам. + + + Search options + Параметри пошуку + + + Choose how the playlist is sorted and how many songs it will contain. + Виберіть спосіб сортування списку відтворення та кількість пісень, які він міститиме. + + + + SmartPlaylistSearchPreview + + Form + Форма + + + Preview + Попередній перегляд + + + Loading... + Завантаження... + + + %1 songs found (showing %2) + Знайдено %1 композицій (показано %2) + + + %1 songs found + Знайдено %1 композицій + + + + SmartPlaylistSearchTermWidget + + Form + Форма + + + and + і + + + ago + потому + + + The second value must be greater than the first one! + Друге значення має бути більше першого! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + Додати пошуковий термін + + + + SmartPlaylistWizard + + Smart playlist + Розумний список відтворення + + + Playlist type + Тип списку відтворення + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + Розумний список відтворення — це динамічний список композицій з вашої фонотеки. Існують різні типи розумних списків з різними способами відбору композицій. + + + Finish + Завершити + + + Choose a name for your smart playlist + Введіть назву для свого розумного списку відтворення + + + + SmartPlaylistWizardFinishPage + + Form + Форма + + + Name + Назва + + + Use dynamic mode + Використовувати динамічний режим + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + У динамічному режимі нові композиції вибиратимуться та додаватимуться до списку відтворення одразу після закінчення попередньої композиції. + + + + SmartPlaylists + + Newest tracks + Найновіші композиції + + + 50 random tracks + 50 випадкових композицій + + + Ever played + Коли-небудь відтворювалась + + + Never played + Ніколи не відтворювались + + + Last played + Останнє відтворення + + + Most played + Найчастіше відтворювались + + + Favourite tracks + Улюблені композиції + + + All tracks + Всі композиції + + + Dynamic random mix + Динамічний випадковий мікс + + + + SmartPlaylistsViewContainer + + New smart playlist + Новий розумний список відтворення + + + Edit smart playlist + Змінити розумний список відтворення + + + Delete smart playlist + Видалити розумний список відтворення + + + New smart playlist... + Створити розумний список відтворення... + + + Append to current playlist + Додати до списку відтворення + + + Replace current playlist + Замінити список відтворення + + + Open in new playlist + Відкрити у новому списку відтворення + + + Queue track + Додати до черги + + + Play next + Відтворити наступну + + + Edit smart playlist... + Змінити розумний список відтворення... + + + + SnapDialog + + Strawberry is running as a Snap + Strawberry працює як Snap + + + It is detected that Strawberry is running as a Snap + Було виявлено, що Strawberry працює як Snap + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + Strawberry під час роботи як Snap буде повільнішим та більш обмеженим. Доступу до кореневої файлової системи (/) немає. Також можуть існувати інші обмеження, наприклад доступ до певних пристроїв або спільних мережевих ресурсів. + + + For Ubuntu there is an official PPA repository available at %1. + Для Ubuntu існує офіційне PPA-сховище на %1. + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Доступні офіційні пакети для Debian та Ubuntu, які також працюють на більшості їхніх похідних. Додаткові відомості див. у %1. + + + For a better experience please consider the other options above. + Також вам можливо стануть у нагоді інші варіанти вище. + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + Перш ніж видаляти snap, скопіюйте файли strawberry.conf і strawberry.db з каталогу ~/snap, щоб не втратити свою конфігурацію: + + + Uninstall the snap with: + Видалити snap з: + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + Отримання %1 каналів + + + + SongLoader + + You need GStreamer for this URL. + Для цієї адреси потрібен GStreamer. + + + Preload function was not set for blocking operation. + Для блокування не була встановлена функція попереднього завантаження. + + + File %1 does not exist. + Файл %1 не існує. + + + CD playback is only available with the GStreamer engine. + Відтворення компакт-дисків доступне лише з обробником GStreamer. + + + Could not open file %1 for reading: %2 + Не вдалось відкрити файл %1 для читання: %2 + + + Could not open CUE file %1 for reading: %2 + Не вдалось відкрити CUE-файл %1 для читання: %2 + + + Could not open playlist file %1 for reading: %2 + Не вдалось відкрити список відтворення %1 для читання: %2 + + + Couldn't create GStreamer source element for %1 + Не вдалось створити елемент GStreamer для %1 + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + Не вдалось завантажити аудіо-CD. + + + Loading tracks + Завантаження композицій + + + Loading tracks info + Завантаження даних композицій + + + + SpotifyRequest + + Authenticating... + Автентифікація... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Пошук... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Немає збігів. + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + Автентифікація на Spotify + + + Please open this URL in your browser + Відкрийте цю адресу у браузері + + + Redirect missing token code or state! + Переспрямування не містить код або стан маркера! + + + Received invalid reply from web browser. + Отримана недійсна відповідь з веб-браузера. + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + Увімкнути + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + Параметри + + + Search delay + Затримка пошуку + + + ms + мс + + + Artists search limit + Обмеження на пошук виконавців + + + Albums search limit + Обмеження пошуку альбомів + + + Songs search limit + Обмеження пошуку композицій + + + Download album covers + Завантажити обкладинки альбомів + + + Fetch entire albums when searching songs + Завантажувати повні альбоми під час пошуку композицій + + + Authentication failed + Помилка автентификації + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + Клацніть тут, щоб отримати музику + + + Append to current playlist + Додати до списку відтворення + + + Replace current playlist + Замінити список відтворення + + + Open in new playlist + Відкрити у новому списку відтворення + + + Queue track + Додати до черги + + + Queue to play next + Відтворити наступним + + + Remove from favorites + Вилучити з улюблених + + + + StreamingCollectionViewContainer + + Form + Форма + + + Close + Закрити + + + Abort + Перервати + + + Refresh catalogue + Оновити каталог + + + + StreamingSearchModel + + Various artists + Різні виконавці + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + виконавці + + + albums + альбоми + + + songs + композиції + + + Enter search terms above to find music + Введіть вище критерії для пошуку музики + + + Configure %1... + Налаштувати %1... + + + Append to current playlist + Додати до списку відтворення + + + Replace current playlist + Замінити список відтворення + + + Open in new playlist + Відкрити у новому списку відтворення + + + Queue track + Додати до черги + + + Add to artists + Додати до виконавців + + + Add to albums + Додати до альбомів + + + Add to songs + Додати до композицій + + + Search for this + Шукати наступне + + + Group by + Групувати за + + + + StreamingSongsView + + Configure %1... + Налаштувати %1... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + Виконавці + + + Albums + Альбоми + + + Songs + Композиції + + + Search + Пошук + + + Configure %1... + Налаштувати %1... + + + + SubsonicRequest + + Retrieving albums... + Завантаження альбомів... + + + Retrieving songs for %1 album... + Завантаження композицій для %1 альбому... + + + Retrieving songs for %1 albums... + Завантаження композицій для %1 альбомів... + + + Retrieving album cover for %1 album... + Завантаження обкладинки для %1 альбому... + + + Retrieving album covers for %1 albums... + Завантаження обкладинок для %1 альбомів... + + + Unknown error + Невідома помилка + + + + SubsonicService + + Server URL is invalid. + Недійсна адреса сервера. + + + Missing username or password. + Відсутнє ім'я користувача або пароль. + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + Увімкнути + + + Server URL + Адреса сервера + + + Authentication + Автентифікація + + + Username + Користувач + + + Password + Пароль + + + Authentication method: + Метод автентифікації: + + + Hex + Шістнадцяткове + + + MD5 token (Recommended) + + + + Preferences + Параметри + + + Use HTTP/2 when possible + Використовувати HTTP/2, якщо можливо + + + Verify server certificate + Перевірити сертифікат сервера + + + Download album covers + Завантажити обкладинки альбомів + + + Server-side scrobbling + Скроблінг на боці сервера + + + Test + Тест + + + Delete songs + Видалити пісні + + + Configuration incomplete + Конфігурація неповна + + + Missing server url, username or password. + Відсутня адреса сервера, ім’я користувача або пароль. + + + Configuration incorrect + Конфігурація з помилками + + + Server URL is invalid. + Недійсна адреса сервера. + + + Test successful! + Тест успішний! + + + Test failed! + Тест не пройшов! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + Недійсна адреса сервера Subsonic. + + + Missing Subsonic username or password. + Відсутнє ім'я користувача або пароль Subsonic. + + + + SystemTrayIcon + + Pause + Призупинити + + + Play + Відтворити + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + Автентифікація... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + Пошук... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + Немає збігів. + + + + TidalService + + Reply from Tidal is missing query items. + Відповідь з Tidal не містить елементи запиту. + + + Missing Tidal API token. + Відсутній маркер API Tidal. + + + Missing Tidal username. + Відсутнє ім'я користувача Tidal. + + + Missing Tidal password. + Відсутній пароль Tidal. + + + Not authenticated with Tidal and reached maximum number of login attempts. + Помилка автентифікації на Tidal і досягнута максимальна кількість спроб входу. + + + Not authenticated with Tidal. + Помилка автентифікації на Tidal. + + + Missing Tidal API token, username or password. + Відсутній маркер API, ім'я користувача або пароль Tidal. + + + + TidalSettingsPage + + Tidal + + + + Enable + Увімкнути + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + Підтримка Tidal не є офіційною, і для роботи потрібен маркер API із зареєстрованої програми. Ми не можемо допомогти вам отримати ці дані. + + + Authentication + Автентифікація + + + Use OAuth + Використовувати OAuth + + + Client ID + ID клієнта + + + API Token + Маркер API + + + Username + Користувач + + + Password + Пароль + + + Login + Увійти + + + Preferences + Параметри + + + Audio quality + Якість аудіо + + + Search delay + Затримка пошуку + + + ms + мс + + + Artists search limit + Обмеження на пошук виконавців + + + Albums search limit + Обмеження пошуку альбомів + + + Songs search limit + Обмеження пошуку композицій + + + Download album covers + Завантажити обкладинки альбомів + + + Fetch entire albums when searching songs + Завантажувати повні альбоми під час пошуку композицій + + + Album cover size + Розмір обкладинки альбому + + + Stream URL method + Протокол адреси потоку + + + Append explicit to album title for explicit albums + Додати явний текст до назви альбому для явних альбомів + + + Configuration incomplete + Конфігурація неповна + + + Missing Tidal client ID. + Відсутній ID клієнта Tidal. + + + Missing API token. + Відсутній маркер API. + + + Missing username. + Відсутнє ім'я користувача. + + + Missing password. + Відсутній пароль. + + + Authentication failed + Помилка автентификації + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + Помилка автентифікації на Tidal. + + + Missing Tidal API token, username or password. + Відсутній маркер API, ім'я користувача або пароль Tidal. + + + Cancelled. + Скасовано. + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Отримано URL-адресу з %1 зашифрованим потоком з Tidal. Strawberry наразі не підтримує зашифровані потоки. + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + Отримано URL-адресу з зашифрованим потоком з Tidal. Strawberry наразі не підтримує зашифровані потоки. + + + + TrackSelectionDialog + + Tag fetcher + Завантажувач тегів + + + Sorry + Вибачте + + + Strawberry was unable to find results for this file + Strawberry не знайшов нічого для цього файлу + + + Select best possible match + Оберіть найкращий збіг + + + Track + Композиція + + + Year + Рік + + + Title + Назва + + + Artist + Виконавець + + + Album + Альбом + + + Previous + Попередня + + + Next + Наступна + + + Original tags + Початкові теги + + + Suggested tags + Пропоновані теги + + + Saving tracks + Збереження композицій + + + + TrackSlider + + Form + Форма + + + 0:00:00 + + + + Click to toggle between remaining time and total time + Клацніть аби перемкнутися між часом, що залишився, та загальним + + + + TranscodeDialog + + Transcode Music + Перекодування музики + + + Files to transcode + Файли для перекодування + + + Filename + Назва файлу + + + Directory + Тека + + + Add... + Додати... + + + Remove + Видалити + + + Add all tracks from a directory and all its subdirectories + Додати усі композиції з каталогу та усіх його підкаталогів + + + Import... + Імпортувати... + + + Output options + Налаштування виведення + + + Audio format + Аудіо-формат + + + Options... + Налаштування... + + + Destination + Призначення + + + Alongside the originals + Разом з оригіналами + + + Select... + Вибрати... + + + Progress + Поступ + + + Details... + Детальніше... + + + Clear + Очистити + + + Start transcoding + Почати перекодування + + + %n remaining + + %n залишилось + + + + + + %n finished + + %n завершено + + + + + + %n failed + + %n з помилкою + + + + + + Add files to transcode + Додати файли для перекодування + + + Music + Музика + + + Open a directory to import music from + Відкрити каталог для імпортування музичних творів + + + Add folder + Додати папку + + + + TranscodeLogDialog + + Transcoder Log + Журнал перекодування + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + Не вдалось створити елемент GStreamer «%1». Переконайтесь, що встановлені всі потрібні для GStreamer модулі + + + Successfully written %1 + Успішно записано %1 + + + Transcoding %1 files using %2 threads + Перекодовано %1 файлів, використовуючи %2 гілки + + + Error processing %1: %2 + Помилка обробляння %1: %2 + + + Starting %1 + Запуск %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + Не вдалось знайти кодер для %1. Перевірте чи правильно встановлений модуль GStreamer + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + Не вдалось знайти ущільнювач для %1. Перевірте чи правильно встановлений модуль GStreamer + + + + TranscoderOptionsAAC + + Form + Форма + + + Bitrate + Бітова швидкість + + + kbps + кб/с + + + Profile + Профіль + + + Main profile (MAIN) + Основний профіль (MAIN) + + + Low complexity profile (LC) + Профіль низької складності (LC) + + + Scalable sampling rate profile (SSR) + Профіль масштабованої частоти вибірки (SSR) + + + Long term prediction profile (LTP) + Профіль довготривалого передбачення (LTP) + + + Use temporal noise shaping + Використовувати тимчасове формування шуму + + + Allow mid/side encoding + Дозволити mid/side кодування + + + Block type + Тип блоку + + + Normal block type + Звичаний тип блоку + + + No short blocks + Без коротких блоків + + + No long blocks + Без довгих блоків + + + + TranscoderOptionsASF + + Form + Форма + + + Bitrate + Бітова швидкість + + + kbps + кб/с + + + + TranscoderOptionsDialog + + Transcoding options + Налаштування перекодування + + + + TranscoderOptionsFLAC + + Form + Форма + + + Quality + Sound quality + Якість + + + Fast + Швидко + + + Best + Найкраще + + + + TranscoderOptionsMP3 + + Form + Форма + + + Optimize for &quality + Оптимізувати під &якість + + + Quality + Sound quality + Якість + + + Opti&mize for bitrate + Оптимізувати під &бітову швидкість + + + Bitrate + Бітова швидкість + + + kbps + кб/с + + + Constant bitrate + Стала бітова швидкість + + + Encoding engine quality + Якість кодування + + + Fast + Швидко + + + Standard + Стандартний + + + High + Високий + + + Force mono encoding + Примусове моно-кодування + + + + TranscoderOptionsOpus + + Form + Форма + + + Bitrate + Бітова швидкість + + + kbps + кб/с + + + + TranscoderOptionsSpeex + + Form + Форма + + + Quality + Sound quality + Якість + + + Bitrate + Бітова швидкість + + + automatic + автоматично + + + kbps + кб/с + + + Average bitrate + Середня бітова швидкість + + + disabled + вимкнено + + + Encoding mode + Режим кодування + + + Auto + Автоматично + + + Ultra wide band (UWB) + Надзвичайно широка смуга (UWB) + + + Wide band (WB) + Широка смуга (WB) + + + Narrow band (NB) + Вузька смуга (NB) + + + Variable bit rate + Змінна бітова швидкість + + + Voice activity detection + Визначення голосової активності + + + Discontinuous transmission + Переривчаста передача + + + Encoding complexity + Складність кодування + + + Frames per buffer + Кадрів на буфер + + + + TranscoderOptionsVorbis + + Form + Форма + + + Quality + Sound quality + Якість + + + Use bitrate management engine + Використовувати засіб керування бітовою швидкістю + + + Target bitrate + Цільова бітова швидкість + + + kbps + кб/с + + + Minimum bitrate + Найменша бітова швидкість + + + disabled + вимкнено + + + Maximum bitrate + Найбільша бітова швидкість + + + + TranscoderOptionsWavPack + + Form + Форма + + + + TranscoderSettingsPage + + Transcoding + Перекодування + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + Ці налаштування використовуються у діалозі «Перекодування музики» та під час конвертування музики перед її копіюванням на пристрій. + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + Шлях D-Bus + + + Serial number + Серійний номер + + + Mount points + Точки монтування + + + Partition label + Мітка розділу + + + UUID + + + + + UserPassDialog + + Enter username and password + Вкажіть ім'я користувача і пароль + + + Username + Користувач + + + Password + Пароль + + + diff --git a/src/translations/strawberry_zh_CN.ts b/src/translations/strawberry_zh_CN.ts new file mode 100644 index 00000000..26784b9c --- /dev/null +++ b/src/translations/strawberry_zh_CN.ts @@ -0,0 +1,7561 @@ + + + + + About + + About + 关于 + + + About Strawberry + 关于 Strawberry + + + Version %1 + 版本 %1 + + + Strawberry is a music player and music collection organizer. + + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + 作者和维护者 + + + Contributors + 贡献者 + + + Clementine authors + Clementine 作者 + + + Clementine contributors + Clementine 贡献者 + + + Thanks to + 致谢 + + + Thanks to all the other Amarok and Clementine contributors. + 感谢所有其他的 Amarok 和 Clementine 的贡献者们。 + + + + AddStreamDialog + + Add Stream + 添加Stream + + + Enter the URL of a stream: + 输入流 URL: + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + 图像 (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + 图像 (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + All files (*) + 全部文件 (*) + + + Load cover from disk... + 从磁盘载入封面... + + + Save cover to disk... + 保存封面至硬盘... + + + Load cover from URL... + 从 URL 载入封面... + + + Search for album covers... + 搜索专辑封面... + + + Unset cover + 撤销封面 + + + Delete cover + 删除封面 + + + Clear cover + 清除封面 + + + Show fullsize... + 显示完整尺寸... + + + Search automatically + 自动搜索 + + + Load cover from disk + 从磁盘读取封面 + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + 未知 + + + Save album cover + 保存专辑封面 + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + 导出封面 + + + Output + 输出 + + + Enter a filename for exported covers (no extension): + 输入导出封面的文件名(不含扩展名): + + + Export downloaded covers + 导出下载的封面 + + + Export embedded covers + 导出内嵌封面 + + + Existing covers + 现有封面 + + + Do not overwrite + 不要覆盖 + + + O&verwrite all + 覆盖所有(&V) + + + Overwrite s&maller ones only + + + + Size + 大小 + + + Scale size + 缩放 + + + Size: + 大小: + + + Pixel + 像素 + + + + AlbumCoverManager + + Abort + 中止 + + + All albums + 全部专辑 + + + Albums with covers + 有封面的专辑 + + + Albums without covers + 无封面的专辑 + + + Really cancel? + 确实取消? + + + Closing this window will stop searching for album covers. + 关闭此窗口将停止寻找专辑封面。 + + + Don't stop! + 不要停止! + + + All artists + 全部艺人 + + + Various artists + 群星 + + + Got %1 covers out of %2 (%3 failed) + 获取了 %1 个封面,共 %2 个(失败 %3 个) + + + %1 transferred + %1 已传输 + + + Export finished + 导出完成 + + + No covers to export. + 无封面可供导出。 + + + Exported %1 covers out of %2 (%3 skipped) + 已导出 %1 个封面,共 %2 个(跳过 %3 个) + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + 封面管理器 + + + Artist + 艺术家 + + + Album + 专辑 + + + Search + 搜索 + + + Covers from %1 + 来自 %1 的封面 + + + Abort + 中止 + + + + AnalyzerContainer + + Framerate + 帧速率 + + + Low (%1 fps) + 低(%1 fps) + + + Medium (%1 fps) + 中(%1 fps) + + + High (%1 fps) + 高(%1 fps) + + + Super high (%1 fps) + 很高(%1 fps) + + + No analyzer + 无均衡器 + + + Block analyzer + 块状分析器 + + + Boom analyzer + 轰鸣音分析器 + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + 外观 + + + Style + 风格 + + + Use system theme icons + 使用系统主题图标 + + + Settings require restart. + 设置需要重启。 + + + Tabbar colors + 标签栏颜色 + + + &Use the system default color + 使用系统默认颜色(&U) + + + Use custom color + 使用自定义颜色 + + + Use gradient background + 使用渐变色背景 + + + Select tabbar color: + 选择标签栏颜色: + + + Background image + 背景图片 + + + Default bac&kground image + 默认背景图像(&K) + + + &No background image + 无背景图像(&N) + + + The album cover of the currently playing song + 目前正在播放的音乐的专辑封面 + + + Albu&m cover + 专辑封面(&M) + + + Custom image: + 自定义图片: + + + Browse... + 浏览... + + + Position + 位置 + + + Upper Left + 左上 + + + Upper Right + 右上 + + + Middle + + + + Bottom Left + 左下 + + + Bottom Right + 右下 + + + Max cover size + 最大封面大小 + + + Stretch image to fill playlist + 拉伸图像来填充播放列表 + + + Keep aspect ratio + + + + Do not cut image + 不要裁剪图像 + + + Blur amount + 模糊量 + + + 0px + + + + Opacity + 不透明度 + + + 40% + + + + Icon sizes + 图标大小 + + + Playlist buttons + + + + Tabbar large mode + 大标签栏模式 + + + Play control buttons + 播放控制按钮 + + + Configure buttons + 配置按钮 + + + Files, playlists and queue buttons + 文件、播放列表和队列按钮 + + + Tabbar small mode + 小标签栏模式 + + + Playlist playing song color + + + + System highlight color + 系统高亮颜色 + + + Custom color + 自定义颜色 + + + Select playlist playing song color: + 选择播放列表正在播放歌曲的颜色: + + + Select background image + 选择背景图片 + + + + BackendSettingsPage + + Backend + 后端 + + + Audio output + 音频输出 + + + Device + 设备 + + + Output + 输出 + + + Engine + 引擎 + + + ALSA plugin: + ALSA 插件: + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + 选项 + + + Enable volume control + 启用音量控制 + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + 缓冲 + + + ms + + + + Buffer duration + 缓冲时长 + + + High watermark + + + + Low watermark + + + + Defaults + 默认 + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + 回放增益 + + + Use Replay Gain metadata if it is available + 使用播放增益元数据(如果可用) + + + Replay Gain mode + 回放增益模式 + + + Radio (equal loudness for all tracks) + 电台(所有曲目采用相同的音量) + + + Album (ideal loudness for all tracks) + 专辑(所有曲目采用合适音量) + + + Pre-amp + 前置放大 + + + Apply compression to prevent clipping + 允许压缩以阻止剪切 + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + 淡入淡出 + + + Fade out when stopping a track + 停止播放曲目时淡出 + + + Cross-fade when changing tracks manually + 手动换曲时淡入淡出 + + + Cross-fade when changing tracks automatically + 自动换曲时淡入淡出 + + + Except between tracks on the same album or in the same CUE sheet + 同一专辑歌曲或者同一CUE sheet不淡出 + + + Fading duration + 淡入淡出时长 + + + Fade out on pause / fade in on resume + 暂停时淡出/恢复时淡入 + + + + BehaviourSettingsPage + + Behavior + 行为 + + + Show system tray icon + 显示系统托盘图标 + + + Keep running in the background when the window is closed + 当窗口关闭时仍在后台运行 + + + Show song progress on system tray icon + 在系统托盘图标上显示歌曲进度 + + + Show song progress on taskbar + + + + Resume playback on start + 启动时恢复播放 + + + Show playing widget + 显示播放小部件 + + + On startup + 在启动时 + + + Remember from &last time + + + + Show the main window + 显示主窗口 + + + Hide the main window + 隐藏主窗口 + + + Show the main window maximized + 显示最大化主窗口 + + + Show the main window minimized + 显示最小化主窗口 + + + Language + 语言 + + + Use the system default + 使用系统默认 + + + You will need to restart Strawberry if you change the language. + 如果更改语言,您需要重启 Strawberry 使设置生效。 + + + Using the menu to add a song will... + 使用菜单添加歌曲将... + + + Never start playing + 从未播放 + + + Play if there is nothing already playing + 如无歌曲播放则自动播放添加的歌曲 + + + Always start playing + 总是开始播放 + + + Pressing "Previous" in player will... + 点击“上一首”将会... + + + Jump to previous song right away + 立即跳到上首歌 + + + Restart song, then jump to previous if pressed again + 按一次重新播放歌曲,连按两次则播放上首歌 + + + Double clicking a song will... + 双击歌曲将... + + + Append to the playlist + 追加至播放列表 + + + Replace the playlist + 移除播放列表 + + + Open in new playlist + 在新播放列表中打开 + + + Add to the queue + 添加到队列 + + + Double clicking a song in the playlist will... + 双击播放列表中的歌曲将... + + + Change the currently playing song + 改变正在播放歌曲 + + + Seeking using a keyboard shortcut or mouse wheel + 使用键盘快捷键或者鼠标滑轮进行寻位 + + + Time step + 时间步长 + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + 正在更新 %1 数据库。 + + + + CollectionFilterWidget + + Collection Filter + 媒体库筛选器 + + + Enter search terms here + 在此输入搜索条件 + + + MenuPopupToolButton + + + + Entire collection + 整个集合 + + + Added today + 今日加入 + + + Added this week + 本周加入 + + + Added within three months + 于三个月内加入 + + + Added this year + 今年加入 + + + Added this month + 本月加入 + + + Save current grouping + 保存当前分组 + + + Manage saved groupings + 管理已保存的分组 + + + Show + 显示 + + + Group by + 分组 + + + Display options + 显示选项 + + + Group by Album artist/Album + 按专辑 艺人/专辑来分组 + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + 按艺术家/专辑分组 + + + Group by Artist/Album - Disc + 按艺术家/专辑 - 碟片分组 + + + Group by Artist/Year - Album + 按艺术家/年份 - 专辑分组 + + + Group by Artist/Year - Album - Disc + 按艺术家/年份 - 专辑 - 碟片分组 + + + Group by Genre/Album artist/Album + 按流派/专辑艺术家/专辑分组 + + + Group by Genre/Artist/Album + 按流派/艺人/专辑分组 + + + Group by Album Artist + + + + Group by Artist + 按艺术家分组 + + + Group by Album + 按专辑分组 + + + Group by Genre/Album + 按流派/专辑分组 + + + Advanced grouping... + 高级分组... + + + Grouping Name + 分组名称 + + + Grouping name: + 分组名称: + + + + CollectionModel + + Various artists + 群星 + + + Loading... + 正在载入... + + + Unknown + 未知 + + + + CollectionSettingsPage + + Collection + 媒体库 + + + These folders will be scanned for music to make up your collection + 这些文件夹将被扫描然后收录进您的媒体库 + + + Add new folder... + 添加新文件夹... + + + Remove folder + 删除文件夹 + + + Automatic updating + 自动更新 + + + Update the collection when Strawberry starts + Strawberry 启动时更新媒体库 + + + Monitor the collection for changes + 监控媒体库的更改 + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + 专辑封面的文件名(逗号分隔) + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + 当查找专辑封面时,Strawberry将首先查找包含这些关键词的图片。 +如果未能匹配,Strawberry将使用目录下最大的图片。 + + + Display options + 显示选项 + + + Automatically open single categories in the collection tree + 自动打开媒体库树重的单个分类 + + + Show dividers + 显示分频器 + + + Show album cover art in collection + 在媒体库中显示专辑封面图稿 + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + 专辑封面像素图缓存 + + + Size + 大小 + + + Enable Disk Cache + 启用磁盘缓存 + + + Disk Cache Size + 磁盘缓存大小 + + + Current disk cache in use: + 当前已用磁盘缓存: + + + Clear Disk Cache + 清空磁盘缓存 + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + 保存播放计数到歌曲标签(如果可能) + + + Save ratings to song tags when possible + 保存评分到歌曲标签(如果可能) + + + Overwrite database playcount when songs are re-read from disk + 当从磁盘重新读取歌曲时覆盖数据库中的播放计数 + + + Overwrite database rating when songs are re-read from disk + 当从磁盘重新读取歌曲时覆盖数据库中的评分 + + + Save playcounts and ratings to files now + 现在保存播放计数和评分到文件 + + + Enable delete files in the right click context menu + + + + Add directory... + 添加目录... + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + 您的媒体库是空的! + + + Click here to add some music + 点击此处添加一些音乐 + + + Append to current playlist + 追加至当前播放列表 + + + Replace current playlist + 移除当前播放列表 + + + Open in new playlist + 在新播放列表中打开 + + + Queue track + 加入队列 + + + Queue to play next + + + + Search for this + + + + Organize files... + 整理文件... + + + Copy to device... + 复制到设备... + + + Delete from disk... + 从硬盘删除... + + + Edit track information... + 编辑曲目信息... + + + Edit tracks information... + 编辑曲目信息... + + + Show in file browser... + 在文件管理器中显示... + + + Rescan song(s) + 重新扫描歌曲... + + + Show in various artists + 在群星中显示 + + + Don't show in various artists + 不在群星中显示 + + + There are other songs in this album + 此专辑中还有其它歌曲 + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + 错误 + + + None of the selected songs were suitable for copying to a device + 已选择的曲目均不适合复制到设备 + + + + CollectionViewContainer + + Form + 表格 + + + + CollectionWatcher + + Updating collection + 正在更新媒体库 + + + Updating %1 + 正在更新 %1 + + + + Console + + Console + 终端 + + + Run + 运行 + + + + ContextSettingsPage + + Context + 上下文 + + + Custom text settings + 自定义文本设置 + + + MenuPopupToolButton + + + + Title + 标题 + + + Summary + 总览 + + + Enable Items + + + + Album + 专辑 + + + Technical Data + 技术规格 + + + Song Lyrics + 歌词 + + + Automatically search for album cover + 自动搜索专辑封面 + + + Automatically search for song lyrics + 自动搜索歌曲歌词 + + + Font for headline + 标题字体 + + + Font + 字体 + + + Font size + 字体大小 + + + pt + + + + Preview + 预览 + + + Font for data and lyrics + 数据与歌词字体 + + + Add song artist tag + 添加歌曲艺术家标签 + + + Add song album tag + 添加歌曲专辑标签 + + + Add song title tag + 添加歌曲标题标签 + + + Add song albumartist tag + 添加歌曲专辑作者标签 + + + Add song year tag + 添加歌曲年份标签 + + + Add song composer tag + 添加歌曲作曲家标签 + + + Add song performer tag + 添加歌曲表演者标签 + + + Add song grouping tag + 添加歌曲分组标签 + + + Add song disc tag + 添加歌曲盘片标签 + + + Add song track tag + 添加歌曲曲目标签 + + + Add song genre tag + 添加歌曲流派标签 + + + Add song length tag + 添加歌曲长度标签 + + + Add song play count + 统计音乐播放次数 + + + Add song skip count + 统计跳过歌曲的次数 + + + Add a new line if supported by the notification type + 如果支持此通知类型,则添加一个新行 + + + %filename% + + + + Add song filename + 添加音乐文件 + + + %url% + + + + Add song URL + 添加歌曲链接 + + + %rating% + + + + Add song rating + 添加歌曲评级 + + + %originalyear% + + + + Add song original year tag + 添加歌曲的原始年份标签 + + + + ContextView + + Filetype + 文件类型 + + + Length + 长度 + + + Samplerate + 采样率 + + + Bit depth + 位深 + + + Bitrate + + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + 显示专辑封面 + + + Show song technical data + 显示歌曲技术规格 + + + Show song lyrics + 显示歌词 + + + Automatically search for song lyrics + 自动搜索歌曲歌词 + + + No song playing + 没有歌曲在播放 + + + %1 song + %1 首歌曲 + + + %1 songs + %1 首歌曲 + + + %1 artist + %1 位艺术家 + + + %1 artists + %1 位艺术家 + + + %1 album + %1 张专辑 + + + %1 albums + %1 张专辑 + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + 从 URL 载入封面 + + + Enter a URL to download a cover from the Internet: + 输入 URL 以便从网络下载封面: + + + Fetching cover error + 获取封面出错 + + + The site you requested does not exist! + 请求的站点不存在! + + + The site you requested is not an image! + 您请求的站点并不是一个图片! + + + + CoverManager + + Cover Manager + 封面管理器 + + + Enter search terms here + 在此输入搜索条件 + + + MenuPopupToolButton + + + + View + 查看 + + + Total albums: + 专辑总数: + + + Without cover: + 无封面: + + + 0 + + + + Fetch Missing Covers + 获取缺少的封面 + + + Export Covers + 导出封面 + + + Fetch automatically + 自动获取 + + + Load + 载入 + + + Add to playlist + 添加到播放列表 + + + + CoverSearchStatisticsDialog + + Fetch completed + 读取完毕 + + + Got %1 covers out of %2 (%3 failed) + 获取了 %1 个封面,共 %2 个(失败 %3 个) + + + Covers from %1 + 来自 %1 的封面 + + + Total network requests made + 已发出网络连接总数 + + + Average image size + 图片平均大小 + + + Total bytes transferred + 已传输字节总数 + + + + CoversSettingsPage + + Covers + 封面 + + + Cover providers + 封面提供方 + + + Choose the providers you want to use when searching for covers. + 选择想要的封面搜索提供方。 + + + Move up + 上移 + + + Move down + 下移 + + + Authentication + 验证 + + + Login + 登录 + + + Album cover types + + + + Saving album covers + 正在保存专辑封面 + + + Save album covers in album directory + 将专辑封面保存到专辑目录 + + + Save album covers in cache directory + 将专辑封面保存到缓存目录 + + + Save album covers as embedded cover + 将专辑封面保存为嵌入式封面 + + + Filename: + 文件名: + + + Pattern + + + + Random + + + + Overwrite existing file + 覆盖已存在的文件 + + + Lowercase filename + 小写字母文件名 + + + Replace spaces with dashes + + + + Use Tidal settings to authenticate. + 使用 Tidal 设置来认证。 + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + 使用 Qobuz 设置来认证。 + + + %1 needs authentication. + %1 需要授权。 + + + %1 does not need authentication. + %1 不需要授权。 + + + No provider selected. + 未选择提供方。 + + + Authentication failed + 认证失败 + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + 完整性检验 + + + Database corruption detected. + 检测到数据库损坏。 + + + Backing up database + 备份数据库 + + + + DeleteConfirmationDialog + + Delete files + 删除文件 + + + The following files will be deleted from disk: + 下列文件将从磁盘上删除: + + + Are you sure you want to continue? + 你确定要继续吗? + + + + DeleteFiles + + Deleting files + 删除文件 + + + + DeviceItemDelegate + + Updating %1%... + 正在更新 %1%... + + + Not connected + 未连接 + + + Not mounted - double click to mount + 尚未挂载 - 双击进行挂载 + + + Double click to open + 双击打开 + + + %1 song%2 + %1 首歌曲%2 + + + + DeviceManager + + Connect device + 连接设备 + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + 这是您第一次连接该设备。Strawberry 将扫描设备上的音乐文件-这需要花费一些时间。 + + + This device will not work properly + 这个设备将不会正常工作 + + + This is an MTP device, but you compiled Strawberry without libmtp support. + 这个一部 MTP 设备,但是您可以通过 Strawberry 来编辑而无需 libmtp 的支持。 + + + If you continue, this device will work slowly and songs copied to it may not work. + 如果您选择继续,设备运行将会变慢并且复制歌曲工作可能无法正常进行。 + + + This is an iPod, but you compiled Strawberry without libgpod support. + 这是 iPod 设备,但 Strawberry 编译时未包含 libgpod 支持。 + + + This type of device is not supported: %1 + 这类设备不受支持:%1 + + + + DeviceProperties + + Device Properties + 设备属性 + + + Information + 信息 + + + Name + 名称 + + + Icon + 图标 + + + Hardware information + 硬件信息 + + + Hardware information is only available while the device is connected. + 硬件信息仅在设备连接上后可用。 + + + File formats + 文件格式 + + + Supported formats + 支持的格式 + + + This device supports the following file formats: + 该设备支持以下文件格式: + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + Strawberry 可自动将要复制到设备的文件转换为它可以播放的格式。 + + + Do not convert any music + 不转换任何曲目 + + + Convert any music that the device can't play + 转换设备不能播放的音乐 + + + Convert all music + 转换全部音乐 + + + Preferred format + 首选格式 + + + This device must be connected and opened before Strawberry can see what file formats it supports. + 此设备必须在连接并打开之前,Strawberry可以检测它支持什么文件格式。 + + + Open device + 打开设备 + + + Querying device... + 正在查询设备... + + + Model + 型号 + + + Manufacturer + 生产商 + + + + DeviceView + + Safely remove device + 安全移除设备 + + + Forget device + 忘记设备 + + + Device properties... + 设备属性... + + + Append to current playlist + 追加至当前播放列表 + + + Replace current playlist + 移除当前播放列表 + + + Open in new playlist + 在新播放列表中打开 + + + Copy to collection... + 复制到媒体库... + + + Delete from device... + 从设备删除... + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + 忘记设备将从列表删除该设备.如果下次您再次插入该设备,Strawberry将重新扫描所有歌曲。 + + + Delete files + 删除文件 + + + These files will be deleted from the device, are you sure you want to continue? + 将从设备中删除这些文件.确定删除吗? + + + + DeviceViewContainer + + Form + 表格 + + + + DynamicPlaylistControls + + Dynamic mode is on + 动态模式已开启 + + + New tracks will be added automatically. + 将会自动添加新的曲目。 + + + Expand + + + + Repopulate + + + + Turn off + 关闭 + + + + EditTagDialog + + Edit track information + 编辑曲目信息 + + + Summary + 总览 + + + Date created + 创建日期 + + + Art Automatic + + + + Date modified + 修改日期 + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + 文件类型 + + + Length + 长度 + + + Play count + 播放计数 + + + Bit depth + 位深 + + + EBU R 128 integrated loudness + + + + Bit rate + 位速率 + + + Skip count + 跳过计数 + + + Sample rate + 采样率 + + + Path + 路径 + + + Filename + 文件名 + + + Art Unset + + + + File size + 文件大小 + + + Art Manual + 艺术手册 + + + EBU R 128 loudness range + + + + Reset play counts + 重置播放计数 + + + Tags + 标签 + + + MenuPopupToolButton + + + + Change art + 更改图稿 + + + Embedded cover + + + + Disc + 盘片 + + + Grouping + 分组 + + + Album artist + 专辑艺术家 + + + Album + 专辑 + + + Year + 年份 + + + Title + 标题 + + + Artist + 艺术家 + + + Composer + 作曲家 + + + Complete tags automatically + 自动补全标签 + + + Genre + 流派 + + + Comment + 备注 + + + Performer + 表演者 + + + Compilation + 编译 + + + Track + 音轨 + + + Rating + + + + Lyrics + 歌词 + + + Complete lyrics automatically + 自动填写歌词 + + + Previous + 上一首 + + + Next + 下一首 + + + Saving tracks + 正在保存音轨 + + + Loading tracks + 正在载入曲目 + + + %1 songs selected. + 已选择 %1 首歌曲。 + + + kbps + + + + Unknown + 未知 + + + Yes + + + + No + + + + None + + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + 未设置封面 + + + Album cover editing is only available for collection songs. + 只有媒体库中的歌曲可编辑专辑封面。 + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + 从不 + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + 均衡器 + + + Preset: + 预设: + + + Save preset + 保存预设 + + + Delete preset + 删除预设 + + + Enable equalizer + 启用均衡器 + + + Enable stereo balancer + + + + Left + + + + Balance + 均衡 + + + Right + + + + Pre-amp + 前置放大 + + + Custom + 自定义 + + + Classical + 古典 + + + Club + 俱乐部 + + + Dance + 舞曲 + + + Full Bass + 重低音 + + + Full Treble + 高音 + + + Full Bass + Treble + 低音饱满 + 高音清丽 + + + Laptop/Headphones + 笔记本电脑/耳机 + + + Large Hall + 大礼堂 + + + Live + 直播 + + + Party + 晚会 + + + Pop + 流行 + + + Reggae + + + + Rock + 摇滚 + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + 00 + + + Name + 名称 + + + Are you sure you want to delete the "%1" preset? + 您确定要删除预设 %1 吗? + + + + EqualizerSlider + + Equalizer + 均衡器 + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + Strawberry 错误 + + + + FancyTabWidget + + Large sidebar + 大侧边栏 + + + Icons sidebar + + + + Small sidebar + 小侧边栏 + + + Plain sidebar + 普通侧边栏 + + + Tabs on top + 标签在上 + + + Icons on top + 图标在上 + + + + FileTypeItemDelegate + + Unknown + 未知 + + + + FileView + + Form + 表格 + + + + FileViewList + + Append to current playlist + 追加至当前播放列表 + + + Replace current playlist + 移除当前播放列表 + + + Open in new playlist + 在新播放列表中打开 + + + Copy to collection... + 复制到媒体库... + + + Move to collection... + 移动至媒体库... + + + Copy to device... + 复制到设备... + + + Delete from disk... + 从硬盘删除... + + + Edit track information... + 编辑曲目信息... + + + Show in file browser... + 在文件管理器中显示... + + + + FreeSpaceBar + + Available + 可用 + + + New songs + 新曲目 + + + Exceeded by + + + + Used + 已使用 + + + + GPodDevice + + Could not copy %1 to %2: %3 + 无法将 %1 复制到 %2: %3 + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + 正在载入 iPod 数据库 + + + An error occurred loading the iTunes database + 加载 iTunes 数据库时出错 + + + + GeniusLyricsProvider + + Genius Authentication + Genius 身份验证 + + + Please open this URL in your browser + 请在浏览器中打开这个 URL + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + 挂载点 + + + Device + 设备 + + + URI + + + + + GlobalShortcutGrabber + + Press a key + 按一个键 + + + Press a key combination to use for %1... + 请为 %1 按下新的组合键... + + + + GlobalShortcutsManager + + Play + 播放 + + + Pause + 暂停 + + + Play/Pause + 播放/暂停 + + + Stop + 停止 + + + Stop playing after current track + + + + Next track + 下一曲目 + + + Previous track + 上一首曲目 + + + Restart or previous track + + + + Increase volume + 提升音量 + + + Decrease volume + 降低音量 + + + Mute + 静音 + + + Seek forward + 向后查找 + + + Seek backward + 向前查找 + + + Show/Hide + 显示/隐藏 + + + Show OSD + 显示 OSD + + + Toggle Pretty OSD + + + + Change shuffle mode + 更改乱序模式 + + + Change repeat mode + 更改循环模式 + + + Enable/disable scrobbling + + + + Love + 喜欢 + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + 全局快捷键 + + + Use Gnome (GSD) shortcuts when available + + + + Open... + 打开... + + + Use MATE shortcuts when available + 使用 MATE 快捷键(如果可用) + + + Use KDE (KGlobalAccel) shortcuts when available + 使用 KDE(KGlobalAccel)快捷键(如果可用) + + + Use X11 shortcuts when available + 使用 X11 快捷键(如果可用) + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + 您需要在系统设置中开启"<span style=" font-style:italic;">控制您的电脑</span>"选项,允许Strawberry使用全局快捷键。 + + + Action + Category label + 操作 + + + Shortcut + 快捷键 + + + Shortcut for %1 + %1 的快捷键 + + + &None + 无(&N) + + + &Default + &默认 + + + &Custom + 自定义(&C) + + + Change shortcut... + 更改快捷键... + + + The "%1" command could not be started. + 命令"%1"无法执行。 + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + 不推荐在 %1 上使用 X11 快捷键,这可导致键盘失去响应! + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + 媒体库高级分组 + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + 媒体库分组... + + + First level + 第一阶段 + + + None + + + + Artist + 艺术家 + + + Album artist + 专辑艺术家 + + + Album + 专辑 + + + Album - Disc + 专辑 - 碟片 + + + Disc + 盘片 + + + Format + 格式 + + + Genre + 流派 + + + Year + 年份 + + + Year - Album + 年份 - 专辑 + + + Year - Album - Disc + 年份 - 专辑 - 碟片 + + + Original year + 原始年代 + + + Original year - Album + 原始年份 - 专辑 + + + Composer + 作曲家 + + + Performer + 表演者 + + + Grouping + 分组 + + + File type + 文件类型 + + + Sample rate + 采样率 + + + Bit depth + 位深 + + + Bitrate + + + + Second level + 第二阶段 + + + Third level + 第三阶段 + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + 缓冲中 + + + + LastFMImport + + Missing username, please login to last.fm first! + 缺失用户民,请先登录到 Last.fm! + + + + LastFMImportDialog + + Import data from last.fm + 从 Last.fm 导入数据 + + + Choose data to import from last.fm + 选择从 Last.fm 导入的数据 + + + Last played + + + + Play counts + 播放计数 + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + 启动! + + + Close + 关闭 + + + Cancel + 取消 + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + 从不 + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + ListenBrainz 认证 + + + Please open this URL in your browser + 请在浏览器中打开这个 URL + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + 表格 + + + You are not signed in. + 您未登录。 + + + Sign out + 注销 + + + Signing in... + 登录... + + + You are signed in. + 您已经登录。 + + + You are signed in as %1. + 您已经作为%1登录。 + + + Expires on %1 + 于 %1 过期 + + + + LyricsSettingsPage + + Lyrics + 歌词 + + + Lyrics providers + 歌词提供方 + + + Choose the providers you want to use when searching for lyrics. + 选择想要的歌词搜索提供方。 + + + Move up + 上移 + + + Move down + 下移 + + + Authentication + 验证 + + + Login + 登录 + + + No provider selected. + 未选择提供方。 + + + Authentication failed + 认证失败 + + + + MainWindow + + Strawberry Music Player + Strawberry 音乐播放器 + + + MenuPopupToolButton + + + + &Music + 音乐(&M) + + + P&laylist + 播放列表(&L) + + + Help + 帮助 + + + &Tools + 工具(&T) + + + Previous track + 上一首曲目 + + + F5 + + + + &Play + 播放(&P) + + + F6 + + + + &Stop + 停止(&S) + + + F7 + + + + &Next track + 下一曲目(&N) + + + F8 + + + + &Quit + 退出(&Q) + + + Ctrl+Q + Ctrl+Q + + + Stop after this track + 在此曲目后停止 + + + Ctrl+Alt+V + Ctrl+Alt+V + + + Love + 喜欢 + + + &Clear playlist + 清空播放列表(&C) + + + Clear playlist + 清空播放列表 + + + Ctrl+K + Ctrl+K + + + Edit track information... + 编辑曲目信息... + + + Ctrl+E + Ctrl+E + + + Renumber tracks in this order... + 以此顺序为曲目重新编号... + + + Set value for all selected tracks... + 为全部选中的曲目设置值... + + + Edit tag... + 编辑标签... + + + &Settings... + 设置(&S)... + + + Ctrl+P + Ctrl+P + + + &About Strawberry + 关于 Strawberry(&A) + + + F1 + + + + S&huffle playlist + 乱序播放列表(&H) + + + Ctrl+H + Ctrl+H + + + &Add file... + 添加文件(&A)... + + + Ctrl+Shift+A + Ctrl+Shift+A + + + &Open file... + 打开文件(&O)... + + + Open audio &CD... + 打开音频 &CD... + + + &Cover Manager + 封面管理器(&C) + + + C&onsole + + + + &Shuffle mode + 随机播放模式(&S) + + + &Repeat mode + 循环模式(&R) + + + Remove from playlist + 从播放列表中移除 + + + &Equalizer + 均衡器(&E) + + + &Transcode Music + 转码音乐(&T) + + + Add &folder... + 添加文件夹(&F)... + + + &Jump to the currently playing track + 跳到当前正在播放的曲目(&J) + + + Ctrl+J + Ctrl+J + + + &New playlist + 新建播放列表(&N) + + + Ctrl+N + Ctrl+N + + + Save &playlist... + 保存播放列表(&P)... + + + Ctrl+S + Ctrl+S + + + &Load playlist... + 加载播放列表(&L)... + + + Ctrl+Shift+O + Ctrl+Shift+O + + + &Save all playlists... + + + + Go to next playlist tab + 转到下一播放列表标签 + + + Go to previous playlist tab + 转到上一播放列表标签 + + + &Update changed collection folders + 更新已更改的媒体库文件夹(&U) + + + About &Qt + 关于 &Qt + + + &Mute + 静音(&M) + + + Ctrl+M + Ctrl+M + + + &Do a full collection rescan + 完全重新扫描媒体库(&D) + + + Stop collection scan + + + + Complete tags automatically... + 自动补全标签... + + + Ctrl+T + Ctrl+T + + + Toggle scrobbling + 切换歌曲记录 + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + 添加文件至转码器 + + + Add file to transcoder + 添加文件至转码器 + + + Add stream... + 添加流... + + + Show sidebar + 显示侧边栏 + + + Import data from last.fm... + 从 Last.fm 导入数据... + + + All Files (*) + 全部文件 (*) + + + Context + 上下文 + + + Collection + 媒体库 + + + Queue + + + + Playlists + 播放列表 + + + Smart playlists + 智能播放列表 + + + Files + 文件 + + + Radios + + + + Devices + 设备 + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + 显示所有歌曲 + + + Show only duplicates + 只显示重复 + + + Show only untagged + 只显示未加标签的 + + + Configure collection... + 配置媒体库... + + + Play + 播放 + + + Toggle queue status + 切换队列状态 + + + Queue selected tracks to play next + + + + Toggle skip status + + + + Rescan song(s)... + 重新扫描歌曲... + + + Copy URL(s)... + 复制 URL... + + + Show in collection... + 在媒体库中显示... + + + Show in file browser... + 在文件管理器中显示... + + + Organize files... + 整理文件... + + + Copy to collection... + 复制到媒体库... + + + Move to collection... + 移动至媒体库... + + + Copy to device... + 复制到设备... + + + Delete from disk... + 从硬盘删除... + + + Check for updates... + 检查更新... + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + 暂停 + + + Dequeue track + 移除曲目 + + + Dequeue selected tracks + 移除选定曲目 + + + Queue track + 加入队列 + + + Queue selected tracks + 将选定曲目加入队列 + + + Queue to play next + + + + Unskip track + 取消掠过曲目 + + + Unskip selected tracks + 取消略过的选定曲目 + + + Skip track + 跳过曲目 + + + Skip selected tracks + 跳过所选择的曲目 + + + Set %1 to "%2"... + 将 %1 设置为 %2... + + + Edit tag "%1"... + 编辑标签 "%1"... + + + Add to another playlist + 添加到另一播放列表 + + + New playlist + 新建播放列表 + + + Add file + 添加文件 + + + Music + 音乐 + + + Add folder + 添加文件夹 + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + 错误 + + + None of the selected songs were suitable for copying to a device + 已选择的曲目均不适合复制到设备 + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + 已更新Strawberry,由于添加了如下特性,您需要更新您的收藏: + + + Would you like to run a full rescan right now? + 您要立即做个全部重新扫描? + + + Collection rescan notice + 重新扫描媒体库提示 + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + 不再显示此消息。 + + + + MimeData + + Playlist + 播放列表 + + + + MoodbarProxyStyle + + Show moodbar + 显示情绪栏 + + + Moodbar style + 情绪栏风格 + + + + MoodbarSettingsPage + + Moodbar + 情绪栏 + + + Show a moodbar in the track progress bar + 在曲目进度条中显示情绪栏 + + + Moodbar style + 情绪栏风格 + + + Save the .mood files directly in the songs folders + 直接保存 .mood 文件到歌曲文件夹 + + + Enabled + 已启用 + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + 正在载入 MTP 设备 + + + Error connecting MTP device %1 + 连接 MTP 设备 %1 时发生错误 + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + 网络代理 + + + &Use the system proxy settings + 使用系统代理设置(&U) + + + Direct internet connection + 直接连接到互联网 + + + &Manual proxy configuration + 手动代理配置(&M) + + + HTTP proxy + HTTP 代理 + + + SOCKS proxy + SOCKS 代理 + + + Port + 端口 + + + Use authentication + 使用认证 + + + Username + 用户名 + + + Password + 密码 + + + Use proxy settings for streaming + 使用串流代理设置 + + + + NotificationsSettingsPage + + Notifications + 通知 + + + Strawberry can show a message when the track changes. + Strawberry 可在曲目发生变化时显示提示。 + + + Notification type + 通知类型 + + + Disabled + Refers to a disabled notification type in Notification settings. + 禁用 + + + Show a &native desktop notification + 显示原生桌面通知(&N) + + + Show a pretty OSD + 显示漂亮的 OSD + + + Show a popup fro&m the system tray + 从系统托盘显示悬浮窗(&M) + + + General settings + 常规设置 + + + Popup duration + 弹出时长 + + + seconds + + + + Disable duration + 关闭时长 + + + Show a notification when I change the volume + 改变音量是显示通知 + + + Show a notification when I change the repeat/shuffle mode + 在我更改了循环播放模式时弹出通知 + + + Show a notification when I pause playback + 在暂停播放时显示通知 + + + Show a notification when I resume playback + 在恢复播放时显示通知 + + + Include album art in the notification + 在通知中加入专辑封面 + + + Custom message settings + 自定义消息设置 + + + Use a custom message for notifications + 自定义通告信息 + + + Preview + 预览 + + + MenuPopupToolButton + + + + Summary + 总览 + + + Body + 通知正文 + + + Pretty OSD options + 漂亮的 OSD 选项 + + + Background color + 背景颜色 + + + Text options + 文本设置 + + + Choose font... + 选择字体... + + + Choose color... + 选择颜色... + + + Background opacity + 背景透明度 + + + Basic Blue + 基础蓝 + + + Strawberry Red + + + + Custom... + 自定义... + + + Enable fading + 启用淡入淡出 + + + Add song artist tag + 添加歌曲艺术家标签 + + + Add song album tag + 添加歌曲专辑标签 + + + Add song title tag + 添加歌曲标题标签 + + + Add song albumartist tag + 添加歌曲专辑作者标签 + + + Add song year tag + 添加歌曲年份标签 + + + Add song composer tag + 添加歌曲作曲家标签 + + + Add song performer tag + 添加歌曲表演者标签 + + + Add song grouping tag + 添加歌曲分组标签 + + + Add song disc tag + 添加歌曲盘片标签 + + + Add song track tag + 添加歌曲曲目标签 + + + Add song genre tag + 添加歌曲流派标签 + + + Add song length tag + 添加歌曲长度标签 + + + Add song play count + 统计音乐播放次数 + + + Add song skip count + 统计跳过歌曲的次数 + + + Add song rating + 添加歌曲评级 + + + Add a new line if supported by the notification type + 如果支持此通知类型,则添加一个新行 + + + %filename% + + + + Add song filename + 添加音乐文件 + + + %url% + + + + Add song URL + 添加歌曲链接 + + + %originalyear% + + + + Add song original year tag + 添加歌曲的原始年份标签 + + + OSD Preview + OSD 预览 + + + Drag to reposition + 拖拽以重新定位 + + + + OSDBase + + disc %1 + 盘片%1 + + + track %1 + 曲目 %1 + + + Paused + 已暂停 + + + Stopped + 已停止 + + + Stop playing after track: %1 + 播完曲目 %1 后停止 + + + On + 打开 + + + Off + 关闭 + + + Playlist finished + 已完成播放列表 + + + Volume %1% + 音量 %1% + + + Don't shuffle + 不随机播放 + + + Shuffle all + 乱序全部 + + + Shuffle tracks in this album + 此专辑的曲目乱序播放 + + + Shuffle albums + 乱序专辑 + + + Don't repeat + 不循环播放 + + + Repeat track + 单曲循环 + + + Repeat album + 专辑循环 + + + Repeat playlist + 播放列表循环 + + + Stop after every track + 播放每个曲目前停止 + + + Intro tracks + 代表曲目 + + + + Organize + + Organizing files + 正在整理文件 + + + + OrganizeDialog + + Organize Files + 整理文件 + + + Destination + 目标 + + + After copying... + 复制后... + + + Keep the original files + 保留原始文件 + + + Delete the original files + 删除原始文件 + + + Naming options + 命名选项 + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + <p>变量标记以%开头,例如: %artist %album %title </p> + +<p>如果您用花括号"{}"将含有标记的部分文本括起来,此部分在标记内容为空时将自动隐藏。</p> + + + Insert... + 插入... + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + + + + Restrict characters to ASCII + + + + Allow extended ASCII characters + 允许扩展 ASCII 字符 + + + Replace spaces with underscores + + + + Overwrite existing files + 覆盖已存在的文件 + + + Copy album cover artwork + 复制专辑封面图稿 + + + Preview + 预览 + + + Loading... + 正在载入... + + + Safely remove the device after copying + 复制后安全移除设备 + + + Title + 标题 + + + Album + 专辑 + + + Artist + 艺术家 + + + Artist's initial + 艺术家名字的首字母 + + + Album artist + 专辑艺术家 + + + Composer + 作曲家 + + + Performer + 表演者 + + + Grouping + 分组 + + + Track + 音轨 + + + Disc + 盘片 + + + Year + 年份 + + + Original year + 原始年代 + + + Genre + 流派 + + + Comment + 备注 + + + Length + 长度 + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + 采样率 + + + Bit depth + 位深 + + + File extension + 文件扩展名 + + + + OrganizeErrorDialog + + Error copying songs + 复制曲目出错 + + + There were problems copying some songs. The following files could not be copied: + 复制歌曲出错。以下歌曲无法复制: + + + Error deleting songs + 删除曲目出错 + + + There were problems deleting some songs. The following files could not be deleted: + 删除歌曲出错。以下歌曲无法删除: + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + 小专辑封面 + + + Large album cover + 大专辑封面 + + + Fit cover to width + 适应封面到等宽 + + + Show above status bar + 在状态栏之上显示 + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + 标题 + + + Artist + 艺术家 + + + Album + 专辑 + + + Track + 音轨 + + + Disc + 盘片 + + + Length + 长度 + + + Year + 年份 + + + Original Year + + + + Genre + 流派 + + + Album Artist + + + + Composer + 作曲家 + + + Performer + 表演者 + + + Grouping + 分组 + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + 位深 + + + Bitrate + + + + File Name + 文件名 + + + File Name (without path) + 文件名(无路径) + + + File Size + 文件大小 + + + File Type + 文件类型 + + + Date Modified + 修改日期 + + + Date Created + 创建日期 + + + Comment + 备注 + + + Source + 来源 + + + Mood + 情绪 + + + Rating + + + + CUE + CUE + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + 表格 + + + Undo + + + + Redo + + + + Playlist + 播放列表 + + + Load playlist + 载入播放列表 + + + No matches found. Clear the search box to show the whole playlist again. + 无匹配。清空搜索框以重新显示整个播放列表。 + + + + PlaylistDelegateBase + + stop + 停止 + + + + PlaylistGeneratorInserter + + Loading smart playlist + 正在加载智能播放列表 + + + + PlaylistHeader + + &Hide... + 隐藏(&H)... + + + &Stretch columns to fit window + 拉伸栏以适应窗口(&S) + + + &Reset columns to default + 重置列为默认(&R) + + + &Lock rating + 锁定评分(&L) + + + &Align text + 对齐文本(&A) + + + &Left + 左对齐(&L) + + + &Center + 居中(&C) + + + &Right + 右对齐(&R) + + + &Hide %1 + 隐藏 %1(&H) + + + + PlaylistListContainer + + Form + 表格 + + + New folder + 创建新文件夹 + + + Delete + 删除 + + + Save playlist + Save playlist menu action. + 保存播放列表 + + + Copy to device... + 复制到设备... + + + Enter the name of the folder + 输入文件夹名字 + + + Playlist + 播放列表 + + + Copy to device + 复制到设备 + + + Playlist must be open first. + 必须先打开播放列表。 + + + Remove playlists + 删除播放列表 + + + You are about to remove %1 playlists from your favorites, are you sure? + 您正试图从收藏夹中删除播放列表 %1 ,确定要这样做吗? + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + 您可以通过点击播放列表名称旁的星标来收藏播放列表 + + + Favorited playlists will be saved here + 收藏的播放列表将被保存至此 + + + + PlaylistManager + + Playlist + 播放列表 + + + Couldn't create playlist + 无法创建列表 + + + Save playlist + Title of the playlist save dialog. + 保存播放列表 + + + Unknown playlist extension + 未知的播放列表扩展名 + + + Unknown file extension for playlist. + + + + %1 selected of + %1 选定 + + + %n track(s) + + + + + + Unknown + 未知 + + + Various artists + 群星 + + + + PlaylistParser + + All playlists (%1) + 全部播放列表 (%1) + + + %1 playlists (%2) + %1 播放列表 (%2) + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + 目录 %1 不存在。 + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + 播放列表选项 + + + File paths + 文件路径 + + + This can be changed later through the preferences + 此项可以稍后在首选项中进行更改 + + + Remember my choice + 记住我的选择 + + + Automatic + 自动 + + + Relative + 相关 + + + Absolute + 绝对 + + + + PlaylistSequence + + Repeat + 循环 + + + Shuffle + 乱序 + + + Don't repeat + 不循环播放 + + + Repeat track + 单曲循环 + + + Repeat album + 专辑循环 + + + Repeat playlist + 播放列表循环 + + + Stop after each track + 播放完每个曲目后停止 + + + Intro tracks + 代表曲目 + + + Don't shuffle + 不随机播放 + + + Shuffle tracks in this album + 此专辑的曲目乱序播放 + + + Shuffle all + 乱序全部 + + + Shuffle albums + 乱序专辑 + + + + PlaylistSettingsPage + + Playlist + 播放列表 + + + Use alternating row colors + 使用备用行颜色 + + + Show bars on the currently playing track + 在当前正在播放的音轨上显示栏 + + + Show a glowing animation on the currently playing track + 在当前播放的曲目上显示发光动画 + + + Warn me when closing a playlist tab + 关闭播放列表标签时,提示我 + + + Continue to the next item in the playlist if a song is unavailable + 如果歌曲不可用,继续播放列表中的下一项目 + + + Grey out unavailable songs in playlists on playback + + + + Grey out unavailable songs in playlists on startup + + + + Automatically select current playing track + 自动选择当前播放曲目 + + + Enable playlist toolbar + 启用播放列表工具栏 + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + 插入歌曲时播放列表自动排序 + + + When saving a playlist, file paths should be + 保存播放列表时,保存路径应该为 + + + A&utomatic + 自动(&U) + + + Absolu&te + + + + Re&lative + + + + As&k when saving + 保存时询问(&L) + + + Metadata + 元数据 + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + 如果选择启用,在播放列表中点击一个已选择的歌曲则会直接打开标签编辑 + + + Enable song metadata inline edition with click + 启用单击后行内编辑元数据 + + + Write metadata when saving playlists + + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + 关闭播放列表 + + + Rename playlist... + 重命名播放列表... + + + Save playlist... + 保存播放列表... + + + Rename playlist + 重命名播放列表 + + + Enter a new name for this playlist + 输入播放列表的新名称 + + + Remove playlist + 删除播放列表 + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + 您正试图删除未收藏的播放列表: 此播放列表将被真正删除 (此操作无法撤销)。 +您确定要继续吗? + + + Warn me when closing a playlist tab + 关闭播放列表标签时,提示我 + + + This option can be changed in the "Behavior" preferences + 这些选项可以在“行为”设置中修改 + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + 播放列表 + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + 添加 %n 首曲目 + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + 移动 %n 首歌 + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + 移除 %n 首歌 + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + 乱序歌曲 + + + + PlaylistUndoCommands::SortItems + + sort songs + 排序歌曲 + + + + PlaylistView + + Hz + 赫兹 + + + Bit + + + + kbps + + + + + QObject + + Usage + 用法 + + + options + 选项 + + + URL(s) + URL + + + Player options + 播放器选项 + + + Start the playlist currently playing + 开始播放当前播放列表 + + + Play if stopped, pause if playing + 若停止则播放,若播放则停止 + + + Pause playback + 暂停播放 + + + Stop playback + 停止播放 + + + Stop playback after current track + 播放完此曲目后停止 + + + Skip backwards in playlist + 在播放列表中后退 + + + Skip forwards in playlist + 在播放列表中前进 + + + Set the volume to <value> percent + 设置音量为 <value>% + + + Increase the volume by 4 percent + 将音量提升 4 % + + + Decrease the volume by 4 percent + 将音量降低 4 % + + + Increase the volume by <value> percent + 将音量提升 <value>% + + + Decrease the volume by <value> percent + 将音量降低 <value> % + + + Seek the currently playing track to an absolute position + 当前播放的曲目快进/快退至指定时间点 + + + Seek the currently playing track by a relative amount + 当前播放的曲目以相对步长快进/快退 + + + Restart the track, or play the previous track if within 8 seconds of start. + 重播当前曲目,如果曲目开播不足 8 秒钟则播放上一曲。 + + + Playlist options + 播放列表选项 + + + Create a new playlist with files + 用文件创建新播放列表 + + + Append files/URLs to the playlist + 添加文件/URL 到播放列表 + + + Loads files/URLs, replacing current playlist + 载入文件或 URL,替换当前播放列表 + + + Play the <n>th track in the playlist + 播放列表中的第 <n> 首 + + + Play given playlist + + + + Other options + 其它选项 + + + Display the on-screen-display + 显示屏幕显示 + + + Toggle visibility for the pretty on-screen-display + 切换 OSD 可见性 + + + Change the language + 更改语言 + + + Resize the window + 重设窗口大小 + + + Equivalent to --log-levels *:1 + 相当于 --log-levels *:1 + + + Equivalent to --log-levels *:3 + 相当于 --log-levels *:3 + + + Comma separated list of class:level, level is 0-3 + class:level 列表用逗号分隔,level 范围 0-3 + + + Print out version information + 输出版本信息 + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + 目标文件 %1 存在,但不允许覆盖。 + + + Destination file %1 exists, but not allowed to overwrite + 目标文件 %1 存在,但不允许覆盖 + + + Could not copy file %1 to %2. + + + + Unknown + 未知 + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + + + + 1 day + 1 天 + + + %1 days + %1 天 + + + Today + 今日 + + + Yesterday + 昨天 + + + %1 days ago + %1 天前 + + + Tomorrow + 明天 + + + In %1 days + 在 %1 天内 + + + Next week + 下一周 + + + In %1 weeks + %1 周内 + + + Show in file browser + 在文件管理器中显示 + + + Too many songs selected. + + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + 已选择 %2 个不同文件夹中的 %1 首歌曲,确定要全部打开他们吗? + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + 未知错误 + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + 可用范围 + + + after + + + + before + + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + + + + contains + + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + + + + not empty + + + + Comment + 备注 + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + 小时 + + + Days + + + + Weeks + 星期 + + + Months + 月份 + + + Years + 年份 + + + Normal + 正常 + + + Angry + 生气 + + + Frozen + 冻结 + + + Happy + 高兴 + + + System colors + 系统颜色 + + + + QWidget + + Clear + 清除 + + + Reset + 重置 + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 正在搜索... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 没有匹配项。 + + + Unknown error + 未知错误 + + + + QobuzService + + Authenticating... + 正在验证... + + + Maximum number of login attempts reached. + + + + Missing Qobuz app ID. + 缺失 Qobuz 应用 ID。 + + + Missing Qobuz username. + 缺失 Qobuz 用户名。 + + + Missing Qobuz password. + 缺失 Qobuz 密码。 + + + Not authenticated with Qobuz. + 未通过 Qobuz 认证。 + + + Missing Qobuz app ID or secret. + 缺失 Qobuz 应用 ID 或密钥。 + + + + QobuzSettingsPage + + Qobuz + + + + Enable + 启用 + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + 验证 + + + App ID + 应用账号 + + + Username + 用户名 + + + Password + 密码 + + + App Secret + 应用秘密 + + + Login + 登录 + + + Preferences + 首选项 + + + Audio format + 音频格式 + + + Search delay + 延迟搜索 + + + ms + + + + Artists search limit + 艺术家搜索限制条件 + + + Albums search limit + 专辑搜索限制 + + + Songs search limit + + + + Download album covers + 下载专辑封面 + + + Base64 encoded secret + + + + Configuration incomplete + 配置不完整 + + + Missing app id. + 缺失应用 ID。 + + + Missing username. + 缺失用户名。 + + + Missing password. + 缺失密码。 + + + Authentication failed + 认证失败 + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + 缺失 Qobuz 应用 ID 或密钥。 + + + Cancelled. + 已取消。 + + + + Queue + + %n track(s) + + + + + + + QueueView + + QueueView + + + + Move down + 下移 + + + Ctrl+Up + Ctrl+上 + + + Move up + 上移 + + + Ctrl+Down + Ctrl+下 + + + Remove + 移除 + + + Clear + 清除 + + + Ctrl+K + Ctrl+K + + + + RadioParadiseService + + Getting %1 channels + 正在获取 %1 频道 + + + + RadioView + + Append to current playlist + 追加至当前播放列表 + + + Replace current playlist + 移除当前播放列表 + + + Open in new playlist + 在新播放列表中打开 + + + Open homepage + 打开主页 + + + Donate + 捐赠 + + + Refresh channels + + + + + RadioViewContainer + + Form + 表格 + + + + SCollection + + Saving playcounts and ratings + 正在保存播放计数和评分 + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + 选择播放列表目录 + + + Directory does not exist. + 目录不存在。 + + + + SavedGroupingManager + + Saved Grouping Manager + 已保存的分组管理器 + + + Remove + 移除 + + + Ctrl+Up + Ctrl+上 + + + Name + 名称 + + + First level + 第一阶段 + + + Second Level + 第二等级 + + + Third Level + 第三等级 + + + None + + + + Album artist + 专辑艺术家 + + + Artist + 艺术家 + + + Album + 专辑 + + + Album - Disc + 专辑 - 碟片 + + + Year - Album + 年份 - 专辑 + + + Year - Album - Disc + 年份 - 专辑 - 碟片 + + + Original year - Album + 原始年份 - 专辑 + + + Original year - Album - Disc + 原始年份 - 专辑 - 碟片 + + + Disc + 盘片 + + + Year + 年份 + + + Original year + 原始年代 + + + Genre + 流派 + + + Composer + 作曲家 + + + Performer + 表演者 + + + Grouping + 分组 + + + File type + 文件类型 + + + Format + 格式 + + + Sample rate + 采样率 + + + Bit depth + 位深 + + + Bitrate + + + + Unknown + 未知 + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + 启用 + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + + + + Show love button + 显示喜欢按钮 + + + Submit scrobbles every + + + + seconds + + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + + + + Show dialog for errors + 显示错误对话框 + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + 媒体库 + + + Subsonic + + + + Local file + 本地文件 + + + Tidal + + + + Device + 设备 + + + Qobuz + + + + CDDA + CDDA + + + SomaFM + + + + Stream + 流媒体 + + + Radio Paradise + + + + Unknown + 未知 + + + Last.fm + + + + Login + 登录 + + + Libre.fm + + + + Listenbrainz + + + + User token: + 用户令牌: + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + + + + Open URL in web browser? + 要在网页浏览器中打开 URL 吗? + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + + + + Could not open URL. Please open this URL in your browser + + + + Invalid reply from web browser. Missing token. + + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + 设置 + + + General + 一般 + + + User interface + 用户界面 + + + Streaming + 串流 + + + + SmartPlaylistQuerySearchPage + + Form + 表格 + + + Search mode + 搜索模式 + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + 包括所有歌曲 + + + Search terms + 搜索条件 + + + + SmartPlaylistQuerySortPage + + Form + 表格 + + + Sorting + 排序 + + + Put songs in a random order + 以随机顺序排布歌曲 + + + Sort songs by + + + + Limits + + + + Show all the songs + 显示所有歌曲 + + + Only show the first + 只在第一次启动时显示 + + + songs + 首曲目 + + + + SmartPlaylistQueryWizardPlugin + + Collection search + 媒体库搜索 + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + 搜索条件 + + + A song will be included in the playlist if it matches these conditions. + 如果歌曲满足这些条件,则播放列表将会包含其在内。 + + + Search options + 搜索选项 + + + Choose how the playlist is sorted and how many songs it will contain. + 选择播放列表排序方式和包含的歌曲数目。 + + + + SmartPlaylistSearchPreview + + Form + 表格 + + + Preview + 预览 + + + Loading... + 正在载入... + + + %1 songs found (showing %2) + 找到了 %1 首歌曲(正在显示 %2) + + + %1 songs found + 找到 %1 首歌曲 + + + + SmartPlaylistSearchTermWidget + + Form + 表格 + + + and + + + + ago + + + + The second value must be greater than the first one! + 第二个数值必须比第一个数值大! + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + 添加搜索条件 + + + + SmartPlaylistWizard + + Smart playlist + 智能播放列表 + + + Playlist type + 播放列表类型 + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + 智能播放列表是从媒体库生成的动态歌曲列表。不同类型的智能播放列表提供不同的歌曲选择方式。 + + + Finish + 完成 + + + Choose a name for your smart playlist + 选择智能播放列表的名称 + + + + SmartPlaylistWizardFinishPage + + Form + 表格 + + + Name + 名称 + + + Use dynamic mode + 使用动态模式 + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + 最新添加的曲目 + + + 50 random tracks + + + + Ever played + + + + Never played + 从未播放过 + + + Last played + + + + Most played + 最常播放 + + + Favourite tracks + + + + All tracks + 所有曲目 + + + Dynamic random mix + + + + + SmartPlaylistsViewContainer + + New smart playlist + 新建智能播放列表 + + + Edit smart playlist + 编辑智能播放列表 + + + Delete smart playlist + 删除智能播放列表 + + + New smart playlist... + 新建智能播放列表... + + + Append to current playlist + 追加至当前播放列表 + + + Replace current playlist + 移除当前播放列表 + + + Open in new playlist + 在新播放列表中打开 + + + Queue track + 加入队列 + + + Play next + 播放下一首 + + + Edit smart playlist... + 编辑智能播放列表... + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + 对于Ubuntu来说,有一个官方的PPA仓库,可在 %1 上使用。 + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + Debian 和 Ubuntu 有本软件的官方版本可用,同时也支持它们大多数的衍生发行版。参阅 %1 了解详情。 + + + For a better experience please consider the other options above. + 为了更好的体验,请考虑上述其他选项。 + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + 正在获取 %1 频道 + + + + SongLoader + + You need GStreamer for this URL. + + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + 只有 GStreamer 引擎可使用 CD 回放。 + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + + + + Loading tracks + 正在载入曲目 + + + Loading tracks info + 正在加载曲目信息 + + + + SpotifyRequest + + Authenticating... + 正在验证... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 正在搜索... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 没有匹配项。 + + + Data missing error + 数据缺失错误 + + + + SpotifyService + + Spotify Authentication + Spotify 认证 + + + Please open this URL in your browser + 请在浏览器中打开这个 URL + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + 启用 + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + 首选项 + + + Search delay + 延迟搜索 + + + ms + + + + Artists search limit + 艺术家搜索限制条件 + + + Albums search limit + 专辑搜索限制 + + + Songs search limit + + + + Download album covers + 下载专辑封面 + + + Fetch entire albums when searching songs + + + + Authentication failed + 认证失败 + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + 点击此处检索音乐 + + + Append to current playlist + 追加至当前播放列表 + + + Replace current playlist + 移除当前播放列表 + + + Open in new playlist + 在新播放列表中打开 + + + Queue track + 加入队列 + + + Queue to play next + + + + Remove from favorites + + + + + StreamingCollectionViewContainer + + Form + 表格 + + + Close + 关闭 + + + Abort + 中止 + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + 群星 + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + + + + albums + 专辑 + + + songs + + + + Enter search terms above to find music + + + + Configure %1... + 配置 %1 ... + + + Append to current playlist + 追加至当前播放列表 + + + Replace current playlist + 移除当前播放列表 + + + Open in new playlist + 在新播放列表中打开 + + + Queue track + 加入队列 + + + Add to artists + 添加到艺术家 + + + Add to albums + 添加到专辑 + + + Add to songs + 添加到歌曲 + + + Search for this + + + + Group by + 分组 + + + + StreamingSongsView + + Configure %1... + 配置 %1 ... + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + 艺术家 + + + Albums + 专辑 + + + Songs + + + + Search + 搜索 + + + Configure %1... + 配置 %1 ... + + + + SubsonicRequest + + Retrieving albums... + 正在检索专辑... + + + Retrieving songs for %1 album... + 正在检索 %1 张专辑的歌曲... + + + Retrieving songs for %1 albums... + 正在检索 %1 张专辑的歌曲... + + + Retrieving album cover for %1 album... + 正在检索 %1 张专辑的封面... + + + Retrieving album covers for %1 albums... + 正在检索 %1 张专辑的封面... + + + Unknown error + 未知错误 + + + + SubsonicService + + Server URL is invalid. + 无效的服务器 URL。 + + + Missing username or password. + 缺失用户名或密码。 + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + 启用 + + + Server URL + 服务器 URL + + + Authentication + 验证 + + + Username + 用户名 + + + Password + 密码 + + + Authentication method: + 认证方式: + + + Hex + 十六进制 + + + MD5 token (Recommended) + + + + Preferences + 首选项 + + + Use HTTP/2 when possible + 使用 HTTP/2(如果可能) + + + Verify server certificate + 验证服务器证书 + + + Download album covers + 下载专辑封面 + + + Server-side scrobbling + + + + Test + 测试 + + + Delete songs + 删除歌曲 + + + Configuration incomplete + 配置不完整 + + + Missing server url, username or password. + 缺失服务器 URL、用户名或密码。 + + + Configuration incorrect + 配置不正确 + + + Server URL is invalid. + 无效的服务器 URL。 + + + Test successful! + 测试成功! + + + Test failed! + 测试失败! + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + 无效的 Subsonic 服务器 URL。 + + + Missing Subsonic username or password. + 缺失 Subsonic 用户名或密码。 + + + + SystemTrayIcon + + Pause + 暂停 + + + Play + 播放 + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + 歌曲指纹 + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + 正在验证... + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + 正在搜索... + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + 没有匹配项。 + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + 缺失 Tidal API 令牌。 + + + Missing Tidal username. + 缺失 Tidal 用户名。 + + + Missing Tidal password. + 缺失 Tidal 密码。 + + + Not authenticated with Tidal and reached maximum number of login attempts. + 未通过 Tidal 进行身份验证,且已达到最大登录尝试次数。 + + + Not authenticated with Tidal. + 未通过 Tidal 认证。 + + + Missing Tidal API token, username or password. + 缺失 Tidal API 令牌、用户名或密码。 + + + + TidalSettingsPage + + Tidal + + + + Enable + 启用 + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + 验证 + + + Use OAuth + 使用 OAuth + + + Client ID + 客户端 ID + + + API Token + API 令牌 + + + Username + 用户名 + + + Password + 密码 + + + Login + 登录 + + + Preferences + 首选项 + + + Audio quality + 音频质量 + + + Search delay + 延迟搜索 + + + ms + + + + Artists search limit + 艺术家搜索限制条件 + + + Albums search limit + 专辑搜索限制 + + + Songs search limit + + + + Download album covers + 下载专辑封面 + + + Fetch entire albums when searching songs + + + + Album cover size + 专辑封面尺寸 + + + Stream URL method + 流媒体 URL 方式 + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + 配置不完整 + + + Missing Tidal client ID. + 缺失 Tidal 客户端 ID。 + + + Missing API token. + 缺失 API 令牌。 + + + Missing username. + 缺失用户名。 + + + Missing password. + 缺失密码。 + + + Authentication failed + 认证失败 + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + 未通过 Tidal 认证。 + + + Missing Tidal API token, username or password. + 缺失 Tidal API 令牌、用户名或密码。 + + + Cancelled. + 已取消。 + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + 标签提取程序 + + + Sorry + 抱歉 + + + Strawberry was unable to find results for this file + Strawberry 无法为此文件查找结果 + + + Select best possible match + 选择最可能的匹配项 + + + Track + 音轨 + + + Year + 年份 + + + Title + 标题 + + + Artist + 艺术家 + + + Album + 专辑 + + + Previous + 上一首 + + + Next + 下一首 + + + Original tags + 原始标签 + + + Suggested tags + 推荐标签 + + + Saving tracks + 正在保存音轨 + + + + TrackSlider + + Form + 表格 + + + 0:00:00 + + + + Click to toggle between remaining time and total time + 单击切换剩余时间和总计时间模式 + + + + TranscodeDialog + + Transcode Music + 音乐转码 + + + Files to transcode + 要转换的文件 + + + Filename + 文件名 + + + Directory + 目录 + + + Add... + 添加... + + + Remove + 移除 + + + Add all tracks from a directory and all its subdirectories + 添加目录及其子目录的所有曲目 + + + Import... + 导入... + + + Output options + 输出选项 + + + Audio format + 音频格式 + + + Options... + 选项... + + + Destination + 目标 + + + Alongside the originals + 原始歌曲同一目录下 + + + Select... + 选择…… + + + Progress + 进度 + + + Details... + 详情... + + + Clear + 清除 + + + Start transcoding + 开始转换 + + + %n remaining + + %n 剩余 + + + + %n finished + + %n 完成 + + + + %n failed + + %n 失败 + + + + Add files to transcode + 添加需转码文件 + + + Music + 音乐 + + + Open a directory to import music from + 打开目录导入音乐 + + + Add folder + 添加文件夹 + + + + TranscodeLogDialog + + Transcoder Log + 转换日志 + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + 无法创建GStreamer元素 "%1" - 请确认您已安装了所需GStreamer插件 + + + Successfully written %1 + 成功写入 %1 + + + Transcoding %1 files using %2 threads + 正在转码 %1 个文件,占用线程 %2 个 + + + Error processing %1: %2 + 处理 %1 出错:%2 + + + Starting %1 + 正在开始 %1 + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + 无法找到适合 %1 的解码器,请确认您正确安装了GStreamer插件 + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + 无法为%1找到混音器,请检查是否安装了正确的Gstreamer插件 + + + + TranscoderOptionsAAC + + Form + 表格 + + + Bitrate + + + + kbps + + + + Profile + 档案 + + + Main profile (MAIN) + 主要档案(MAIN) + + + Low complexity profile (LC) + 低复杂度 (LC) + + + Scalable sampling rate profile (SSR) + 可变采样频率 (SSR) + + + Long term prediction profile (LTP) + 长期预测 (LTP) + + + Use temporal noise shaping + 使用瞬时降噪 + + + Allow mid/side encoding + 允许 M/S 编码 (和差编码) + + + Block type + 屏蔽类型 + + + Normal block type + 普通块类型 + + + No short blocks + 无短块 + + + No long blocks + 无长块 + + + + TranscoderOptionsASF + + Form + 表格 + + + Bitrate + + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + 转码设置 + + + + TranscoderOptionsFLAC + + Form + 表格 + + + Quality + Sound quality + 质量 + + + Fast + 快速 + + + Best + 最佳 + + + + TranscoderOptionsMP3 + + Form + 表格 + + + Optimize for &quality + + + + Quality + Sound quality + 质量 + + + Opti&mize for bitrate + + + + Bitrate + + + + kbps + + + + Constant bitrate + 固定位速率 + + + Encoding engine quality + 编码引擎质量 + + + Fast + 快速 + + + Standard + 标准 + + + High + + + + Force mono encoding + 强制单声道编码 + + + + TranscoderOptionsOpus + + Form + 表格 + + + Bitrate + + + + kbps + + + + + TranscoderOptionsSpeex + + Form + 表格 + + + Quality + Sound quality + 质量 + + + Bitrate + + + + automatic + 自动 + + + kbps + + + + Average bitrate + 平均位速率 + + + disabled + 关闭 + + + Encoding mode + 编码模式 + + + Auto + 自动 + + + Ultra wide band (UWB) + 超宽带 (UWB) + + + Wide band (WB) + 宽带 (WB) + + + Narrow band (NB) + 窄带(NB) + + + Variable bit rate + 可变比特率 + + + Voice activity detection + 语音活动检测 + + + Discontinuous transmission + 断续传输 + + + Encoding complexity + 编码复杂度 + + + Frames per buffer + 每次缓冲帧数 + + + + TranscoderOptionsVorbis + + Form + 表格 + + + Quality + Sound quality + 质量 + + + Use bitrate management engine + 使用位速率管理引擎 + + + Target bitrate + 目标位速率 + + + kbps + + + + Minimum bitrate + 最小比特率 + + + disabled + 关闭 + + + Maximum bitrate + 最大位速率 + + + + TranscoderOptionsWavPack + + Form + 表格 + + + + TranscoderSettingsPage + + Transcoding + 转码 + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + 这些设置将用于“音乐转码”对话框,及向设备中复制音乐前的格式转换。 + + + FLAC + FLAC + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + ASF(WMA) + + + MP3 + + + + + Udisks2Lister + + D-Bus path + D-Bus 路径 + + + Serial number + 序列号 + + + Mount points + 挂载点 + + + Partition label + 分区标签 + + + UUID + + + + + UserPassDialog + + Enter username and password + 输入用户名和密码 + + + Username + 用户名 + + + Password + 密码 + + + diff --git a/src/translations/strawberry_zh_TW.ts b/src/translations/strawberry_zh_TW.ts new file mode 100644 index 00000000..ee4bff04 --- /dev/null +++ b/src/translations/strawberry_zh_TW.ts @@ -0,0 +1,7557 @@ + + + + + About + + About + + + + About Strawberry + + + + Version %1 + + + + Strawberry is a music player and music collection organizer. + + + + It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles. + + + + Strawberry is free software released under GPL. The source code is available on %1 + + + + You should have received a copy of the GNU General Public License along with this program. If not, see %1 + + + + If you like Strawberry and can make use of it, consider sponsoring or donating. + + + + You can sponsor the author on %1. You can also make a one-time payment through %2. + + + + Author and maintainer + + + + Contributors + + + + Clementine authors + + + + Clementine contributors + + + + Thanks to + + + + Thanks to all the other Amarok and Clementine contributors. + + + + + AddStreamDialog + + Add Stream + + + + Enter the URL of a stream: + + + + + AlbumCoverChoiceController + + Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm) + + + + Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm) + + + + All files (*) + + + + Load cover from disk... + + + + Save cover to disk... + + + + Load cover from URL... + + + + Search for album covers... + + + + Unset cover + + + + Delete cover + + + + Clear cover + + + + Show fullsize... + + + + Search automatically + + + + Load cover from disk + + + + Failed to open cover file %1 for reading: %2 + + + + Cover file %1 is empty. + + + + unknown + + + + Save album cover + + + + Failed to open cover file %1 for writing: %2 + + + + Failed writing cover to file %1: %2 + + + + Failed writing cover to file %1. + + + + Failed to delete cover file %1: %2 + + + + Failed to write cover to file %1: %2 + + + + Could not save cover to file %1. + + + + + AlbumCoverExport + + Export covers + + + + Output + + + + Enter a filename for exported covers (no extension): + + + + Export downloaded covers + + + + Export embedded covers + + + + Existing covers + + + + Do not overwrite + + + + O&verwrite all + + + + Overwrite s&maller ones only + + + + Size + + + + Scale size + + + + Size: + + + + Pixel + + + + + AlbumCoverManager + + Abort + + + + All albums + + + + Albums with covers + + + + Albums without covers + + + + Really cancel? + + + + Closing this window will stop searching for album covers. + + + + Don't stop! + + + + All artists + + + + Various artists + + + + Got %1 covers out of %2 (%3 failed) + + + + %1 transferred + + + + Export finished + + + + No covers to export. + + + + Exported %1 covers out of %2 (%3 skipped) + + + + Could not save cover to file %1. + + + + + AlbumCoverSearcher + + Cover Manager + + + + Artist + + + + Album + + + + Search + + + + Covers from %1 + + + + Abort + + + + + AnalyzerContainer + + Framerate + + + + Low (%1 fps) + + + + Medium (%1 fps) + + + + High (%1 fps) + + + + Super high (%1 fps) + + + + No analyzer + + + + Block analyzer + + + + Boom analyzer + + + + Turbine + + + + Sonogram + + + + WaveRubber + + + + + AppearanceSettingsPage + + Appearance + + + + Style + + + + Use system theme icons + + + + Settings require restart. + + + + Tabbar colors + + + + &Use the system default color + + + + Use custom color + + + + Use gradient background + + + + Select tabbar color: + + + + Background image + + + + Default bac&kground image + + + + &No background image + + + + The album cover of the currently playing song + + + + Albu&m cover + + + + Custom image: + + + + Browse... + + + + Position + + + + Upper Left + + + + Upper Right + + + + Middle + + + + Bottom Left + + + + Bottom Right + + + + Max cover size + + + + Stretch image to fill playlist + + + + Keep aspect ratio + + + + Do not cut image + + + + Blur amount + + + + 0px + + + + Opacity + + + + 40% + + + + Icon sizes + + + + Playlist buttons + + + + Tabbar large mode + + + + Play control buttons + + + + Configure buttons + + + + Files, playlists and queue buttons + + + + Tabbar small mode + + + + Playlist playing song color + + + + System highlight color + + + + Custom color + + + + Select playlist playing song color: + + + + Select background image + + + + + BackendSettingsPage + + Backend + + + + Audio output + + + + Device + + + + Output + + + + Engine + + + + ALSA plugin: + + + + hw + + + + p&lughw + + + + pcm + + + + Exclusive mode (Experimental) + + + + Options + + + + Enable volume control + + + + Upmix / downmix to + + + + channels + + + + Improve headphone listening of stereo audio records (bs2b) + + + + Enable HTTP/2 for streaming + + + + Use strict SSL mode + + + + Buffer + + + + ms + + + + Buffer duration + + + + High watermark + + + + Low watermark + + + + Defaults + + + + Audio normalization + + + + No audio normalization + + + + Replay Gain + + + + Use Replay Gain metadata if it is available + + + + Replay Gain mode + + + + Radio (equal loudness for all tracks) + + + + Album (ideal loudness for all tracks) + + + + Pre-amp + + + + Apply compression to prevent clipping + + + + Fallback-gain + + + + EBU R 128 Loudness Normalization + + + + Perform track loudness normalization + + + + Target Level + + + + Fading + + + + Fade out when stopping a track + + + + Cross-fade when changing tracks manually + + + + Cross-fade when changing tracks automatically + + + + Except between tracks on the same album or in the same CUE sheet + + + + Fading duration + + + + Fade out on pause / fade in on resume + + + + + BehaviourSettingsPage + + Behavior + + + + Show system tray icon + + + + Keep running in the background when the window is closed + + + + Show song progress on system tray icon + + + + Show song progress on taskbar + + + + Resume playback on start + + + + Show playing widget + + + + On startup + + + + Remember from &last time + + + + Show the main window + + + + Hide the main window + + + + Show the main window maximized + + + + Show the main window minimized + + + + Language + + + + Use the system default + + + + You will need to restart Strawberry if you change the language. + + + + Using the menu to add a song will... + + + + Never start playing + + + + Play if there is nothing already playing + + + + Always start playing + + + + Pressing "Previous" in player will... + + + + Jump to previous song right away + + + + Restart song, then jump to previous if pressed again + + + + Double clicking a song will... + + + + Append to the playlist + + + + Replace the playlist + + + + Open in new playlist + + + + Add to the queue + + + + Double clicking a song in the playlist will... + + + + Change the currently playing song + + + + Seeking using a keyboard shortcut or mouse wheel + + + + Time step + + + + s + + + + Volume Increment + + + + + CddaSongLoader + + Error while setting CDDA device to ready state. + + + + Error while setting CDDA device to pause state. + + + + Error while querying CDDA tracks. + + + + + CollectionBackend + + Unable to execute collection SQL query: %1 + + + + Failed SQL query: %1 + + + + Updating %1 database. + + + + + CollectionFilterWidget + + Collection Filter + + + + Enter search terms here + + + + MenuPopupToolButton + + + + Entire collection + + + + Added today + + + + Added this week + + + + Added within three months + + + + Added this year + + + + Added this month + + + + Save current grouping + + + + Manage saved groupings + + + + Show + + + + Group by + + + + Display options + + + + Group by Album artist/Album + + + + Group by Album artist/Album - Disc + + + + Group by Album artist/Year - Album + + + + Group by Album artist/Year - Album - Disc + + + + Group by Artist/Album + + + + Group by Artist/Album - Disc + + + + Group by Artist/Year - Album + + + + Group by Artist/Year - Album - Disc + + + + Group by Genre/Album artist/Album + + + + Group by Genre/Artist/Album + + + + Group by Album Artist + + + + Group by Artist + + + + Group by Album + + + + Group by Genre/Album + + + + Advanced grouping... + + + + Grouping Name + + + + Grouping name: + + + + + CollectionModel + + Various artists + + + + Loading... + + + + Unknown + + + + + CollectionSettingsPage + + Collection + + + + These folders will be scanned for music to make up your collection + + + + Add new folder... + + + + Remove folder + + + + Automatic updating + + + + Update the collection when Strawberry starts + + + + Monitor the collection for changes + + + + Song fingerprinting and tracking + + + + Mark disappeared songs unavailable + + + + Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization) + + + + Expire unavailable songs after + + + + days + + + + Preferred album art filenames (comma separated) + + + + When looking for album art Strawberry will first look for picture files that contain one of these words. +If there are no matches then it will use the largest image in the directory. + + + + Display options + + + + Automatically open single categories in the collection tree + + + + Show dividers + + + + Show album cover art in collection + + + + Use various artists for compilation albums + + + + Skip leading articles ("the", "a", "an") when sorting artist names + + + + Album cover pixmap cache + + + + Size + + + + Enable Disk Cache + + + + Disk Cache Size + + + + Current disk cache in use: + + + + Clear Disk Cache + + + + Song playcounts and ratings + + + + Save playcounts to song tags when possible + + + + Save ratings to song tags when possible + + + + Overwrite database playcount when songs are re-read from disk + + + + Overwrite database rating when songs are re-read from disk + + + + Save playcounts and ratings to files now + + + + Enable delete files in the right click context menu + + + + Add directory... + + + + Write all playcounts and ratings to files + + + + Are you sure you want to write song playcounts and ratings to file for all songs in your collection? + + + + + CollectionView + + Your collection is empty! + + + + Click here to add some music + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Queue to play next + + + + Search for this + + + + Organize files... + + + + Copy to device... + + + + Delete from disk... + + + + Edit track information... + + + + Edit tracks information... + + + + Show in file browser... + + + + Rescan song(s) + + + + Show in various artists + + + + Don't show in various artists + + + + There are other songs in this album + + + + Would you like to move the other songs on this album to Various Artists as well? + + + + Error + + + + None of the selected songs were suitable for copying to a device + + + + + CollectionViewContainer + + Form + + + + + CollectionWatcher + + Updating collection + + + + Updating %1 + + + + + Console + + Console + + + + Run + + + + + ContextSettingsPage + + Context + + + + Custom text settings + + + + MenuPopupToolButton + + + + Title + + + + Summary + + + + Enable Items + + + + Album + + + + Technical Data + + + + Song Lyrics + + + + Automatically search for album cover + + + + Automatically search for song lyrics + + + + Font for headline + + + + Font + + + + Font size + + + + pt + + + + Preview + + + + Font for data and lyrics + + + + Add song artist tag + + + + Add song album tag + + + + Add song title tag + + + + Add song albumartist tag + + + + Add song year tag + + + + Add song composer tag + + + + Add song performer tag + + + + Add song grouping tag + + + + Add song disc tag + + + + Add song track tag + + + + Add song genre tag + + + + Add song length tag + + + + Add song play count + + + + Add song skip count + + + + Add a new line if supported by the notification type + + + + %filename% + + + + Add song filename + + + + %url% + + + + Add song URL + + + + %rating% + + + + Add song rating + + + + %originalyear% + + + + Add song original year tag + + + + + ContextView + + Filetype + + + + Length + + + + Samplerate + + + + Bit depth + + + + Bitrate + + + + EBU R 128 Integrated Loudness + + + + EBU R 128 Loudness Range + + + + Show album cover + + + + Show song technical data + + + + Show song lyrics + + + + Automatically search for song lyrics + + + + No song playing + + + + %1 song + + + + %1 songs + + + + %1 artist + + + + %1 artists + + + + %1 album + + + + %1 albums + + + + kbps + + + + + CoverFromURLDialog + + Load cover from URL + + + + Enter a URL to download a cover from the Internet: + + + + Fetching cover error + + + + The site you requested does not exist! + + + + The site you requested is not an image! + + + + + CoverManager + + Cover Manager + + + + Enter search terms here + + + + MenuPopupToolButton + + + + View + + + + Total albums: + + + + Without cover: + + + + 0 + + + + Fetch Missing Covers + + + + Export Covers + + + + Fetch automatically + + + + Load + + + + Add to playlist + + + + + CoverSearchStatisticsDialog + + Fetch completed + + + + Got %1 covers out of %2 (%3 failed) + + + + Covers from %1 + + + + Total network requests made + + + + Average image size + + + + Total bytes transferred + + + + + CoversSettingsPage + + Covers + + + + Cover providers + + + + Choose the providers you want to use when searching for covers. + + + + Move up + + + + Move down + + + + Authentication + + + + Login + + + + Album cover types + + + + Saving album covers + + + + Save album covers in album directory + + + + Save album covers in cache directory + + + + Save album covers as embedded cover + + + + Filename: + + + + Pattern + + + + Random + + + + Overwrite existing file + + + + Lowercase filename + + + + Replace spaces with dashes + + + + Use Tidal settings to authenticate. + + + + Use Spotify settings to authenticate. + + + + Use Qobuz settings to authenticate. + + + + %1 needs authentication. + + + + %1 does not need authentication. + + + + No provider selected. + + + + Authentication failed + + + + Manually unset (%1) + + + + Set through album cover search (%1) + + + + Automatically picked up from album directory (%1) + + + + Embedded album cover art (%1) + + + + + CueParser + + Saving CUE files is not supported. + + + + + Database + + Unable to execute SQL query: %1 + + + + Failed SQL query: %1 + + + + Integrity check + + + + Database corruption detected. + + + + Backing up database + + + + + DeleteConfirmationDialog + + Delete files + + + + The following files will be deleted from disk: + + + + Are you sure you want to continue? + + + + + DeleteFiles + + Deleting files + + + + + DeviceItemDelegate + + Updating %1%... + + + + Not connected + + + + Not mounted - double click to mount + + + + Double click to open + + + + %1 song%2 + + + + + DeviceManager + + Connect device + + + + This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time. + + + + This device will not work properly + + + + This is an MTP device, but you compiled Strawberry without libmtp support. + + + + If you continue, this device will work slowly and songs copied to it may not work. + + + + This is an iPod, but you compiled Strawberry without libgpod support. + + + + This type of device is not supported: %1 + + + + + DeviceProperties + + Device Properties + + + + Information + + + + Name + + + + Icon + + + + Hardware information + + + + Hardware information is only available while the device is connected. + + + + File formats + + + + Supported formats + + + + This device supports the following file formats: + + + + Strawberry can automatically convert the music you copy to this device into a format that it can play. + + + + Do not convert any music + + + + Convert any music that the device can't play + + + + Convert all music + + + + Preferred format + + + + This device must be connected and opened before Strawberry can see what file formats it supports. + + + + Open device + + + + Querying device... + + + + Model + + + + Manufacturer + + + + + DeviceView + + Safely remove device + + + + Forget device + + + + Device properties... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Copy to collection... + + + + Delete from device... + + + + Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it. + + + + Delete files + + + + These files will be deleted from the device, are you sure you want to continue? + + + + + DeviceViewContainer + + Form + + + + + DynamicPlaylistControls + + Dynamic mode is on + + + + New tracks will be added automatically. + + + + Expand + + + + Repopulate + + + + Turn off + + + + + EditTagDialog + + Edit track information + + + + Summary + + + + Date created + + + + Art Automatic + + + + Date modified + + + + Art Embedded + + + + Last played + A playlist's tag. + + + + File type + + + + Length + + + + Play count + + + + Bit depth + + + + EBU R 128 integrated loudness + + + + Bit rate + + + + Skip count + + + + Sample rate + + + + Path + + + + Filename + + + + Art Unset + + + + File size + + + + Art Manual + + + + EBU R 128 loudness range + + + + Reset play counts + + + + Tags + + + + MenuPopupToolButton + + + + Change art + + + + Embedded cover + + + + Disc + + + + Grouping + + + + Album artist + + + + Album + + + + Year + + + + Title + + + + Artist + + + + Composer + + + + Complete tags automatically + + + + Genre + + + + Comment + + + + Performer + + + + Compilation + + + + Track + + + + Rating + + + + Lyrics + + + + Complete lyrics automatically + + + + Previous + + + + Next + + + + Saving tracks + + + + Loading tracks + + + + %1 songs selected. + + + + kbps + + + + Unknown + + + + Yes + + + + No + + + + None + + + + Cover is unset. + + + + Cover from embedded image. + + + + Cover from %1 + + + + Cover art not set + + + + Album cover editing is only available for collection songs. + + + + Cover changed: Will be cleared when saved. + + + + Cover changed: Will be unset when saved. + + + + Cover changed: Will be deleted when saved. + + + + Cover changed: Will set new when saved. + + + + Never + + + + Reset song play statistics + + + + Are you sure you want to reset this song's play statistics? + + + + loading... + + + + Not found. + + + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + (different across multiple songs) + + + + Different art across multiple songs. + + + + + Equalizer + + Equalizer + + + + Preset: + + + + Save preset + + + + Delete preset + + + + Enable equalizer + + + + Enable stereo balancer + + + + Left + + + + Balance + + + + Right + + + + Pre-amp + + + + Custom + + + + Classical + + + + Club + + + + Dance + + + + Full Bass + + + + Full Treble + + + + Full Bass + Treble + + + + Laptop/Headphones + + + + Large Hall + + + + Live + + + + Party + + + + Pop + + + + Reggae + + + + Rock + + + + Soft + + + + Ska + + + + Soft Rock + + + + Techno + + + + Zero + + + + Name + + + + Are you sure you want to delete the "%1" preset? + + + + + EqualizerSlider + + Equalizer + + + + %1 dB + + + + + ErrorDialog + + Strawberry Error + + + + + FancyTabWidget + + Large sidebar + + + + Icons sidebar + + + + Small sidebar + + + + Plain sidebar + + + + Tabs on top + + + + Icons on top + + + + + FileTypeItemDelegate + + Unknown + + + + + FileView + + Form + + + + + FileViewList + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Copy to collection... + + + + Move to collection... + + + + Copy to device... + + + + Delete from disk... + + + + Edit track information... + + + + Show in file browser... + + + + + FreeSpaceBar + + Available + + + + New songs + + + + Exceeded by + + + + Used + + + + + GPodDevice + + Could not copy %1 to %2: %3 + + + + Writing database failed: %1 + + + + Writing database failed. + + + + + GPodLoader + + Loading iPod database + + + + An error occurred loading the iTunes database + + + + + GeniusLyricsProvider + + Genius Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Redirect from Genius is missing query items code or state. + + + + + GioLister + + Mount point + + + + Device + + + + URI + + + + + GlobalShortcutGrabber + + Press a key + + + + Press a key combination to use for %1... + + + + + GlobalShortcutsManager + + Play + + + + Pause + + + + Play/Pause + + + + Stop + + + + Stop playing after current track + + + + Next track + + + + Previous track + + + + Restart or previous track + + + + Increase volume + + + + Decrease volume + + + + Mute + + + + Seek forward + + + + Seek backward + + + + Show/Hide + + + + Show OSD + + + + Toggle Pretty OSD + + + + Change shuffle mode + + + + Change repeat mode + + + + Enable/disable scrobbling + + + + Love + + + + + GlobalShortcutsSettingsPage + + Global Shortcuts + + + + Use Gnome (GSD) shortcuts when available + + + + Open... + + + + Use MATE shortcuts when available + + + + Use KDE (KGlobalAccel) shortcuts when available + + + + Use X11 shortcuts when available + + + + You need to launch System Preferences and allow Strawberry to "<span style="font-style:italic">control your computer</span>" to use global shortcuts in Strawberry. + + + + Action + Category label + + + + Shortcut + + + + Shortcut for %1 + + + + &None + + + + &Default + + + + &Custom + + + + Change shortcut... + + + + The "%1" command could not be started. + + + + Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive! + + + + Shortcuts on %1 are usually used through MPRIS and KGlobalAccel. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead. + + + + Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead. + + + + Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead. + + + + + GroupByDialog + + Collection advanced grouping + + + + You can change the way the songs in the collection are organized. + + + + Group Collection by... + + + + First level + + + + None + + + + Artist + + + + Album artist + + + + Album + + + + Album - Disc + + + + Disc + + + + Format + + + + Genre + + + + Year + + + + Year - Album + + + + Year - Album - Disc + + + + Original year + + + + Original year - Album + + + + Composer + + + + Performer + + + + Grouping + + + + File type + + + + Sample rate + + + + Bit depth + + + + Bitrate + + + + Second level + + + + Third level + + + + Separate albums by grouping tag + + + + + GstEngine + + Buffering + + + + + LastFMImport + + Missing username, please login to last.fm first! + + + + + LastFMImportDialog + + Import data from last.fm + + + + Choose data to import from last.fm + + + + Last played + + + + Play counts + + + + Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start. + + + + Go! + + + + Close + + + + Cancel + + + + Receiving initial data from last.fm... + + + + Receiving playcount for %1 songs and last played for %2 songs. + + + + Receiving last played for %1 songs. + + + + Receiving playcounts for %1 songs. + + + + Playcounts for %1 songs and last played for %2 songs received. + + + + Last played for %1 songs received. + + + + Playcounts for %1 songs received. + + + + + LastPlayedItemDelegate + + Never + + + + + Library + + Least favourite tracks + + + + + ListenBrainzScrobbler + + ListenBrainz Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code! + + + + Received invalid reply from web browser. + + + + Unable to scrobble %1 - %2 because of error: %3 + + + + Missing MusicBrainz recording ID for %1 %2 %3 + + + + ListenBrainz error: %1 + + + + + LoginStateWidget + + Form + + + + You are not signed in. + + + + Sign out + + + + Signing in... + + + + You are signed in. + + + + You are signed in as %1. + + + + Expires on %1 + + + + + LyricsSettingsPage + + Lyrics + + + + Lyrics providers + + + + Choose the providers you want to use when searching for lyrics. + + + + Move up + + + + Move down + + + + Authentication + + + + Login + + + + No provider selected. + + + + Authentication failed + + + + + MainWindow + + Strawberry Music Player + + + + MenuPopupToolButton + + + + &Music + + + + P&laylist + + + + Help + + + + &Tools + + + + Previous track + + + + F5 + + + + &Play + + + + F6 + + + + &Stop + + + + F7 + + + + &Next track + + + + F8 + + + + &Quit + + + + Ctrl+Q + + + + Stop after this track + + + + Ctrl+Alt+V + + + + Love + + + + &Clear playlist + + + + Clear playlist + + + + Ctrl+K + + + + Edit track information... + + + + Ctrl+E + + + + Renumber tracks in this order... + + + + Set value for all selected tracks... + + + + Edit tag... + + + + &Settings... + + + + Ctrl+P + + + + &About Strawberry + + + + F1 + + + + S&huffle playlist + + + + Ctrl+H + + + + &Add file... + + + + Ctrl+Shift+A + + + + &Open file... + + + + Open audio &CD... + + + + &Cover Manager + + + + C&onsole + + + + &Shuffle mode + + + + &Repeat mode + + + + Remove from playlist + + + + &Equalizer + + + + &Transcode Music + + + + Add &folder... + + + + &Jump to the currently playing track + + + + Ctrl+J + + + + &New playlist + + + + Ctrl+N + + + + Save &playlist... + + + + Ctrl+S + + + + &Load playlist... + + + + Ctrl+Shift+O + + + + &Save all playlists... + + + + Go to next playlist tab + + + + Go to previous playlist tab + + + + &Update changed collection folders + + + + About &Qt + + + + &Mute + + + + Ctrl+M + + + + &Do a full collection rescan + + + + Stop collection scan + + + + Complete tags automatically... + + + + Ctrl+T + + + + Toggle scrobbling + + + + Remove &duplicates from playlist + + + + Remove &unavailable tracks from playlist + + + + Add file(s) to transcoder + + + + Add file to transcoder + + + + Add stream... + + + + Show sidebar + + + + Import data from last.fm... + + + + All Files (*) + + + + Context + + + + Collection + + + + Queue + + + + Playlists + + + + Smart playlists + + + + Files + + + + Radios + + + + Devices + + + + Subsonic + + + + Tidal + + + + Spotify + + + + Qobuz + + + + Show all songs + + + + Show only duplicates + + + + Show only untagged + + + + Configure collection... + + + + Play + + + + Toggle queue status + + + + Queue selected tracks to play next + + + + Toggle skip status + + + + Rescan song(s)... + + + + Copy URL(s)... + + + + Show in collection... + + + + Show in file browser... + + + + Organize files... + + + + Copy to collection... + + + + Move to collection... + + + + Copy to device... + + + + Delete from disk... + + + + Check for updates... + + + + Strawberry running under Rosetta + + + + You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1 + + + + Sponsoring Strawberry + + + + Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1 + + + + Pause + + + + Dequeue track + + + + Dequeue selected tracks + + + + Queue track + + + + Queue selected tracks + + + + Queue to play next + + + + Unskip track + + + + Unskip selected tracks + + + + Skip track + + + + Skip selected tracks + + + + Set %1 to "%2"... + + + + Edit tag "%1"... + + + + Add to another playlist + + + + New playlist + + + + Add file + + + + Music + + + + Add folder + + + + Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist? + + + + Error + + + + None of the selected songs were suitable for copying to a device + + + + The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below: + + + + Would you like to run a full rescan right now? + + + + Collection rescan notice + + + + + MessageDialog + + Message Dialog + + + + Do not show this message again. + + + + + MimeData + + Playlist + + + + + MoodbarProxyStyle + + Show moodbar + + + + Moodbar style + + + + + MoodbarSettingsPage + + Moodbar + + + + Show a moodbar in the track progress bar + + + + Moodbar style + + + + Save the .mood files directly in the songs folders + + + + Enabled + + + + + MtpConnection + + Invalid MTP device: %1 + + + + Could not open MTP device. + + + + MTP error: %1 + + + + MTP device not found. + + + + + MtpLoader + + Loading MTP device + + + + Error connecting MTP device %1 + + + + Error connecting MTP device %1: %2 + + + + + NetworkProxySettingsPage + + Network Proxy + + + + &Use the system proxy settings + + + + Direct internet connection + + + + &Manual proxy configuration + + + + HTTP proxy + + + + SOCKS proxy + + + + Port + + + + Use authentication + + + + Username + + + + Password + + + + Use proxy settings for streaming + + + + + NotificationsSettingsPage + + Notifications + + + + Strawberry can show a message when the track changes. + + + + Notification type + + + + Disabled + Refers to a disabled notification type in Notification settings. + + + + Show a &native desktop notification + + + + Show a pretty OSD + + + + Show a popup fro&m the system tray + + + + General settings + + + + Popup duration + + + + seconds + + + + Disable duration + + + + Show a notification when I change the volume + + + + Show a notification when I change the repeat/shuffle mode + + + + Show a notification when I pause playback + + + + Show a notification when I resume playback + + + + Include album art in the notification + + + + Custom message settings + + + + Use a custom message for notifications + + + + Preview + + + + MenuPopupToolButton + + + + Summary + + + + Body + + + + Pretty OSD options + + + + Background color + + + + Text options + + + + Choose font... + + + + Choose color... + + + + Background opacity + + + + Basic Blue + + + + Strawberry Red + + + + Custom... + + + + Enable fading + + + + Add song artist tag + + + + Add song album tag + + + + Add song title tag + + + + Add song albumartist tag + + + + Add song year tag + + + + Add song composer tag + + + + Add song performer tag + + + + Add song grouping tag + + + + Add song disc tag + + + + Add song track tag + + + + Add song genre tag + + + + Add song length tag + + + + Add song play count + + + + Add song skip count + + + + Add song rating + + + + Add a new line if supported by the notification type + + + + %filename% + + + + Add song filename + + + + %url% + + + + Add song URL + + + + %originalyear% + + + + Add song original year tag + + + + OSD Preview + + + + Drag to reposition + + + + + OSDBase + + disc %1 + + + + track %1 + + + + Paused + + + + Stopped + + + + Stop playing after track: %1 + + + + On + + + + Off + + + + Playlist finished + + + + Volume %1% + + + + Don't shuffle + + + + Shuffle all + + + + Shuffle tracks in this album + + + + Shuffle albums + + + + Don't repeat + + + + Repeat track + + + + Repeat album + + + + Repeat playlist + + + + Stop after every track + + + + Intro tracks + + + + + Organize + + Organizing files + + + + + OrganizeDialog + + Organize Files + + + + Destination + + + + After copying... + + + + Keep the original files + + + + Delete the original files + + + + Naming options + + + + <p>Tokens start with %, for example: %artist %album %title </p> + +<p>If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.</p> + + + + Insert... + + + + Remove problematic characters from filenames + + + + Restrict to characters allowed on FAT filesystems + + + + Restrict characters to ASCII + + + + Allow extended ASCII characters + + + + Replace spaces with underscores + + + + Overwrite existing files + + + + Copy album cover artwork + + + + Preview + + + + Loading... + + + + Safely remove the device after copying + + + + Title + + + + Album + + + + Artist + + + + Artist's initial + + + + Album artist + + + + Composer + + + + Performer + + + + Grouping + + + + Track + + + + Disc + + + + Year + + + + Original year + + + + Genre + + + + Comment + + + + Length + + + + Bitrate + Refers to bitrate in file organize dialog. + + + + Sample rate + + + + Bit depth + + + + File extension + + + + + OrganizeErrorDialog + + Error copying songs + + + + There were problems copying some songs. The following files could not be copied: + + + + Error deleting songs + + + + There were problems deleting some songs. The following files could not be deleted: + + + + + ParserBase + + Don't know how to handle %1 + + + + + PlayingWidget + + Small album cover + + + + Large album cover + + + + Fit cover to width + + + + Show above status bar + + + + + Playlist + + Could not write metadata to %1 + + + + Could not write metadata to %1: %2 + + + + Title + + + + Artist + + + + Album + + + + Track + + + + Disc + + + + Length + + + + Year + + + + Original Year + + + + Genre + + + + Album Artist + + + + Composer + + + + Performer + + + + Grouping + + + + Play Count + + + + Skip Count + + + + Last Played + + + + Sample Rate + + + + Bit Depth + + + + Bitrate + + + + File Name + + + + File Name (without path) + + + + File Size + + + + File Type + + + + Date Modified + + + + Date Created + + + + Comment + + + + Source + + + + Mood + + + + Rating + + + + CUE + + + + Integrated Loudness + + + + Loudness Range + + + + + PlaylistContainer + + Form + + + + Undo + + + + Redo + + + + Playlist + + + + Load playlist + + + + No matches found. Clear the search box to show the whole playlist again. + + + + + PlaylistDelegateBase + + stop + + + + + PlaylistGeneratorInserter + + Loading smart playlist + + + + + PlaylistHeader + + &Hide... + + + + &Stretch columns to fit window + + + + &Reset columns to default + + + + &Lock rating + + + + &Align text + + + + &Left + + + + &Center + + + + &Right + + + + &Hide %1 + + + + + PlaylistListContainer + + Form + + + + New folder + + + + Delete + + + + Save playlist + Save playlist menu action. + + + + Copy to device... + + + + Enter the name of the folder + + + + Playlist + + + + Copy to device + + + + Playlist must be open first. + + + + Remove playlists + + + + You are about to remove %1 playlists from your favorites, are you sure? + + + + + PlaylistListView + + You can favorite playlists by clicking the star icon next to a playlist name + + + + Favorited playlists will be saved here + + + + + PlaylistManager + + Playlist + + + + Couldn't create playlist + + + + Save playlist + Title of the playlist save dialog. + + + + Unknown playlist extension + + + + Unknown file extension for playlist. + + + + %1 selected of + + + + %n track(s) + + + + + + Unknown + + + + Various artists + + + + + PlaylistParser + + All playlists (%1) + + + + %1 playlists (%2) + + + + Unknown filetype: %1 + + + + Could not open file %1 + + + + Directory %1 does not exist. + + + + Failed to open %1 for writing. + + + + + PlaylistSaveOptionsDialog + + Playlist options + + + + File paths + + + + This can be changed later through the preferences + + + + Remember my choice + + + + Automatic + + + + Relative + + + + Absolute + + + + + PlaylistSequence + + Repeat + + + + Shuffle + + + + Don't repeat + + + + Repeat track + + + + Repeat album + + + + Repeat playlist + + + + Stop after each track + + + + Intro tracks + + + + Don't shuffle + + + + Shuffle tracks in this album + + + + Shuffle all + + + + Shuffle albums + + + + + PlaylistSettingsPage + + Playlist + + + + Use alternating row colors + + + + Show bars on the currently playing track + + + + Show a glowing animation on the currently playing track + + + + Warn me when closing a playlist tab + + + + Continue to the next item in the playlist if a song is unavailable + + + + Grey out unavailable songs in playlists on playback + + + + Grey out unavailable songs in playlists on startup + + + + Automatically select current playing track + + + + Enable playlist toolbar + + + + Enable playlist clear button + + + + Enable delete files in the right click context menu + + + + Automatically sort playlist when inserting songs + + + + When saving a playlist, file paths should be + + + + A&utomatic + + + + Absolu&te + + + + Re&lative + + + + As&k when saving + + + + Metadata + + + + If activated, clicking a selected song in the playlist view will let you edit the tag value directly + + + + Enable song metadata inline edition with click + + + + Write metadata when saving playlists + + + + + PlaylistTabBar + + Star playlist + + + + Close playlist + + + + Rename playlist... + + + + Save playlist... + + + + Rename playlist + + + + Enter a new name for this playlist + + + + Remove playlist + + + + You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). +Are you sure you want to continue? + + + + Warn me when closing a playlist tab + + + + This option can be changed in the "Behavior" preferences + + + + Double-click here to favorite this playlist so it will be saved and remain accessible through the "Playlists" panel on the left side bar + + + + Playlist + + + + + PlaylistUndoCommands::InsertItems + + add %n songs + + + + + + + PlaylistUndoCommands::MoveItems + + move %n songs + + + + + + + PlaylistUndoCommands::RemoveItems + + remove %n songs + + + + + + + PlaylistUndoCommands::ShuffleItems + + shuffle songs + + + + + PlaylistUndoCommands::SortItems + + sort songs + + + + + PlaylistView + + Hz + + + + Bit + + + + kbps + + + + + QObject + + Usage + + + + options + + + + URL(s) + + + + Player options + + + + Start the playlist currently playing + + + + Play if stopped, pause if playing + + + + Pause playback + + + + Stop playback + + + + Stop playback after current track + + + + Skip backwards in playlist + + + + Skip forwards in playlist + + + + Set the volume to <value> percent + + + + Increase the volume by 4 percent + + + + Decrease the volume by 4 percent + + + + Increase the volume by <value> percent + + + + Decrease the volume by <value> percent + + + + Seek the currently playing track to an absolute position + + + + Seek the currently playing track by a relative amount + + + + Restart the track, or play the previous track if within 8 seconds of start. + + + + Playlist options + + + + Create a new playlist with files + + + + Append files/URLs to the playlist + + + + Loads files/URLs, replacing current playlist + + + + Play the <n>th track in the playlist + + + + Play given playlist + + + + Other options + + + + Display the on-screen-display + + + + Toggle visibility for the pretty on-screen-display + + + + Change the language + + + + Resize the window + + + + Equivalent to --log-levels *:1 + + + + Equivalent to --log-levels *:3 + + + + Comma separated list of class:level, level is 0-3 + + + + Print out version information + + + + Failed to create directory %1. + + + + Destination file %1 exists, but not allowed to overwrite. + + + + Destination file %1 exists, but not allowed to overwrite + + + + Could not copy file %1 to %2. + + + + Unknown + + + + LUFS + + + + LU + + + + File %1 is not recognized as a valid audio file. + + + + 1 day + + + + %1 days + + + + Today + + + + Yesterday + + + + %1 days ago + + + + Tomorrow + + + + In %1 days + + + + Next week + + + + In %1 weeks + + + + Show in file browser + + + + Too many songs selected. + + + + %1 songs in %2 different directories selected, are you sure you want to open them all? + + + + Failed to load image from data for %1 + + + + Success + + + + File is unsupported + + + + Filename is missing + + + + File does not exist + + + + File could not be opened + + + + Could not parse file + + + + Could save file + + + + Unknown error + + + + Prefix a search term with a field name to limit the search to that field, e.g.: + + + + artist + + + + searches for all artists containing the word %1. + + + + Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: + + + + rating + + + + Multiple search terms can also be combined with "%1" (default) and "%2", as well as grouped with parentheses. + + + + Available fields + + + + after + + + + before + + + + on + + + + not on + + + + in the last + + + + not in the last + + + + between + + + + contains + + + + does not contain + + + + starts with + + + + ends with + + + + greater than + + + + less than + + + + equals + + + + not equals + + + + empty + + + + not empty + + + + Comment + + + + A-Z + + + + Z-A + + + + oldest first + + + + newest first + + + + shortest first + + + + longest first + + + + smallest first + + + + biggest first + + + + Hours + + + + Days + + + + Weeks + + + + Months + + + + Years + + + + Normal + + + + Angry + + + + Frozen + + + + Happy + + + + System colors + + + + + QWidget + + Clear + + + + Reset + + + + + QobuzRequest + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Unknown error + + + + + QobuzService + + Authenticating... + + + + Maximum number of login attempts reached. + + + + Missing Qobuz app ID. + + + + Missing Qobuz username. + + + + Missing Qobuz password. + + + + Not authenticated with Qobuz. + + + + Missing Qobuz app ID or secret. + + + + + QobuzSettingsPage + + Qobuz + + + + Enable + + + + Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these. + + + + Authentication + + + + App ID + + + + Username + + + + Password + + + + App Secret + + + + Login + + + + Preferences + + + + Audio format + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Base64 encoded secret + + + + Configuration incomplete + + + + Missing app id. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + + + + + QobuzStreamURLRequest + + Missing Qobuz app ID or secret. + + + + Cancelled. + + + + + Queue + + %n track(s) + + + + + + + QueueView + + QueueView + + + + Move down + + + + Ctrl+Up + + + + Move up + + + + Ctrl+Down + + + + Remove + + + + Clear + + + + Ctrl+K + + + + + RadioParadiseService + + Getting %1 channels + + + + + RadioView + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Open homepage + + + + Donate + + + + Refresh channels + + + + + RadioViewContainer + + Form + + + + + SCollection + + Saving playcounts and ratings + + + + + SavePlaylistsDialog + + Select directory for saving playlists + + + + Type + + + + Select directory for the playlists + + + + Directory does not exist. + + + + + SavedGroupingManager + + Saved Grouping Manager + + + + Remove + + + + Ctrl+Up + + + + Name + + + + First level + + + + Second Level + + + + Third Level + + + + None + + + + Album artist + + + + Artist + + + + Album + + + + Album - Disc + + + + Year - Album + + + + Year - Album - Disc + + + + Original year - Album + + + + Original year - Album - Disc + + + + Disc + + + + Year + + + + Original year + + + + Genre + + + + Composer + + + + Performer + + + + Grouping + + + + File type + + + + Format + + + + Sample rate + + + + Bit depth + + + + Bitrate + + + + Unknown + + + + + ScrobblerSettingsPage + + Scrobbler + + + + Enable + + + + Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier). + + + + Work in offline mode (Only cache scrobbles) + + + + Show scrobble button + + + + Show love button + + + + Submit scrobbles every + + + + seconds + + + + (This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately). + + + + Prefer album artist when sending scrobbles + + + + Show dialog for errors + + + + Strip "remastered" and similar from album and title + + + + Enable scrobbling for the following sources: + + + + Collection + + + + Subsonic + + + + Local file + + + + Tidal + + + + Device + + + + Qobuz + + + + CDDA + + + + SomaFM + + + + Stream + + + + Radio Paradise + + + + Unknown + + + + Last.fm + + + + Login + + + + Libre.fm + + + + Listenbrainz + + + + User token: + + + + Enter your user token from + + + + + ScrobblingAPI20 + + %1 Scrobbler Authentication + + + + Open URL in web browser? + + + + Press "Save" to copy the URL to clipboard and manually open it in a web browser. + + + + Could not open URL. Please open this URL in your browser + + + + Invalid reply from web browser. Missing token. + + + + Received invalid reply from web browser. Try another browser. + + + + Scrobbler %1 is not authenticated! + + + + Scrobbler %1 error: %2 + + + + + SettingsDialog + + Settings + + + + General + + + + User interface + + + + Streaming + + + + + SmartPlaylistQuerySearchPage + + Form + + + + Search mode + + + + Match every search term (AND) + + + + Match one or more search terms (OR) + + + + Include all songs + + + + Search terms + + + + + SmartPlaylistQuerySortPage + + Form + + + + Sorting + + + + Put songs in a random order + + + + Sort songs by + + + + Limits + + + + Show all the songs + + + + Only show the first + + + + songs + + + + + SmartPlaylistQueryWizardPlugin + + Collection search + + + + Find songs in your collection that match the criteria you specify. + + + + Search terms + + + + A song will be included in the playlist if it matches these conditions. + + + + Search options + + + + Choose how the playlist is sorted and how many songs it will contain. + + + + + SmartPlaylistSearchPreview + + Form + + + + Preview + + + + Loading... + + + + %1 songs found (showing %2) + + + + %1 songs found + + + + + SmartPlaylistSearchTermWidget + + Form + + + + and + + + + ago + + + + The second value must be greater than the first one! + + + + + SmartPlaylistSearchTermWidgetOverlay + + Add search term + + + + + SmartPlaylistWizard + + Smart playlist + + + + Playlist type + + + + A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs. + + + + Finish + + + + Choose a name for your smart playlist + + + + + SmartPlaylistWizardFinishPage + + Form + + + + Name + + + + Use dynamic mode + + + + In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes. + + + + + SmartPlaylists + + Newest tracks + + + + 50 random tracks + + + + Ever played + + + + Never played + + + + Last played + + + + Most played + + + + Favourite tracks + + + + All tracks + + + + Dynamic random mix + + + + + SmartPlaylistsViewContainer + + New smart playlist + + + + Edit smart playlist + + + + Delete smart playlist + + + + New smart playlist... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Play next + + + + Edit smart playlist... + + + + + SnapDialog + + Strawberry is running as a Snap + + + + It is detected that Strawberry is running as a Snap + + + + Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares. + + + + For Ubuntu there is an official PPA repository available at %1. + + + + Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information. + + + + For a better experience please consider the other options above. + + + + Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap: + + + + Uninstall the snap with: + + + + Install strawberry through PPA: + + + + + SomaFMService + + Getting %1 channels + + + + + SongLoader + + You need GStreamer for this URL. + + + + Preload function was not set for blocking operation. + + + + File %1 does not exist. + + + + CD playback is only available with the GStreamer engine. + + + + Could not open file %1 for reading: %2 + + + + Could not open CUE file %1 for reading: %2 + + + + Could not open playlist file %1 for reading: %2 + + + + Couldn't create GStreamer source element for %1 + + + + Couldn't create GStreamer typefind element for %1 + + + + Couldn't create GStreamer fakesink element for %1 + + + + Couldn't link GStreamer source, typefind and fakesink elements for %1 + + + + + SongLoaderInserter + + Error while loading audio CD. + + + + Loading tracks + + + + Loading tracks info + + + + + SpotifyRequest + + Authenticating... + + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + Data missing error + + + + + SpotifyService + + Spotify Authentication + + + + Please open this URL in your browser + + + + Redirect missing token code or state! + + + + Received invalid reply from web browser. + + + + Not authenticated with Spotify. + + + + + SpotifySettingsPage + + Spotify + + + + Enable + + + + Basic authentication + + + + Authenticate + + + + <html><head/><body><p>The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See <a href="https://wiki.strawberrymusicplayer.org/wiki/Installing_GStreamer_Spotify_plugin"><span style=" text-decoration: underline; color:#2980b9;">Wiki</span></a> for instructions on how to install the plugin.</p></body></html> + + + + Preferences + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Authentication failed + + + + + StreamingCollectionView + + The streaming collection is empty! + + + + Click here to retrieve music + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Queue to play next + + + + Remove from favorites + + + + + StreamingCollectionViewContainer + + Form + + + + Close + + + + Abort + + + + Refresh catalogue + + + + + StreamingSearchModel + + Various artists + + + + + StreamingSearchView + + Streaming Search View + + + + MenuPopupToolButton + + + + artists + + + + albums + + + + songs + + + + Enter search terms above to find music + + + + Configure %1... + + + + Append to current playlist + + + + Replace current playlist + + + + Open in new playlist + + + + Queue track + + + + Add to artists + + + + Add to albums + + + + Add to songs + + + + Search for this + + + + Group by + + + + + StreamingSongsView + + Configure %1... + + + + + StreamingTabsView + + Streaming Tabs View + + + + Artists + + + + Albums + + + + Songs + + + + Search + + + + Configure %1... + + + + + SubsonicRequest + + Retrieving albums... + + + + Retrieving songs for %1 album... + + + + Retrieving songs for %1 albums... + + + + Retrieving album cover for %1 album... + + + + Retrieving album covers for %1 albums... + + + + Unknown error + + + + + SubsonicService + + Server URL is invalid. + + + + Missing username or password. + + + + + SubsonicSettingsPage + + Subsonic + + + + Enable + + + + Server URL + + + + Authentication + + + + Username + + + + Password + + + + Authentication method: + + + + Hex + + + + MD5 token (Recommended) + + + + Preferences + + + + Use HTTP/2 when possible + + + + Verify server certificate + + + + Download album covers + + + + Server-side scrobbling + + + + Test + + + + Delete songs + + + + Configuration incomplete + + + + Missing server url, username or password. + + + + Configuration incorrect + + + + Server URL is invalid. + + + + Test successful! + + + + Test failed! + + + + + SubsonicUrlHandler + + Subsonic server URL is invalid. + + + + Missing Subsonic username or password. + + + + + SystemTrayIcon + + Pause + + + + Play + + + + + TagFetcher + + Identifying song + + + + Fingerprinting song + + + + Downloading metadata + + + + + TidalRequest + + Authenticating... + + + + Receiving artists... + + + + Receiving albums... + + + + Receiving songs... + + + + Searching... + + + + Receiving albums for %1 artist... + + + + Receiving albums for %1 artists... + + + + Receiving songs for %1 album... + + + + Receiving songs for %1 albums... + + + + Receiving album cover for %1 album... + + + + Receiving album covers for %1 albums... + + + + No match. + + + + + TidalService + + Reply from Tidal is missing query items. + + + + Missing Tidal API token. + + + + Missing Tidal username. + + + + Missing Tidal password. + + + + Not authenticated with Tidal and reached maximum number of login attempts. + + + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + + TidalSettingsPage + + Tidal + + + + Enable + + + + Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these. + + + + Authentication + + + + Use OAuth + + + + Client ID + + + + API Token + + + + Username + + + + Password + + + + Login + + + + Preferences + + + + Audio quality + + + + Search delay + + + + ms + + + + Artists search limit + + + + Albums search limit + + + + Songs search limit + + + + Download album covers + + + + Fetch entire albums when searching songs + + + + Album cover size + + + + Stream URL method + + + + Append explicit to album title for explicit albums + + + + Configuration incomplete + + + + Missing Tidal client ID. + + + + Missing API token. + + + + Missing username. + + + + Missing password. + + + + Authentication failed + + + + + TidalStreamURLRequest + + Not authenticated with Tidal. + + + + Missing Tidal API token, username or password. + + + + Cancelled. + + + + Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams. + + + + + TrackSelectionDialog + + Tag fetcher + + + + Sorry + + + + Strawberry was unable to find results for this file + + + + Select best possible match + + + + Track + + + + Year + + + + Title + + + + Artist + + + + Album + + + + Previous + + + + Next + + + + Original tags + + + + Suggested tags + + + + Saving tracks + + + + + TrackSlider + + Form + + + + 0:00:00 + + + + Click to toggle between remaining time and total time + + + + + TranscodeDialog + + Transcode Music + + + + Files to transcode + + + + Filename + + + + Directory + + + + Add... + + + + Remove + + + + Add all tracks from a directory and all its subdirectories + + + + Import... + + + + Output options + + + + Audio format + + + + Options... + + + + Destination + + + + Alongside the originals + + + + Select... + + + + Progress + + + + Details... + + + + Clear + + + + Start transcoding + + + + %n remaining + + + + + + %n finished + + + + + + %n failed + + + + + + Add files to transcode + + + + Music + + + + Open a directory to import music from + + + + Add folder + + + + + TranscodeLogDialog + + Transcoder Log + + + + + Transcoder + + Could not create the GStreamer element "%1" - make sure you have all the required GStreamer plugins installed + + + + Successfully written %1 + + + + Transcoding %1 files using %2 threads + + + + Error processing %1: %2 + + + + Starting %1 + + + + Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed + + + + Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed + + + + + TranscoderOptionsAAC + + Form + + + + Bitrate + + + + kbps + + + + Profile + + + + Main profile (MAIN) + + + + Low complexity profile (LC) + + + + Scalable sampling rate profile (SSR) + + + + Long term prediction profile (LTP) + + + + Use temporal noise shaping + + + + Allow mid/side encoding + + + + Block type + + + + Normal block type + + + + No short blocks + + + + No long blocks + + + + + TranscoderOptionsASF + + Form + + + + Bitrate + + + + kbps + + + + + TranscoderOptionsDialog + + Transcoding options + + + + + TranscoderOptionsFLAC + + Form + + + + Quality + Sound quality + + + + Fast + + + + Best + + + + + TranscoderOptionsMP3 + + Form + + + + Optimize for &quality + + + + Quality + Sound quality + + + + Opti&mize for bitrate + + + + Bitrate + + + + kbps + + + + Constant bitrate + + + + Encoding engine quality + + + + Fast + + + + Standard + + + + High + + + + Force mono encoding + + + + + TranscoderOptionsOpus + + Form + + + + Bitrate + + + + kbps + + + + + TranscoderOptionsSpeex + + Form + + + + Quality + Sound quality + + + + Bitrate + + + + automatic + + + + kbps + + + + Average bitrate + + + + disabled + + + + Encoding mode + + + + Auto + + + + Ultra wide band (UWB) + + + + Wide band (WB) + + + + Narrow band (NB) + + + + Variable bit rate + + + + Voice activity detection + + + + Discontinuous transmission + + + + Encoding complexity + + + + Frames per buffer + + + + + TranscoderOptionsVorbis + + Form + + + + Quality + Sound quality + + + + Use bitrate management engine + + + + Target bitrate + + + + kbps + + + + Minimum bitrate + + + + disabled + + + + Maximum bitrate + + + + + TranscoderOptionsWavPack + + Form + + + + + TranscoderSettingsPage + + Transcoding + + + + These settings are used in the "Transcode Music" dialog, and when converting music before copying it to a device. + + + + FLAC + + + + WavPack + + + + Vorbis + + + + Opus + + + + Speex + + + + AAC + + + + ASF (WMA) + + + + MP3 + + + + + Udisks2Lister + + D-Bus path + + + + Serial number + + + + Mount points + + + + Partition label + + + + UUID + + + + + UserPassDialog + + Enter username and password + + + + Username + + + + Password + + + + diff --git a/src/translations/sv_SE.po b/src/translations/sv_SE.po deleted file mode 100644 index 9c3bbd23..00000000 --- a/src/translations/sv_SE.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: sv-SE\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Swedish\n" -"Language: sv_SE\n" -"PO-Revision-Date: 2024-10-06 18:59\n" - -msgid "All Files (*)" -msgstr "Alla filer (*)" - -msgid "Context" -msgstr "Kontext" - -msgid "Collection" -msgstr "Samling" - -msgid "Queue" -msgstr "Kö" - -msgid "Playlists" -msgstr "Spellistor" - -msgid "Smart playlists" -msgstr "Smarta spellistor" - -msgid "Files" -msgstr "Filer" - -msgid "Radios" -msgstr "Radiokanaler" - -msgid "Devices" -msgstr "Enheter" - -msgid "Subsonic" -msgstr "Subsonic" - -msgid "Tidal" -msgstr "Tidal" - -msgid "Spotify" -msgstr "Spotify" - -msgid "Qobuz" -msgstr "Qobuz" - -msgid "Show all songs" -msgstr "Visa alla låtar" - -msgid "Show only duplicates" -msgstr "Visa endast dubbletter" - -msgid "Show only untagged" -msgstr "Visa endast utan taggar" - -msgid "Configure collection..." -msgstr "Anpassa samling..." - -msgid "Play" -msgstr "Spela" - -msgid "Stop after this track" -msgstr "Stoppa efter det här spåret" - -msgid "Toggle queue status" -msgstr "Växla köstatus" - -msgid "Queue selected tracks to play next" -msgstr "Lägg till valda spår i kön för att spela som nästa" - -msgid "Toggle skip status" -msgstr "Växla status för hoppa över" - -msgid "Rescan song(s)..." -msgstr "Skanna om låt(ar)..." - -msgid "Copy URL(s)..." -msgstr "Kopiera webbadress(er)..." - -msgid "Show in collection..." -msgstr "Visa i samlingen..." - -msgid "Show in file browser..." -msgstr "Visa i filhanterare..." - -msgid "Organize files..." -msgstr "Organisera filer..." - -msgid "Copy to collection..." -msgstr "Kopiera till samling..." - -msgid "Move to collection..." -msgstr "Flytta till samling..." - -msgid "Copy to device..." -msgstr "Kopiera till enhet..." - -msgid "Delete from disk..." -msgstr "Ta bort från disk..." - -msgid "Check for updates..." -msgstr "Sök efter uppdateringar..." - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry körs under Rosetta" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "Du kör Strawberry under Rosetta. Att köra Strawberry under Rosetta stöds inte och är känt för att ha problem. Du bör hämta Strawberry för korrekt CPU-arkitektur från %1" - -msgid "Sponsoring Strawberry" -msgstr "Sponsring av Strawberry" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry är gratis programvara med öppen källkod. Om du gillar Strawberry, överväg att sponsra projektet. För mer information om sponsring, se vår webbplats %1" - -msgid "Pause" -msgstr "Pausa" - -msgid "Dequeue track" -msgstr "Ta bort spår från kön" - -msgid "Dequeue selected tracks" -msgstr "Ta bort valda spår från kön" - -msgid "Queue track" -msgstr "Lägg till spår i kön" - -msgid "Queue selected tracks" -msgstr "Lägg till valda spår i kön" - -msgid "Queue to play next" -msgstr "Lägg till i kön för att spela som nästa" - -msgid "Unskip track" -msgstr "Hoppa inte över valt spår" - -msgid "Unskip selected tracks" -msgstr "Hoppa inte över valda spår" - -msgid "Skip track" -msgstr "Hoppa över spår" - -msgid "Skip selected tracks" -msgstr "Hoppa över valda spår" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Ställ in %1 till \"%2\"..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Redigera taggen \"%1\"..." - -msgid "Add to another playlist" -msgstr "Lägg till i en annan spellista" - -msgid "New playlist" -msgstr "Ny spellista" - -msgid "Add file" -msgstr "Lägg till fil" - -msgid "Music" -msgstr "Musik" - -msgid "Add folder" -msgstr "Lägg till mapp" - -msgid "Clear playlist" -msgstr "Rensa spellista" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Spellistan har %1 låtar, för stora för att ångra, är du säker på att du vill rensa spellistan?" - -msgid "Error" -msgstr "Fel" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Ingen av de valda låtarna lämpar sig för kopiering till en enhet" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Den version av Strawberry som du just har uppdaterat till kräver en fullständig omskanning av samlingen på grund av de nya funktionerna nedan:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Vill du köra en fullständig omskanning nu?" - -msgid "Collection rescan notice" -msgstr "Notis om omskanning av samling" - -msgid "Usage" -msgstr "Användning" - -msgid "options" -msgstr "alternativ" - -msgid "URL(s)" -msgstr "Webbadress(er)" - -msgid "Player options" -msgstr "Spelaralternativ" - -msgid "Start the playlist currently playing" -msgstr "Starta spellistan som nu spelas" - -msgid "Play if stopped, pause if playing" -msgstr "Spela om stoppad, pausa vid spelning" - -msgid "Pause playback" -msgstr "Pausa uppspelning" - -msgid "Stop playback" -msgstr "Stoppa uppspelning" - -msgid "Stop playback after current track" -msgstr "Stoppa uppspelning efter aktuellt spår" - -msgid "Skip backwards in playlist" -msgstr "Hoppa bakåt i spellista" - -msgid "Skip forwards in playlist" -msgstr "Hoppa framåt i spellista" - -msgid "Set the volume to percent" -msgstr "Ställ in volymen till procent" - -msgid "Increase the volume by 4 percent" -msgstr "Höj volymen med 4 procent" - -msgid "Decrease the volume by 4 percent" -msgstr "Sänk volymen med 4 procent" - -msgid "Increase the volume by percent" -msgstr "Höj volymen med procent" - -msgid "Decrease the volume by percent" -msgstr "Sänk volymen med procent" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Hoppa till en absolut position i spår som nu spelas" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Hoppa till en relativ position i spår som nu spelas" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Starta om spåret, eller spela föregående spår om inom 8 sekunder efter start." - -msgid "Playlist options" -msgstr "Alternativ för spellista" - -msgid "Create a new playlist with files" -msgstr "Skapa en ny spellista med filer" - -msgid "Append files/URLs to the playlist" -msgstr "Lägg till filer/webbadresser till spellistan" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Läser in filer/webbadresser, ersätter aktuell spellista" - -msgid "Play the th track in the playlist" -msgstr "Spela det spåret i spellistan" - -msgid "Play given playlist" -msgstr "Spela given spellista" - -msgid "Other options" -msgstr "Övriga flaggor" - -msgid "Display the on-screen-display" -msgstr "Visa avisering" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Växla synlighet för snygg avisering" - -msgid "Change the language" -msgstr "Ändra språket" - -msgid "Resize the window" -msgstr "Ändra storlek på fönstret" - -msgid "Equivalent to --log-levels *:1" -msgstr "Motsvarar --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Motsvarar --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Kommaseparerad lista över class:level; level är 0-3" - -msgid "Print out version information" -msgstr "Visa versionsinformation" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "Det gick inte att köra SQL-förfråga: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "Misslyckad SQL-förfråga: %1" - -msgid "Integrity check" -msgstr "Integritetskontroll" - -msgid "Database corruption detected." -msgstr "Databasskada upptäcktes." - -msgid "Backing up database" -msgstr "Säkerhetskopierar databas" - -msgid "Deleting files" -msgstr "Tar bort filer" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "Det gick inte att skapa katalogen %1." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "Målfilen %1 finns, men får inte skrivas över." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "Målfilen %1 finns, men får inte skrivas över" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "Det gick inte att kopiera filen %1 till %2." - -msgid "Unknown" -msgstr "Okänt" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Du behöver GStreamer för den här webbadressen." - -msgid "Preload function was not set for blocking operation." -msgstr "Förinläsningsfunktionen var inte inställd för blockering." - -#, qt-format -msgid "File %1 does not exist." -msgstr "Filen %1 finns inte." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Filen %1 känns inte igen som en giltig ljudfil." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "CD-uppspelning är endast tillgänglig med GStreamer-motorn." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Det gick inte att öppna filen %1 för läsning: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Det gick inte att öppna CUE-filen %1 för läsning: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Det gick inte att öppna spellistefilen %1 för läsning: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Det gick inte att skapa GStreamer-källelementet för %1" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "Det gick inte att skapa GStreamer typfind-element för %1" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "Det gick inte att skapa GStreamer fakesink-element för %1" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "Det gick inte att länka GStreamer-källa, typfind och fakesink-element för %1" - -msgid "Playlist" -msgstr "Spellista" - -msgid "1 day" -msgstr "1 dag" - -#, qt-format -msgid "%1 days" -msgstr "%1 dagar" - -msgid "Today" -msgstr "Idag" - -msgid "Yesterday" -msgstr "Igår" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 dagar sedan" - -msgid "Tomorrow" -msgstr "Imorgon" - -#, qt-format -msgid "In %1 days" -msgstr "Om %1 dagar" - -msgid "Next week" -msgstr "Nästa vecka" - -#, qt-format -msgid "In %1 weeks" -msgstr "Om %1 veckor" - -msgid "Show in file browser" -msgstr "Visa i filhanteraren" - -msgid "Too many songs selected." -msgstr "För många låtar valda." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "%1 låtar i %2 olika valda mappar, är du säker på att du vill öppna dem alla?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "Det gick inte att läsa in bilden från data för %1" - -msgid "Success" -msgstr "Lyckades" - -msgid "File is unsupported" -msgstr "Filen stöds inte" - -msgid "Filename is missing" -msgstr "Filnamn saknas" - -msgid "File does not exist" -msgstr "Filen finns inte" - -msgid "File could not be opened" -msgstr "Det gick inte att öppna filen" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "Det gick att spara filen" - -msgid "Unknown error" -msgstr "Okänt fel" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "Prefix en sökterm med ett fältnamn för att begränsa sökningen till det fältet, t.ex.:" - -msgid "artist" -msgstr "artist" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "Söktermer för numeriska fält kan prefixas med %1 eller %2 för att förfina sökningen, t.ex.:" - -msgid "rating" -msgstr "betyg" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "Flera söktermer kan också kombineras med \"%1\" (standard) och \"%2\", samt grupperas med parenteser." - -msgid "Available fields" -msgstr "Tillgängliga fält" - -msgid "Buffering" -msgstr "Buffrar" - -msgid "Framerate" -msgstr "Bildfrekvens" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Låg (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Mellan (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Hög (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Väldigt hög (%1 fps)" - -msgid "No analyzer" -msgstr "Ingen analysator" - -msgid "Block analyzer" -msgstr "Blockanalysator" - -msgid "Boom analyzer" -msgstr "Boom-analysator" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Förförstärkare" - -msgid "Custom" -msgstr "Anpassad" - -msgid "Classical" -msgstr "Klassisk" - -msgid "Club" -msgstr "Klubb" - -msgid "Dance" -msgstr "Dans" - -msgid "Full Bass" -msgstr "Hel bas" - -msgid "Full Treble" -msgstr "Hel diskant" - -msgid "Full Bass + Treble" -msgstr "Hel bas + diskant" - -msgid "Laptop/Headphones" -msgstr "Bärbar dator/hörlurar" - -msgid "Large Hall" -msgstr "Stor sal" - -msgid "Live" -msgstr "Live" - -msgid "Party" -msgstr "Fest" - -msgid "Pop" -msgstr "Pop" - -msgid "Reggae" -msgstr "Reggae" - -msgid "Rock" -msgstr "Rock" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "Ska" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "Noll" - -msgid "Save preset" -msgstr "Spara förinställning" - -msgid "Name" -msgstr "Namn" - -msgid "Delete preset" -msgstr "Ta bort förinställning" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Är du säker på att du vill ta bort förinställningen \"%1\"?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 dB" - -msgid "Filetype" -msgstr "Filtyp" - -msgid "Length" -msgstr "Längd" - -msgid "Samplerate" -msgstr "Samplingsfrekvens" - -msgid "Bit depth" -msgstr "Bitdjup" - -msgid "Bitrate" -msgstr "Bitfrekvens" - -msgid "EBU R 128 Integrated Loudness" -msgstr "EBU R 128 integrerad ljudstyrka" - -msgid "EBU R 128 Loudness Range" -msgstr "EBU R 128 ljudstyrkeintervall" - -msgid "Show album cover" -msgstr "Visa albumomslag" - -msgid "Show song technical data" -msgstr "Visa låttekniska data" - -msgid "Show song lyrics" -msgstr "Visa låttexter" - -msgid "Automatically search for song lyrics" -msgstr "Sök automatiskt efter låttexter" - -msgid "No song playing" -msgstr "Ingen låt spelas" - -#, qt-format -msgid "%1 song" -msgstr "%1 låt" - -#, qt-format -msgid "%1 songs" -msgstr "%1 låtar" - -#, qt-format -msgid "%1 artist" -msgstr "%1 artist" - -#, qt-format -msgid "%1 artists" -msgstr "%1 artister" - -#, qt-format -msgid "%1 album" -msgstr "%1 album" - -#, qt-format -msgid "%1 albums" -msgstr "%1 album" - -msgid "kbps" -msgstr "kbps" - -msgid "Saving playcounts and ratings" -msgstr "Sparar antal spelningar och betyg" - -msgid "Various artists" -msgstr "Diverse artister" - -msgid "Loading..." -msgstr "Läser in..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "Det gick inte att köra samlings-SQL-förfråga: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "Uppdaterar %1-databasen." - -msgid "Updating collection" -msgstr "Uppdaterar samlingen" - -#, qt-format -msgid "Updating %1" -msgstr "Uppdaterar %1" - -msgid "Your collection is empty!" -msgstr "Din samling är tom!" - -msgid "Click here to add some music" -msgstr "Klicka här för att lägga till musik" - -msgid "Append to current playlist" -msgstr "Lägg till i aktuell spellista" - -msgid "Replace current playlist" -msgstr "Ersätt aktuell spellista" - -msgid "Open in new playlist" -msgstr "Öppna i ny spellista" - -msgid "Search for this" -msgstr "Sök efter det här" - -msgid "Edit track information..." -msgstr "Redigera spårinformation..." - -msgid "Edit tracks information..." -msgstr "Redigera spårinformation..." - -msgid "Rescan song(s)" -msgstr "Skanna om av låt(ar)..." - -msgid "Show in various artists" -msgstr "Visa i diverse artister" - -msgid "Don't show in various artists" -msgstr "Visa inte i diverse artister" - -msgid "There are other songs in this album" -msgstr "Det finns andra låtar i det här albumet" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Vill du flytta de andra låtarna i det här albumet till diverse artister också?" - -msgid "Show" -msgstr "Visa" - -msgid "Group by" -msgstr "Gruppera efter" - -msgid "Display options" -msgstr "Visningsalternativ" - -msgid "Group by Album artist/Album" -msgstr "Gruppera efter artist/album" - -msgid "Group by Album artist/Album - Disc" -msgstr "Gruppera efter albumartist/album - Skiva" - -msgid "Group by Album artist/Year - Album" -msgstr "Gruppera efter albumartist/år - album" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Gruppera efter albumartist/år - album - skiva" - -msgid "Group by Artist/Album" -msgstr "Gruppera efter artist/album" - -msgid "Group by Artist/Album - Disc" -msgstr "Gruppera efter artist/album - skiva" - -msgid "Group by Artist/Year - Album" -msgstr "Gruppera efter artist/år - album" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Gruppera efter artist/år - album - skiva" - -msgid "Group by Genre/Album artist/Album" -msgstr "Gruppera efter genre/albumartist/album" - -msgid "Group by Genre/Artist/Album" -msgstr "Gruppera efter genre/artist/album" - -msgid "Group by Album Artist" -msgstr "Gruppera efter Albumartist" - -msgid "Group by Artist" -msgstr "Gruppera efter artist" - -msgid "Group by Album" -msgstr "Gruppera efter album" - -msgid "Group by Genre/Album" -msgstr "Gruppera efter genre/album" - -msgid "Advanced grouping..." -msgstr "Avancerad gruppering..." - -msgid "Grouping Name" -msgstr "Grupperingsnamn" - -msgid "Grouping name:" -msgstr "Grupperingsnamn:" - -msgid "First level" -msgstr "Första nivå" - -msgid "Second Level" -msgstr "Andra nivå" - -msgid "Third Level" -msgstr "Tredje nivå" - -msgid "None" -msgstr "Ingen" - -msgid "Album artist" -msgstr "Albumartist" - -msgid "Artist" -msgstr "Artist" - -msgid "Album" -msgstr "Album" - -msgid "Album - Disc" -msgstr "Album - Skiva" - -msgid "Year - Album" -msgstr "År - Album" - -msgid "Year - Album - Disc" -msgstr "År - Album - Skiva" - -msgid "Original year - Album" -msgstr "Originalår - Album" - -msgid "Original year - Album - Disc" -msgstr "Originalår - Album - Skiva" - -msgid "Disc" -msgstr "Skiva" - -msgid "Year" -msgstr "År" - -msgid "Original year" -msgstr "Originalår" - -msgid "Genre" -msgstr "Genre" - -msgid "Composer" -msgstr "Kompositör" - -msgid "Performer" -msgstr "Aktör" - -msgid "Grouping" -msgstr "Gruppering" - -msgid "File type" -msgstr "Filtyp" - -msgid "Format" -msgstr "Format" - -msgid "Sample rate" -msgstr "Samplingsfrekvens" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Titel" - -msgid "Track" -msgstr "Spår" - -msgid "Original Year" -msgstr "Originalår" - -msgid "Album Artist" -msgstr "Albumartist" - -msgid "Play Count" -msgstr "Antal spelningar" - -msgid "Skip Count" -msgstr "Hoppa över räkning" - -msgid "Last Played" -msgstr "Senast spelade" - -msgid "Sample Rate" -msgstr "Samplingsfrekvens" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "Filnamn" - -msgid "File Name (without path)" -msgstr "Filnamn (utan sökväg)" - -msgid "File Size" -msgstr "Filstorlek" - -msgid "File Type" -msgstr "Filtyp" - -msgid "Date Modified" -msgstr "Datum ändrat" - -msgid "Date Created" -msgstr "Datum skapat" - -msgid "Comment" -msgstr "Kommentar" - -msgid "Source" -msgstr "Källa" - -msgid "Mood" -msgstr "Stämning" - -msgid "Rating" -msgstr "Betyg" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "Integrerad ljudstyrka" - -msgid "Loudness Range" -msgstr "Ljudstyrkeintervall" - -msgid "Undo" -msgstr "Ångra" - -msgid "Redo" -msgstr "Gör om" - -msgid "Load playlist" -msgstr "Läs in spellista" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Inga träffar hittades. Töm sökrutan för att visa hela spellistan igen." - -msgid "stop" -msgstr "stoppa" - -msgid "Never" -msgstr "Aldrig" - -msgid "&Hide..." -msgstr "&Dölj..." - -msgid "&Stretch columns to fit window" -msgstr "&Sträck ut kolumner så de passar i fönstret" - -msgid "&Reset columns to default" -msgstr "&Återställ kolumner till standard" - -msgid "&Lock rating" -msgstr "&Lås betyg" - -msgid "&Align text" -msgstr "&Justera text" - -msgid "&Left" -msgstr "&Vänster" - -msgid "&Center" -msgstr "&Centrera" - -msgid "&Right" -msgstr "&Höger" - -#, qt-format -msgid "&Hide %1" -msgstr "&Dölj %1" - -msgid "New folder" -msgstr "Ny mapp" - -msgid "Delete" -msgstr "Ta bort" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Spara spellista" - -msgid "Enter the name of the folder" -msgstr "Ange mappens namn" - -msgid "Copy to device" -msgstr "Kopiera till enhet" - -msgid "Playlist must be open first." -msgstr "Spellistan måste vara öppen först." - -msgid "Remove playlists" -msgstr "Ta bort spellistor" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Du är på väg att ta bort %1 spellistor från dina favoriter, är du säker?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Du kan göra spellistor till favoriter genom att klicka på stjärnikonen intill ett namn på en spellista" - -msgid "Favorited playlists will be saved here" -msgstr "Favoritspellistor sparas här" - -msgid "Couldn't create playlist" -msgstr "Kunde inte skapa spellista" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Spara spellista" - -msgid "Unknown playlist extension" -msgstr "Okänd ändelse för spellista" - -msgid "Unknown file extension for playlist." -msgstr "Okänd filändelse för spellista." - -#, qt-format -msgid "%1 selected of" -msgstr "%1 valda av" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Automatisk" - -msgid "Relative" -msgstr "Relativ" - -msgid "Absolute" -msgstr "Absolut" - -msgid "Star playlist" -msgstr "Stjärnmarkera spellista" - -msgid "Close playlist" -msgstr "Stäng spellista" - -msgid "Rename playlist..." -msgstr "Byt namn på spellista..." - -msgid "Save playlist..." -msgstr "Spara spellista..." - -msgid "Rename playlist" -msgstr "Byt namn på spellista" - -msgid "Enter a new name for this playlist" -msgstr "Ange ett nytt namn för den här spellistan" - -msgid "Remove playlist" -msgstr "Ta bort spellista" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Du är på väg att ta bort en spellista som inte ingår i dina favoritspellistor: spellistan kommer att tas bort (den här åtgärden kan inte ångras).\n" -"Är du säker på att du vill fortsätta?" - -msgid "Warn me when closing a playlist tab" -msgstr "Varna mig när jag stänger en spellisteflik" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Det här alternativet kan ändras i inställningarna för \"Beteende\"" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Dubbelklicka här för att favorisera den här spellistan så att den sparas och förblir tillgänglig från panelen \"Spellistor\" på det vänstra sidofältet" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "lägg till %n låtar" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "ta bort %n låtar" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "flytta %n låtar" - -msgid "sort songs" -msgstr "sortera låtar" - -msgid "shuffle songs" -msgstr "blanda låtar" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Fel vid inläsning av ljud-CD." - -msgid "Loading tracks" -msgstr "Läser in spår" - -msgid "Loading tracks info" -msgstr "Läser in låtinformation" - -msgid "Saving CUE files is not supported." -msgstr "Spara CUE-filer stöds inte." - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "Vet inte hur man hanterar %1" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Alla spellistor (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 spellistor (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "Okänd filtyp: %1" - -#, qt-format -msgid "Could not open file %1" -msgstr "Det gick inte att öppna filen %1" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Läser in smart spellista" - -msgid "Collection search" -msgstr "Samlingssökning" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Hitta låtar i ditt bibliotek som matchar de kriterier du anger." - -msgid "Search terms" -msgstr "Söktermer" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "En låt kommer att inkluderas i spellistan om den matchar dessa villkor." - -msgid "Search options" -msgstr "Sökalternativ" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Välj hur spellistan ska sorteras och hur många låtar den ska innehålla." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 låtar hittades (visar %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 låtar hittades" - -msgid "after" -msgstr "efter" - -msgid "before" -msgstr "före" - -msgid "on" -msgstr "på" - -msgid "not on" -msgstr "inte den" - -msgid "in the last" -msgstr "de senaste" - -msgid "not in the last" -msgstr "inte de senaste" - -msgid "between" -msgstr "mellan" - -msgid "contains" -msgstr "som innehåller" - -msgid "does not contain" -msgstr "som inte innehåller" - -msgid "starts with" -msgstr "som börjar med" - -msgid "ends with" -msgstr "som slutar med" - -msgid "greater than" -msgstr "som är större än" - -msgid "less than" -msgstr "som är mindre än" - -msgid "equals" -msgstr "som är lika med" - -msgid "not equals" -msgstr "inte lika med" - -msgid "empty" -msgstr "tom" - -msgid "not empty" -msgstr "inte tom" - -msgid "A-Z" -msgstr "A-Ö" - -msgid "Z-A" -msgstr "Ö-A" - -msgid "oldest first" -msgstr "äldsta först" - -msgid "newest first" -msgstr "nyaste först" - -msgid "shortest first" -msgstr "korstaste först" - -msgid "longest first" -msgstr "längsta först" - -msgid "smallest first" -msgstr "minsta först" - -msgid "biggest first" -msgstr "största först" - -msgid "Hours" -msgstr "Timmar" - -msgid "Days" -msgstr "Dagar" - -msgid "Weeks" -msgstr "Veckor" - -msgid "Months" -msgstr "Månader" - -msgid "Years" -msgstr "År" - -msgid "The second value must be greater than the first one!" -msgstr "Det andra värdet måste vara större än det första!" - -msgid "Add search term" -msgstr "Lägg till sökterm" - -msgid "Newest tracks" -msgstr "Nyaste spåren" - -msgid "50 random tracks" -msgstr "50 slumpmässiga spår" - -msgid "Ever played" -msgstr "Någonsin spelade" - -msgid "Never played" -msgstr "Aldrig spelade" - -msgid "Last played" -msgstr "Senast spelade" - -msgid "Most played" -msgstr "Mest spelade" - -msgid "Favourite tracks" -msgstr "Favoritspår" - -msgid "Least favourite tracks" -msgstr "Minst omtyckta spår" - -msgid "All tracks" -msgstr "Alla spår" - -msgid "Dynamic random mix" -msgstr "Dynamisk slumpmässig mixning" - -msgid "New smart playlist..." -msgstr "Ny smart spellista..." - -msgid "Play next" -msgstr "Spela nästa" - -msgid "Edit smart playlist..." -msgstr "Redigera smart spellista..." - -msgid "Delete smart playlist" -msgstr "Ta bort smart spellista" - -msgid "Smart playlist" -msgstr "Smart spellista" - -msgid "Playlist type" -msgstr "Spellistetyp" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "En smart spellista är en dynamisk lista över låtar som finns i ditt bibliotek. Det finns olika typer av smarta spellistor som väljer låtar på olika sätt." - -msgid "Finish" -msgstr "Avsluta" - -msgid "Choose a name for your smart playlist" -msgstr "Välj ett namn för din smarta spellista" - -msgid "Abort" -msgstr "Avbryt" - -msgid "All albums" -msgstr "Alla album" - -msgid "Albums with covers" -msgstr "Album med omslag" - -msgid "Albums without covers" -msgstr "Album utan omslag" - -msgid "Really cancel?" -msgstr "Verkligen avbryta?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Stängning av det här fönstret kommer att stoppa sökningen efter albumomslag." - -msgid "Don't stop!" -msgstr "Stoppa inte!" - -msgid "All artists" -msgstr "Alla artister" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Erhöll %1 omslag av %2 (%3 misslyckades)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 överfört" - -msgid "Export finished" -msgstr "Exporten är klar" - -msgid "No covers to export." -msgstr "Inga omslag att exportera." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Exporterat %1 omslag av %2 (%3 överhoppade)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "Det gick inte att spara omslag till filen %1." - -#, qt-format -msgid "Covers from %1" -msgstr "Omslag från %1" - -msgid "Search" -msgstr "Sök" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Bilder (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Bilder (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Alla filer (*)" - -msgid "Load cover from disk..." -msgstr "Läs in omslag från disk..." - -msgid "Save cover to disk..." -msgstr "Spara omslag till disk..." - -msgid "Load cover from URL..." -msgstr "Läs in omslag från webbadress..." - -msgid "Search for album covers..." -msgstr "Sök efter albumomslag..." - -msgid "Unset cover" -msgstr "Ta bort omslag" - -msgid "Delete cover" -msgstr "Ta bort omslag" - -msgid "Clear cover" -msgstr "Rensa omslag" - -msgid "Show fullsize..." -msgstr "Visa i full storlek..." - -msgid "Search automatically" -msgstr "Sök automatiskt" - -msgid "Load cover from disk" -msgstr "Läs in omslag från disk" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Det gick inte att öppna omslagsfilen %1 för läsning: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "Omslagsfilen %1 är tom." - -msgid "unknown" -msgstr "okänt" - -msgid "Save album cover" -msgstr "Spara albumomslag" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Det gick inte att öppna omslagsfilen %1 för att skriva: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Det gick inte att skriva omslaget till filen %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Det gick inte att skriva omslaget till filen %1." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Det gick inte att ta bort omslagsfilen %1: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Det gick inte att skriva omslaget till filen %1: %2" - -msgid "Total network requests made" -msgstr "Totalt antal nätverksförfrågningar" - -msgid "Average image size" -msgstr "Genomsnittlig bildstorlek" - -msgid "Total bytes transferred" -msgstr "Totalt överförda byte" - -msgid "Fetching cover error" -msgstr "Fel vid hämtning av omslag" - -msgid "The site you requested does not exist!" -msgstr "Webbplatsen du söker finns inte!" - -msgid "The site you requested is not an image!" -msgstr "Webbplatsen du söker är inte en bild!" - -msgid "Genius Authentication" -msgstr "Genius-autentisering" - -msgid "Please open this URL in your browser" -msgstr "Öppna den här webbadressen i din webbläsare" - -msgid "Redirect missing token code!" -msgstr "Omdirigering saknar token-kod!" - -msgid "Received invalid reply from web browser." -msgstr "Tog emot ogiltigt svar från webbläsaren." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Omdirigering från Genius saknar förfrågningsobjektkod eller tillstånd." - -msgid "General" -msgstr "Allmänt" - -msgid "User interface" -msgstr "Användargränssnitt" - -msgid "Streaming" -msgstr "Flöden" - -msgid "Add directory..." -msgstr "Lägg till mapp..." - -msgid "Write all playcounts and ratings to files" -msgstr "Skriv alla antal spelningar och betyg till filer" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Är du säker på att du vill skriva antal spelningar och betyg för alla låtar i din samling?" - -msgid "Enter your user token from" -msgstr "Ange din användartoken från" - -msgid "Use Tidal settings to authenticate." -msgstr "Använd Tidal-inställningar för att autentisera." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Använd Qobuz-inställningar för att autentisera." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 behöver autentisering." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 behöver inte autentisering." - -msgid "No provider selected." -msgstr "Ingen leverantör vald." - -msgid "Authentication failed" -msgstr "Autentisering misslyckades" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "Inaktivera manuellt (%1)" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "Ställ in genom albumomslagssökning (%1)" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "Hämtas automatiskt från albummappen (%1)" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "Inbäddat albumomslag (%1)" - -msgid "Select background image" -msgstr "Väl en bakgrundsbild" - -msgid "OSD Preview" -msgstr "Förhandsvisning av avisering" - -msgid "Drag to reposition" -msgstr "Dra för att ändra position" - -msgid "About Strawberry" -msgstr "Om Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry är en musikspelare och musiksamlingsorganisatör." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Det är en förgrening av Clementine som släpptes 2018 riktad till musiksamlare och audiofiler." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry är fri programvara som släpps under GPL. Källkoden är tillgänglig på %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Du borde ha fått en kopia av GNU General Public License tillsammans med det här programmet. Om inte, se %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Om du gillar Strawberry och har nytta av det, överväg att sponsra eller donera." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Du kan sponsra upphovsmannen på %1. Du kan också göra en engångsbetalning genom %2." - -msgid "Author and maintainer" -msgstr "Upphovsman och underhållare" - -msgid "Contributors" -msgstr "Bidragsgivare" - -msgid "Clementine authors" -msgstr "Clementine-upphovsmän" - -msgid "Clementine contributors" -msgstr "Clementine-bidragsgivare" - -msgid "Thanks to" -msgstr "Tack till" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Tack till alla andra Amarok- och Clementine-bidragsgivare." - -msgid "(different across multiple songs)" -msgstr "(olika över flera låtar)" - -msgid "Different art across multiple songs." -msgstr "Olika omslag över flera låtar." - -msgid "Previous" -msgstr "Föregående" - -msgid "Next" -msgstr "Nästa" - -msgid "Saving tracks" -msgstr "Sparar spår" - -#, qt-format -msgid "%1 songs selected." -msgstr "%1 låtar valda." - -msgid "Yes" -msgstr "Ja" - -msgid "No" -msgstr "Nej" - -msgid "Cover is unset." -msgstr "Omslaget är inte inställt." - -msgid "Cover from embedded image." -msgstr "Omslag från inbäddad bild." - -#, qt-format -msgid "Cover from %1" -msgstr "Omslag från %1" - -msgid "Cover art not set" -msgstr "Omslagsbild är inte inställd" - -msgid "Album cover editing is only available for collection songs." -msgstr "Redigering av albumomslag är endast tillgänglig för samlingslåtar." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Omslaget bytt: kommer att rensas när det sparas. " - -msgid "Cover changed: Will be unset when saved." -msgstr "Omslaget bytt: återställs när det sparas. " - -msgid "Cover changed: Will be deleted when saved." -msgstr "Omslaget bytt: kommer att tas bort när det sparas. " - -msgid "Cover changed: Will set new when saved." -msgstr "Omslaget bytt: ställer in nytt när det sparas. " - -msgid "Reset song play statistics" -msgstr "Återställ låtuppspelningsstatistik" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "Är du säker på att du vill återställa den här låtens spelstatistik?" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Ursprungliga taggar" - -msgid "Suggested tags" -msgstr "Föreslagna taggar" - -msgid "Delete files" -msgstr "Ta bort filer" - -msgid "The following files will be deleted from disk:" -msgstr "Följande filer tas bort från hårddisken:" - -msgid "Are you sure you want to continue?" -msgstr "Är du säker på att du vill fortsätta?" - -msgid "Receiving initial data from last.fm..." -msgstr "Tar emot initiala data från last.fm..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Tar emot antal spelningar för %1 låtar och spelades senast för %2 låtar." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Tar emot senast spelade för %1 låtar." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Tar emot antal spelningar för %1 låtar." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Antal spelningar för %1 låtar och senast spelat för %2 mottagna låtar." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Senast spelad för %1 mottagna låtar." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Antal spelningar för %1 mottagna låtar." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry körs som en Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Det upptäcktes att Strawberry körs som en Snap" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry är långsammare och har begränsningar när den körs som en Snap. Åtkomst till rotfilsystemet (/) fungerar inte. Det kan också finnas andra begränsningar som att komma åt vissa enheter eller nätverksresurser." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "För Ubuntu finns ett officiellt PPA-förråd tillgängligt på %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Officiella versioner är tillgängliga för Debian och Ubuntu som också fungerar på de flesta av deras derivat. Se %1 för mer information." - -msgid "For a better experience please consider the other options above." -msgstr "För en bättre upplevelse, överväg de andra alternativen ovan." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Kopiera din strawberry.conf och strawberry.db från din ~/snap-mapp för att undvika att förlora konfigurationen innan du avinstallerar snap:" - -msgid "Uninstall the snap with:" -msgstr "Avinstallera snap med:" - -msgid "Install strawberry through PPA:" -msgstr "Installera strawberry via PPA:" - -msgid "Select directory for the playlists" -msgstr "Välj mapp för spellistorna" - -msgid "Directory does not exist." -msgstr "Mappen finns inte." - -msgid "Large sidebar" -msgstr "Stort sidofält" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Litet sidofält" - -msgid "Plain sidebar" -msgstr "Vanligt sidofält" - -msgid "Tabs on top" -msgstr "Flikar längst upp" - -msgid "Icons on top" -msgstr "Ikoner längst upp" - -msgid "Available" -msgstr "Tillgängligt" - -msgid "New songs" -msgstr "Nya låtar" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Använt" - -msgid "Clear" -msgstr "Rensa" - -msgid "Reset" -msgstr "Återställ" - -msgid "Small album cover" -msgstr "Litet albumomslag" - -msgid "Large album cover" -msgstr "Stort albumomslag" - -msgid "Fit cover to width" -msgstr "Passa omslag till bredd" - -msgid "Show above status bar" -msgstr "Visa ovanför statusraden" - -msgid "You are signed in." -msgstr "Du är inloggad." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Du är inloggad som %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Går ut den %1" - -#, qt-format -msgid "disc %1" -msgstr "skiva %1" - -#, qt-format -msgid "track %1" -msgstr "spår %1" - -msgid "Paused" -msgstr "Pausad" - -msgid "Stopped" -msgstr "Stoppad" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Sluta spela efter spår: %1" - -msgid "On" -msgstr "På" - -msgid "Off" -msgstr "Av" - -msgid "Playlist finished" -msgstr "Spellistan är klar" - -#, qt-format -msgid "Volume %1%" -msgstr "Volym %1%" - -msgid "Don't shuffle" -msgstr "Blanda inte" - -msgid "Shuffle all" -msgstr "Blanda alla" - -msgid "Shuffle tracks in this album" -msgstr "Blanda låtar i det här albumet" - -msgid "Shuffle albums" -msgstr "Blanda album" - -msgid "Don't repeat" -msgstr "Upprepa inte" - -msgid "Repeat track" -msgstr "Upprepa spår" - -msgid "Repeat album" -msgstr "Upprepa album" - -msgid "Repeat playlist" -msgstr "Upprepa spellista" - -msgid "Stop after every track" -msgstr "Stoppa efter varje låt" - -msgid "Intro tracks" -msgstr "Introduktionsspår" - -#, qt-format -msgid "Configure %1..." -msgstr "Anpassa %1..." - -msgid "Add to artists" -msgstr "Lägg till i artister" - -msgid "Add to albums" -msgstr "Lägg till i album" - -msgid "Add to songs" -msgstr "Lägg till låtar" - -msgid "Enter search terms above to find music" -msgstr "Ange söktermer ovan för att hitta musik" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Klicka här för att hämta musik" - -msgid "Remove from favorites" -msgstr "Ta bort från favoriter" - -msgid "Open homepage" -msgstr "Öppna webbplats" - -msgid "Donate" -msgstr "Donera" - -msgid "Refresh channels" -msgstr "Uppdatera kanaler" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Hämtar %1 kanaler" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "%1 skrobblarautentisering" - -msgid "Open URL in web browser?" -msgstr "Öppna webbadress i webbläsaren?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Tryck på \"Spara\" för att kopiera webbadressen till urklipp och öppna den manuellt i en webbläsare." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Det gick inte att öppna webbadressen. Öppna den här webbadressen i din webbläsare" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Ogiltigt svar från webbläsaren. Saknar token." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "Fick ogiltigt svar från webbläsaren. Prova en annan webbläsare." - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Skrobblare %1 är inte autentiserad!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Skrobblare %1 fel: %2" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz-autentisering" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "Det gick inte att skrobbla %1 - %2 på grund av fel: %3" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "MusicBrainz-inspelnings-ID saknas för %1 %2 %3" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "ListenBrainz-fel: %1" - -msgid "Missing username, please login to last.fm first!" -msgstr "Användarnamn saknas, logga in på last.fm först!" - -msgid "Organizing files" -msgstr "Organiserar filer" - -msgid "Artist's initial" -msgstr "Artistens initialer" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Bitfrekvens" - -msgid "File extension" -msgstr "Filändelse" - -msgid "Error copying songs" -msgstr "Fel vid kopiering av låtar" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Fel uppstod vid kopiering av några låtar. Följande filer kunde inte kopieras:" - -msgid "Error deleting songs" -msgstr "Fel vid borttagning av låtar" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Fel uppstod vid borttagning av några låtar. Följande filer kunde inte kopieras:" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Kunde inte skapa GStreamer-elementet \"%1\" - kontrollera att du har alla GStreamer-insticksmoduler som krävs installerade" - -#, qt-format -msgid "Successfully written %1" -msgstr "Skrev %1 med lyckat resultat" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Omkodar %1 filer med %2 trådar" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Fel vid bearbetning av %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Startar %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Kunde inte hitta en kodare för %1, kontrollera att du har de korrekta GStreamer-insticksmodulerna installerade" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Kunde inte hitta en muxer för %1, kontrollera att du har de korrekta GStreamer-insticksmodulerna installerade" - -msgid "Start transcoding" -msgstr "Starta omkodning" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n återstår" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n är klar" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n misslyckades" - -msgid "Add files to transcode" -msgstr "Lägg till filer för omkodning" - -msgid "Open a directory to import music from" -msgstr "Öppna en mapp att importera musik från" - -msgid "Play/Pause" -msgstr "Spela/pausa" - -msgid "Stop" -msgstr "Stoppa" - -msgid "Stop playing after current track" -msgstr "Stoppa spelning efter aktuellt spår" - -msgid "Next track" -msgstr "Nästa spår" - -msgid "Previous track" -msgstr "Föregående spår" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "Höj volymen" - -msgid "Decrease volume" -msgstr "Sänk volymen" - -msgid "Mute" -msgstr "Ljud av" - -msgid "Seek forward" -msgstr "Sök framåt" - -msgid "Seek backward" -msgstr "Sök bakåt" - -msgid "Show/Hide" -msgstr "Visa/dölj" - -msgid "Show OSD" -msgstr "Visa avisering" - -msgid "Toggle Pretty OSD" -msgstr "Växla snygg avisering" - -msgid "Change shuffle mode" -msgstr "Ändra blandningsläge" - -msgid "Change repeat mode" -msgstr "Ändra upprepningsläge" - -msgid "Enable/disable scrobbling" -msgstr "Aktivera/inaktivera skrobbling" - -msgid "Love" -msgstr "Älska" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Tryck en tangentkombination att använda för %1..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Kommandot \"%1\" kunde inte startas." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Genväg för %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Användning av X11-genvägar på %1 rekommenderas inte och kan orsaka att tangentbordet inte svarar!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr " Genvägar på %1 används vanligtvis via MPRIS och KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr " Genvägar till %1 används vanligtvis via Gnome-inställningsdemon och ska istället anpassas i gnome-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr " Genvägar till %1 används vanligtvis via Gnome-inställningsdemon och ska istället anpassas i cinnamon-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr " Genvägar till %1 används vanligtvis via Mate-inställningsdemon och ska istället anpassas där." - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Show moodbar" -msgstr "Visa stämningsdiagram" - -msgid "Moodbar style" -msgstr "Format på stämningsdiagrammet" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "Arg" - -msgid "Frozen" -msgstr "Frusen" - -msgid "Happy" -msgstr "Glad" - -msgid "System colors" -msgstr "Systemfärger" - -msgid "Connect device" -msgstr "Anslut enhet" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Det här är första gången du ansluter den här enheten. Strawberry kommer nu att skanna enheten för att hitta musikfiler - det kan ta lite tid." - -msgid "This device will not work properly" -msgstr "Den här enheten kommer inte att fungera ordentligt" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Det här är en MTP-enhet, men du kompilerade Strawberry utan stöd av libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Om du fortsätter kommer den här enheten att arbeta långsamt och låtar som kopierats till den kanske inte fungerar." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Det här är en iPod, men du har kompilerade Strawberry utan stöd av libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Den här typen av enhet stöds inte: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Uppdaterar %1%..." - -msgid "Not connected" -msgstr "Inte ansluten" - -msgid "Not mounted - double click to mount" -msgstr "Inte monterad - dubbelklicka för att montera" - -msgid "Double click to open" -msgstr "Dubbelklicka för att öppna" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 låt%2" - -msgid "Safely remove device" -msgstr "Säker borttagning av enhet" - -msgid "Forget device" -msgstr "Glöm enhet" - -msgid "Device properties..." -msgstr "Enhetsegenskaper..." - -msgid "Delete from device..." -msgstr "Ta bort från enhet..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Om en enhet glöms kommer den att tas bort från den här listan och Strawberry kommer att behöva skanna om alla låtar nästa gång du ansluter den." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Filerna kommer att tas bort från enheten, är du säker på att du vill fortsätta?" - -msgid "Model" -msgstr "Modell" - -msgid "Manufacturer" -msgstr "Tillverkare" - -msgid "Mount point" -msgstr "Monteringspunkt" - -msgid "Device" -msgstr "Enhet" - -msgid "URI" -msgstr "" - -msgid "D-Bus path" -msgstr "D-Bus sökväg" - -msgid "Serial number" -msgstr "Serienummer" - -msgid "Mount points" -msgstr "Monteringspunkter" - -msgid "Partition label" -msgstr "Partitionsnamn" - -msgid "UUID" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Läser in MTP-enhet" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Fel vid anslutning av MTP-enhet %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Fel när CDDA-enheten ställdes till klartillstånd." - -msgid "Error while setting CDDA device to pause state." -msgstr "Fel när CDDA-enheten ställdes till pausläge." - -msgid "Error while querying CDDA tracks." -msgstr "Fel vid förfrågan om CDDA-spår." - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Läser in iPod-databas" - -msgid "An error occurred loading the iTunes database" -msgstr "Ett fel uppstod vid inläsning av iTunes-databasen" - -msgid "Server URL is invalid." -msgstr "Serverwebbadressen är ogiltig." - -msgid "Missing username or password." -msgstr "Användarnamn eller lösenord saknas." - -msgid "Subsonic server URL is invalid." -msgstr "Subsonic-serverwebbadress är ogiltig." - -msgid "Missing Subsonic username or password." -msgstr "Användarnamn eller lösenord saknas för Subsonic." - -msgid "Retrieving albums..." -msgstr "Hämtar album..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Hämtar låtar för %1 album..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Hämtar låtar för %1 album..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Hämtar albumomslag för %1 album..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Hämtar albumomslag för %1 album..." - -msgid "Configuration incomplete" -msgstr "Konfigurationen ofullständig" - -msgid "Missing server url, username or password." -msgstr "Serveradress, användarnamn eller lösenord saknas." - -msgid "Configuration incorrect" -msgstr "Konfiguration felaktig" - -msgid "Test successful!" -msgstr "Testet lyckades!" - -msgid "Test failed!" -msgstr "Testet misslyckades!" - -msgid "Reply from Tidal is missing query items." -msgstr "Svar från Tidal saknar förfrågningsobjekt." - -msgid "Missing Tidal API token." -msgstr "Tidal-API-token saknas." - -msgid "Missing Tidal username." -msgstr "Tidal-användarnamn saknas." - -msgid "Missing Tidal password." -msgstr "Tidal-lösenord saknas." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Inte autentiserad med Tidal och nådde högsta antalet inloggningsförsök." - -msgid "Not authenticated with Tidal." -msgstr "Inte autentiserad med Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Användarnamn eller lösenord saknas för Tidal API-token." - -msgid "Authenticating..." -msgstr "Autentisering..." - -msgid "Receiving artists..." -msgstr "Tar emot artister..." - -msgid "Receiving albums..." -msgstr "Tar emot album..." - -msgid "Receiving songs..." -msgstr "Tar emot låtar..." - -msgid "Searching..." -msgstr "Söker..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "Tar emot album för %1 artist..." - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "Tar emot album för %1 artister..." - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "Tar emot låtar för %1 album..." - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "Tar emot låtar för %1 album..." - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "Tar emot albumomslag för %1 album..." - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "Tar emot albumomslag för %1 album..." - -msgid "No match." -msgstr "Ingen matchning." - -msgid "Cancelled." -msgstr "Avbruten." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Mottagen webbadress med %1 krypterad ström från Tidal. Strawberry stöder för närvarande inte krypterade flöden." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Mottagen webbadress med krypterad ström från Tidal. Strawberry stöder för närvarande inte krypterade flöden." - -msgid "Missing Tidal client ID." -msgstr "Tidal-klient-ID saknas." - -msgid "Missing API token." -msgstr "API-token saknas." - -msgid "Missing username." -msgstr "Användarnamn saknas." - -msgid "Missing password." -msgstr "Lösenord saknas." - -msgid "Spotify Authentication" -msgstr "Spotify-autentisering" - -msgid "Redirect missing token code or state!" -msgstr "Omdirigering saknar tokenkod eller tillstånd!" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Högsta antalet inloggningsförsök har uppnåtts." - -msgid "Missing Qobuz app ID." -msgstr "Qobuz-app-id saknas." - -msgid "Missing Qobuz username." -msgstr "Qobuz-användarnamn saknas." - -msgid "Missing Qobuz password." -msgstr "Qobuz-lösenord saknas." - -msgid "Not authenticated with Qobuz." -msgstr "Inte autentiserad med Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Qobuz-app-ID eller hemlighet saknas." - -msgid "Missing app id." -msgstr "App-id saknas." - -msgid "Strawberry Music Player" -msgstr "" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Spela" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Stoppa" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Nästa spår" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "A&vsluta" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Rensa spellista" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Omnumrera spår i den här ordningen..." - -msgid "Set value for all selected tracks..." -msgstr "Ställ in värde för alla valda spår..." - -msgid "Edit tag..." -msgstr "Redigera tagg..." - -msgid "&Settings..." -msgstr "&Inställningar..." - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&Om Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "B&landa spellista" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Lägg till fil..." - -msgid "Ctrl+Shift+A" -msgstr "Ctrl+Skift+A" - -msgid "&Open file..." -msgstr "&Öppna fil..." - -msgid "Open audio &CD..." -msgstr "Öppna &ljud-CD..." - -msgid "&Cover Manager" -msgstr "&Omslagshanterare" - -msgid "C&onsole" -msgstr "K&onsol" - -msgid "&Shuffle mode" -msgstr "&Blandningsläge" - -msgid "&Repeat mode" -msgstr "&Upprepningsläge" - -msgid "Remove from playlist" -msgstr "Ta bort från spellista" - -msgid "&Equalizer" -msgstr "&Frekvenskorrigerare" - -msgid "&Transcode Music" -msgstr "&Omkoda musik" - -msgid "Add &folder..." -msgstr "Lägg till &mapp..." - -msgid "&Jump to the currently playing track" -msgstr "&Hoppa till spår som nu spelas" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Ny spellista" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Spara &spellista..." - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Läs in spellista..." - -msgid "Ctrl+Shift+O" -msgstr "Ctrl+Skift+O" - -msgid "&Save all playlists..." -msgstr "&Spara alla spellistor..." - -msgid "Go to next playlist tab" -msgstr "Gå till nästa spellisteflik" - -msgid "Go to previous playlist tab" -msgstr "Gå till föregående spellisteflik" - -msgid "&Update changed collection folders" -msgstr "&Uppdatera ändrade samlingsmappar" - -msgid "About &Qt" -msgstr "Om &Qt" - -msgid "&Mute" -msgstr "&Ljud av" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Gör en fullständig omskanning av samling" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Fyll i taggar automatiskt..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Växla skrobbling" - -msgid "Remove &duplicates from playlist" -msgstr "Ta bort &dubbletter från spellista" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Ta bort &otillgängliga spår från spellista" - -msgid "Add file(s) to transcoder" -msgstr "Lägg till fil(er) i omkodaren" - -msgid "Add file to transcoder" -msgstr "Lägg till fil i omkodaren" - -msgid "Add stream..." -msgstr "Lägg till flöde..." - -msgid "Show sidebar" -msgstr "Visa sidofält" - -msgid "Import data from last.fm..." -msgstr "Importera data från last.fm..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Musik" - -msgid "P&laylist" -msgstr "&Spellista" - -msgid "Help" -msgstr "Hjälp" - -msgid "&Tools" -msgstr "&Verktyg" - -msgid "Collection advanced grouping" -msgstr "Samling avancerad gruppering" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Du kan ändra hur låtarna i biblioteket är organiserade." - -msgid "Group Collection by..." -msgstr "Gruppera samling av..." - -msgid "Second level" -msgstr "Andra nivå" - -msgid "Third level" -msgstr "Tredje nivå" - -msgid "Separate albums by grouping tag" -msgstr "Separera album genom att gruppera tagg" - -msgid "Collection Filter" -msgstr "Samlingsfilter" - -msgid "Entire collection" -msgstr "Hela samlingen" - -msgid "Added today" -msgstr "Tillagda idag" - -msgid "Added this week" -msgstr "Tillagda den här veckan" - -msgid "Added within three months" -msgstr "Tillagda inom tre månader" - -msgid "Added this year" -msgstr "Tillagda i år" - -msgid "Added this month" -msgstr "Tillagda den här månaden" - -msgid "Save current grouping" -msgstr "Spara aktuell gruppering" - -msgid "Manage saved groupings" -msgstr "Hantera sparade grupperingar" - -msgid "Enter search terms here" -msgstr "Ange söktermer här" - -msgid "Form" -msgstr "Formulär" - -msgid "Saved Grouping Manager" -msgstr "Sparad grupperingshanterare" - -msgid "Remove" -msgstr "Ta bort" - -msgid "Ctrl+Up" -msgstr "Ctrl+Upp" - -msgid "File paths" -msgstr "Filsökvägar" - -msgid "This can be changed later through the preferences" -msgstr "Det här kan ändras senare genom inställningarna" - -msgid "Remember my choice" -msgstr "Kom ihåg mitt val" - -msgid "Stop after each track" -msgstr "Stoppa efter varje låt" - -msgid "Repeat" -msgstr "Upprepa" - -msgid "Shuffle" -msgstr "Blanda" - -msgid "Dynamic mode is on" -msgstr "Dynamiskt läge är på" - -msgid "New tracks will be added automatically." -msgstr "Nya spår läggs till automatiskt." - -msgid "Expand" -msgstr "Expandera" - -msgid "Repopulate" -msgstr "Skapa en ny blandning" - -msgid "Turn off" -msgstr "Stäng av" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "Flytta nedåt" - -msgid "Move up" -msgstr "Flytta uppåt" - -msgid "Ctrl+Down" -msgstr "Ctrl+Ner" - -msgid "Search mode" -msgstr "Sökläge" - -msgid "Match every search term (AND)" -msgstr "Matcha varje sökterm (OCH)" - -msgid "Match one or more search terms (OR)" -msgstr "Matcha en eller flera söktermer (ELLER)" - -msgid "Include all songs" -msgstr "Inkludera alla spår" - -msgid "Sorting" -msgstr "Sortering" - -msgid "Put songs in a random order" -msgstr "Lägg till låtar i slumpmässig ordning" - -msgid "Sort songs by" -msgstr "Sortera låtar efter" - -msgid "Limits" -msgstr "Begränsningar" - -msgid "Show all the songs" -msgstr "Visa alla låtarna" - -msgid "Only show the first" -msgstr "Visa endast de första" - -msgid " songs" -msgstr " låtar" - -msgid "Preview" -msgstr "Förhandsvisning" - -msgid "and" -msgstr "och" - -msgid "ago" -msgstr "sedan" - -msgid "New smart playlist" -msgstr "Ny smart spellista" - -msgid "Edit smart playlist" -msgstr "Redigera smart spellista" - -msgid "Use dynamic mode" -msgstr "Aktivera dynamiskt läge" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "I dynamiskt läge kommer nya spår väljas och läggas till i spellistan varje gång en låt tar slut." - -msgid "Export covers" -msgstr "Exportera omslag" - -msgid "Output" -msgstr "Utgång" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Ange ett filnamn för exporterade omslag (utan ändelse):" - -msgid "Export downloaded covers" -msgstr "Exportera hämtade omslag" - -msgid "Export embedded covers" -msgstr "Exportera inbäddade omslag" - -msgid "Existing covers" -msgstr "Befintliga omslag" - -msgid "Do not overwrite" -msgstr "Skriv inte över" - -msgid "O&verwrite all" -msgstr "S&kriv över alla" - -msgid "Overwrite s&maller ones only" -msgstr "Skriv endast över m&indre" - -msgid "Size" -msgstr "Storlek" - -msgid "Scale size" -msgstr "Skalningsstorlek" - -msgid "Size:" -msgstr "Storlek:" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "Omslagshanterare" - -msgid "Fetch automatically" -msgstr "Hämta automatiskt" - -msgid "Load" -msgstr "Läs in" - -msgid "Add to playlist" -msgstr "Lägg till i spellista" - -msgid "View" -msgstr "Visa" - -msgid "Total albums:" -msgstr "Album totalt:" - -msgid "Without cover:" -msgstr "Utan omslag:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Hämta omslag som saknas" - -msgid "Export Covers" -msgstr "Exportera omslag" - -msgid "Fetch completed" -msgstr "Hämtning klar" - -msgid "Load cover from URL" -msgstr "Läs in omslag från webbadress" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Ange en webbadress för att hämta ett omslag från Internet:" - -msgid "Settings" -msgstr "Inställningar" - -msgid "Behavior" -msgstr "Beteende" - -msgid "Show system tray icon" -msgstr "Visa ikon i systemfältet" - -msgid "Keep running in the background when the window is closed" -msgstr "Fortsätt köra i bakgrunden när fönstret är stängt" - -msgid "Show song progress on system tray icon" -msgstr "Visa sångförlopp på systemfältikonen" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Fortsätt uppspelning vid start" - -msgid "Show playing widget" -msgstr "Visa spelande gränssnittskomponent" - -msgid "On startup" -msgstr "Vid start" - -msgid "Remember from &last time" -msgstr "Kom ihåg från &förra gången" - -msgid "Show the main window" -msgstr "Visa huvudfönstret" - -msgid "Hide the main window" -msgstr "Dölj huvudfönstret" - -msgid "Show the main window maximized" -msgstr "Visa huvudfönstret som maximerat" - -msgid "Show the main window minimized" -msgstr "Visa huvudfönstret som minimerat" - -msgid "Language" -msgstr "Språk" - -msgid "Use the system default" -msgstr "Använd systemets standard" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Du måste starta om Strawberry om du ändrar språket." - -msgid "Using the menu to add a song will..." -msgstr "Använda menyn för att lägga till en låt kommer att..." - -msgid "Never start playing" -msgstr "Aldrig starta uppspelning" - -msgid "Play if there is nothing already playing" -msgstr "Spela om ingenting redan spelas" - -msgid "Always start playing" -msgstr "Alltid starta uppspelning" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Klicka på \"Föregående\" i spelaren kommer att..." - -msgid "Jump to previous song right away" -msgstr "Hoppa till föregående låt direkt" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Starta om låten, hoppa till föregående låt vid dubbelklickning" - -msgid "Double clicking a song will..." -msgstr "Dubbelklicka på en låt kommer att..." - -msgid "Append to the playlist" -msgstr "Lägga till i spellistan" - -msgid "Replace the playlist" -msgstr "Ersätta spellistan" - -msgid "Add to the queue" -msgstr "Lägga till i kön" - -msgid "Double clicking a song in the playlist will..." -msgstr "Dubbelklicka på en låt i spellistan kommer att..." - -msgid "Change the currently playing song" -msgstr "Byta låt som nu spelas" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Tidshopp vid sökning med tangentbordsgenväg eller mushjul" - -msgid "Time step" -msgstr "Tidssteg" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "Dessa mappar kommer att skannas för musik för att fylla upp ditt bibliotek" - -msgid "Add new folder..." -msgstr "Lägg till ny mapp..." - -msgid "Remove folder" -msgstr "Ta bort mapp" - -msgid "Automatic updating" -msgstr "Automatisk uppdatering" - -msgid "Update the collection when Strawberry starts" -msgstr "Uppdatera samlingen när Strawberry startar" - -msgid "Monitor the collection for changes" -msgstr "Bevaka ändringar i samlingen" - -msgid "Song fingerprinting and tracking" -msgstr "Fingeravtryck och spårning av låtar" - -msgid "Mark disappeared songs unavailable" -msgstr "Markera försvunna låtar som otillgängliga" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "Utför låt EBU R 128 analys (krävs för EBU R 128 ljudstyrkenormalisering)" - -msgid "Expire unavailable songs after" -msgstr "Utgå otillgängliga låtar efter" - -msgid "days" -msgstr "dagar" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Föredragna filnamn för albumomslagsbilder (kommaseparerade)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Vid sökning efter albumomslag letar Strawberry först efter bildfiler som innehåller ett av dessa ord.\n" -"Om det inte finns några matchningar så kommer den största bilden i mappen att användas." - -msgid "Automatically open single categories in the collection tree" -msgstr "Öppna enskilda kategorier automatiskt i samlingsträdet" - -msgid "Show dividers" -msgstr "Visa avdelare" - -msgid "Show album cover art in collection" -msgstr "Visa omslagsbilder i samlingen" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Albumomslag pixmap-cache" - -msgid "Enable Disk Cache" -msgstr "Aktivera diskcache" - -msgid "Disk Cache Size" -msgstr "Diskcache storlek" - -msgid "Current disk cache in use:" -msgstr "Aktuell diskcache i användning:" - -msgid "Clear Disk Cache" -msgstr "Rensa diskcache" - -msgid "Song playcounts and ratings" -msgstr "Antal spelningar och betyg för låtar" - -msgid "Save playcounts to song tags when possible" -msgstr "Spara antal spelningar till låttaggar när det är möjligt " - -msgid "Save ratings to song tags when possible" -msgstr "Spara betyg till låttaggar när det är möjligt" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "Skriv över databasspelningsantal när låtar läses om från disken" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Skriv över databasbetyg när låtar läses om från disk" - -msgid "Save playcounts and ratings to files now" -msgstr "Spara antal spelningar och betyg till filer nu" - -msgid "Enable delete files in the right click context menu" -msgstr "Aktivera att ta bort filer i högerklickssnabbmenyn" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "Ljudutgång" - -msgid "Engine" -msgstr "Motor" - -msgid "ALSA plugin:" -msgstr "ALSA-insticksmodul:" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "Alternativ" - -msgid "Enable volume control" -msgstr "Aktivera volymkontroll" - -msgid "Upmix / downmix to" -msgstr "Uppmixa / nedmixa till" - -msgid "channels" -msgstr "kanaler" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "Förbättra hörlurslyssning av stereoljudskivor (bs2b)" - -msgid "Enable HTTP/2 for streaming" -msgstr "Aktivera HTTP/2 för att flöda" - -msgid "Use strict SSL mode" -msgstr "Använd strikt SSL-läge" - -msgid "Buffer" -msgstr "Buffert" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "Buffert varaktighet" - -msgid "High watermark" -msgstr "Hög vattenstämpel" - -msgid "Low watermark" -msgstr "Låg vattenstämpel" - -msgid "Defaults" -msgstr "Standardvärden" - -msgid "Audio normalization" -msgstr "Ljudnormalisering" - -msgid "No audio normalization" -msgstr "Ingen ljudnormalisering" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Använd Replay Gain-metadata om det finns tillgängligt" - -msgid "Replay Gain mode" -msgstr "Replay Gain-läge" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Radio (samma ljudstyrka för alla spår" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Album (lämplig ljudstyrka för alla spår)" - -msgid "Apply compression to prevent clipping" -msgstr "Tillämpa komprimering för att förhindra klippning" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "EBU R 128 ljudstyrkenormalisering" - -msgid "Perform track loudness normalization" -msgstr "Utför normalisering av spårets ljudstyrka" - -msgid "Target Level" -msgstr "Målnivå" - -msgid "Fading" -msgstr "Toning" - -msgid "Fade out when stopping a track" -msgstr "Tona ut när ett spår stoppas" - -msgid "Cross-fade when changing tracks manually" -msgstr "Övertona vid manuellt byte av spår" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Övertona vid automatiskt byte av spår" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Förutom mellan spår på samma album eller i samma CUE-fil" - -msgid "Fading duration" -msgstr "Toningsvaraktighet" - -msgid "Fade out on pause / fade in on resume" -msgstr "Tona ut vid pausning / tona in vid återupptagning" - -msgid "Add song artist tag" -msgstr "Lägg till tagg för låtens artist" - -msgid "Add song album tag" -msgstr "Lägg till tagg för låtens album" - -msgid "Add song title tag" -msgstr "Lägg till tagg för låtens titel" - -msgid "Add song albumartist tag" -msgstr "Lägg till tagg för låtens albumartist" - -msgid "Add song year tag" -msgstr "Lägg till tagg för år" - -msgid "Add song composer tag" -msgstr "Lägg till tagg för låtens kompositör" - -msgid "Add song performer tag" -msgstr "Lägg till tagg för aktör" - -msgid "Add song grouping tag" -msgstr "Lägg till tagg för låtgruppering" - -msgid "Add song disc tag" -msgstr "Lägg till tagg för skivnummer" - -msgid "Add song track tag" -msgstr "Lägg till tagg för spårnummer" - -msgid "Add song genre tag" -msgstr "Lägg till tagg för låtgenre" - -msgid "Add song length tag" -msgstr "Lägg till tagg för låtens längd" - -msgid "Add song play count" -msgstr "Lägg till antal spelningar av låtar" - -msgid "Add song skip count" -msgstr "Lägg till antal överhoppningar" - -msgid "Add a new line if supported by the notification type" -msgstr "Lägg till en ny rad om det stöds av aviseringstypen" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Lägg till låtens filnamn" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Lägg till låtens webbadress" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Lägg till låtbetyg" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "Lägg till låtens originalårstagg" - -msgid "Custom text settings" -msgstr "Anpassade textinställningar" - -msgid "Summary" -msgstr "Sammandrag" - -msgid "Enable Items" -msgstr "Aktivera poster" - -msgid "Technical Data" -msgstr "Tekniska data" - -msgid "Song Lyrics" -msgstr "Låttexter" - -msgid "Automatically search for album cover" -msgstr "Sök automatiskt efter albumomslag" - -msgid "Font for headline" -msgstr "Teckensnitt för rubrik" - -msgid "Font" -msgstr "Teckensnitt" - -msgid "Font size" -msgstr "Teckensnittsstorlek" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "Teckensnitt för data och låttexter" - -msgid "Use alternating row colors" -msgstr "Använd alternerande radfärger" - -msgid "Show bars on the currently playing track" -msgstr "Visa staplar på det spår som spelas för närvarande" - -msgid "Show a glowing animation on the currently playing track" -msgstr "Visa en lysande animation på det spår som spelas för närvarande" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Fortsätt till nästa post i spellistan om en låt inte är tillgänglig" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Grå text för saknade låtar i mina spellistor vid uppspelning" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Grå text för saknade låtar i mina spellistor vid uppstart" - -msgid "Automatically select current playing track" -msgstr "Välj automatiskt spår som nu spelas" - -msgid "Enable playlist toolbar" -msgstr "Aktivera verktygsfältet för spellistan" - -msgid "Enable playlist clear button" -msgstr "Aktivera spellistans rensningsknapp" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Sortera spellistan automatiskt när du lägger in låtar" - -msgid "When saving a playlist, file paths should be" -msgstr "När en spellista sparas ska sökvägarna vara" - -msgid "A&utomatic" -msgstr "A&utomatiska" - -msgid "Absolu&te" -msgstr "Absolu&ta" - -msgid "Re&lative" -msgstr "Re&lativa" - -msgid "As&k when saving" -msgstr "Frå&ga när du sparar" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Om aktiverad så kan du klicka på en markerad sång i spellistan för att redigera taggvärdet direkt" - -msgid "Enable song metadata inline edition with click" -msgstr "Aktivera redigering av låtmetadata genom klick" - -msgid "Write metadata when saving playlists" -msgstr "Skriv metadata när spellistor sparas" - -msgid "Scrobbler" -msgstr "Skrobbling" - -msgid "Enable" -msgstr "Aktivera" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Låtar skrobblas om de har giltiga metadata och är längre än 30 sekunder, har spelats under minst halva dess varaktighet eller i 4 minuter (beroende på vilket som inträffar först)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Arbeta i frånkopplat läge (cacha endast skrobblingar)" - -msgid "Show scrobble button" -msgstr "Visa knappen skrobbla" - -msgid "Show love button" -msgstr "Visa knappen älska" - -msgid "Submit scrobbles every" -msgstr "Skicka skrobblingar varje" - -msgid " seconds" -msgstr " sekunder" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(Det här är fördröjningen mellan när en låt skrobblas och när skrobblingar skickas till servern. Om tiden ställs in på 0 sekunder skickas skrobblingar direkt)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Föredra albumartist vid sändning av skrobblingar" - -msgid "Show dialog for errors" -msgstr "Visa dialogruta vid fel" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Aktivera skrobbling för följande källor:" - -msgid "Local file" -msgstr "Lokal fil" - -msgid "CDDA" -msgstr "CD-ljud" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Flöde" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Logga in" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Användartoken:" - -msgid "Covers" -msgstr "Omslag" - -msgid "Cover providers" -msgstr "Omslagsleverantörer" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Välj leverantörerna du vill använda vid sökning efter omslag." - -msgid "Authentication" -msgstr "Autentisering" - -msgid "Album cover types" -msgstr "Typer av skivomslag" - -msgid "Saving album covers" -msgstr "Spara albumomslag" - -msgid "Save album covers in album directory" -msgstr "Spara albumomslag i albummappen" - -msgid "Save album covers in cache directory" -msgstr "Spara albumomslag i cachemappen" - -msgid "Save album covers as embedded cover" -msgstr "Spara albumomslag som inbäddat omslag" - -msgid "Filename:" -msgstr "Filnamn:" - -msgid "Pattern" -msgstr "Mönster" - -msgid "Random" -msgstr "Slumpat" - -msgid "Overwrite existing file" -msgstr "Skriv över befintlig fil" - -msgid "Lowercase filename" -msgstr "Filnamn med gemener" - -msgid "Replace spaces with dashes" -msgstr "Ersätter mellanslag med understreck" - -msgid "Lyrics" -msgstr "Låttexter" - -msgid "Lyrics providers" -msgstr "Låttextleverantörer" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Välj leverantörerna du vill använda vid sökning efter låttexter." - -msgid "Network Proxy" -msgstr "Nätverksproxy" - -msgid "&Use the system proxy settings" -msgstr "&Använd systemets proxyinställningar" - -msgid "Direct internet connection" -msgstr "Direkt internetanslutning" - -msgid "&Manual proxy configuration" -msgstr "&Manuell proxykonfiguration" - -msgid "HTTP proxy" -msgstr "HTTP-proxy" - -msgid "SOCKS proxy" -msgstr "SOCKS-proxy" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "Använd autentisering" - -msgid "Username" -msgstr "Användarnamn" - -msgid "Password" -msgstr "Lösenord" - -msgid "Use proxy settings for streaming" -msgstr "Använd proxyinställningar för att flöda" - -msgid "Appearance" -msgstr "Utseende" - -msgid "Style" -msgstr "Format" - -msgid "Use system theme icons" -msgstr "Använd systemtemaikoner" - -msgid "Settings require restart." -msgstr "Inställningar kräver omstart." - -msgid "Tabbar colors" -msgstr "Färger för flikfält" - -msgid "&Use the system default color" -msgstr "&Använd systemets standardfärg" - -msgid "Use custom color" -msgstr "Använd anpassad färg" - -msgid "Use gradient background" -msgstr "Använd tonad bakgrund" - -msgid "Select tabbar color:" -msgstr "Välj färg för flikfält:" - -msgid "Background image" -msgstr "Bakgrundsbild" - -msgid "Default bac&kground image" -msgstr "Standardba&kgrundsbild" - -msgid "&No background image" -msgstr "&Ingen bakgrundsbild" - -msgid "The album cover of the currently playing song" -msgstr "Albumomslaget för låt som nu spelas" - -msgid "Albu&m cover" -msgstr "Albu&momslag" - -msgid "Custom image:" -msgstr "Anpassad bild:" - -msgid "Browse..." -msgstr "Bläddra..." - -msgid "Position" -msgstr "" - -msgid "Upper Left" -msgstr "Övre vänster" - -msgid "Upper Right" -msgstr "Övre högra" - -msgid "Middle" -msgstr "Mellan" - -msgid "Bottom Left" -msgstr "Nedre vänstra" - -msgid "Bottom Right" -msgstr "Nedre högra" - -msgid "Max cover size" -msgstr "Största omslagsstorleken" - -msgid "Stretch image to fill playlist" -msgstr "Sträck ut bilden för att fylla spellista" - -msgid "Keep aspect ratio" -msgstr "Bevara bildförhållandet" - -msgid "Do not cut image" -msgstr "Klipp inte av bilden" - -msgid "Blur amount" -msgstr "Suddighet" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "Opacitet" - -msgid "40%" -msgstr "40%" - -msgid "Icon sizes" -msgstr "Ikonstorlekar" - -msgid "Playlist buttons" -msgstr "Spellistknappar" - -msgid "Tabbar large mode" -msgstr "Stort läge för flikfält" - -msgid "Play control buttons" -msgstr "Spela kontrollknappar" - -msgid "Configure buttons" -msgstr "Anpassa knappar" - -msgid "Files, playlists and queue buttons" -msgstr "Filer, spellistor och köknappar" - -msgid "Tabbar small mode" -msgstr "Litet läge för flikfält" - -msgid "Playlist playing song color" -msgstr "Låtfärg för uppspelning av spellista " - -msgid "System highlight color" -msgstr "Systemets markeringsfärg" - -msgid "Custom color" -msgstr "Anpassad färg" - -msgid "Select playlist playing song color:" -msgstr "Välj låtfärg för uppspelning av spellista:" - -msgid "Notifications" -msgstr "Aviseringar" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry kan visa ett meddelande vid byte av spår." - -msgid "Notification type" -msgstr "Aviseringstyp" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Inaktiverad" - -msgid "Show a &native desktop notification" -msgstr "Visa en &naturlig skrivbordsavisering" - -msgid "Show a pretty OSD" -msgstr "Visa en snygg avisering" - -msgid "Show a popup fro&m the system tray" -msgstr "Visa en popup fr&ån systemfältet" - -msgid "General settings" -msgstr "Allmänna inställningar" - -msgid "Popup duration" -msgstr "Popup-varaktighet" - -msgid "Disable duration" -msgstr "Inaktivera varaktighet" - -msgid "Show a notification when I change the volume" -msgstr "Visa en avisering när jag ändrar volymen" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Visa en avisering när jag ändrar upprepnings-/blandningsläge" - -msgid "Show a notification when I pause playback" -msgstr "Visa en avisering när jag pausar uppspelningen" - -msgid "Show a notification when I resume playback" -msgstr "Visa en avisering när jag återupptar uppspelningen" - -msgid "Include album art in the notification" -msgstr "Inkludera albumomslag i aviseringen" - -msgid "Custom message settings" -msgstr "Anpassade meddelandeinställningar" - -msgid "Use a custom message for notifications" -msgstr "Använd ett eget meddelande för aviseringar" - -msgid "Body" -msgstr "Brödtext" - -msgid "Pretty OSD options" -msgstr "Alternativ för snygg avisering" - -msgid "Background color" -msgstr "Bakgrundsfärg" - -msgid "Text options" -msgstr "Textalternativ" - -msgid "Choose font..." -msgstr "Välj teckensnitt..." - -msgid "Choose color..." -msgstr "Välj färg..." - -msgid "Background opacity" -msgstr "Bakgrundsopacitet" - -msgid "Basic Blue" -msgstr "Basblå" - -msgid "Strawberry Red" -msgstr "Jordgubbsröd" - -msgid "Custom..." -msgstr "Anpassad..." - -msgid "Enable fading" -msgstr "Aktivera toning" - -msgid "Transcoding" -msgstr "Omkodning" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Dessa inställningar används i dialogrutan \"Omkoda musik\" och vid konvertering av musik innan den kopieras till en enhet." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Equalizer" -msgstr "Frekvenskorrigerare" - -msgid "Preset:" -msgstr "Förval:" - -msgid "Enable equalizer" -msgstr "Aktivera frekvenskorrigerare" - -msgid "Enable stereo balancer" -msgstr "Aktivera stereo-balanserare" - -msgid "Left" -msgstr "Vänster" - -msgid "Balance" -msgstr "Balans" - -msgid "Right" -msgstr "Höger" - -msgid "About" -msgstr "Om" - -msgid "Strawberry Error" -msgstr "Strawberry-fel" - -msgid "Console" -msgstr "Konsol" - -msgid "Run" -msgstr "Kör" - -msgid "Edit track information" -msgstr "Redigera spårinformation" - -msgid "Date created" -msgstr "Datum skapad" - -msgid "Art Automatic" -msgstr "Automatiska omslag" - -msgid "Date modified" -msgstr "Datum ändrad" - -msgid "Art Embedded" -msgstr "Omslaget inbäddat" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Senast spelad" - -msgid "Play count" -msgstr "Antal spelningar" - -msgid "EBU R 128 integrated loudness" -msgstr "EBU R 128 integrerad ljudstyrka" - -msgid "Bit rate" -msgstr "Bithastighet" - -msgid "Skip count" -msgstr "Antal överhoppningar" - -msgid "Path" -msgstr "Sökväg" - -msgid "Filename" -msgstr "Filnamn" - -msgid "Art Unset" -msgstr "Omslaget inte inställt" - -msgid "File size" -msgstr "Filstorlek" - -msgid "Art Manual" -msgstr "Manuella omslag" - -msgid "EBU R 128 loudness range" -msgstr "EBU R 128 ljudstyrkeintervall" - -msgid "Reset play counts" -msgstr "Återställ antal spelningar" - -msgid "Change art" -msgstr "Byt omslag" - -msgid "Embedded cover" -msgstr "Inbäddat omslag" - -msgid "Complete tags automatically" -msgstr "Fyll i taggar automatiskt" - -msgid "Compilation" -msgstr "Sammanställning" - -msgid "Tags" -msgstr "Taggar" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Tagghämtare" - -msgid "Sorry" -msgstr "Tyvärr" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry kunde inte hitta resultat för den här filen" - -msgid "Select best possible match" -msgstr "Välj bästa möjliga matchning" - -msgid "Add Stream" -msgstr "Lägg till flöde" - -msgid "Enter the URL of a stream:" -msgstr "Ange webbadressen till ett flöde:" - -msgid "Enter username and password" -msgstr "Ange användarnamn och lösenord" - -msgid "Import data from last.fm" -msgstr "Importera data från last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Välj data att importera från last.fm" - -msgid "Play counts" -msgstr "Antal spelningar" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Varning: antal spelningar och senast spelade från last.fm ersätter samma data för matchade låtar. Antal spelningar kommer att ersätta data baserat på artist och låttitel för samma album! Säkerhetskopiera din databas innan du börjar." - -msgid "Go!" -msgstr "Starta!" - -msgid "Close" -msgstr "Stäng" - -msgid "Cancel" -msgstr "Avbryt" - -msgid "Message Dialog" -msgstr "Meddelandedialogruta" - -msgid "Do not show this message again." -msgstr "Visa inte det här meddelandet igen." - -msgid "Select directory for saving playlists" -msgstr "Välj mapp för att spara spellistor" - -msgid "Type" -msgstr "Typ" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Klicka för att växla mellan återstående tid och total tid" - -msgid "You are not signed in." -msgstr "Du är inte inloggad." - -msgid "Sign out" -msgstr "Logga ut" - -msgid "Signing in..." -msgstr "Loggar in..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Artister" - -msgid "Albums" -msgstr "Album" - -msgid "Songs" -msgstr "Låtar" - -msgid "Refresh catalogue" -msgstr "Uppdatera katalog" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "artister" - -msgid "albums" -msgstr "album" - -msgid "songs" -msgstr "låtar" - -msgid "Organize Files" -msgstr "Organisera filer" - -msgid "Destination" -msgstr "" - -msgid "After copying..." -msgstr "Efter kopiering..." - -msgid "Keep the original files" -msgstr "Behåll originalfiler" - -msgid "Delete the original files" -msgstr "Ta bort originalfiler" - -msgid "Naming options" -msgstr "Namngivningsalternativ" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

En variabel påbörjas med %, till exempel: %artist %album %title

\n\n" -"

Om du omgärdar en variabel med klammerparenteser (måsvingar), så kommer den inte att visas om variabeln är tom.

" - -msgid "Insert..." -msgstr "Infoga..." - -msgid "Remove problematic characters from filenames" -msgstr "Ta bort problematiska tecken från filnamn" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Begränsa till tecken som är tillåtna i FAT-filsystem" - -msgid "Restrict characters to ASCII" -msgstr "Begränsa tecken till ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Tillåt utökade ASCII-tecken" - -msgid "Replace spaces with underscores" -msgstr "Ersätter mellanslag med understreck" - -msgid "Overwrite existing files" -msgstr "Skriv över befintliga filer" - -msgid "Copy album cover artwork" -msgstr "Kopiera albumomslag" - -msgid "Safely remove the device after copying" -msgstr "Säker borttagning av enheten efter kopiering" - -msgid "Transcode Music" -msgstr "Omkoda musik" - -msgid "Files to transcode" -msgstr "Filer att omkoda" - -msgid "Directory" -msgstr "Mapp" - -msgid "Add..." -msgstr "Lägg till..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Lägg till alla låtar från en mapp och alla dess undermappar" - -msgid "Import..." -msgstr "Importera..." - -msgid "Output options" -msgstr "Alternativ för utgång" - -msgid "Audio format" -msgstr "Ljudformat" - -msgid "Options..." -msgstr "Alternativ..." - -msgid "Alongside the originals" -msgstr "Vid sidan av originalen" - -msgid "Select..." -msgstr "Välj..." - -msgid "Progress" -msgstr "Förlopp" - -msgid "Details..." -msgstr "Detaljer..." - -msgid "Transcoder Log" -msgstr "Omkodningslogg" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "Profil" - -msgid "Main profile (MAIN)" -msgstr "Huvudprofil (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Låg komplexitetprofil (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Skalbar samplingsfrekvensprofil (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Långsiktig förutsägelseprofil (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Använd tidsbaserad brusformning" - -msgid "Allow mid/side encoding" -msgstr "Tillåt mellan-/sidokodning" - -msgid "Block type" -msgstr "Blocktyp" - -msgid "Normal block type" -msgstr "Normal blocktyp" - -msgid "No short blocks" -msgstr "Inga korta block" - -msgid "No long blocks" -msgstr "Inga långa block" - -msgid "Transcoding options" -msgstr "Alternativ för omkodning" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Kvalitet" - -msgid "Fast" -msgstr "Snabb" - -msgid "Best" -msgstr "Bästa" - -msgid "Use bitrate management engine" -msgstr "Använd motor för hantering av bitfrekvens" - -msgid "Target bitrate" -msgstr "Önskad bitfrekvens" - -msgid "Minimum bitrate" -msgstr "Lägsta bitfrekvensen" - -msgid "disabled" -msgstr "inaktiverad" - -msgid "Maximum bitrate" -msgstr "Högsta bitfrekvensen" - -msgid "automatic" -msgstr "automatisk" - -msgid "Average bitrate" -msgstr "Genomsnittlig bitfrekvens" - -msgid "Encoding mode" -msgstr "Kodningsläge" - -msgid "Auto" -msgstr "" - -msgid "Ultra wide band (UWB)" -msgstr "Ultrabredband (UWB)" - -msgid "Wide band (WB)" -msgstr "Bredband (WB)" - -msgid "Narrow band (NB)" -msgstr "Snävt band (NB)" - -msgid "Variable bit rate" -msgstr "Variabel bithastighet" - -msgid "Voice activity detection" -msgstr "Upptäckt av röstaktivitet" - -msgid "Discontinuous transmission" -msgstr "Icke-kontinuerlig sändning" - -msgid "Encoding complexity" -msgstr "Kodningskomplexitet" - -msgid "Frames per buffer" -msgstr "Ramar per buffert" - -msgid "Optimize for &quality" -msgstr "Optimera för &kvalitet" - -msgid "Opti&mize for bitrate" -msgstr "Optimera för bitfrekvens" - -msgid "Constant bitrate" -msgstr "Konstant bitfrekvens" - -msgid "Encoding engine quality" -msgstr "Kodningsmotorns kvalitet" - -msgid "Standard" -msgstr "" - -msgid "High" -msgstr "Hög" - -msgid "Force mono encoding" -msgstr "Tvinga monokodning" - -msgid "Press a key" -msgstr "Tryck på en tangent" - -msgid "Global Shortcuts" -msgstr "Globala genvägar" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Använd Gnome (GSD)-genvägar när de är tillgängliga" - -msgid "Open..." -msgstr "Öppna..." - -msgid "Use MATE shortcuts when available" -msgstr "Använd MATE-genvägar när de är tillgängliga" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Använd KDE (KGlobalAccel) genvägar när de är tillgängliga" - -msgid "Use X11 shortcuts when available" -msgstr "Använd X11-genvägar när de är tillgängliga" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Du behöver starta Systeminställningar och tillåta Strawberry att \"kontrollera din dator\" för att använda globala genvägar i Strawberry." - -msgid "Shortcut" -msgstr "Genväg" - -msgctxt "Category label" -msgid "Action" -msgstr "Åtgärd" - -msgid "&None" -msgstr "I&ngen" - -msgid "&Default" -msgstr "&Standard" - -msgid "&Custom" -msgstr "A&npassad" - -msgid "Change shortcut..." -msgstr "Byt genväg..." - -msgid "Moodbar" -msgstr "Stämningsdiagram" - -msgid "Show a moodbar in the track progress bar" -msgstr "Visa ett stämningsdiagram i spårets förloppsfält" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Spara .mood-filerna direkt i låtmapparna" - -msgid "Enabled" -msgstr "Aktiverad" - -msgid "Device Properties" -msgstr "Enhetsegenskaper" - -msgid "Icon" -msgstr "Ikon" - -msgid "Hardware information" -msgstr "Hårdvaruinformation" - -msgid "Hardware information is only available while the device is connected." -msgstr "Hårdvaruinformation är endast tillgänglig när enheten är ansluten." - -msgid "Information" -msgstr "" - -msgid "Supported formats" -msgstr "Format som stöds" - -msgid "This device supports the following file formats:" -msgstr "Den här enheten stöder följande filformat:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry kan automatiskt konvertera musiken du kopierar till den här enheten till ett format som den kan spela." - -msgid "Do not convert any music" -msgstr "Konvertera inte någon musik" - -msgid "Convert any music that the device can't play" -msgstr "Konvertera all musik som inte kan spelas av enheten" - -msgid "Convert all music" -msgstr "Konvertera all musik" - -msgid "Preferred format" -msgstr "Önskat format" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Den här enheten måste vara ansluten och öppnad innan Strawberry kan se vilka filformat den stöder." - -msgid "Open device" -msgstr "Öppna enhet" - -msgid "Querying device..." -msgstr "Kommunicerar med enhet..." - -msgid "File formats" -msgstr "Filformat" - -msgid "Server URL" -msgstr "Serverwebbadress" - -msgid "Authentication method:" -msgstr "Autentiseringsmetod:" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Inställningar" - -msgid "Use HTTP/2 when possible" -msgstr "Använd HTTP/2 när det är möjligt" - -msgid "Verify server certificate" -msgstr "Verifiera servercertifikat" - -msgid "Download album covers" -msgstr "Hämta albumomslag" - -msgid "Server-side scrobbling" -msgstr "Skrobbling på serversidan" - -msgid "Test" -msgstr "Testa" - -msgid "Delete songs" -msgstr "Ta bort låtar" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Tidal stöds inte officiellt och kräver en API-token från en registrerad applikation för att fungera. Vi kan inte hjälpa dig att få dessa." - -msgid "Use OAuth" -msgstr "Använd OAuth" - -msgid "Client ID" -msgstr "Klient-ID" - -msgid "API Token" -msgstr "API-token" - -msgid "Audio quality" -msgstr "Ljudkvalitet" - -msgid "Search delay" -msgstr "Sökfördröjning" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "Sökgräns för artister" - -msgid "Albums search limit" -msgstr "Sökgräns för album" - -msgid "Songs search limit" -msgstr "Sökgräns för låtar" - -msgid "Fetch entire albums when searching songs" -msgstr "Hämta hela album vid sökning av låtar" - -msgid "Album cover size" -msgstr "Albumomslagets storlek" - -msgid "Stream URL method" -msgstr "Metod för flödeswebbadress" - -msgid "Append explicit to album title for explicit albums" -msgstr "Lägg uttryckligen till albumtitel för explicita album" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Qobuz stöds inte officiellt och kräver ett API-app-ID och hemlighet från en registrerad applikation för att fungera. Vi kan inte hjälpa dig att få dessa." - -msgid "App ID" -msgstr "App-ID" - -msgid "App Secret" -msgstr "Apphemlighet" - -msgid "Base64 encoded secret" -msgstr "Base64-kodad hemlighet" - -msgid "Return to Strawberry" -msgstr "Återgå till Strawberry" - -msgid "Success!" -msgstr "Lyckades!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Stäng din webbläsare och återgå till Strawberry." - diff --git a/src/translations/tr_CY.po b/src/translations/tr_CY.po deleted file mode 100644 index 5a5daa95..00000000 --- a/src/translations/tr_CY.po +++ /dev/null @@ -1,4353 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: tr-CY\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Turkish, Cyprus\n" -"Language: tr_CY\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "" - -msgid "Context" -msgstr "" - -msgid "Collection" -msgstr "" - -msgid "Queue" -msgstr "" - -msgid "Playlists" -msgstr "" - -msgid "Smart playlists" -msgstr "" - -msgid "Files" -msgstr "" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "" - -msgid "Show only duplicates" -msgstr "" - -msgid "Show only untagged" -msgstr "" - -msgid "Configure collection..." -msgstr "" - -msgid "Play" -msgstr "" - -msgid "Stop after this track" -msgstr "" - -msgid "Toggle queue status" -msgstr "" - -msgid "Queue selected tracks to play next" -msgstr "" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "" - -msgid "Copy URL(s)..." -msgstr "" - -msgid "Show in collection..." -msgstr "" - -msgid "Show in file browser..." -msgstr "" - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "" - -msgid "Move to collection..." -msgstr "" - -msgid "Copy to device..." -msgstr "" - -msgid "Delete from disk..." -msgstr "" - -msgid "Check for updates..." -msgstr "" - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "" - -msgid "Dequeue track" -msgstr "" - -msgid "Dequeue selected tracks" -msgstr "" - -msgid "Queue track" -msgstr "" - -msgid "Queue selected tracks" -msgstr "" - -msgid "Queue to play next" -msgstr "" - -msgid "Unskip track" -msgstr "" - -msgid "Unskip selected tracks" -msgstr "" - -msgid "Skip track" -msgstr "" - -msgid "Skip selected tracks" -msgstr "" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "" - -msgid "Add to another playlist" -msgstr "" - -msgid "New playlist" -msgstr "" - -msgid "Add file" -msgstr "" - -msgid "Music" -msgstr "" - -msgid "Add folder" -msgstr "" - -msgid "Clear playlist" -msgstr "" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "" - -msgid "Error" -msgstr "" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "" - -msgid "Would you like to run a full rescan right now?" -msgstr "" - -msgid "Collection rescan notice" -msgstr "" - -msgid "Usage" -msgstr "" - -msgid "options" -msgstr "" - -msgid "URL(s)" -msgstr "" - -msgid "Player options" -msgstr "" - -msgid "Start the playlist currently playing" -msgstr "" - -msgid "Play if stopped, pause if playing" -msgstr "" - -msgid "Pause playback" -msgstr "" - -msgid "Stop playback" -msgstr "" - -msgid "Stop playback after current track" -msgstr "" - -msgid "Skip backwards in playlist" -msgstr "" - -msgid "Skip forwards in playlist" -msgstr "" - -msgid "Set the volume to percent" -msgstr "" - -msgid "Increase the volume by 4 percent" -msgstr "" - -msgid "Decrease the volume by 4 percent" -msgstr "" - -msgid "Increase the volume by percent" -msgstr "" - -msgid "Decrease the volume by percent" -msgstr "" - -msgid "Seek the currently playing track to an absolute position" -msgstr "" - -msgid "Seek the currently playing track by a relative amount" -msgstr "" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "" - -msgid "Playlist options" -msgstr "" - -msgid "Create a new playlist with files" -msgstr "" - -msgid "Append files/URLs to the playlist" -msgstr "" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "" - -msgid "Play the th track in the playlist" -msgstr "" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "" - -msgid "Display the on-screen-display" -msgstr "" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "" - -msgid "Change the language" -msgstr "" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "" - -msgid "Equivalent to --log-levels *:3" -msgstr "" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "" - -msgid "Print out version information" -msgstr "" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "" - -msgid "Database corruption detected." -msgstr "" - -msgid "Backing up database" -msgstr "" - -msgid "Deleting files" -msgstr "" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "" - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "" - -msgid "1 day" -msgstr "" - -#, qt-format -msgid "%1 days" -msgstr "" - -msgid "Today" -msgstr "" - -msgid "Yesterday" -msgstr "" - -#, qt-format -msgid "%1 days ago" -msgstr "" - -msgid "Tomorrow" -msgstr "" - -#, qt-format -msgid "In %1 days" -msgstr "" - -msgid "Next week" -msgstr "" - -#, qt-format -msgid "In %1 weeks" -msgstr "" - -msgid "Show in file browser" -msgstr "" - -msgid "Too many songs selected." -msgstr "" - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "" - -msgid "Framerate" -msgstr "" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "" - -#, qt-format -msgid "High (%1 fps)" -msgstr "" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "" - -msgid "No analyzer" -msgstr "" - -msgid "Block analyzer" -msgstr "" - -msgid "Boom analyzer" -msgstr "" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "" - -msgid "Custom" -msgstr "" - -msgid "Classical" -msgstr "" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "" - -msgid "Full Treble" -msgstr "" - -msgid "Full Bass + Treble" -msgstr "" - -msgid "Laptop/Headphones" -msgstr "" - -msgid "Large Hall" -msgstr "" - -msgid "Live" -msgstr "" - -msgid "Party" -msgstr "" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "" - -msgid "Name" -msgstr "" - -msgid "Delete preset" -msgstr "" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "" - -msgid "Length" -msgstr "" - -msgid "Samplerate" -msgstr "" - -msgid "Bit depth" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "" - -msgid "Show song technical data" -msgstr "" - -msgid "Show song lyrics" -msgstr "" - -msgid "Automatically search for song lyrics" -msgstr "" - -msgid "No song playing" -msgstr "" - -#, qt-format -msgid "%1 song" -msgstr "" - -#, qt-format -msgid "%1 songs" -msgstr "" - -#, qt-format -msgid "%1 artist" -msgstr "" - -#, qt-format -msgid "%1 artists" -msgstr "" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "" - -msgid "Loading..." -msgstr "" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "" - -#, qt-format -msgid "Updating %1" -msgstr "" - -msgid "Your collection is empty!" -msgstr "" - -msgid "Click here to add some music" -msgstr "" - -msgid "Append to current playlist" -msgstr "" - -msgid "Replace current playlist" -msgstr "" - -msgid "Open in new playlist" -msgstr "" - -msgid "Search for this" -msgstr "" - -msgid "Edit track information..." -msgstr "" - -msgid "Edit tracks information..." -msgstr "" - -msgid "Rescan song(s)" -msgstr "" - -msgid "Show in various artists" -msgstr "" - -msgid "Don't show in various artists" -msgstr "" - -msgid "There are other songs in this album" -msgstr "" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "" - -msgid "Group by" -msgstr "" - -msgid "Display options" -msgstr "" - -msgid "Group by Album artist/Album" -msgstr "" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "" - -msgid "Group by Artist/Album - Disc" -msgstr "" - -msgid "Group by Artist/Year - Album" -msgstr "" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Genre/Album artist/Album" -msgstr "" - -msgid "Group by Genre/Artist/Album" -msgstr "" - -msgid "Group by Album Artist" -msgstr "" - -msgid "Group by Artist" -msgstr "" - -msgid "Group by Album" -msgstr "" - -msgid "Group by Genre/Album" -msgstr "" - -msgid "Advanced grouping..." -msgstr "" - -msgid "Grouping Name" -msgstr "" - -msgid "Grouping name:" -msgstr "" - -msgid "First level" -msgstr "" - -msgid "Second Level" -msgstr "" - -msgid "Third Level" -msgstr "" - -msgid "None" -msgstr "" - -msgid "Album artist" -msgstr "" - -msgid "Artist" -msgstr "" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "" - -msgid "Year - Album" -msgstr "" - -msgid "Year - Album - Disc" -msgstr "" - -msgid "Original year - Album" -msgstr "" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "" - -msgid "Year" -msgstr "" - -msgid "Original year" -msgstr "" - -msgid "Genre" -msgstr "" - -msgid "Composer" -msgstr "" - -msgid "Performer" -msgstr "" - -msgid "Grouping" -msgstr "" - -msgid "File type" -msgstr "" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "" - -msgid "Track" -msgstr "" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "" - -msgid "Source" -msgstr "" - -msgid "Mood" -msgstr "" - -msgid "Rating" -msgstr "" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "" - -msgid "stop" -msgstr "" - -msgid "Never" -msgstr "" - -msgid "&Hide..." -msgstr "" - -msgid "&Stretch columns to fit window" -msgstr "" - -msgid "&Reset columns to default" -msgstr "" - -msgid "&Lock rating" -msgstr "" - -msgid "&Align text" -msgstr "" - -msgid "&Left" -msgstr "" - -msgid "&Center" -msgstr "" - -msgid "&Right" -msgstr "" - -#, qt-format -msgid "&Hide %1" -msgstr "" - -msgid "New folder" -msgstr "" - -msgid "Delete" -msgstr "" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "" - -msgid "Enter the name of the folder" -msgstr "" - -msgid "Copy to device" -msgstr "" - -msgid "Playlist must be open first." -msgstr "" - -msgid "Remove playlists" -msgstr "" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "" - -msgid "Favorited playlists will be saved here" -msgstr "" - -msgid "Couldn't create playlist" -msgstr "" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "" - -msgid "Relative" -msgstr "" - -msgid "Absolute" -msgstr "" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "" - -msgid "Rename playlist..." -msgstr "" - -msgid "Save playlist..." -msgstr "" - -msgid "Rename playlist" -msgstr "" - -msgid "Enter a new name for this playlist" -msgstr "" - -msgid "Remove playlist" -msgstr "" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "" - -msgid "Warn me when closing a playlist tab" -msgstr "" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "" - -msgid "sort songs" -msgstr "" - -msgid "shuffle songs" -msgstr "" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "" - -msgid "Loading tracks" -msgstr "" - -msgid "Loading tracks info" -msgstr "" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "" - -msgid "Collection search" -msgstr "" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "" - -msgid "Search options" -msgstr "" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "" - -#, qt-format -msgid "%1 songs found" -msgstr "" - -msgid "after" -msgstr "" - -msgid "before" -msgstr "" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "" - -msgid "contains" -msgstr "" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "" - -msgid "Days" -msgstr "" - -msgid "Weeks" -msgstr "" - -msgid "Months" -msgstr "" - -msgid "Years" -msgstr "" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "" - -msgid "Newest tracks" -msgstr "" - -msgid "50 random tracks" -msgstr "" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "" - -msgid "Last played" -msgstr "" - -msgid "Most played" -msgstr "" - -msgid "Favourite tracks" -msgstr "" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "" - -msgid "Dynamic random mix" -msgstr "" - -msgid "New smart playlist..." -msgstr "" - -msgid "Play next" -msgstr "" - -msgid "Edit smart playlist..." -msgstr "" - -msgid "Delete smart playlist" -msgstr "" - -msgid "Smart playlist" -msgstr "" - -msgid "Playlist type" -msgstr "" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "" - -msgid "Finish" -msgstr "" - -msgid "Choose a name for your smart playlist" -msgstr "" - -msgid "Abort" -msgstr "" - -msgid "All albums" -msgstr "" - -msgid "Albums with covers" -msgstr "" - -msgid "Albums without covers" -msgstr "" - -msgid "Really cancel?" -msgstr "" - -msgid "Closing this window will stop searching for album covers." -msgstr "" - -msgid "Don't stop!" -msgstr "" - -msgid "All artists" -msgstr "" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "" - -#, qt-format -msgid "%1 transferred" -msgstr "" - -msgid "Export finished" -msgstr "" - -msgid "No covers to export." -msgstr "" - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "" - -msgid "Search" -msgstr "" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "" - -msgid "All files (*)" -msgstr "" - -msgid "Load cover from disk..." -msgstr "" - -msgid "Save cover to disk..." -msgstr "" - -msgid "Load cover from URL..." -msgstr "" - -msgid "Search for album covers..." -msgstr "" - -msgid "Unset cover" -msgstr "" - -msgid "Delete cover" -msgstr "" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "" - -msgid "Search automatically" -msgstr "" - -msgid "Load cover from disk" -msgstr "" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "" - -msgid "Save album cover" -msgstr "" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "" - -msgid "Average image size" -msgstr "" - -msgid "Total bytes transferred" -msgstr "" - -msgid "Fetching cover error" -msgstr "" - -msgid "The site you requested does not exist!" -msgstr "" - -msgid "The site you requested is not an image!" -msgstr "" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "" - -msgid "User interface" -msgstr "" - -msgid "Streaming" -msgstr "" - -msgid "Add directory..." -msgstr "" - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "" - -msgid "No provider selected." -msgstr "" - -msgid "Authentication failed" -msgstr "" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "" - -msgid "OSD Preview" -msgstr "" - -msgid "Drag to reposition" -msgstr "" - -msgid "About Strawberry" -msgstr "" - -#, qt-format -msgid "Version %1" -msgstr "" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "" - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "" - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "" - -msgid "Contributors" -msgstr "" - -msgid "Clementine authors" -msgstr "" - -msgid "Clementine contributors" -msgstr "" - -msgid "Thanks to" -msgstr "" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "" - -msgid "(different across multiple songs)" -msgstr "" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "" - -msgid "Next" -msgstr "" - -msgid "Saving tracks" -msgstr "" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "" - -msgid "Suggested tags" -msgstr "" - -msgid "Delete files" -msgstr "" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "" - -msgid "Plain sidebar" -msgstr "" - -msgid "Tabs on top" -msgstr "" - -msgid "Icons on top" -msgstr "" - -msgid "Available" -msgstr "" - -msgid "New songs" -msgstr "" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "" - -msgid "Clear" -msgstr "" - -msgid "Reset" -msgstr "" - -msgid "Small album cover" -msgstr "" - -msgid "Large album cover" -msgstr "" - -msgid "Fit cover to width" -msgstr "" - -msgid "Show above status bar" -msgstr "" - -msgid "You are signed in." -msgstr "" - -#, qt-format -msgid "You are signed in as %1." -msgstr "" - -#, qt-format -msgid "Expires on %1" -msgstr "" - -#, qt-format -msgid "disc %1" -msgstr "" - -#, qt-format -msgid "track %1" -msgstr "" - -msgid "Paused" -msgstr "" - -msgid "Stopped" -msgstr "" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "" - -msgid "On" -msgstr "" - -msgid "Off" -msgstr "" - -msgid "Playlist finished" -msgstr "" - -#, qt-format -msgid "Volume %1%" -msgstr "" - -msgid "Don't shuffle" -msgstr "" - -msgid "Shuffle all" -msgstr "" - -msgid "Shuffle tracks in this album" -msgstr "" - -msgid "Shuffle albums" -msgstr "" - -msgid "Don't repeat" -msgstr "" - -msgid "Repeat track" -msgstr "" - -msgid "Repeat album" -msgstr "" - -msgid "Repeat playlist" -msgstr "" - -msgid "Stop after every track" -msgstr "" - -msgid "Intro tracks" -msgstr "" - -#, qt-format -msgid "Configure %1..." -msgstr "" - -msgid "Add to artists" -msgstr "" - -msgid "Add to albums" -msgstr "" - -msgid "Add to songs" -msgstr "" - -msgid "Enter search terms above to find music" -msgstr "" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "" - -msgid "Remove from favorites" -msgstr "" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "" - -msgid "Open URL in web browser?" -msgstr "" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "" - -msgid "Invalid reply from web browser. Missing token." -msgstr "" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "" - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "" - -msgid "Error copying songs" -msgstr "" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "" - -msgid "Error deleting songs" -msgstr "" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "" - -#, qt-format -msgid "Shortcut for %1" -msgstr "" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "" - -msgid "D-Bus path" -msgstr "" - -msgid "Serial number" -msgstr "" - -msgid "Mount points" -msgstr "" - -msgid "Partition label" -msgstr "" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "" - -msgid "This device will not work properly" -msgstr "" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "" - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "" - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "" - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "" - -#, qt-format -msgid "Updating %1%..." -msgstr "" - -msgid "Not connected" -msgstr "" - -msgid "Not mounted - double click to mount" -msgstr "" - -msgid "Double click to open" -msgstr "" - -#, qt-format -msgid "%1 song%2" -msgstr "" - -msgid "Safely remove device" -msgstr "" - -msgid "Forget device" -msgstr "" - -msgid "Device properties..." -msgstr "" - -msgid "Delete from device..." -msgstr "" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "" - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "" - -msgid "An error occurred loading the iTunes database" -msgstr "" - -msgid "Mount point" -msgstr "" - -msgid "Device" -msgstr "" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "" - -#, qt-format -msgid "Successfully written %1" -msgstr "" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "" - -#, qt-format -msgid "Starting %1" -msgstr "" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "" - -msgid "Start transcoding" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "" - -msgid "Add files to transcode" -msgstr "" - -msgid "Open a directory to import music from" -msgstr "" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -msgid "Server URL is invalid." -msgstr "" - -msgid "Missing username or password." -msgstr "" - -msgid "Subsonic server URL is invalid." -msgstr "" - -msgid "Missing Subsonic username or password." -msgstr "" - -msgid "Retrieving albums..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "" - -msgid "Configuration incomplete" -msgstr "" - -msgid "Missing server url, username or password." -msgstr "" - -msgid "Configuration incorrect" -msgstr "" - -msgid "Test successful!" -msgstr "" - -msgid "Test failed!" -msgstr "" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "" - -msgid "Missing Tidal username." -msgstr "" - -msgid "Missing Tidal password." -msgstr "" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "" - -msgid "Not authenticated with Tidal." -msgstr "" - -msgid "Missing Tidal API token, username or password." -msgstr "" - -msgid "Authenticating..." -msgstr "" - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "" - -msgid "Cancelled." -msgstr "" - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "" - -msgid "Missing API token." -msgstr "" - -msgid "Missing username." -msgstr "" - -msgid "Missing password." -msgstr "" - -msgid "Spotify Authentication" -msgstr "" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "" - -msgid "Missing Qobuz app ID." -msgstr "" - -msgid "Missing Qobuz username." -msgstr "" - -msgid "Missing Qobuz password." -msgstr "" - -msgid "Not authenticated with Qobuz." -msgstr "" - -msgid "Missing Qobuz app ID or secret." -msgstr "" - -msgid "Missing app id." -msgstr "" - -msgid "Show moodbar" -msgstr "" - -msgid "Moodbar style" -msgstr "" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "" - -msgid "Frozen" -msgstr "" - -msgid "Happy" -msgstr "" - -msgid "System colors" -msgstr "" - -msgid "Strawberry Music Player" -msgstr "" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "" - -msgid "Set value for all selected tracks..." -msgstr "" - -msgid "Edit tag..." -msgstr "" - -msgid "&Settings..." -msgstr "" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "" - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "" - -msgid "Open audio &CD..." -msgstr "" - -msgid "&Cover Manager" -msgstr "" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "" - -msgid "&Repeat mode" -msgstr "" - -msgid "Remove from playlist" -msgstr "" - -msgid "&Equalizer" -msgstr "" - -msgid "&Transcode Music" -msgstr "" - -msgid "Add &folder..." -msgstr "" - -msgid "&Jump to the currently playing track" -msgstr "" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "" - -msgid "Go to previous playlist tab" -msgstr "" - -msgid "&Update changed collection folders" -msgstr "" - -msgid "About &Qt" -msgstr "" - -msgid "&Mute" -msgstr "" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "" - -msgid "Add file to transcoder" -msgstr "" - -msgid "Add stream..." -msgstr "" - -msgid "Show sidebar" -msgstr "" - -msgid "Import data from last.fm..." -msgstr "" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "" - -msgid "P&laylist" -msgstr "" - -msgid "Help" -msgstr "" - -msgid "&Tools" -msgstr "" - -msgid "Collection advanced grouping" -msgstr "" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "" - -msgid "Second level" -msgstr "" - -msgid "Third level" -msgstr "" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "" - -msgid "Entire collection" -msgstr "" - -msgid "Added today" -msgstr "" - -msgid "Added this week" -msgstr "" - -msgid "Added within three months" -msgstr "" - -msgid "Added this year" -msgstr "" - -msgid "Added this month" -msgstr "" - -msgid "Save current grouping" -msgstr "" - -msgid "Manage saved groupings" -msgstr "" - -msgid "Enter search terms here" -msgstr "" - -msgid "Form" -msgstr "" - -msgid "Saved Grouping Manager" -msgstr "" - -msgid "Remove" -msgstr "" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "" - -msgid "This can be changed later through the preferences" -msgstr "" - -msgid "Remember my choice" -msgstr "" - -msgid "Stop after each track" -msgstr "" - -msgid "Repeat" -msgstr "" - -msgid "Shuffle" -msgstr "" - -msgid "Dynamic mode is on" -msgstr "" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "" - -msgid "Move up" -msgstr "" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "" - -msgid "Preview" -msgstr "" - -msgid "and" -msgstr "" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "" - -msgid "Edit smart playlist" -msgstr "" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "" - -msgid "Output" -msgstr "" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "" - -msgid "Export downloaded covers" -msgstr "" - -msgid "Export embedded covers" -msgstr "" - -msgid "Existing covers" -msgstr "" - -msgid "Do not overwrite" -msgstr "" - -msgid "O&verwrite all" -msgstr "" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "" - -msgid "Scale size" -msgstr "" - -msgid "Size:" -msgstr "" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "" - -msgid "Fetch automatically" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Add to playlist" -msgstr "" - -msgid "View" -msgstr "" - -msgid "Total albums:" -msgstr "" - -msgid "Without cover:" -msgstr "" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "" - -msgid "Export Covers" -msgstr "" - -msgid "Fetch completed" -msgstr "" - -msgid "Load cover from URL" -msgstr "" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "" - -msgid "Settings" -msgstr "" - -msgid "Behavior" -msgstr "" - -msgid "Show system tray icon" -msgstr "" - -msgid "Keep running in the background when the window is closed" -msgstr "" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "" - -msgid "Show playing widget" -msgstr "" - -msgid "On startup" -msgstr "" - -msgid "Remember from &last time" -msgstr "" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "" - -msgid "Use the system default" -msgstr "" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "" - -msgid "Using the menu to add a song will..." -msgstr "" - -msgid "Never start playing" -msgstr "" - -msgid "Play if there is nothing already playing" -msgstr "" - -msgid "Always start playing" -msgstr "" - -msgid "Pressing \"Previous\" in player will..." -msgstr "" - -msgid "Jump to previous song right away" -msgstr "" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "" - -msgid "Double clicking a song will..." -msgstr "" - -msgid "Append to the playlist" -msgstr "" - -msgid "Replace the playlist" -msgstr "" - -msgid "Add to the queue" -msgstr "" - -msgid "Double clicking a song in the playlist will..." -msgstr "" - -msgid "Change the currently playing song" -msgstr "" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "" - -msgid "Time step" -msgstr "" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "" - -msgid "Add new folder..." -msgstr "" - -msgid "Remove folder" -msgstr "" - -msgid "Automatic updating" -msgstr "" - -msgid "Update the collection when Strawberry starts" -msgstr "" - -msgid "Monitor the collection for changes" -msgstr "" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "" - -msgid "Automatically open single categories in the collection tree" -msgstr "" - -msgid "Show dividers" -msgstr "" - -msgid "Show album cover art in collection" -msgstr "" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "" - -msgid "Enable Disk Cache" -msgstr "" - -msgid "Disk Cache Size" -msgstr "" - -msgid "Current disk cache in use:" -msgstr "" - -msgid "Clear Disk Cache" -msgstr "" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "" - -msgid "Engine" -msgstr "" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "" - -msgid "Replay Gain mode" -msgstr "" - -msgid "Radio (equal loudness for all tracks)" -msgstr "" - -msgid "Album (ideal loudness for all tracks)" -msgstr "" - -msgid "Apply compression to prevent clipping" -msgstr "" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "" - -msgid "Fade out when stopping a track" -msgstr "" - -msgid "Cross-fade when changing tracks manually" -msgstr "" - -msgid "Cross-fade when changing tracks automatically" -msgstr "" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "" - -msgid "Fading duration" -msgstr "" - -msgid "Fade out on pause / fade in on resume" -msgstr "" - -msgid "Add song artist tag" -msgstr "" - -msgid "Add song album tag" -msgstr "" - -msgid "Add song title tag" -msgstr "" - -msgid "Add song albumartist tag" -msgstr "" - -msgid "Add song year tag" -msgstr "" - -msgid "Add song composer tag" -msgstr "" - -msgid "Add song performer tag" -msgstr "" - -msgid "Add song grouping tag" -msgstr "" - -msgid "Add song disc tag" -msgstr "" - -msgid "Add song track tag" -msgstr "" - -msgid "Add song genre tag" -msgstr "" - -msgid "Add song length tag" -msgstr "" - -msgid "Add song play count" -msgstr "" - -msgid "Add song skip count" -msgstr "" - -msgid "Add a new line if supported by the notification type" -msgstr "" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "" - -msgid "Song Lyrics" -msgstr "" - -msgid "Automatically search for album cover" -msgstr "" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "" - -msgid "Automatically select current playing track" -msgstr "" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "" - -msgid "A&utomatic" -msgstr "" - -msgid "Absolu&te" -msgstr "" - -msgid "Re&lative" -msgstr "" - -msgid "As&k when saving" -msgstr "" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "" - -msgid "Enable song metadata inline edition with click" -msgstr "" - -msgid "Write metadata when saving playlists" -msgstr "" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "" - -msgid "Show love button" -msgstr "" - -msgid "Submit scrobbles every" -msgstr "" - -msgid " seconds" -msgstr "" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "" - -msgid "Covers" -msgstr "" - -msgid "Cover providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "" - -msgid "Authentication" -msgstr "" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "" - -msgid "Save album covers in album directory" -msgstr "" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "" - -msgid "Lowercase filename" -msgstr "" - -msgid "Replace spaces with dashes" -msgstr "" - -msgid "Lyrics" -msgstr "" - -msgid "Lyrics providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "" - -msgid "Network Proxy" -msgstr "" - -msgid "&Use the system proxy settings" -msgstr "" - -msgid "Direct internet connection" -msgstr "" - -msgid "&Manual proxy configuration" -msgstr "" - -msgid "HTTP proxy" -msgstr "" - -msgid "SOCKS proxy" -msgstr "" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "" - -msgid "Username" -msgstr "" - -msgid "Password" -msgstr "" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "" - -msgid "Style" -msgstr "" - -msgid "Use system theme icons" -msgstr "" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "" - -msgid "&Use the system default color" -msgstr "" - -msgid "Use custom color" -msgstr "" - -msgid "Use gradient background" -msgstr "" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "" - -msgid "Default bac&kground image" -msgstr "" - -msgid "&No background image" -msgstr "" - -msgid "The album cover of the currently playing song" -msgstr "" - -msgid "Albu&m cover" -msgstr "" - -msgid "Custom image:" -msgstr "" - -msgid "Browse..." -msgstr "" - -msgid "Position" -msgstr "" - -msgid "Upper Left" -msgstr "" - -msgid "Upper Right" -msgstr "" - -msgid "Middle" -msgstr "" - -msgid "Bottom Left" -msgstr "" - -msgid "Bottom Right" -msgstr "" - -msgid "Max cover size" -msgstr "" - -msgid "Stretch image to fill playlist" -msgstr "" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "" - -msgid "Blur amount" -msgstr "" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "" - -msgid "Strawberry can show a message when the track changes." -msgstr "" - -msgid "Notification type" -msgstr "" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "" - -msgid "Show a &native desktop notification" -msgstr "" - -msgid "Show a pretty OSD" -msgstr "" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "" - -msgid "Popup duration" -msgstr "" - -msgid "Disable duration" -msgstr "" - -msgid "Show a notification when I change the volume" -msgstr "" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "" - -msgid "Show a notification when I pause playback" -msgstr "" - -msgid "Show a notification when I resume playback" -msgstr "" - -msgid "Include album art in the notification" -msgstr "" - -msgid "Custom message settings" -msgstr "" - -msgid "Use a custom message for notifications" -msgstr "" - -msgid "Body" -msgstr "" - -msgid "Pretty OSD options" -msgstr "" - -msgid "Background color" -msgstr "" - -msgid "Text options" -msgstr "" - -msgid "Choose font..." -msgstr "" - -msgid "Choose color..." -msgstr "" - -msgid "Background opacity" -msgstr "" - -msgid "Basic Blue" -msgstr "" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "" - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "" - -msgid "Preset:" -msgstr "" - -msgid "Enable equalizer" -msgstr "" - -msgid "Enable stereo balancer" -msgstr "" - -msgid "Left" -msgstr "" - -msgid "Balance" -msgstr "" - -msgid "Right" -msgstr "" - -msgid "About" -msgstr "" - -msgid "Strawberry Error" -msgstr "" - -msgid "Console" -msgstr "" - -msgid "Run" -msgstr "" - -msgid "Edit track information" -msgstr "" - -msgid "Date created" -msgstr "" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "" - -msgid "Play count" -msgstr "" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "" - -msgid "Skip count" -msgstr "" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "" - -msgid "Sorry" -msgstr "" - -msgid "Strawberry was unable to find results for this file" -msgstr "" - -msgid "Select best possible match" -msgstr "" - -msgid "Add Stream" -msgstr "" - -msgid "Enter the URL of a stream:" -msgstr "" - -msgid "Enter username and password" -msgstr "" - -msgid "Import data from last.fm" -msgstr "" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "" - -msgid "Cancel" -msgstr "" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "" - -msgid "You are not signed in." -msgstr "" - -msgid "Sign out" -msgstr "" - -msgid "Signing in..." -msgstr "" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "" - -msgid "Albums" -msgstr "" - -msgid "Songs" -msgstr "" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "" - -msgid "albums" -msgstr "" - -msgid "songs" -msgstr "" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "" - -msgid "After copying..." -msgstr "" - -msgid "Keep the original files" -msgstr "" - -msgid "Delete the original files" -msgstr "" - -msgid "Naming options" -msgstr "" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "" - -msgid "Insert..." -msgstr "" - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "" - -msgid "Restrict characters to ASCII" -msgstr "" - -msgid "Allow extended ASCII characters" -msgstr "" - -msgid "Replace spaces with underscores" -msgstr "" - -msgid "Overwrite existing files" -msgstr "" - -msgid "Copy album cover artwork" -msgstr "" - -msgid "Safely remove the device after copying" -msgstr "" - -msgid "Press a key" -msgstr "" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "" - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "" - -msgid "Shortcut" -msgstr "" - -msgctxt "Category label" -msgid "Action" -msgstr "" - -msgid "&None" -msgstr "" - -msgid "&Default" -msgstr "" - -msgid "&Custom" -msgstr "" - -msgid "Change shortcut..." -msgstr "" - -msgid "Device Properties" -msgstr "" - -msgid "Icon" -msgstr "" - -msgid "Hardware information" -msgstr "" - -msgid "Hardware information is only available while the device is connected." -msgstr "" - -msgid "Information" -msgstr "" - -msgid "Supported formats" -msgstr "" - -msgid "This device supports the following file formats:" -msgstr "" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "" - -msgid "Do not convert any music" -msgstr "" - -msgid "Convert any music that the device can't play" -msgstr "" - -msgid "Convert all music" -msgstr "" - -msgid "Preferred format" -msgstr "" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "" - -msgid "Open device" -msgstr "" - -msgid "Querying device..." -msgstr "" - -msgid "File formats" -msgstr "" - -msgid "Transcode Music" -msgstr "" - -msgid "Files to transcode" -msgstr "" - -msgid "Directory" -msgstr "" - -msgid "Add..." -msgstr "" - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "" - -msgid "Import..." -msgstr "" - -msgid "Output options" -msgstr "" - -msgid "Audio format" -msgstr "" - -msgid "Options..." -msgstr "" - -msgid "Alongside the originals" -msgstr "" - -msgid "Select..." -msgstr "" - -msgid "Progress" -msgstr "" - -msgid "Details..." -msgstr "" - -msgid "Transcoder Log" -msgstr "" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Main profile (MAIN)" -msgstr "" - -msgid "Low complexity profile (LC)" -msgstr "" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "" - -msgid "Long term prediction profile (LTP)" -msgstr "" - -msgid "Use temporal noise shaping" -msgstr "" - -msgid "Allow mid/side encoding" -msgstr "" - -msgid "Block type" -msgstr "" - -msgid "Normal block type" -msgstr "" - -msgid "No short blocks" -msgstr "" - -msgid "No long blocks" -msgstr "" - -msgid "Transcoding options" -msgstr "" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "" - -msgid "Fast" -msgstr "" - -msgid "Best" -msgstr "" - -msgid "Use bitrate management engine" -msgstr "" - -msgid "Target bitrate" -msgstr "" - -msgid "Minimum bitrate" -msgstr "" - -msgid "disabled" -msgstr "" - -msgid "Maximum bitrate" -msgstr "" - -msgid "automatic" -msgstr "" - -msgid "Average bitrate" -msgstr "" - -msgid "Encoding mode" -msgstr "" - -msgid "Auto" -msgstr "" - -msgid "Ultra wide band (UWB)" -msgstr "" - -msgid "Wide band (WB)" -msgstr "" - -msgid "Narrow band (NB)" -msgstr "" - -msgid "Variable bit rate" -msgstr "" - -msgid "Voice activity detection" -msgstr "" - -msgid "Discontinuous transmission" -msgstr "" - -msgid "Encoding complexity" -msgstr "" - -msgid "Frames per buffer" -msgstr "" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "" - -msgid "Constant bitrate" -msgstr "" - -msgid "Encoding engine quality" -msgstr "" - -msgid "Standard" -msgstr "" - -msgid "High" -msgstr "" - -msgid "Force mono encoding" -msgstr "" - -msgid "Transcoding" -msgstr "" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "" - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "" - -msgid "Download album covers" -msgstr "" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "" - -msgid "Client ID" -msgstr "" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "" - -msgid "Search delay" -msgstr "" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "" - -msgid "Albums search limit" -msgstr "" - -msgid "Songs search limit" -msgstr "" - -msgid "Fetch entire albums when searching songs" -msgstr "" - -msgid "Album cover size" -msgstr "" - -msgid "Stream URL method" -msgstr "" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "" - -msgid "Enabled" -msgstr "" - -msgid "Return to Strawberry" -msgstr "" - -msgid "Success!" -msgstr "" - -msgid "Please close your browser and return to Strawberry." -msgstr "" - diff --git a/src/translations/tr_TR.po b/src/translations/tr_TR.po deleted file mode 100644 index 3147a88a..00000000 --- a/src/translations/tr_TR.po +++ /dev/null @@ -1,4354 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: tr\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Turkish\n" -"Language: tr_TR\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Tüm Dosyalar" - -msgid "Context" -msgstr "İçerik" - -msgid "Collection" -msgstr "Koleksiyon" - -msgid "Queue" -msgstr "Sıra" - -msgid "Playlists" -msgstr "Çalma listeleri" - -msgid "Smart playlists" -msgstr "Akıllı çalma listeleri" - -msgid "Files" -msgstr "Dosyalar" - -msgid "Radios" -msgstr "Radyolar" - -msgid "Devices" -msgstr "Cihazlar" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Tüm şarkıları göster" - -msgid "Show only duplicates" -msgstr "Sadece kopyaları göster" - -msgid "Show only untagged" -msgstr "Sadece etiketlenmemişleri göster" - -msgid "Configure collection..." -msgstr "Koleksiyon ayarları..." - -msgid "Play" -msgstr "Çal" - -msgid "Stop after this track" -msgstr "Bu parçadan sonra dur" - -msgid "Toggle queue status" -msgstr "" - -msgid "Queue selected tracks to play next" -msgstr "" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "Şarkıları yeniden tara..." - -msgid "Copy URL(s)..." -msgstr "URLleri kopyala..." - -msgid "Show in collection..." -msgstr "Koleksiyonda göster..." - -msgid "Show in file browser..." -msgstr "Dosya tarayıcısında göster..." - -msgid "Organize files..." -msgstr "Dosyaları düzenle..." - -msgid "Copy to collection..." -msgstr "Koleksiyona kopyala..." - -msgid "Move to collection..." -msgstr "Koleksiyona taşı..." - -msgid "Copy to device..." -msgstr "Cihaza kopyala..." - -msgid "Delete from disk..." -msgstr "Diskten sil" - -msgid "Check for updates..." -msgstr "Güncellemeleri kontrol et..." - -msgid "Strawberry running under Rosetta" -msgstr "Strawberry Rosetta'da çalışıyor" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "Strawberry'yi Rosetta'da çalıştırıyorsun. Strawberry'yi Rosetta'da çalıştırmak desteklenmiyor ve sorunlara yol açtığı biliniyor. Doğru CPU mimarisi için Strawberry'yi şu adresten indirmelisiniz: %1" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "Strawberry ücretsiz ve açık kaynaklı bir yazılımdır. Strawberry'yi beğendiyseniz projeye sponsor olabilirsiniz. Sponsorluk hakkında daha fazla bilgi için web sitemizi ziyaret edin %1" - -msgid "Pause" -msgstr "Duraklat" - -msgid "Dequeue track" -msgstr "Parçayı sıradan çıkar" - -msgid "Dequeue selected tracks" -msgstr "Seçili parçaları sıradan çıkar" - -msgid "Queue track" -msgstr "Parçayı sıraya al" - -msgid "Queue selected tracks" -msgstr "Seçili parçaları sıraya al" - -msgid "Queue to play next" -msgstr "" - -msgid "Unskip track" -msgstr "Parçayı atlama" - -msgid "Unskip selected tracks" -msgstr "Seçili parçaları atlama" - -msgid "Skip track" -msgstr "Parçayı atla" - -msgid "Skip selected tracks" -msgstr "Seçili parçaları atla" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "%1'i %2'ye ayarla" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "\"%1\" etiketini düzenle..." - -msgid "Add to another playlist" -msgstr "Başka çalma listesine ekle" - -msgid "New playlist" -msgstr "Yeni çalma listesi" - -msgid "Add file" -msgstr "Dosya ekle" - -msgid "Music" -msgstr "Müzik" - -msgid "Add folder" -msgstr "Klasör ekle" - -msgid "Clear playlist" -msgstr "Çalma listesini temizle" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Çalma listesinde, geri alınamayacak kadar fazla %1 şarkı var. Çalma listesini temizlemek istediğinizden emin misiniz?" - -msgid "Error" -msgstr "Hata" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Seçilen parçaların hiçbiri cihaza kopyalamak için uygun değil" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Güncellediğiniz Strawberry sürümü, aşağıda listelenen yeni özellikler nedeniyle koleksiyonun yeniden taranmasını gerektiriyor:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Tam yeniden taramayı şimdi yapmak ister misiniz?" - -msgid "Collection rescan notice" -msgstr "Koleksiyon yeniden tarama bildirimi" - -msgid "Usage" -msgstr "Kullanım" - -msgid "options" -msgstr "seçenekler" - -msgid "URL(s)" -msgstr "URL'ler" - -msgid "Player options" -msgstr "Oynatıcı seçenekleri" - -msgid "Start the playlist currently playing" -msgstr "Devam eden çalma listesini başlat" - -msgid "Play if stopped, pause if playing" -msgstr "Durmuşsa çal, çalıyorsa durdur" - -msgid "Pause playback" -msgstr "Yeniden çalmayı duraklat" - -msgid "Stop playback" -msgstr "Yeniden çalmayı durdur" - -msgid "Stop playback after current track" -msgstr "Yeniden çalmayı devam eden parçadan sonra durdur" - -msgid "Skip backwards in playlist" -msgstr "Çalma listesinde geriye doğru atla" - -msgid "Skip forwards in playlist" -msgstr "Çalma listesinde ileriye doğru atla" - -msgid "Set the volume to percent" -msgstr "Ses seviyesini 'ye ayarla" - -msgid "Increase the volume by 4 percent" -msgstr "Ses seviyesini yüzde 4 arttır" - -msgid "Decrease the volume by 4 percent" -msgstr "Ses seviyesini yüzde 4 azalt" - -msgid "Increase the volume by percent" -msgstr "Ses seviyesini yüzde arttır" - -msgid "Decrease the volume by percent" -msgstr "Ses seviyesini yüzde azalt" - -msgid "Seek the currently playing track to an absolute position" -msgstr "" - -msgid "Seek the currently playing track by a relative amount" -msgstr "" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "" - -msgid "Playlist options" -msgstr "Çalma listesi seçenekleri" - -msgid "Create a new playlist with files" -msgstr "Dosyalarla yeni bir çalma listesi oluştur" - -msgid "Append files/URLs to the playlist" -msgstr "Çalma listesine dosya/URL'ler ekle" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "" - -msgid "Play the th track in the playlist" -msgstr "Çalma listesindeki . parçayı çal" - -msgid "Play given playlist" -msgstr "Verilen çalma listesini çal" - -msgid "Other options" -msgstr "Diğer seçenekler" - -msgid "Display the on-screen-display" -msgstr "Ekran üstü görüntüyü görüntüle" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Ekran üstü güzel görünüm için görünürlüğü değiştir" - -msgid "Change the language" -msgstr "Dili değiştir" - -msgid "Resize the window" -msgstr "Ekranı yeniden boyutlandır" - -msgid "Equivalent to --log-levels *:1" -msgstr "-log-levels *:1'e eşit" - -msgid "Equivalent to --log-levels *:3" -msgstr "-log-levels *:3'e eşit" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "" - -msgid "Print out version information" -msgstr "Sürüm bilgisini yazdır" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "SQL sorgusu çalıştırılamıyor: %1" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "SQL sorgusu başarısız: %1" - -msgid "Integrity check" -msgstr "Bütünlük kontrolü" - -msgid "Database corruption detected." -msgstr "Veritabanı bozulması tespit edildi." - -msgid "Backing up database" -msgstr "Veritabanı yedekleniyor" - -msgid "Deleting files" -msgstr "Dosyalar siliniyor" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "Klasör oluşturulamadı: %1." - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "%1 hedef dosyası mevcut, ancak üzerine yazılmasına izin verilmiyor" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "%1 hedef dosyası mevcut, ancak üzerine yazılmasına izin verilmiyor" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Bilinmeyen" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Bu URL için GStreamer'e ihtiyacınız var." - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "%1 dosyası mevcut değil." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "%1 dosyası geçerli bir ses dosyası olarak tanınmıyor." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "CD'den oynatma sadece GStreamer motoruyla kullanılabilir." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Çalma listesi" - -msgid "1 day" -msgstr "1 gün" - -#, qt-format -msgid "%1 days" -msgstr "%1 gün" - -msgid "Today" -msgstr "Bugün" - -msgid "Yesterday" -msgstr "Dün" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 gün önce" - -msgid "Tomorrow" -msgstr "Yarın" - -#, qt-format -msgid "In %1 days" -msgstr "%1 gün içinde" - -msgid "Next week" -msgstr "Gelecek hafta" - -#, qt-format -msgid "In %1 weeks" -msgstr "%1 hafta içinde" - -msgid "Show in file browser" -msgstr "Dosya tarayıcısında göster" - -msgid "Too many songs selected." -msgstr "Çok fazla şarkı seçildi." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "%1 için veriden görüntü yüklenemedi" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "sanatçı" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "derecelendirme" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Kullanılabilir alanlar" - -msgid "Framerate" -msgstr "Kare hızı" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Düşük (%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Orta (%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Yüksek (%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Çok yüksek (%1 fps)" - -msgid "No analyzer" -msgstr "" - -msgid "Block analyzer" -msgstr "" - -msgid "Boom analyzer" -msgstr "" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "" - -msgid "Custom" -msgstr "Özel" - -msgid "Classical" -msgstr "Klasik" - -msgid "Club" -msgstr "Kulüp" - -msgid "Dance" -msgstr "Dans" - -msgid "Full Bass" -msgstr "Full Bass" - -msgid "Full Treble" -msgstr "Full Treble" - -msgid "Full Bass + Treble" -msgstr "Full Bass + Treble" - -msgid "Laptop/Headphones" -msgstr "Dizüstü/Kulaklık" - -msgid "Large Hall" -msgstr "Büyük Salon" - -msgid "Live" -msgstr "Canlı" - -msgid "Party" -msgstr "Parti" - -msgid "Pop" -msgstr "Pop" - -msgid "Reggae" -msgstr "Reggae" - -msgid "Rock" -msgstr "Rock" - -msgid "Soft" -msgstr "Soft" - -msgid "Ska" -msgstr "Ska" - -msgid "Soft Rock" -msgstr "Soft Rock" - -msgid "Techno" -msgstr "Tekno" - -msgid "Zero" -msgstr "Sıfır" - -msgid "Save preset" -msgstr "Önayarı kaydet" - -msgid "Name" -msgstr "Ad" - -msgid "Delete preset" -msgstr "Önayarı sil" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "%1 önayarını silmek istediğinize emin misiniz?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 dB" - -msgid "Filetype" -msgstr "Dosya türü" - -msgid "Length" -msgstr "Uzunluk" - -msgid "Samplerate" -msgstr "Örnek hız" - -msgid "Bit depth" -msgstr "Bit derinliği" - -msgid "Bitrate" -msgstr "Bit oranı" - -msgid "EBU R 128 Integrated Loudness" -msgstr "EBU R 128 Entegre Edilmiş Ses Yüksekliği" - -msgid "EBU R 128 Loudness Range" -msgstr "EBU R 128 Ses Yüksekliği Aralığı" - -msgid "Show album cover" -msgstr "Albüm kapağını göster" - -msgid "Show song technical data" -msgstr "Şarkı teknik verilerini göster" - -msgid "Show song lyrics" -msgstr "Şarkı sözlerini göster" - -msgid "Automatically search for song lyrics" -msgstr "Şarkı sözlerini otomatik ara" - -msgid "No song playing" -msgstr "Şarkı çalmıyor" - -#, qt-format -msgid "%1 song" -msgstr "%1 şarkı" - -#, qt-format -msgid "%1 songs" -msgstr "%1 şarkı" - -#, qt-format -msgid "%1 artist" -msgstr "%1 sanatçı" - -#, qt-format -msgid "%1 artists" -msgstr "%1 sanatçı" - -#, qt-format -msgid "%1 album" -msgstr "%1 albüm" - -#, qt-format -msgid "%1 albums" -msgstr "%1 albüm" - -msgid "kbps" -msgstr "kbps" - -msgid "Saving playcounts and ratings" -msgstr "Derecelendirmeler ve oynatma sayısı kaydediliyor" - -msgid "Various artists" -msgstr "Çeşitli sanatçılar" - -msgid "Loading..." -msgstr "Yükleniyor..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "Koleksiyon SQL sorgusu çalıştırılamıyor: %1" - -#, qt-format -msgid "Updating %1 database." -msgstr "%1 veritabanı güncelleniyor." - -msgid "Updating collection" -msgstr "Koleksiyon güncelleniyor" - -#, qt-format -msgid "Updating %1" -msgstr "%1 güncelleniyor" - -msgid "Your collection is empty!" -msgstr "Koleksiyonunuz boş!" - -msgid "Click here to add some music" -msgstr "Biraz müzik eklemek için buraya tıklayın" - -msgid "Append to current playlist" -msgstr "Geçerli çalma listesine ekle" - -msgid "Replace current playlist" -msgstr "" - -msgid "Open in new playlist" -msgstr "Yeni çalma listesinde aç" - -msgid "Search for this" -msgstr "Bunun için ara" - -msgid "Edit track information..." -msgstr "Parça bilgisini düzenle..." - -msgid "Edit tracks information..." -msgstr "Parçaların bilgilerini düzenle..." - -msgid "Rescan song(s)" -msgstr "Şarkıları yeniden tara..." - -msgid "Show in various artists" -msgstr "Çeşitli sanatçılar içinde göster" - -msgid "Don't show in various artists" -msgstr "Çeşitli sanatçılar içinde gösterme" - -msgid "There are other songs in this album" -msgstr "Bu albümde diğer şarkılar var" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Bu albümdeki diğer şarkıları da Çeşitli Sanatçılar'a taşımak ister misiniz?" - -msgid "Show" -msgstr "Göster" - -msgid "Group by" -msgstr "Grupla" - -msgid "Display options" -msgstr "Görüntüleme seçenekleri" - -msgid "Group by Album artist/Album" -msgstr "" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "" - -msgid "Group by Artist/Album - Disc" -msgstr "" - -msgid "Group by Artist/Year - Album" -msgstr "" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Genre/Album artist/Album" -msgstr "" - -msgid "Group by Genre/Artist/Album" -msgstr "" - -msgid "Group by Album Artist" -msgstr "" - -msgid "Group by Artist" -msgstr "" - -msgid "Group by Album" -msgstr "" - -msgid "Group by Genre/Album" -msgstr "" - -msgid "Advanced grouping..." -msgstr "Gelişmiş gruplama..." - -msgid "Grouping Name" -msgstr "" - -msgid "Grouping name:" -msgstr "" - -msgid "First level" -msgstr "Birinci seviye" - -msgid "Second Level" -msgstr "İkinci seviye" - -msgid "Third Level" -msgstr "Üçüncü seviye" - -msgid "None" -msgstr "Hiçbiri" - -msgid "Album artist" -msgstr "Albüm sanatçısı" - -msgid "Artist" -msgstr "Sanatçı" - -msgid "Album" -msgstr "Albüm" - -msgid "Album - Disc" -msgstr "Albüm - Disk" - -msgid "Year - Album" -msgstr "Yıl - Albüm" - -msgid "Year - Album - Disc" -msgstr "Yıl - Albüm - Disk" - -msgid "Original year - Album" -msgstr "Orijinal yıl - Albüm" - -msgid "Original year - Album - Disc" -msgstr "Orijinal yıl - Albüm - Disk" - -msgid "Disc" -msgstr "Disk" - -msgid "Year" -msgstr "Yıl" - -msgid "Original year" -msgstr "Orijinal yıl" - -msgid "Genre" -msgstr "Tarz" - -msgid "Composer" -msgstr "Besteci" - -msgid "Performer" -msgstr "Sanatçı" - -msgid "Grouping" -msgstr "Gruplandırma" - -msgid "File type" -msgstr "Dosya türü" - -msgid "Format" -msgstr "Format" - -msgid "Sample rate" -msgstr "Örnek hızı" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "%1'e üstveri yazılamadı" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "%1'e üstveri yazılamadı: %2" - -msgid "Title" -msgstr "Başlık" - -msgid "Track" -msgstr "Parça" - -msgid "Original Year" -msgstr "Orijinal Yıl" - -msgid "Album Artist" -msgstr "Albüm Sanatçısı" - -msgid "Play Count" -msgstr "Çalma Sayısı" - -msgid "Skip Count" -msgstr "Atlama Sayısı" - -msgid "Last Played" -msgstr "Son Çalma" - -msgid "Sample Rate" -msgstr "Örnekleme Sıklığı" - -msgid "Bit Depth" -msgstr "Bit Derinliği" - -msgid "File Name" -msgstr "Dosya Adı" - -msgid "File Name (without path)" -msgstr "Dosya Adı (dosya yolu olmadan)" - -msgid "File Size" -msgstr "Dosya Boyutu" - -msgid "File Type" -msgstr "Dosya Türü" - -msgid "Date Modified" -msgstr "Düzenlendiği Tarih" - -msgid "Date Created" -msgstr "Oluşturulduğu Tarih" - -msgid "Comment" -msgstr "Yorum" - -msgid "Source" -msgstr "Kaynak" - -msgid "Mood" -msgstr "Ruh Hali" - -msgid "Rating" -msgstr "Derecelendirme" - -msgid "CUE" -msgstr "CUE" - -msgid "Integrated Loudness" -msgstr "Entegre Edilmiş Ses Yüksekliği" - -msgid "Loudness Range" -msgstr "Ses Yüksekliği Aralığı" - -msgid "Undo" -msgstr "Geri Al" - -msgid "Redo" -msgstr "Yinele" - -msgid "Load playlist" -msgstr "Çalma listesini yükle" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "" - -msgid "stop" -msgstr "durdur" - -msgid "Never" -msgstr "Asla" - -msgid "&Hide..." -msgstr "&Sakla..." - -msgid "&Stretch columns to fit window" -msgstr "&Pencereyi sığdırmak için sütunları uzat" - -msgid "&Reset columns to default" -msgstr "&Sütunları varsayılana sıfırla" - -msgid "&Lock rating" -msgstr "&Derecelendirmeyi kilitle" - -msgid "&Align text" -msgstr "&Metni hizala" - -msgid "&Left" -msgstr "&Sol" - -msgid "&Center" -msgstr "&Orta" - -msgid "&Right" -msgstr "&Sağ" - -#, qt-format -msgid "&Hide %1" -msgstr "&%1'i sakla" - -msgid "New folder" -msgstr "Yeni klasör" - -msgid "Delete" -msgstr "Sil" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Çalma listesini kaydet" - -msgid "Enter the name of the folder" -msgstr "Klasör adını giriniz" - -msgid "Copy to device" -msgstr "Cihaza kopyala" - -msgid "Playlist must be open first." -msgstr "Önce çalma listesinin açık olması gerekir." - -msgid "Remove playlists" -msgstr "Çalma listelerini kaldır" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "%1 çalma listesini favorilerinizden kaldırmak üzeresiniz, emin misiniz?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Çalma listesinin adının yanındaki yıldız simgesine basarak çalma listelerini favorilerinize ekleyebilirsiniz" - -msgid "Favorited playlists will be saved here" -msgstr "Favorilere eklenen çalma listeleri buraya kaydedilecek" - -msgid "Couldn't create playlist" -msgstr "Çalma listesi oluşturulamadı" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Çalma listesini kaydet" - -msgid "Unknown playlist extension" -msgstr "Bilinmeyen çalma listesi uzantısı" - -msgid "Unknown file extension for playlist." -msgstr "Çalma listesi için bilinmeyen dosya uzantısı" - -#, qt-format -msgid "%1 selected of" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "%n parça" - -msgid "Automatic" -msgstr "Otomatik" - -msgid "Relative" -msgstr "Göreceli" - -msgid "Absolute" -msgstr "Mutlak" - -msgid "Star playlist" -msgstr "Çalma listesini yıldızla" - -msgid "Close playlist" -msgstr "Çalma listesini kapat" - -msgid "Rename playlist..." -msgstr "Çalma listesini yeniden adlandır..." - -msgid "Save playlist..." -msgstr "Çalma listesini kaydet..." - -msgid "Rename playlist" -msgstr "Çalma listesini yeniden adlandır" - -msgid "Enter a new name for this playlist" -msgstr "Çalma listesi için yeni bir ad gir" - -msgid "Remove playlist" -msgstr "Çalma listesini kaldır" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Favori çalma listelerinizin bir parçası olmayan bir çalma listesini kaldırmak üzeresiniz: çalma listesi silinecektir (bu işlem geri alınamaz).\n" -"Devam etmek istediğinizden emin misiniz?" - -msgid "Warn me when closing a playlist tab" -msgstr "Çalma listesi sekmesini kapatırken beni uyar" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "%n şarkı ekle" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "%n şarkı kaldır" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "%n şarkı taşı" - -msgid "sort songs" -msgstr "şarkıları sırala" - -msgid "shuffle songs" -msgstr "şarkıları karıştır" - -msgid "Hz" -msgstr "Hz" - -msgid "Bit" -msgstr "Bit" - -msgid "Error while loading audio CD." -msgstr "Ses CD'si yüklenirken hata." - -msgid "Loading tracks" -msgstr "Parçalar yükleniyor" - -msgid "Loading tracks info" -msgstr "Parça bilgileri yükleniyor" - -msgid "Saving CUE files is not supported." -msgstr "CUE dosyalarının kaydedilmesi desteklenmiyor." - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Tüm çalma listeleri (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 çalma listesi (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "Bilinmeyen dosya türü: %1" - -#, qt-format -msgid "Could not open file %1" -msgstr "%1 dosyası açılamadı" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "%1 dizini mevcut değil." - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "%1 yazmak için açılamadı." - -msgid "Loading smart playlist" -msgstr "Akıllı çalma listeleri yükleniyor" - -msgid "Collection search" -msgstr "Koleksiyon araması" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Koleksiyonunuzda belirttiğiniz kriterlere uyan şarkıları bulun." - -msgid "Search terms" -msgstr "Arama terimleri" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Bu şartları sağlayan şarkılar listeye eklenecektir." - -msgid "Search options" -msgstr "Arama seçenekleri" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Çalma listesinin nasıl sıralanacağını ve kaç şarkı içereceğini seçin." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "%1 şarkı bulundu (%2 tanesi gösteriliyor)" - -#, qt-format -msgid "%1 songs found" -msgstr "%1 şarkı bulundu" - -msgid "after" -msgstr "sonra" - -msgid "before" -msgstr "önce" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "sondaki" - -msgid "not in the last" -msgstr "sondaki değil" - -msgid "between" -msgstr "arasında" - -msgid "contains" -msgstr "içeren" - -msgid "does not contain" -msgstr "içermiyor" - -msgid "starts with" -msgstr "ile başlar" - -msgid "ends with" -msgstr "ile biter" - -msgid "greater than" -msgstr "büyüktür" - -msgid "less than" -msgstr "küçüktür" - -msgid "equals" -msgstr "eşittir" - -msgid "not equals" -msgstr "eşit değildir" - -msgid "empty" -msgstr "boş" - -msgid "not empty" -msgstr "boş değil" - -msgid "A-Z" -msgstr "A-Z" - -msgid "Z-A" -msgstr "Z-A" - -msgid "oldest first" -msgstr "ilk önce en eski" - -msgid "newest first" -msgstr "ilk önce en yeni" - -msgid "shortest first" -msgstr "ilk önce en kısa" - -msgid "longest first" -msgstr "ilk önce en uzun" - -msgid "smallest first" -msgstr "ilk önce en küçük" - -msgid "biggest first" -msgstr "ilk önce en büyük" - -msgid "Hours" -msgstr "Saat" - -msgid "Days" -msgstr "Gün" - -msgid "Weeks" -msgstr "Hafta" - -msgid "Months" -msgstr "Ay" - -msgid "Years" -msgstr "Yıl" - -msgid "The second value must be greater than the first one!" -msgstr "İkinci değer birinci değerden daha büyük olmalıdır!" - -msgid "Add search term" -msgstr "Arama terimi sekle" - -msgid "Newest tracks" -msgstr "En yeni parçalar" - -msgid "50 random tracks" -msgstr "50 rastgele parça" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "Hiç çalınmamış" - -msgid "Last played" -msgstr "En son çalınan" - -msgid "Most played" -msgstr "En çok çalınan" - -msgid "Favourite tracks" -msgstr "Favori parçalar" - -msgid "Least favourite tracks" -msgstr "En az beğenilen parça" - -msgid "All tracks" -msgstr "Tüm parçalar" - -msgid "Dynamic random mix" -msgstr "Dinamik rastgele miks" - -msgid "New smart playlist..." -msgstr "Yeni akıllı çalma listesi..." - -msgid "Play next" -msgstr "Sonrakini çal" - -msgid "Edit smart playlist..." -msgstr "Akıllı çalma listesini düzenle..." - -msgid "Delete smart playlist" -msgstr "Akıllı çalma listesini sil" - -msgid "Smart playlist" -msgstr "Akıllı çalma listesi" - -msgid "Playlist type" -msgstr "Çalma listesi türü" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Akıllı çalma listesi, koleksiyonunuzdan gelen şarkıların dinamik bir listesidir. Şarkıları seçmenin farklı yollarını sunan farklı akıllı çalma listesi türleri vardır." - -msgid "Finish" -msgstr "Bitir" - -msgid "Choose a name for your smart playlist" -msgstr "Akıllı çalma listen için bir ad seç" - -msgid "Abort" -msgstr "İptal et" - -msgid "All albums" -msgstr "Tüm albümler" - -msgid "Albums with covers" -msgstr "Kapaklı albümler" - -msgid "Albums without covers" -msgstr "Kapaksız albümler" - -msgid "Really cancel?" -msgstr "Gerçekten iptal mi?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Bu pencereyi kapatmak albüm kapağı aramasını durduracaktır." - -msgid "Don't stop!" -msgstr "Durma!" - -msgid "All artists" -msgstr "Tüm sanatçılar" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 transfer edildi" - -msgid "Export finished" -msgstr "Dışarı aktarma bitti" - -msgid "No covers to export." -msgstr "Dışarı aktaracak kapak yok." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "" - -msgid "Search" -msgstr "Ara" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "" - -msgid "All files (*)" -msgstr "Tüm dosyalar (*)" - -msgid "Load cover from disk..." -msgstr "Diskten kapak yükle..." - -msgid "Save cover to disk..." -msgstr "Kapağı diske kaydet..." - -msgid "Load cover from URL..." -msgstr "URL'den kapak yükle..." - -msgid "Search for album covers..." -msgstr "Albüm kapağı ara" - -msgid "Unset cover" -msgstr "Kapağı kaldır" - -msgid "Delete cover" -msgstr "Kapağı sil" - -msgid "Clear cover" -msgstr "Kapağı temizle" - -msgid "Show fullsize..." -msgstr "Tam boyut göster" - -msgid "Search automatically" -msgstr "Otomatik ara" - -msgid "Load cover from disk" -msgstr "Diskten kapak yükle" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "bilinmeyen" - -msgid "Save album cover" -msgstr "Albüm kapağını kaydet" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "" - -msgid "Average image size" -msgstr "" - -msgid "Total bytes transferred" -msgstr "" - -msgid "Fetching cover error" -msgstr "" - -msgid "The site you requested does not exist!" -msgstr "" - -msgid "The site you requested is not an image!" -msgstr "" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "Genel" - -msgid "User interface" -msgstr "Kullanıcı arayüzü" - -msgid "Streaming" -msgstr "Yayımlanıyor" - -msgid "Add directory..." -msgstr "Dizin ekle..." - -msgid "Write all playcounts and ratings to files" -msgstr "Tüm çalma sayısını ve derecelendirmeleri dosyalara yazdır" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Koleksiyonunuzdaki tüm şarkılar için çalma sayısı ve derecelendirmeleri dosyaya yazdırmak istediğinizden emin misiniz?" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "Kimlik doğrulama için Tidal ayarlarını kullan." - -msgid "Use Spotify settings to authenticate." -msgstr "Kimlik doğrulama için Spotify ayarlarını kullan." - -msgid "Use Qobuz settings to authenticate." -msgstr "Kimlik doğrulama için Qobuz ayarlarını kullan." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 kimlik doğrulaması gerektiriyor." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 kimlik doğrulaması gerektirmiyor." - -msgid "No provider selected." -msgstr "Sağlayıcı seçilmedi." - -msgid "Authentication failed" -msgstr "Doğrulama başarısız" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "" - -msgid "OSD Preview" -msgstr "" - -msgid "Drag to reposition" -msgstr "" - -msgid "About Strawberry" -msgstr "Strawberry hakkında" - -#, qt-format -msgid "Version %1" -msgstr "Sürüm %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry bir müzik çalar ve müzik koleksiyonu düzenleyicisidir." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "2018 yılında piyasaya sürülen Clementine'in müzik koleksiyoncuları ve müzik tutkunlarına yönelik bir versiyonudur." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry, GPL altında yayınlanan özgür bir yazılımdır. Kaynak kodu %1'de mevcuttur" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Bu programla birlikte GNU Genel Kamu Lisansı'nın bir kopyasını almış olmalısınız. Eğer almadıysanız, %1'e bakın" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Eğer Strawberry'yi beğendiyseniz ve işinize yarıyorsa sponsor olmayı düşünebilir veya bağışta bulunabilirsiniz." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Geliştiriciye %1 üzerinden sponsor olabilirsiniz. Ayrıca %2 üzerinden tek seferlik ödeme yapabilirsiniz." - -msgid "Author and maintainer" -msgstr "Geliştirici ve bakımcı" - -msgid "Contributors" -msgstr "Katkıda bulunanlar" - -msgid "Clementine authors" -msgstr "Clementine geliştiricileri" - -msgid "Clementine contributors" -msgstr "" - -msgid "Thanks to" -msgstr "" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "" - -msgid "(different across multiple songs)" -msgstr "" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "" - -msgid "Next" -msgstr "" - -msgid "Saving tracks" -msgstr "" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "" - -msgid "Suggested tags" -msgstr "" - -msgid "Delete files" -msgstr "" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "" - -msgid "Plain sidebar" -msgstr "" - -msgid "Tabs on top" -msgstr "" - -msgid "Icons on top" -msgstr "" - -msgid "Available" -msgstr "" - -msgid "New songs" -msgstr "" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "" - -msgid "Clear" -msgstr "" - -msgid "Reset" -msgstr "" - -msgid "Small album cover" -msgstr "" - -msgid "Large album cover" -msgstr "" - -msgid "Fit cover to width" -msgstr "" - -msgid "Show above status bar" -msgstr "" - -msgid "You are signed in." -msgstr "" - -#, qt-format -msgid "You are signed in as %1." -msgstr "" - -#, qt-format -msgid "Expires on %1" -msgstr "" - -#, qt-format -msgid "disc %1" -msgstr "" - -#, qt-format -msgid "track %1" -msgstr "" - -msgid "Paused" -msgstr "" - -msgid "Stopped" -msgstr "" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "" - -msgid "On" -msgstr "" - -msgid "Off" -msgstr "" - -msgid "Playlist finished" -msgstr "" - -#, qt-format -msgid "Volume %1%" -msgstr "" - -msgid "Don't shuffle" -msgstr "" - -msgid "Shuffle all" -msgstr "" - -msgid "Shuffle tracks in this album" -msgstr "" - -msgid "Shuffle albums" -msgstr "" - -msgid "Don't repeat" -msgstr "" - -msgid "Repeat track" -msgstr "" - -msgid "Repeat album" -msgstr "" - -msgid "Repeat playlist" -msgstr "" - -msgid "Stop after every track" -msgstr "" - -msgid "Intro tracks" -msgstr "" - -#, qt-format -msgid "Configure %1..." -msgstr "" - -msgid "Add to artists" -msgstr "" - -msgid "Add to albums" -msgstr "" - -msgid "Add to songs" -msgstr "" - -msgid "Enter search terms above to find music" -msgstr "" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "" - -msgid "Remove from favorites" -msgstr "" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "" - -msgid "Open URL in web browser?" -msgstr "" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "" - -msgid "Invalid reply from web browser. Missing token." -msgstr "" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "" - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "" - -msgid "Error copying songs" -msgstr "" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "" - -msgid "Error deleting songs" -msgstr "" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "" - -#, qt-format -msgid "Shortcut for %1" -msgstr "" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "" - -msgid "D-Bus path" -msgstr "" - -msgid "Serial number" -msgstr "" - -msgid "Mount points" -msgstr "" - -msgid "Partition label" -msgstr "" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "" - -msgid "This device will not work properly" -msgstr "" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "" - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "" - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "" - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "" - -#, qt-format -msgid "Updating %1%..." -msgstr "" - -msgid "Not connected" -msgstr "" - -msgid "Not mounted - double click to mount" -msgstr "" - -msgid "Double click to open" -msgstr "" - -#, qt-format -msgid "%1 song%2" -msgstr "" - -msgid "Safely remove device" -msgstr "" - -msgid "Forget device" -msgstr "" - -msgid "Device properties..." -msgstr "" - -msgid "Delete from device..." -msgstr "" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "" - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "" - -msgid "An error occurred loading the iTunes database" -msgstr "" - -msgid "Mount point" -msgstr "" - -msgid "Device" -msgstr "" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "" - -#, qt-format -msgid "Successfully written %1" -msgstr "" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "" - -#, qt-format -msgid "Starting %1" -msgstr "" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "" - -msgid "Start transcoding" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "" - -msgid "Add files to transcode" -msgstr "" - -msgid "Open a directory to import music from" -msgstr "" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -msgid "Server URL is invalid." -msgstr "" - -msgid "Missing username or password." -msgstr "" - -msgid "Subsonic server URL is invalid." -msgstr "" - -msgid "Missing Subsonic username or password." -msgstr "" - -msgid "Retrieving albums..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "" - -msgid "Configuration incomplete" -msgstr "" - -msgid "Missing server url, username or password." -msgstr "" - -msgid "Configuration incorrect" -msgstr "" - -msgid "Test successful!" -msgstr "" - -msgid "Test failed!" -msgstr "" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "" - -msgid "Missing Tidal username." -msgstr "" - -msgid "Missing Tidal password." -msgstr "" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "" - -msgid "Not authenticated with Tidal." -msgstr "" - -msgid "Missing Tidal API token, username or password." -msgstr "" - -msgid "Authenticating..." -msgstr "" - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "" - -msgid "Cancelled." -msgstr "" - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "" - -msgid "Missing API token." -msgstr "" - -msgid "Missing username." -msgstr "" - -msgid "Missing password." -msgstr "" - -msgid "Spotify Authentication" -msgstr "" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "" - -msgid "Missing Qobuz app ID." -msgstr "" - -msgid "Missing Qobuz username." -msgstr "" - -msgid "Missing Qobuz password." -msgstr "" - -msgid "Not authenticated with Qobuz." -msgstr "" - -msgid "Missing Qobuz app ID or secret." -msgstr "" - -msgid "Missing app id." -msgstr "" - -msgid "Show moodbar" -msgstr "" - -msgid "Moodbar style" -msgstr "" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "" - -msgid "Frozen" -msgstr "" - -msgid "Happy" -msgstr "" - -msgid "System colors" -msgstr "" - -msgid "Strawberry Music Player" -msgstr "" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "" - -msgid "Set value for all selected tracks..." -msgstr "" - -msgid "Edit tag..." -msgstr "" - -msgid "&Settings..." -msgstr "" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "" - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "" - -msgid "Open audio &CD..." -msgstr "" - -msgid "&Cover Manager" -msgstr "" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "" - -msgid "&Repeat mode" -msgstr "" - -msgid "Remove from playlist" -msgstr "" - -msgid "&Equalizer" -msgstr "" - -msgid "&Transcode Music" -msgstr "" - -msgid "Add &folder..." -msgstr "" - -msgid "&Jump to the currently playing track" -msgstr "" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "" - -msgid "Go to previous playlist tab" -msgstr "" - -msgid "&Update changed collection folders" -msgstr "" - -msgid "About &Qt" -msgstr "" - -msgid "&Mute" -msgstr "" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "" - -msgid "Add file to transcoder" -msgstr "" - -msgid "Add stream..." -msgstr "" - -msgid "Show sidebar" -msgstr "" - -msgid "Import data from last.fm..." -msgstr "" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "" - -msgid "P&laylist" -msgstr "" - -msgid "Help" -msgstr "" - -msgid "&Tools" -msgstr "" - -msgid "Collection advanced grouping" -msgstr "" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "" - -msgid "Second level" -msgstr "" - -msgid "Third level" -msgstr "" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "" - -msgid "Entire collection" -msgstr "" - -msgid "Added today" -msgstr "" - -msgid "Added this week" -msgstr "" - -msgid "Added within three months" -msgstr "" - -msgid "Added this year" -msgstr "" - -msgid "Added this month" -msgstr "" - -msgid "Save current grouping" -msgstr "" - -msgid "Manage saved groupings" -msgstr "" - -msgid "Enter search terms here" -msgstr "" - -msgid "Form" -msgstr "" - -msgid "Saved Grouping Manager" -msgstr "" - -msgid "Remove" -msgstr "" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "" - -msgid "This can be changed later through the preferences" -msgstr "" - -msgid "Remember my choice" -msgstr "" - -msgid "Stop after each track" -msgstr "" - -msgid "Repeat" -msgstr "" - -msgid "Shuffle" -msgstr "" - -msgid "Dynamic mode is on" -msgstr "" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "" - -msgid "Move up" -msgstr "" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "" - -msgid "Preview" -msgstr "" - -msgid "and" -msgstr "" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "" - -msgid "Edit smart playlist" -msgstr "" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "" - -msgid "Output" -msgstr "" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "" - -msgid "Export downloaded covers" -msgstr "" - -msgid "Export embedded covers" -msgstr "" - -msgid "Existing covers" -msgstr "" - -msgid "Do not overwrite" -msgstr "" - -msgid "O&verwrite all" -msgstr "" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "" - -msgid "Scale size" -msgstr "" - -msgid "Size:" -msgstr "" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "" - -msgid "Fetch automatically" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Add to playlist" -msgstr "" - -msgid "View" -msgstr "" - -msgid "Total albums:" -msgstr "" - -msgid "Without cover:" -msgstr "" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "" - -msgid "Export Covers" -msgstr "" - -msgid "Fetch completed" -msgstr "" - -msgid "Load cover from URL" -msgstr "" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "" - -msgid "Settings" -msgstr "" - -msgid "Behavior" -msgstr "" - -msgid "Show system tray icon" -msgstr "" - -msgid "Keep running in the background when the window is closed" -msgstr "" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "" - -msgid "Show playing widget" -msgstr "" - -msgid "On startup" -msgstr "" - -msgid "Remember from &last time" -msgstr "" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "" - -msgid "Use the system default" -msgstr "" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "" - -msgid "Using the menu to add a song will..." -msgstr "" - -msgid "Never start playing" -msgstr "" - -msgid "Play if there is nothing already playing" -msgstr "" - -msgid "Always start playing" -msgstr "" - -msgid "Pressing \"Previous\" in player will..." -msgstr "" - -msgid "Jump to previous song right away" -msgstr "" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "" - -msgid "Double clicking a song will..." -msgstr "" - -msgid "Append to the playlist" -msgstr "" - -msgid "Replace the playlist" -msgstr "" - -msgid "Add to the queue" -msgstr "" - -msgid "Double clicking a song in the playlist will..." -msgstr "" - -msgid "Change the currently playing song" -msgstr "" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "" - -msgid "Time step" -msgstr "" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "" - -msgid "Add new folder..." -msgstr "" - -msgid "Remove folder" -msgstr "" - -msgid "Automatic updating" -msgstr "" - -msgid "Update the collection when Strawberry starts" -msgstr "" - -msgid "Monitor the collection for changes" -msgstr "" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "" - -msgid "Automatically open single categories in the collection tree" -msgstr "" - -msgid "Show dividers" -msgstr "" - -msgid "Show album cover art in collection" -msgstr "" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "" - -msgid "Enable Disk Cache" -msgstr "" - -msgid "Disk Cache Size" -msgstr "" - -msgid "Current disk cache in use:" -msgstr "" - -msgid "Clear Disk Cache" -msgstr "" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "" - -msgid "Engine" -msgstr "" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "" - -msgid "Replay Gain mode" -msgstr "" - -msgid "Radio (equal loudness for all tracks)" -msgstr "" - -msgid "Album (ideal loudness for all tracks)" -msgstr "" - -msgid "Apply compression to prevent clipping" -msgstr "" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "" - -msgid "Fade out when stopping a track" -msgstr "" - -msgid "Cross-fade when changing tracks manually" -msgstr "" - -msgid "Cross-fade when changing tracks automatically" -msgstr "" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "" - -msgid "Fading duration" -msgstr "" - -msgid "Fade out on pause / fade in on resume" -msgstr "" - -msgid "Add song artist tag" -msgstr "" - -msgid "Add song album tag" -msgstr "" - -msgid "Add song title tag" -msgstr "" - -msgid "Add song albumartist tag" -msgstr "" - -msgid "Add song year tag" -msgstr "" - -msgid "Add song composer tag" -msgstr "" - -msgid "Add song performer tag" -msgstr "" - -msgid "Add song grouping tag" -msgstr "" - -msgid "Add song disc tag" -msgstr "" - -msgid "Add song track tag" -msgstr "" - -msgid "Add song genre tag" -msgstr "" - -msgid "Add song length tag" -msgstr "" - -msgid "Add song play count" -msgstr "" - -msgid "Add song skip count" -msgstr "" - -msgid "Add a new line if supported by the notification type" -msgstr "" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "" - -msgid "Song Lyrics" -msgstr "" - -msgid "Automatically search for album cover" -msgstr "" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "" - -msgid "Automatically select current playing track" -msgstr "" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "" - -msgid "A&utomatic" -msgstr "" - -msgid "Absolu&te" -msgstr "" - -msgid "Re&lative" -msgstr "" - -msgid "As&k when saving" -msgstr "" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "" - -msgid "Enable song metadata inline edition with click" -msgstr "" - -msgid "Write metadata when saving playlists" -msgstr "" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "" - -msgid "Show love button" -msgstr "" - -msgid "Submit scrobbles every" -msgstr "" - -msgid " seconds" -msgstr "" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "" - -msgid "Covers" -msgstr "" - -msgid "Cover providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "" - -msgid "Authentication" -msgstr "" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "" - -msgid "Save album covers in album directory" -msgstr "" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "" - -msgid "Lowercase filename" -msgstr "" - -msgid "Replace spaces with dashes" -msgstr "" - -msgid "Lyrics" -msgstr "" - -msgid "Lyrics providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "" - -msgid "Network Proxy" -msgstr "" - -msgid "&Use the system proxy settings" -msgstr "" - -msgid "Direct internet connection" -msgstr "" - -msgid "&Manual proxy configuration" -msgstr "" - -msgid "HTTP proxy" -msgstr "" - -msgid "SOCKS proxy" -msgstr "" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "" - -msgid "Username" -msgstr "" - -msgid "Password" -msgstr "" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "" - -msgid "Style" -msgstr "" - -msgid "Use system theme icons" -msgstr "" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "" - -msgid "&Use the system default color" -msgstr "" - -msgid "Use custom color" -msgstr "" - -msgid "Use gradient background" -msgstr "" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "" - -msgid "Default bac&kground image" -msgstr "" - -msgid "&No background image" -msgstr "" - -msgid "The album cover of the currently playing song" -msgstr "" - -msgid "Albu&m cover" -msgstr "" - -msgid "Custom image:" -msgstr "" - -msgid "Browse..." -msgstr "" - -msgid "Position" -msgstr "" - -msgid "Upper Left" -msgstr "" - -msgid "Upper Right" -msgstr "" - -msgid "Middle" -msgstr "" - -msgid "Bottom Left" -msgstr "" - -msgid "Bottom Right" -msgstr "" - -msgid "Max cover size" -msgstr "" - -msgid "Stretch image to fill playlist" -msgstr "" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "" - -msgid "Blur amount" -msgstr "" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "" - -msgid "Strawberry can show a message when the track changes." -msgstr "" - -msgid "Notification type" -msgstr "" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "" - -msgid "Show a &native desktop notification" -msgstr "" - -msgid "Show a pretty OSD" -msgstr "" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "" - -msgid "Popup duration" -msgstr "" - -msgid "Disable duration" -msgstr "" - -msgid "Show a notification when I change the volume" -msgstr "" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "" - -msgid "Show a notification when I pause playback" -msgstr "" - -msgid "Show a notification when I resume playback" -msgstr "" - -msgid "Include album art in the notification" -msgstr "" - -msgid "Custom message settings" -msgstr "" - -msgid "Use a custom message for notifications" -msgstr "" - -msgid "Body" -msgstr "" - -msgid "Pretty OSD options" -msgstr "" - -msgid "Background color" -msgstr "" - -msgid "Text options" -msgstr "" - -msgid "Choose font..." -msgstr "" - -msgid "Choose color..." -msgstr "" - -msgid "Background opacity" -msgstr "" - -msgid "Basic Blue" -msgstr "" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "" - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "" - -msgid "Preset:" -msgstr "" - -msgid "Enable equalizer" -msgstr "" - -msgid "Enable stereo balancer" -msgstr "" - -msgid "Left" -msgstr "" - -msgid "Balance" -msgstr "" - -msgid "Right" -msgstr "" - -msgid "About" -msgstr "" - -msgid "Strawberry Error" -msgstr "" - -msgid "Console" -msgstr "" - -msgid "Run" -msgstr "" - -msgid "Edit track information" -msgstr "" - -msgid "Date created" -msgstr "" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "" - -msgid "Play count" -msgstr "" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "" - -msgid "Skip count" -msgstr "" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "" - -msgid "Sorry" -msgstr "" - -msgid "Strawberry was unable to find results for this file" -msgstr "" - -msgid "Select best possible match" -msgstr "" - -msgid "Add Stream" -msgstr "" - -msgid "Enter the URL of a stream:" -msgstr "" - -msgid "Enter username and password" -msgstr "" - -msgid "Import data from last.fm" -msgstr "" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "" - -msgid "Cancel" -msgstr "" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "" - -msgid "You are not signed in." -msgstr "" - -msgid "Sign out" -msgstr "" - -msgid "Signing in..." -msgstr "" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "" - -msgid "Albums" -msgstr "" - -msgid "Songs" -msgstr "" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "" - -msgid "albums" -msgstr "" - -msgid "songs" -msgstr "" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "" - -msgid "After copying..." -msgstr "" - -msgid "Keep the original files" -msgstr "" - -msgid "Delete the original files" -msgstr "" - -msgid "Naming options" -msgstr "" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "" - -msgid "Insert..." -msgstr "" - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "" - -msgid "Restrict characters to ASCII" -msgstr "" - -msgid "Allow extended ASCII characters" -msgstr "" - -msgid "Replace spaces with underscores" -msgstr "" - -msgid "Overwrite existing files" -msgstr "" - -msgid "Copy album cover artwork" -msgstr "" - -msgid "Safely remove the device after copying" -msgstr "" - -msgid "Press a key" -msgstr "" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "" - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "" - -msgid "Shortcut" -msgstr "" - -msgctxt "Category label" -msgid "Action" -msgstr "" - -msgid "&None" -msgstr "" - -msgid "&Default" -msgstr "" - -msgid "&Custom" -msgstr "" - -msgid "Change shortcut..." -msgstr "" - -msgid "Device Properties" -msgstr "" - -msgid "Icon" -msgstr "" - -msgid "Hardware information" -msgstr "" - -msgid "Hardware information is only available while the device is connected." -msgstr "" - -msgid "Information" -msgstr "" - -msgid "Supported formats" -msgstr "" - -msgid "This device supports the following file formats:" -msgstr "" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "" - -msgid "Do not convert any music" -msgstr "" - -msgid "Convert any music that the device can't play" -msgstr "" - -msgid "Convert all music" -msgstr "" - -msgid "Preferred format" -msgstr "" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "" - -msgid "Open device" -msgstr "" - -msgid "Querying device..." -msgstr "" - -msgid "File formats" -msgstr "" - -msgid "Transcode Music" -msgstr "" - -msgid "Files to transcode" -msgstr "" - -msgid "Directory" -msgstr "" - -msgid "Add..." -msgstr "" - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "" - -msgid "Import..." -msgstr "" - -msgid "Output options" -msgstr "" - -msgid "Audio format" -msgstr "" - -msgid "Options..." -msgstr "" - -msgid "Alongside the originals" -msgstr "" - -msgid "Select..." -msgstr "" - -msgid "Progress" -msgstr "" - -msgid "Details..." -msgstr "" - -msgid "Transcoder Log" -msgstr "" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Main profile (MAIN)" -msgstr "" - -msgid "Low complexity profile (LC)" -msgstr "" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "" - -msgid "Long term prediction profile (LTP)" -msgstr "" - -msgid "Use temporal noise shaping" -msgstr "" - -msgid "Allow mid/side encoding" -msgstr "" - -msgid "Block type" -msgstr "" - -msgid "Normal block type" -msgstr "" - -msgid "No short blocks" -msgstr "" - -msgid "No long blocks" -msgstr "" - -msgid "Transcoding options" -msgstr "" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "" - -msgid "Fast" -msgstr "" - -msgid "Best" -msgstr "" - -msgid "Use bitrate management engine" -msgstr "" - -msgid "Target bitrate" -msgstr "" - -msgid "Minimum bitrate" -msgstr "" - -msgid "disabled" -msgstr "" - -msgid "Maximum bitrate" -msgstr "" - -msgid "automatic" -msgstr "" - -msgid "Average bitrate" -msgstr "" - -msgid "Encoding mode" -msgstr "" - -msgid "Auto" -msgstr "" - -msgid "Ultra wide band (UWB)" -msgstr "" - -msgid "Wide band (WB)" -msgstr "" - -msgid "Narrow band (NB)" -msgstr "" - -msgid "Variable bit rate" -msgstr "" - -msgid "Voice activity detection" -msgstr "" - -msgid "Discontinuous transmission" -msgstr "" - -msgid "Encoding complexity" -msgstr "" - -msgid "Frames per buffer" -msgstr "" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "" - -msgid "Constant bitrate" -msgstr "" - -msgid "Encoding engine quality" -msgstr "" - -msgid "Standard" -msgstr "" - -msgid "High" -msgstr "" - -msgid "Force mono encoding" -msgstr "" - -msgid "Transcoding" -msgstr "" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "" - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "" - -msgid "Download album covers" -msgstr "" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "" - -msgid "Client ID" -msgstr "" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "" - -msgid "Search delay" -msgstr "" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "" - -msgid "Albums search limit" -msgstr "" - -msgid "Songs search limit" -msgstr "" - -msgid "Fetch entire albums when searching songs" -msgstr "" - -msgid "Album cover size" -msgstr "" - -msgid "Stream URL method" -msgstr "" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "" - -msgid "Enabled" -msgstr "" - -msgid "Return to Strawberry" -msgstr "" - -msgid "Success!" -msgstr "" - -msgid "Please close your browser and return to Strawberry." -msgstr "" - diff --git a/src/translations/translations.pot b/src/translations/translations.pot deleted file mode 100644 index f35bb79c..00000000 --- a/src/translations/translations.pot +++ /dev/null @@ -1,4476 +0,0 @@ -# Strawberry Music Player -# -#, fuzzy -msgid "" -msgstr "" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" - -msgid "All Files (*)" -msgstr "" - -msgid "Context" -msgstr "" - -msgid "Collection" -msgstr "" - -msgid "Queue" -msgstr "" - -msgid "Playlists" -msgstr "" - -msgid "Smart playlists" -msgstr "" - -msgid "Files" -msgstr "" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "" - -msgid "Show only duplicates" -msgstr "" - -msgid "Show only untagged" -msgstr "" - -msgid "Configure collection..." -msgstr "" - -msgid "Play" -msgstr "" - -msgid "Stop after this track" -msgstr "" - -msgid "Toggle queue status" -msgstr "" - -msgid "Queue selected tracks to play next" -msgstr "" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "" - -msgid "Copy URL(s)..." -msgstr "" - -msgid "Show in collection..." -msgstr "" - -msgid "Show in file browser..." -msgstr "" - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "" - -msgid "Move to collection..." -msgstr "" - -msgid "Copy to device..." -msgstr "" - -msgid "Delete from disk..." -msgstr "" - -msgid "Check for updates..." -msgstr "" - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "" -"You are running Strawberry under Rosetta. Running Strawberry under Rosetta " -"is unsupported and known to have issues. You should download Strawberry for " -"the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "" -"Strawberry is free and open source software. If you like Strawberry, please " -"consider sponsoring the project. For more information about sponsorship see " -"our website %1" -msgstr "" - -msgid "Pause" -msgstr "" - -msgid "Dequeue track" -msgstr "" - -msgid "Dequeue selected tracks" -msgstr "" - -msgid "Queue track" -msgstr "" - -msgid "Queue selected tracks" -msgstr "" - -msgid "Queue to play next" -msgstr "" - -msgid "Unskip track" -msgstr "" - -msgid "Unskip selected tracks" -msgstr "" - -msgid "Skip track" -msgstr "" - -msgid "Skip selected tracks" -msgstr "" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "" - -msgid "Add to another playlist" -msgstr "" - -msgid "New playlist" -msgstr "" - -msgid "Add file" -msgstr "" - -msgid "Music" -msgstr "" - -msgid "Add folder" -msgstr "" - -msgid "Clear playlist" -msgstr "" - -#, qt-format -msgid "" -"Playlist has %1 songs, too large to undo, are you sure you want to clear the " -"playlist?" -msgstr "" - -msgid "Error" -msgstr "" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "" - -msgid "" -"The version of Strawberry you've just updated to requires a full collection " -"rescan because of the new features listed below:" -msgstr "" - -msgid "Would you like to run a full rescan right now?" -msgstr "" - -msgid "Collection rescan notice" -msgstr "" - -msgid "Usage" -msgstr "" - -msgid "options" -msgstr "" - -msgid "URL(s)" -msgstr "" - -msgid "Player options" -msgstr "" - -msgid "Start the playlist currently playing" -msgstr "" - -msgid "Play if stopped, pause if playing" -msgstr "" - -msgid "Pause playback" -msgstr "" - -msgid "Stop playback" -msgstr "" - -msgid "Stop playback after current track" -msgstr "" - -msgid "Skip backwards in playlist" -msgstr "" - -msgid "Skip forwards in playlist" -msgstr "" - -msgid "Set the volume to percent" -msgstr "" - -msgid "Increase the volume by 4 percent" -msgstr "" - -msgid "Decrease the volume by 4 percent" -msgstr "" - -msgid "Increase the volume by percent" -msgstr "" - -msgid "Decrease the volume by percent" -msgstr "" - -msgid "Seek the currently playing track to an absolute position" -msgstr "" - -msgid "Seek the currently playing track by a relative amount" -msgstr "" - -msgid "" -"Restart the track, or play the previous track if within 8 seconds of start." -msgstr "" - -msgid "Playlist options" -msgstr "" - -msgid "Create a new playlist with files" -msgstr "" - -msgid "Append files/URLs to the playlist" -msgstr "" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "" - -msgid "Play the th track in the playlist" -msgstr "" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "" - -msgid "Display the on-screen-display" -msgstr "" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "" - -msgid "Change the language" -msgstr "" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "" - -msgid "Equivalent to --log-levels *:3" -msgstr "" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "" - -msgid "Print out version information" -msgstr "" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "" - -msgid "Database corruption detected." -msgstr "" - -msgid "Backing up database" -msgstr "" - -msgid "Deleting files" -msgstr "" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "" - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "" - -msgid "1 day" -msgstr "" - -#, qt-format -msgid "%1 days" -msgstr "" - -msgid "Today" -msgstr "" - -msgid "Yesterday" -msgstr "" - -#, qt-format -msgid "%1 days ago" -msgstr "" - -msgid "Tomorrow" -msgstr "" - -#, qt-format -msgid "In %1 days" -msgstr "" - -msgid "Next week" -msgstr "" - -#, qt-format -msgid "In %1 weeks" -msgstr "" - -msgid "Show in file browser" -msgstr "" - -msgid "Too many songs selected." -msgstr "" - -#, qt-format -msgid "" -"%1 songs in %2 different directories selected, are you sure you want to open " -"them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "" - -msgid "" -"Prefix a search term with a field name to limit the search to that field, e." -"g.:" -msgstr "" - -msgid "artist" -msgstr "" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "" -"Search terms for numerical fields can be prefixed with %1 or %2 to refine " -"the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "" -"Multiple search terms can also be combined with \"%1\" (default) and \"%2\", " -"as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "" - -msgid "Buffering" -msgstr "" - -msgid "Framerate" -msgstr "" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "" - -#, qt-format -msgid "High (%1 fps)" -msgstr "" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "" - -msgid "No analyzer" -msgstr "" - -msgid "Block analyzer" -msgstr "" - -msgid "Boom analyzer" -msgstr "" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "" - -msgid "Custom" -msgstr "" - -msgid "Classical" -msgstr "" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "" - -msgid "Full Treble" -msgstr "" - -msgid "Full Bass + Treble" -msgstr "" - -msgid "Laptop/Headphones" -msgstr "" - -msgid "Large Hall" -msgstr "" - -msgid "Live" -msgstr "" - -msgid "Party" -msgstr "" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "" - -msgid "Name" -msgstr "" - -msgid "Delete preset" -msgstr "" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "" - -msgid "Length" -msgstr "" - -msgid "Samplerate" -msgstr "" - -msgid "Bit depth" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "" - -msgid "Show song technical data" -msgstr "" - -msgid "Show song lyrics" -msgstr "" - -msgid "Automatically search for song lyrics" -msgstr "" - -msgid "No song playing" -msgstr "" - -#, qt-format -msgid "%1 song" -msgstr "" - -#, qt-format -msgid "%1 songs" -msgstr "" - -#, qt-format -msgid "%1 artist" -msgstr "" - -#, qt-format -msgid "%1 artists" -msgstr "" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "" - -msgid "Loading..." -msgstr "" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "" - -#, qt-format -msgid "Updating %1" -msgstr "" - -msgid "Your collection is empty!" -msgstr "" - -msgid "Click here to add some music" -msgstr "" - -msgid "Append to current playlist" -msgstr "" - -msgid "Replace current playlist" -msgstr "" - -msgid "Open in new playlist" -msgstr "" - -msgid "Search for this" -msgstr "" - -msgid "Edit track information..." -msgstr "" - -msgid "Edit tracks information..." -msgstr "" - -msgid "Rescan song(s)" -msgstr "" - -msgid "Show in various artists" -msgstr "" - -msgid "Don't show in various artists" -msgstr "" - -msgid "There are other songs in this album" -msgstr "" - -msgid "" -"Would you like to move the other songs on this album to Various Artists as " -"well?" -msgstr "" - -msgid "Show" -msgstr "" - -msgid "Group by" -msgstr "" - -msgid "Display options" -msgstr "" - -msgid "Group by Album artist/Album" -msgstr "" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "" - -msgid "Group by Artist/Album - Disc" -msgstr "" - -msgid "Group by Artist/Year - Album" -msgstr "" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Genre/Album artist/Album" -msgstr "" - -msgid "Group by Genre/Artist/Album" -msgstr "" - -msgid "Group by Album Artist" -msgstr "" - -msgid "Group by Artist" -msgstr "" - -msgid "Group by Album" -msgstr "" - -msgid "Group by Genre/Album" -msgstr "" - -msgid "Advanced grouping..." -msgstr "" - -msgid "Grouping Name" -msgstr "" - -msgid "Grouping name:" -msgstr "" - -msgid "First level" -msgstr "" - -msgid "Second Level" -msgstr "" - -msgid "Third Level" -msgstr "" - -msgid "None" -msgstr "" - -msgid "Album artist" -msgstr "" - -msgid "Artist" -msgstr "" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "" - -msgid "Year - Album" -msgstr "" - -msgid "Year - Album - Disc" -msgstr "" - -msgid "Original year - Album" -msgstr "" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "" - -msgid "Year" -msgstr "" - -msgid "Original year" -msgstr "" - -msgid "Genre" -msgstr "" - -msgid "Composer" -msgstr "" - -msgid "Performer" -msgstr "" - -msgid "Grouping" -msgstr "" - -msgid "File type" -msgstr "" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "" - -msgid "Track" -msgstr "" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "" - -msgid "Source" -msgstr "" - -msgid "Mood" -msgstr "" - -msgid "Rating" -msgstr "" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "" - -msgid "" -"No matches found. Clear the search box to show the whole playlist again." -msgstr "" - -msgid "stop" -msgstr "" - -msgid "Never" -msgstr "" - -msgid "&Hide..." -msgstr "" - -msgid "&Stretch columns to fit window" -msgstr "" - -msgid "&Reset columns to default" -msgstr "" - -msgid "&Lock rating" -msgstr "" - -msgid "&Align text" -msgstr "" - -msgid "&Left" -msgstr "" - -msgid "&Center" -msgstr "" - -msgid "&Right" -msgstr "" - -#, qt-format -msgid "&Hide %1" -msgstr "" - -msgid "New folder" -msgstr "" - -msgid "Delete" -msgstr "" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "" - -msgid "Enter the name of the folder" -msgstr "" - -msgid "Copy to device" -msgstr "" - -msgid "Playlist must be open first." -msgstr "" - -msgid "Remove playlists" -msgstr "" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "" - -msgid "" -"You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "" - -msgid "Favorited playlists will be saved here" -msgstr "" - -msgid "Couldn't create playlist" -msgstr "" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "" - -#, c-format, qt-plural-format -msgctxt "" -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "" - -msgid "Relative" -msgstr "" - -msgid "Absolute" -msgstr "" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "" - -msgid "Rename playlist..." -msgstr "" - -msgid "Save playlist..." -msgstr "" - -msgid "Rename playlist" -msgstr "" - -msgid "Enter a new name for this playlist" -msgstr "" - -msgid "Remove playlist" -msgstr "" - -msgid "" -"You are about to remove a playlist which is not part of your favorite " -"playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "" - -msgid "Warn me when closing a playlist tab" -msgstr "" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "" - -msgid "" -"Double-click here to favorite this playlist so it will be saved and remain " -"accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgctxt "" -msgid "add %n songs" -msgstr "" - -#, c-format, qt-plural-format -msgctxt "" -msgid "remove %n songs" -msgstr "" - -#, c-format, qt-plural-format -msgctxt "" -msgid "move %n songs" -msgstr "" - -msgid "sort songs" -msgstr "" - -msgid "shuffle songs" -msgstr "" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "" - -msgid "Loading tracks" -msgstr "" - -msgid "Loading tracks info" -msgstr "" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "" - -msgid "Collection search" -msgstr "" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "" - -msgid "Search options" -msgstr "" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "" - -#, qt-format -msgid "%1 songs found" -msgstr "" - -msgid "after" -msgstr "" - -msgid "before" -msgstr "" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "" - -msgid "contains" -msgstr "" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "" - -msgid "Days" -msgstr "" - -msgid "Weeks" -msgstr "" - -msgid "Months" -msgstr "" - -msgid "Years" -msgstr "" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "" - -msgid "Newest tracks" -msgstr "" - -msgid "50 random tracks" -msgstr "" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "" - -msgid "Last played" -msgstr "" - -msgid "Most played" -msgstr "" - -msgid "Favourite tracks" -msgstr "" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "" - -msgid "Dynamic random mix" -msgstr "" - -msgid "New smart playlist..." -msgstr "" - -msgid "Play next" -msgstr "" - -msgid "Edit smart playlist..." -msgstr "" - -msgid "Delete smart playlist" -msgstr "" - -msgid "Smart playlist" -msgstr "" - -msgid "Playlist type" -msgstr "" - -msgid "" -"A smart playlist is a dynamic list of songs that come from your collection. " -"There are different types of smart playlist that offer different ways of " -"selecting songs." -msgstr "" - -msgid "Finish" -msgstr "" - -msgid "Choose a name for your smart playlist" -msgstr "" - -msgid "Abort" -msgstr "" - -msgid "All albums" -msgstr "" - -msgid "Albums with covers" -msgstr "" - -msgid "Albums without covers" -msgstr "" - -msgid "Really cancel?" -msgstr "" - -msgid "Closing this window will stop searching for album covers." -msgstr "" - -msgid "Don't stop!" -msgstr "" - -msgid "All artists" -msgstr "" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "" - -#, qt-format -msgid "%1 transferred" -msgstr "" - -msgid "Export finished" -msgstr "" - -msgid "No covers to export." -msgstr "" - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "" - -msgid "Search" -msgstr "" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "" - -msgid "All files (*)" -msgstr "" - -msgid "Load cover from disk..." -msgstr "" - -msgid "Save cover to disk..." -msgstr "" - -msgid "Load cover from URL..." -msgstr "" - -msgid "Search for album covers..." -msgstr "" - -msgid "Unset cover" -msgstr "" - -msgid "Delete cover" -msgstr "" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "" - -msgid "Search automatically" -msgstr "" - -msgid "Load cover from disk" -msgstr "" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "" - -msgid "Save album cover" -msgstr "" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "" - -msgid "Average image size" -msgstr "" - -msgid "Total bytes transferred" -msgstr "" - -msgid "Fetching cover error" -msgstr "" - -msgid "The site you requested does not exist!" -msgstr "" - -msgid "The site you requested is not an image!" -msgstr "" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "" - -msgid "User interface" -msgstr "" - -msgid "Streaming" -msgstr "" - -msgid "Add directory..." -msgstr "" - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "" -"Are you sure you want to write song playcounts and ratings to file for all " -"songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "" - -msgid "No provider selected." -msgstr "" - -msgid "Authentication failed" -msgstr "" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "" - -msgid "OSD Preview" -msgstr "" - -msgid "Drag to reposition" -msgstr "" - -msgid "About Strawberry" -msgstr "" - -#, qt-format -msgid "Version %1" -msgstr "" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "" - -msgid "" -"It is a fork of Clementine released in 2018 aimed at music collectors and " -"audiophiles." -msgstr "" - -#, qt-format -msgid "" -"Strawberry is free software released under GPL. The source code is available " -"on %1" -msgstr "" - -#, qt-format -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program. If not, see %1" -msgstr "" - -msgid "" -"If you like Strawberry and can make use of it, consider sponsoring or " -"donating." -msgstr "" - -#, qt-format -msgid "" -"You can sponsor the author on %1. You can also make a one-time payment " -"through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "" - -msgid "Contributors" -msgstr "" - -msgid "Clementine authors" -msgstr "" - -msgid "Clementine contributors" -msgstr "" - -msgid "Thanks to" -msgstr "" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "" - -msgid "(different across multiple songs)" -msgstr "" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "" - -msgid "Next" -msgstr "" - -msgid "Saving tracks" -msgstr "" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "" - -msgid "Suggested tags" -msgstr "" - -msgid "Delete files" -msgstr "" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "" -"Strawberry is slower, and has restrictions when running as a Snap. Accessing " -"the root filesystem (/) will not work. There also might be other " -"restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "" -"Official releases are available for Debian and Ubuntu which also work on " -"most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "" -"Copy your strawberry.conf and strawberry.db from your ~/snap directory to " -"avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "" - -msgid "Plain sidebar" -msgstr "" - -msgid "Tabs on top" -msgstr "" - -msgid "Icons on top" -msgstr "" - -msgid "Available" -msgstr "" - -msgid "New songs" -msgstr "" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "" - -msgid "Clear" -msgstr "" - -msgid "Reset" -msgstr "" - -msgid "Small album cover" -msgstr "" - -msgid "Large album cover" -msgstr "" - -msgid "Fit cover to width" -msgstr "" - -msgid "Show above status bar" -msgstr "" - -msgid "You are signed in." -msgstr "" - -#, qt-format -msgid "You are signed in as %1." -msgstr "" - -#, qt-format -msgid "Expires on %1" -msgstr "" - -#, qt-format -msgid "disc %1" -msgstr "" - -#, qt-format -msgid "track %1" -msgstr "" - -msgid "Paused" -msgstr "" - -msgid "Stopped" -msgstr "" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "" - -msgid "On" -msgstr "" - -msgid "Off" -msgstr "" - -msgid "Playlist finished" -msgstr "" - -#, qt-format -msgid "Volume %1%" -msgstr "" - -msgid "Don't shuffle" -msgstr "" - -msgid "Shuffle all" -msgstr "" - -msgid "Shuffle tracks in this album" -msgstr "" - -msgid "Shuffle albums" -msgstr "" - -msgid "Don't repeat" -msgstr "" - -msgid "Repeat track" -msgstr "" - -msgid "Repeat album" -msgstr "" - -msgid "Repeat playlist" -msgstr "" - -msgid "Stop after every track" -msgstr "" - -msgid "Intro tracks" -msgstr "" - -#, qt-format -msgid "Configure %1..." -msgstr "" - -msgid "Add to artists" -msgstr "" - -msgid "Add to albums" -msgstr "" - -msgid "Add to songs" -msgstr "" - -msgid "Enter search terms above to find music" -msgstr "" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "" - -msgid "Remove from favorites" -msgstr "" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "" - -msgid "Open URL in web browser?" -msgstr "" - -msgid "" -"Press \"Save\" to copy the URL to clipboard and manually open it in a web " -"browser." -msgstr "" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "" - -msgid "Invalid reply from web browser. Missing token." -msgstr "" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "" - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "" - -msgid "Error copying songs" -msgstr "" - -msgid "" -"There were problems copying some songs. The following files could not be " -"copied:" -msgstr "" - -msgid "Error deleting songs" -msgstr "" - -msgid "" -"There were problems deleting some songs. The following files could not be " -"deleted:" -msgstr "" - -#, qt-format -msgid "" -"Could not create the GStreamer element \"%1\" - make sure you have all the " -"required GStreamer plugins installed" -msgstr "" - -#, qt-format -msgid "Successfully written %1" -msgstr "" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "" - -#, qt-format -msgid "Starting %1" -msgstr "" - -#, qt-format -msgid "" -"Couldn't find an encoder for %1, check you have the correct GStreamer " -"plugins installed" -msgstr "" - -#, qt-format -msgid "" -"Couldn't find a muxer for %1, check you have the correct GStreamer plugins " -"installed" -msgstr "" - -msgid "Start transcoding" -msgstr "" - -#, c-format, qt-plural-format -msgctxt "" -msgid "%n remaining" -msgstr "" - -#, c-format, qt-plural-format -msgctxt "" -msgid "%n finished" -msgstr "" - -#, c-format, qt-plural-format -msgctxt "" -msgid "%n failed" -msgstr "" - -msgid "Add files to transcode" -msgstr "" - -msgid "Open a directory to import music from" -msgstr "" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "" - -#, qt-format -msgid "Shortcut for %1" -msgstr "" - -#, qt-format -msgid "" -"Using X11 shortcuts on %1 is not recommended and can cause keyboard to " -"become unresponsive!" -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid "" -" Shortcuts on %1 are usually used through Gnome Settings Daemon and should " -"be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid "" -" Shortcuts on %1 are usually used through Gnome Settings Daemon and should " -"be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid "" -" Shortcuts on %1 are usually used through MATE Settings Daemon and should be " -"configured there instead." -msgstr "" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Show moodbar" -msgstr "" - -msgid "Moodbar style" -msgstr "" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "" - -msgid "Frozen" -msgstr "" - -msgid "Happy" -msgstr "" - -msgid "System colors" -msgstr "" - -msgid "Connect device" -msgstr "" - -msgid "" -"This is the first time you have connected this device. Strawberry will now " -"scan the device to find music files - this may take some time." -msgstr "" - -msgid "This device will not work properly" -msgstr "" - -msgid "" -"This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "" - -msgid "" -"If you continue, this device will work slowly and songs copied to it may not " -"work." -msgstr "" - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "" - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "" - -#, qt-format -msgid "Updating %1%..." -msgstr "" - -msgid "Not connected" -msgstr "" - -msgid "Not mounted - double click to mount" -msgstr "" - -msgid "Double click to open" -msgstr "" - -#, qt-format -msgid "%1 song%2" -msgstr "" - -msgid "Safely remove device" -msgstr "" - -msgid "Forget device" -msgstr "" - -msgid "Device properties..." -msgstr "" - -msgid "Delete from device..." -msgstr "" - -msgid "" -"Forgetting a device will remove it from this list and Strawberry will have " -"to rescan all the songs again next time you connect it." -msgstr "" - -msgid "" -"These files will be deleted from the device, are you sure you want to " -"continue?" -msgstr "" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "" - -msgid "Mount point" -msgstr "" - -msgid "Device" -msgstr "" - -msgid "URI" -msgstr "" - -msgid "D-Bus path" -msgstr "" - -msgid "Serial number" -msgstr "" - -msgid "Mount points" -msgstr "" - -msgid "Partition label" -msgstr "" - -msgid "UUID" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "" - -msgid "An error occurred loading the iTunes database" -msgstr "" - -msgid "Server URL is invalid." -msgstr "" - -msgid "Missing username or password." -msgstr "" - -msgid "Subsonic server URL is invalid." -msgstr "" - -msgid "Missing Subsonic username or password." -msgstr "" - -msgid "Retrieving albums..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "" - -msgid "Configuration incomplete" -msgstr "" - -msgid "Missing server url, username or password." -msgstr "" - -msgid "Configuration incorrect" -msgstr "" - -msgid "Test successful!" -msgstr "" - -msgid "Test failed!" -msgstr "" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "" - -msgid "Missing Tidal username." -msgstr "" - -msgid "Missing Tidal password." -msgstr "" - -msgid "" -"Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "" - -msgid "Not authenticated with Tidal." -msgstr "" - -msgid "Missing Tidal API token, username or password." -msgstr "" - -msgid "Authenticating..." -msgstr "" - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "" - -msgid "Cancelled." -msgstr "" - -#, qt-format -msgid "" -"Received URL with %1 encrypted stream from Tidal. Strawberry does not " -"currently support encrypted streams." -msgstr "" - -msgid "" -"Received URL with encrypted stream from Tidal. Strawberry does not currently " -"support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "" - -msgid "Missing API token." -msgstr "" - -msgid "Missing username." -msgstr "" - -msgid "Missing password." -msgstr "" - -msgid "Spotify Authentication" -msgstr "" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "" - -msgid "Missing Qobuz app ID." -msgstr "" - -msgid "Missing Qobuz username." -msgstr "" - -msgid "Missing Qobuz password." -msgstr "" - -msgid "Not authenticated with Qobuz." -msgstr "" - -msgid "Missing Qobuz app ID or secret." -msgstr "" - -msgid "Missing app id." -msgstr "" - -msgid "Strawberry Music Player" -msgstr "" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "" - -msgid "Set value for all selected tracks..." -msgstr "" - -msgid "Edit tag..." -msgstr "" - -msgid "&Settings..." -msgstr "" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "" - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "" - -msgid "Open audio &CD..." -msgstr "" - -msgid "&Cover Manager" -msgstr "" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "" - -msgid "&Repeat mode" -msgstr "" - -msgid "Remove from playlist" -msgstr "" - -msgid "&Equalizer" -msgstr "" - -msgid "&Transcode Music" -msgstr "" - -msgid "Add &folder..." -msgstr "" - -msgid "&Jump to the currently playing track" -msgstr "" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "" - -msgid "Go to previous playlist tab" -msgstr "" - -msgid "&Update changed collection folders" -msgstr "" - -msgid "About &Qt" -msgstr "" - -msgid "&Mute" -msgstr "" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "" - -msgid "Add file to transcoder" -msgstr "" - -msgid "Add stream..." -msgstr "" - -msgid "Show sidebar" -msgstr "" - -msgid "Import data from last.fm..." -msgstr "" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "" - -msgid "P&laylist" -msgstr "" - -msgid "Help" -msgstr "" - -msgid "&Tools" -msgstr "" - -msgid "Collection advanced grouping" -msgstr "" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "" - -msgid "Second level" -msgstr "" - -msgid "Third level" -msgstr "" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "" - -msgid "Entire collection" -msgstr "" - -msgid "Added today" -msgstr "" - -msgid "Added this week" -msgstr "" - -msgid "Added within three months" -msgstr "" - -msgid "Added this year" -msgstr "" - -msgid "Added this month" -msgstr "" - -msgid "Save current grouping" -msgstr "" - -msgid "Manage saved groupings" -msgstr "" - -msgid "Enter search terms here" -msgstr "" - -msgid "Form" -msgstr "" - -msgid "Saved Grouping Manager" -msgstr "" - -msgid "Remove" -msgstr "" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "" - -msgid "This can be changed later through the preferences" -msgstr "" - -msgid "Remember my choice" -msgstr "" - -msgid "Stop after each track" -msgstr "" - -msgid "Repeat" -msgstr "" - -msgid "Shuffle" -msgstr "" - -msgid "Dynamic mode is on" -msgstr "" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "" - -msgid "Move up" -msgstr "" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "" - -msgid "Preview" -msgstr "" - -msgid "and" -msgstr "" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "" - -msgid "Edit smart playlist" -msgstr "" - -msgid "Use dynamic mode" -msgstr "" - -msgid "" -"In dynamic mode new tracks will be chosen and added to the playlist every " -"time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "" - -msgid "Output" -msgstr "" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "" - -msgid "Export downloaded covers" -msgstr "" - -msgid "Export embedded covers" -msgstr "" - -msgid "Existing covers" -msgstr "" - -msgid "Do not overwrite" -msgstr "" - -msgid "O&verwrite all" -msgstr "" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "" - -msgid "Scale size" -msgstr "" - -msgid "Size:" -msgstr "" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "" - -msgid "Fetch automatically" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Add to playlist" -msgstr "" - -msgid "View" -msgstr "" - -msgid "Total albums:" -msgstr "" - -msgid "Without cover:" -msgstr "" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "" - -msgid "Export Covers" -msgstr "" - -msgid "Fetch completed" -msgstr "" - -msgid "Load cover from URL" -msgstr "" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "" - -msgid "Settings" -msgstr "" - -msgid "Behavior" -msgstr "" - -msgid "Show system tray icon" -msgstr "" - -msgid "Keep running in the background when the window is closed" -msgstr "" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "" - -msgid "Show playing widget" -msgstr "" - -msgid "On startup" -msgstr "" - -msgid "Remember from &last time" -msgstr "" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "" - -msgid "Use the system default" -msgstr "" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "" - -msgid "Using the menu to add a song will..." -msgstr "" - -msgid "Never start playing" -msgstr "" - -msgid "Play if there is nothing already playing" -msgstr "" - -msgid "Always start playing" -msgstr "" - -msgid "Pressing \"Previous\" in player will..." -msgstr "" - -msgid "Jump to previous song right away" -msgstr "" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "" - -msgid "Double clicking a song will..." -msgstr "" - -msgid "Append to the playlist" -msgstr "" - -msgid "Replace the playlist" -msgstr "" - -msgid "Add to the queue" -msgstr "" - -msgid "Double clicking a song in the playlist will..." -msgstr "" - -msgid "Change the currently playing song" -msgstr "" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "" - -msgid "Time step" -msgstr "" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "" - -msgid "Add new folder..." -msgstr "" - -msgid "Remove folder" -msgstr "" - -msgid "Automatic updating" -msgstr "" - -msgid "Update the collection when Strawberry starts" -msgstr "" - -msgid "Monitor the collection for changes" -msgstr "" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "" -"Perform song EBU R 128 analysis (required for EBU R 128 loudness " -"normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "" - -msgid "" -"When looking for album art Strawberry will first look for picture files that " -"contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "" - -msgid "Automatically open single categories in the collection tree" -msgstr "" - -msgid "Show dividers" -msgstr "" - -msgid "Show album cover art in collection" -msgstr "" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "" -"Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "" - -msgid "Enable Disk Cache" -msgstr "" - -msgid "Disk Cache Size" -msgstr "" - -msgid "Current disk cache in use:" -msgstr "" - -msgid "Clear Disk Cache" -msgstr "" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "" - -msgid "Engine" -msgstr "" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "" - -msgid "Replay Gain mode" -msgstr "" - -msgid "Radio (equal loudness for all tracks)" -msgstr "" - -msgid "Album (ideal loudness for all tracks)" -msgstr "" - -msgid "Apply compression to prevent clipping" -msgstr "" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "" - -msgid "Fade out when stopping a track" -msgstr "" - -msgid "Cross-fade when changing tracks manually" -msgstr "" - -msgid "Cross-fade when changing tracks automatically" -msgstr "" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "" - -msgid "Fading duration" -msgstr "" - -msgid "Fade out on pause / fade in on resume" -msgstr "" - -msgid "Add song artist tag" -msgstr "" - -msgid "Add song album tag" -msgstr "" - -msgid "Add song title tag" -msgstr "" - -msgid "Add song albumartist tag" -msgstr "" - -msgid "Add song year tag" -msgstr "" - -msgid "Add song composer tag" -msgstr "" - -msgid "Add song performer tag" -msgstr "" - -msgid "Add song grouping tag" -msgstr "" - -msgid "Add song disc tag" -msgstr "" - -msgid "Add song track tag" -msgstr "" - -msgid "Add song genre tag" -msgstr "" - -msgid "Add song length tag" -msgstr "" - -msgid "Add song play count" -msgstr "" - -msgid "Add song skip count" -msgstr "" - -msgid "Add a new line if supported by the notification type" -msgstr "" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "" - -msgid "Song Lyrics" -msgstr "" - -msgid "Automatically search for album cover" -msgstr "" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "" - -msgid "Automatically select current playing track" -msgstr "" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "" - -msgid "A&utomatic" -msgstr "" - -msgid "Absolu&te" -msgstr "" - -msgid "Re&lative" -msgstr "" - -msgid "As&k when saving" -msgstr "" - -msgid "Metadata" -msgstr "" - -msgid "" -"If activated, clicking a selected song in the playlist view will let you " -"edit the tag value directly" -msgstr "" - -msgid "Enable song metadata inline edition with click" -msgstr "" - -msgid "Write metadata when saving playlists" -msgstr "" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "" - -msgid "" -"Songs are scrobbled if they have valid metadata and are longer than 30 " -"seconds, have been playing for at least half its duration or for 4 minutes " -"(whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "" - -msgid "Show love button" -msgstr "" - -msgid "Submit scrobbles every" -msgstr "" - -msgid " seconds" -msgstr "" - -msgid "" -"(This is the delay between when a song is scrobbled and when scrobbles are " -"submitted to the server. Setting the time to 0 seconds will submit scrobbles " -"immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "" - -msgid "Covers" -msgstr "" - -msgid "Cover providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "" - -msgid "Authentication" -msgstr "" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "" - -msgid "Save album covers in album directory" -msgstr "" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "" - -msgid "Lowercase filename" -msgstr "" - -msgid "Replace spaces with dashes" -msgstr "" - -msgid "Lyrics" -msgstr "" - -msgid "Lyrics providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "" - -msgid "Network Proxy" -msgstr "" - -msgid "&Use the system proxy settings" -msgstr "" - -msgid "Direct internet connection" -msgstr "" - -msgid "&Manual proxy configuration" -msgstr "" - -msgid "HTTP proxy" -msgstr "" - -msgid "SOCKS proxy" -msgstr "" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "" - -msgid "Username" -msgstr "" - -msgid "Password" -msgstr "" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "" - -msgid "Style" -msgstr "" - -msgid "Use system theme icons" -msgstr "" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "" - -msgid "&Use the system default color" -msgstr "" - -msgid "Use custom color" -msgstr "" - -msgid "Use gradient background" -msgstr "" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "" - -msgid "Default bac&kground image" -msgstr "" - -msgid "&No background image" -msgstr "" - -msgid "The album cover of the currently playing song" -msgstr "" - -msgid "Albu&m cover" -msgstr "" - -msgid "Custom image:" -msgstr "" - -msgid "Browse..." -msgstr "" - -msgid "Position" -msgstr "" - -msgid "Upper Left" -msgstr "" - -msgid "Upper Right" -msgstr "" - -msgid "Middle" -msgstr "" - -msgid "Bottom Left" -msgstr "" - -msgid "Bottom Right" -msgstr "" - -msgid "Max cover size" -msgstr "" - -msgid "Stretch image to fill playlist" -msgstr "" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "" - -msgid "Blur amount" -msgstr "" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "" - -msgid "Strawberry can show a message when the track changes." -msgstr "" - -msgid "Notification type" -msgstr "" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "" - -msgid "Show a &native desktop notification" -msgstr "" - -msgid "Show a pretty OSD" -msgstr "" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "" - -msgid "Popup duration" -msgstr "" - -msgid "Disable duration" -msgstr "" - -msgid "Show a notification when I change the volume" -msgstr "" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "" - -msgid "Show a notification when I pause playback" -msgstr "" - -msgid "Show a notification when I resume playback" -msgstr "" - -msgid "Include album art in the notification" -msgstr "" - -msgid "Custom message settings" -msgstr "" - -msgid "Use a custom message for notifications" -msgstr "" - -msgid "Body" -msgstr "" - -msgid "Pretty OSD options" -msgstr "" - -msgid "Background color" -msgstr "" - -msgid "Text options" -msgstr "" - -msgid "Choose font..." -msgstr "" - -msgid "Choose color..." -msgstr "" - -msgid "Background opacity" -msgstr "" - -msgid "Basic Blue" -msgstr "" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "" - -msgid "Enable fading" -msgstr "" - -msgid "Transcoding" -msgstr "" - -msgid "" -"These settings are used in the \"Transcode Music\" dialog, and when " -"converting music before copying it to a device." -msgstr "" - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Equalizer" -msgstr "" - -msgid "Preset:" -msgstr "" - -msgid "Enable equalizer" -msgstr "" - -msgid "Enable stereo balancer" -msgstr "" - -msgid "Left" -msgstr "" - -msgid "Balance" -msgstr "" - -msgid "Right" -msgstr "" - -msgid "About" -msgstr "" - -msgid "Strawberry Error" -msgstr "" - -msgid "Console" -msgstr "" - -msgid "Run" -msgstr "" - -msgid "Edit track information" -msgstr "" - -msgid "Date created" -msgstr "" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "" - -msgid "Play count" -msgstr "" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "" - -msgid "Skip count" -msgstr "" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "" - -msgid "Sorry" -msgstr "" - -msgid "Strawberry was unable to find results for this file" -msgstr "" - -msgid "Select best possible match" -msgstr "" - -msgid "Add Stream" -msgstr "" - -msgid "Enter the URL of a stream:" -msgstr "" - -msgid "Enter username and password" -msgstr "" - -msgid "Import data from last.fm" -msgstr "" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "" - -msgid "" -"Warning: Play counts and last played from last.fm will completely replace " -"the same data for the matched songs. Play counts will replace the data based " -"on artist and song title for the same albums! Please backup your database " -"before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "" - -msgid "Cancel" -msgstr "" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "" - -msgid "You are not signed in." -msgstr "" - -msgid "Sign out" -msgstr "" - -msgid "Signing in..." -msgstr "" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "" - -msgid "Albums" -msgstr "" - -msgid "Songs" -msgstr "" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "" - -msgid "albums" -msgstr "" - -msgid "songs" -msgstr "" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "" - -msgid "After copying..." -msgstr "" - -msgid "Keep the original files" -msgstr "" - -msgid "Delete the original files" -msgstr "" - -msgid "Naming options" -msgstr "" - -msgid "" -"

Tokens start with %, for example: %artist %album %title

\n" -"\n" -"

If you surround sections of text that contain a token with curly-braces, " -"that section will be hidden if the token is empty.

" -msgstr "" - -msgid "Insert..." -msgstr "" - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "" - -msgid "Restrict characters to ASCII" -msgstr "" - -msgid "Allow extended ASCII characters" -msgstr "" - -msgid "Replace spaces with underscores" -msgstr "" - -msgid "Overwrite existing files" -msgstr "" - -msgid "Copy album cover artwork" -msgstr "" - -msgid "Safely remove the device after copying" -msgstr "" - -msgid "Transcode Music" -msgstr "" - -msgid "Files to transcode" -msgstr "" - -msgid "Directory" -msgstr "" - -msgid "Add..." -msgstr "" - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "" - -msgid "Import..." -msgstr "" - -msgid "Output options" -msgstr "" - -msgid "Audio format" -msgstr "" - -msgid "Options..." -msgstr "" - -msgid "Alongside the originals" -msgstr "" - -msgid "Select..." -msgstr "" - -msgid "Progress" -msgstr "" - -msgid "Details..." -msgstr "" - -msgid "Transcoder Log" -msgstr "" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Main profile (MAIN)" -msgstr "" - -msgid "Low complexity profile (LC)" -msgstr "" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "" - -msgid "Long term prediction profile (LTP)" -msgstr "" - -msgid "Use temporal noise shaping" -msgstr "" - -msgid "Allow mid/side encoding" -msgstr "" - -msgid "Block type" -msgstr "" - -msgid "Normal block type" -msgstr "" - -msgid "No short blocks" -msgstr "" - -msgid "No long blocks" -msgstr "" - -msgid "Transcoding options" -msgstr "" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "" - -msgid "Fast" -msgstr "" - -msgid "Best" -msgstr "" - -msgid "Use bitrate management engine" -msgstr "" - -msgid "Target bitrate" -msgstr "" - -msgid "Minimum bitrate" -msgstr "" - -msgid "disabled" -msgstr "" - -msgid "Maximum bitrate" -msgstr "" - -msgid "automatic" -msgstr "" - -msgid "Average bitrate" -msgstr "" - -msgid "Encoding mode" -msgstr "" - -msgid "Auto" -msgstr "" - -msgid "Ultra wide band (UWB)" -msgstr "" - -msgid "Wide band (WB)" -msgstr "" - -msgid "Narrow band (NB)" -msgstr "" - -msgid "Variable bit rate" -msgstr "" - -msgid "Voice activity detection" -msgstr "" - -msgid "Discontinuous transmission" -msgstr "" - -msgid "Encoding complexity" -msgstr "" - -msgid "Frames per buffer" -msgstr "" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "" - -msgid "Constant bitrate" -msgstr "" - -msgid "Encoding engine quality" -msgstr "" - -msgid "Standard" -msgstr "" - -msgid "High" -msgstr "" - -msgid "Force mono encoding" -msgstr "" - -msgid "Press a key" -msgstr "" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "" - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "" -"You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global " -"shortcuts in Strawberry." -msgstr "" - -msgid "Shortcut" -msgstr "" - -msgctxt "Category label" -msgid "Action" -msgstr "" - -msgid "&None" -msgstr "" - -msgid "&Default" -msgstr "" - -msgid "&Custom" -msgstr "" - -msgid "Change shortcut..." -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "" - -msgid "Enabled" -msgstr "" - -msgid "Device Properties" -msgstr "" - -msgid "Icon" -msgstr "" - -msgid "Hardware information" -msgstr "" - -msgid "Hardware information is only available while the device is connected." -msgstr "" - -msgid "Information" -msgstr "" - -msgid "Supported formats" -msgstr "" - -msgid "This device supports the following file formats:" -msgstr "" - -msgid "" -"Strawberry can automatically convert the music you copy to this device into " -"a format that it can play." -msgstr "" - -msgid "Do not convert any music" -msgstr "" - -msgid "Convert any music that the device can't play" -msgstr "" - -msgid "Convert all music" -msgstr "" - -msgid "Preferred format" -msgstr "" - -msgid "" -"This device must be connected and opened before Strawberry can see what file " -"formats it supports." -msgstr "" - -msgid "Open device" -msgstr "" - -msgid "Querying device..." -msgstr "" - -msgid "File formats" -msgstr "" - -msgid "Server URL" -msgstr "" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "" - -msgid "Download album covers" -msgstr "" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "" - -msgid "" -"Tidal support is not official and requires a API token from a registered " -"application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "" - -msgid "Client ID" -msgstr "" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "" - -msgid "Search delay" -msgstr "" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "" - -msgid "Albums search limit" -msgstr "" - -msgid "Songs search limit" -msgstr "" - -msgid "Fetch entire albums when searching songs" -msgstr "" - -msgid "Album cover size" -msgstr "" - -msgid "Stream URL method" -msgstr "" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "" -"

The GStreamer Spotify plugin is not detected, you will " -"not be able to stream songs from Spotify without it. See Wiki for instructions on how to " -"install the plugin.

" -msgstr "" - -msgid "" -"Qobuz support is not official and requires an API app ID and secret from a " -"registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Return to Strawberry" -msgstr "" - -msgid "Success!" -msgstr "" - -msgid "Please close your browser and return to Strawberry." -msgstr "" diff --git a/src/translations/uk_UA.po b/src/translations/uk_UA.po deleted file mode 100644 index 6e613ea6..00000000 --- a/src/translations/uk_UA.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: uk\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Ukrainian\n" -"Language: uk_UA\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "Всі файли (*)" - -msgid "Context" -msgstr "Контекст" - -msgid "Collection" -msgstr "Фонотека" - -msgid "Queue" -msgstr "Черга" - -msgid "Playlists" -msgstr "Списки відтворення" - -msgid "Smart playlists" -msgstr "Розумні списки відтворення" - -msgid "Files" -msgstr "Файли" - -msgid "Radios" -msgstr "Радіостанції" - -msgid "Devices" -msgstr "Пристрої" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "Показати всі композиції" - -msgid "Show only duplicates" -msgstr "Показати тільки дублікати" - -msgid "Show only untagged" -msgstr "Показати тільки без тегів" - -msgid "Configure collection..." -msgstr "Налаштувати фонотеку..." - -msgid "Play" -msgstr "Відтворити" - -msgid "Stop after this track" -msgstr "Зупинити після цієї композиції" - -msgid "Toggle queue status" -msgstr "Перемикнути статус черги" - -msgid "Queue selected tracks to play next" -msgstr "Відтворити наступними обрані композиції" - -msgid "Toggle skip status" -msgstr "Змінити стан пропуску" - -msgid "Rescan song(s)..." -msgstr "Сканувати композиції..." - -msgid "Copy URL(s)..." -msgstr "Копіювати адреси..." - -msgid "Show in collection..." -msgstr "Показати у фонотеці..." - -msgid "Show in file browser..." -msgstr "Показати в оглядачі файлів..." - -msgid "Organize files..." -msgstr "Впорядкувати файли..." - -msgid "Copy to collection..." -msgstr "Скопіювати до фонотеки..." - -msgid "Move to collection..." -msgstr "Перемістити до фонотеки..." - -msgid "Copy to device..." -msgstr "Копіюваня до пристрою..." - -msgid "Delete from disk..." -msgstr "Видалити з диска..." - -msgid "Check for updates..." -msgstr "Перевірити оновлення..." - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "Призупинити" - -msgid "Dequeue track" -msgstr "Вилучити композицію з черги" - -msgid "Dequeue selected tracks" -msgstr "Вилучити з черги вибрані композиції" - -msgid "Queue track" -msgstr "Додати до черги" - -msgid "Queue selected tracks" -msgstr "Додати до черги обрані композиції" - -msgid "Queue to play next" -msgstr "Відтворити наступним" - -msgid "Unskip track" -msgstr "Не пропускати композицію" - -msgid "Unskip selected tracks" -msgstr "Не пропускати вибрані композиції" - -msgid "Skip track" -msgstr "Пропустити композицію" - -msgid "Skip selected tracks" -msgstr "Пропустити позначені композиції" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "Встановити %1 у «%2»..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "Змінити тег «%1»..." - -msgid "Add to another playlist" -msgstr "Додати до іншого списку відтворення" - -msgid "New playlist" -msgstr "Новий список відтворення" - -msgid "Add file" -msgstr "Додати файл" - -msgid "Music" -msgstr "Музика" - -msgid "Add folder" -msgstr "Додати папку" - -msgid "Clear playlist" -msgstr "Очистити список відтворення" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "Список відтворення містить %1 композицій, що забагато для скасування. Дійсно очистити список відтворення?" - -msgid "Error" -msgstr "Помилка" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "Жодна з вибраних композицій не придатна для копіювання на пристрій" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "Для версії Strawberry, яку ви щойно встановили, потрібно повне сканування фонотеки через наступні нові можливості:" - -msgid "Would you like to run a full rescan right now?" -msgstr "Запустити повне сканування фонотеки зараз?" - -msgid "Collection rescan notice" -msgstr "Повідомлення про повторне сканування фонотеки" - -msgid "Usage" -msgstr "Використання" - -msgid "options" -msgstr "налаштування" - -msgid "URL(s)" -msgstr "Адреси" - -msgid "Player options" -msgstr "Налаштування програвача" - -msgid "Start the playlist currently playing" -msgstr "Запустити список відтворення, що відтворюється на цей час" - -msgid "Play if stopped, pause if playing" -msgstr "Відтворити, якщо зупинено. Призупинити, якщо відтворюється" - -msgid "Pause playback" -msgstr "Призупинити відтворення" - -msgid "Stop playback" -msgstr "Зупинити відтворення" - -msgid "Stop playback after current track" -msgstr "Зупинити відтворення після поточної композиції" - -msgid "Skip backwards in playlist" -msgstr "Перескочити назад в списку композицій" - -msgid "Skip forwards in playlist" -msgstr "Перескочити вперед у списку композицій" - -msgid "Set the volume to percent" -msgstr "Встановити гучність у відсотків" - -msgid "Increase the volume by 4 percent" -msgstr "Збільшити гучність на 4 відсотки" - -msgid "Decrease the volume by 4 percent" -msgstr "Зменшити гучність на 4 відсотки" - -msgid "Increase the volume by percent" -msgstr "Збільшити гучність на відсотків" - -msgid "Decrease the volume by percent" -msgstr "Зменшити гучність на відсотків" - -msgid "Seek the currently playing track to an absolute position" -msgstr "Перемотати поточну композицію на абсолютну позицію" - -msgid "Seek the currently playing track by a relative amount" -msgstr "Трохи перемотати поточну композицію" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "Повторно відтворити композицію або відтворити попередню композицію, якщо було відтворено не більше 8 секунд поточної композиції." - -msgid "Playlist options" -msgstr "Налаштування списку відтворення" - -msgid "Create a new playlist with files" -msgstr "Створити новий список відтворення з файлів" - -msgid "Append files/URLs to the playlist" -msgstr "Додати файли/адреси до списку відтворення" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "Завантажити файли/адреси і замінити поточний список відтворення" - -msgid "Play the th track in the playlist" -msgstr "Відтворити композицію у списку відтворення" - -msgid "Play given playlist" -msgstr "Відтворити наданий список відтворення" - -msgid "Other options" -msgstr "Інші налаштування" - -msgid "Display the on-screen-display" -msgstr "Показувати екранні повідомлення" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "Змінити режим видимості сповіщень" - -msgid "Change the language" -msgstr "Змінити мову" - -msgid "Resize the window" -msgstr "Змінити розмір вікна" - -msgid "Equivalent to --log-levels *:1" -msgstr "Відповідає --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "Відповідає --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "Список, розділений комами, виду клас:рівень, рівень може бути від 0 до 3" - -msgid "Print out version information" -msgstr "Показати відомості про версію" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "Перевірка цілісності даних" - -msgid "Database corruption detected." -msgstr "Виявлено пошкодження бази даних." - -msgid "Backing up database" -msgstr "Створення резервної копії бази даних" - -msgid "Deleting files" -msgstr "Видалення файлів" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "Невідомо" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "Для цієї адреси потрібен GStreamer." - -msgid "Preload function was not set for blocking operation." -msgstr "Для блокування не була встановлена функція попереднього завантаження." - -#, qt-format -msgid "File %1 does not exist." -msgstr "Файл %1 не існує." - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "Файл %1 не розпізнано як дійсний аудіофайл." - -msgid "CD playback is only available with the GStreamer engine." -msgstr "Відтворення компакт-дисків доступне лише з обробником GStreamer." - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "Не вдалось відкрити файл %1 для читання: %2" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "Не вдалось відкрити CUE-файл %1 для читання: %2" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "Не вдалось відкрити список відтворення %1 для читання: %2" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "Не вдалось створити елемент GStreamer для %1" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "Список відтворення" - -msgid "1 day" -msgstr "1 день" - -#, qt-format -msgid "%1 days" -msgstr "%1 днів" - -msgid "Today" -msgstr "Сьогодні" - -msgid "Yesterday" -msgstr "Вчора" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 день тому" - -msgid "Tomorrow" -msgstr "Завтра" - -#, qt-format -msgid "In %1 days" -msgstr "За %1 днів" - -msgid "Next week" -msgstr "Наступного тижня" - -#, qt-format -msgid "In %1 weeks" -msgstr "За %1 тижнів" - -msgid "Show in file browser" -msgstr "Показати в оглядачі файлів" - -msgid "Too many songs selected." -msgstr "Вибрано забагато композицій." - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "Вибрано %1 композицій з %2 різних каталогів? Дійсно відкрити їх усі?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "Невідома помилка" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "виконавець" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "Доступні поля" - -msgid "Framerate" -msgstr "Частота кадрів" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "Низька (%1 к/с)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "Середня (%1 к/с)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "Висока (%1 к/с)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "Найвища (%1 к/с)" - -msgid "No analyzer" -msgstr "Без аналізатора" - -msgid "Block analyzer" -msgstr "Блок аналізатора" - -msgid "Boom analyzer" -msgstr "Плаваючий аналізатор" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "Підсилення" - -msgid "Custom" -msgstr "Інша" - -msgid "Classical" -msgstr "Класична" - -msgid "Club" -msgstr "Клубна" - -msgid "Dance" -msgstr "Танцювальна" - -msgid "Full Bass" -msgstr "Повні баси" - -msgid "Full Treble" -msgstr "Повні верхи" - -msgid "Full Bass + Treble" -msgstr "Повні баси + верхи" - -msgid "Laptop/Headphones" -msgstr "Ноутбук або навушники" - -msgid "Large Hall" -msgstr "Велика зала" - -msgid "Live" -msgstr "Наживо" - -msgid "Party" -msgstr "Вечірка" - -msgid "Pop" -msgstr "Поп" - -msgid "Reggae" -msgstr "Реґґі" - -msgid "Rock" -msgstr "Рок" - -msgid "Soft" -msgstr "Легка" - -msgid "Ska" -msgstr "Ска" - -msgid "Soft Rock" -msgstr "Легкий рок" - -msgid "Techno" -msgstr "Техно" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "Зберегти визначені налаштування" - -msgid "Name" -msgstr "Назва" - -msgid "Delete preset" -msgstr "Видалити визначені налаштування" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "Дійсно видалити визначені налаштування «%1»?" - -#, qt-format -msgid "%1 dB" -msgstr "%1 дБ" - -msgid "Filetype" -msgstr "Тип файлу" - -msgid "Length" -msgstr "Тривалість" - -msgid "Samplerate" -msgstr "Частота вибірки" - -msgid "Bit depth" -msgstr "Розрядна глибина" - -msgid "Bitrate" -msgstr "Бітова швидкість" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "Показати обкладинку альбому" - -msgid "Show song technical data" -msgstr "Показати технічні дані композиціїї" - -msgid "Show song lyrics" -msgstr "Показати текст пісні" - -msgid "Automatically search for song lyrics" -msgstr "Автоматичний пошук текстів композицій" - -msgid "No song playing" -msgstr "Нічого не відтворюється" - -#, qt-format -msgid "%1 song" -msgstr "%1 композиція" - -#, qt-format -msgid "%1 songs" -msgstr "%1 композицій" - -#, qt-format -msgid "%1 artist" -msgstr "%1 виконавець" - -#, qt-format -msgid "%1 artists" -msgstr "%1 виконавців" - -#, qt-format -msgid "%1 album" -msgstr "%1 альбом" - -#, qt-format -msgid "%1 albums" -msgstr "%1 альбомів" - -msgid "kbps" -msgstr "кбіт/с" - -msgid "Saving playcounts and ratings" -msgstr "Збереження кількостей відтворювань і рейтингів композицій" - -msgid "Various artists" -msgstr "Різні виконавці" - -msgid "Loading..." -msgstr "Завантаження..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "Оновлення бази даних %1." - -msgid "Updating collection" -msgstr "Оновлення фонотеки" - -#, qt-format -msgid "Updating %1" -msgstr "Оновлення %1" - -msgid "Your collection is empty!" -msgstr "Ваша фонотека порожня!" - -msgid "Click here to add some music" -msgstr "Клацніть тут, щоб додати музику" - -msgid "Append to current playlist" -msgstr "Додати до списку відтворення" - -msgid "Replace current playlist" -msgstr "Замінити список відтворення" - -msgid "Open in new playlist" -msgstr "Відкрити у новому списку відтворення" - -msgid "Search for this" -msgstr "Шукати наступне" - -msgid "Edit track information..." -msgstr "Редагувати дані композиції..." - -msgid "Edit tracks information..." -msgstr "Редагувати дані композицій..." - -msgid "Rescan song(s)" -msgstr "Сканування композицій" - -msgid "Show in various artists" -msgstr "Показувати в різних виконавцях" - -msgid "Don't show in various artists" -msgstr "Не показувати в «різних виконавцях»" - -msgid "There are other songs in this album" -msgstr "У цьому альбомі є інші композиції" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "Перемістити також й інші композиції з цього альбому до різних виконавців?" - -msgid "Show" -msgstr "Показати" - -msgid "Group by" -msgstr "Групувати за" - -msgid "Display options" -msgstr "Налаштування відображення" - -msgid "Group by Album artist/Album" -msgstr "Групувати за виконавцем альбому/альбомом" - -msgid "Group by Album artist/Album - Disc" -msgstr "Групувати за виконавцем альбому/альбомом - диском" - -msgid "Group by Album artist/Year - Album" -msgstr "Групувати за виконавцем альбому/роком - альбомом" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "Групувати за виконавцем альбому/роком - альбомом - диском" - -msgid "Group by Artist/Album" -msgstr "Групувати за виконавецем/альбомом" - -msgid "Group by Artist/Album - Disc" -msgstr "Групувати за виконавцем/альбомом - диском" - -msgid "Group by Artist/Year - Album" -msgstr "Групувати за виконавцем/роком - альбомом" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "Групувати за виконавцем/роком - альбомом - диском" - -msgid "Group by Genre/Album artist/Album" -msgstr "Групувати за жанром/виконавцем альбому/альбомом" - -msgid "Group by Genre/Artist/Album" -msgstr "Групувати за жанром/виконавцем/альбомом" - -msgid "Group by Album Artist" -msgstr "Групувати за виконавцем альбому" - -msgid "Group by Artist" -msgstr "Групувати за виконавцем" - -msgid "Group by Album" -msgstr "Групувати за альбомом" - -msgid "Group by Genre/Album" -msgstr "Групувати за жанром/альбомом" - -msgid "Advanced grouping..." -msgstr "Розширене групування..." - -msgid "Grouping Name" -msgstr "Назва групування" - -msgid "Grouping name:" -msgstr "Назва групування:" - -msgid "First level" -msgstr "Перший рівень" - -msgid "Second Level" -msgstr "Другий рівень" - -msgid "Third Level" -msgstr "Третій рівень" - -msgid "None" -msgstr "Немає" - -msgid "Album artist" -msgstr "Виконавець альбому" - -msgid "Artist" -msgstr "Виконавець" - -msgid "Album" -msgstr "Альбом" - -msgid "Album - Disc" -msgstr "Альбом - Диск" - -msgid "Year - Album" -msgstr "Рік – Альбом" - -msgid "Year - Album - Disc" -msgstr "Рік – Альбом – Диск" - -msgid "Original year - Album" -msgstr "Рік оригіналу – Альбом" - -msgid "Original year - Album - Disc" -msgstr "Рік оригіналу – Альбом – Диск" - -msgid "Disc" -msgstr "Диск" - -msgid "Year" -msgstr "Рік" - -msgid "Original year" -msgstr "Рік оригіналу" - -msgid "Genre" -msgstr "Жанр" - -msgid "Composer" -msgstr "Композитор" - -msgid "Performer" -msgstr "Виконавець" - -msgid "Grouping" -msgstr "Групування" - -msgid "File type" -msgstr "Тип файлу" - -msgid "Format" -msgstr "Формат" - -msgid "Sample rate" -msgstr "Частота вибірки" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "Назва" - -msgid "Track" -msgstr "Композиція" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "Коментар" - -msgid "Source" -msgstr "Джерело" - -msgid "Mood" -msgstr "Настрій" - -msgid "Rating" -msgstr "Рейтинг" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "Завантажити список відтворення" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "Нічого не знайдено. Очистіть вікно пошуку, щоб знову показати весь список відтворення." - -msgid "stop" -msgstr "зупинити" - -msgid "Never" -msgstr "Ніколи" - -msgid "&Hide..." -msgstr "&Приховати..." - -msgid "&Stretch columns to fit window" -msgstr "&Розтягнути стовпчики для заповнення вікна" - -msgid "&Reset columns to default" -msgstr "&Відновити початковий стан стовпчиків" - -msgid "&Lock rating" -msgstr "&Закріпити рейтинг" - -msgid "&Align text" -msgstr "&Вирівняти текст" - -msgid "&Left" -msgstr "Ліворуч" - -msgid "&Center" -msgstr "По &центру" - -msgid "&Right" -msgstr "&Праворуч" - -#, qt-format -msgid "&Hide %1" -msgstr "Приховати %1" - -msgid "New folder" -msgstr "Нова папка" - -msgid "Delete" -msgstr "Видалити" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "Зберегти список відтворення" - -msgid "Enter the name of the folder" -msgstr "Вкажіть назву теки" - -msgid "Copy to device" -msgstr "Скопіювати до пристрою" - -msgid "Playlist must be open first." -msgstr "Спочатку необхідно відкрити список відтворення." - -msgid "Remove playlists" -msgstr "Видалити списки відтворення" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "Ви збираєтесь видалити %1 списків відтворення з улюблених. Дійсно видалити їх?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "Список відтворення можна зробити улюбленим, натиснувши піктограму" - -msgid "Favorited playlists will be saved here" -msgstr "зірки поряд з назвою списку Улюблені списки відтворення буде збережено тут" - -msgid "Couldn't create playlist" -msgstr "Не вдалося створити список відтворення" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "Збереження списку відтворення" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "вибрано %1 з" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "Автоматично" - -msgid "Relative" -msgstr "Відносними" - -msgid "Absolute" -msgstr "Абсолютний" - -msgid "Star playlist" -msgstr "Список відтворення із зіркою" - -msgid "Close playlist" -msgstr "Закрити список відтворення" - -msgid "Rename playlist..." -msgstr "Перейменувати список відтворення..." - -msgid "Save playlist..." -msgstr "Зберегти список відтворення..." - -msgid "Rename playlist" -msgstr "Перейменування списку відтворення" - -msgid "Enter a new name for this playlist" -msgstr "Введіть назву для цього списку відтворення" - -msgid "Remove playlist" -msgstr "Видалити список відтворення" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "Ви збираєтесь видалити список відтворення, який не входить до улюблених. Він буде видалений без можливості відновлення. \n" -"Дійсно продовжити й видалити цей список відтворення?" - -msgid "Warn me when closing a playlist tab" -msgstr "Попереджати про закриття вкладки зі списком відтворення" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "Цей параметр можна змінити в розділі налаштувань «Поведінка»" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "Двічі клацніть тут, щоб зробити цей список відтворення улюбленим. Тоді він буде збережений і стане доступний на панелі «Списки відтворення» ліворуч" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "додати %n композицій" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "вилучити %n композицій" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "пересунути %n композицій" - -msgid "sort songs" -msgstr "сортувати композиції" - -msgid "shuffle songs" -msgstr "перемішати композиції" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "Не вдалось завантажити аудіо-CD." - -msgid "Loading tracks" -msgstr "Завантаження композицій" - -msgid "Loading tracks info" -msgstr "Завантаження даних композицій" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "Всі списки відтворення (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 списків відтворення (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "Завантаження розумного списку відтворення" - -msgid "Collection search" -msgstr "Пошук по фонотеці" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "Пошук у фонотеці композицій, які відповідають заданим критеріям." - -msgid "Search terms" -msgstr "Критерії пошуку" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "Композицію буде включено до списку відтворення, якщо вона відповідає цим умовам." - -msgid "Search options" -msgstr "Параметри пошуку" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "Виберіть спосіб сортування списку відтворення та кількість пісень, які він міститиме." - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "Знайдено %1 композицій (показано %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "Знайдено %1 композицій" - -msgid "after" -msgstr "після" - -msgid "before" -msgstr "до" - -msgid "on" -msgstr "на" - -msgid "not on" -msgstr "не на" - -msgid "in the last" -msgstr "в минулому" - -msgid "not in the last" -msgstr "не в минулому" - -msgid "between" -msgstr "поміж" - -msgid "contains" -msgstr "містить" - -msgid "does not contain" -msgstr "не містить" - -msgid "starts with" -msgstr "починається з" - -msgid "ends with" -msgstr "закінчується на" - -msgid "greater than" -msgstr "більше ніж" - -msgid "less than" -msgstr "менше ніж" - -msgid "equals" -msgstr "дорівнює" - -msgid "not equals" -msgstr "не дорівнює" - -msgid "empty" -msgstr "порожній" - -msgid "not empty" -msgstr "не порожній" - -msgid "A-Z" -msgstr "А-Я" - -msgid "Z-A" -msgstr "Я-А" - -msgid "oldest first" -msgstr "спочатку настаріші" - -msgid "newest first" -msgstr "спочатку найновіші" - -msgid "shortest first" -msgstr "спочатку найкоротші" - -msgid "longest first" -msgstr "спочатку найдовші" - -msgid "smallest first" -msgstr "спочатку найменші" - -msgid "biggest first" -msgstr "спочатку найбільші" - -msgid "Hours" -msgstr "Години" - -msgid "Days" -msgstr "Дні" - -msgid "Weeks" -msgstr "Тижні" - -msgid "Months" -msgstr "Місяці" - -msgid "Years" -msgstr "Роки" - -msgid "The second value must be greater than the first one!" -msgstr "Друге значення має бути більше першого!" - -msgid "Add search term" -msgstr "Додати пошуковий термін" - -msgid "Newest tracks" -msgstr "Найновіші композиції" - -msgid "50 random tracks" -msgstr "50 випадкових композицій" - -msgid "Ever played" -msgstr "Коли-небудь відтворювалась" - -msgid "Never played" -msgstr "Ніколи не відтворювались" - -msgid "Last played" -msgstr "Останнє відтворення" - -msgid "Most played" -msgstr "Найчастіше відтворювались" - -msgid "Favourite tracks" -msgstr "Улюблені композиції" - -msgid "Least favourite tracks" -msgstr "Найменш улюблені композиції" - -msgid "All tracks" -msgstr "Всі композиції" - -msgid "Dynamic random mix" -msgstr "Динамічний випадковий мікс" - -msgid "New smart playlist..." -msgstr "Створити розумний список відтворення..." - -msgid "Play next" -msgstr "Відтворити наступну" - -msgid "Edit smart playlist..." -msgstr "Змінити розумний список відтворення..." - -msgid "Delete smart playlist" -msgstr "Видалити розумний список відтворення" - -msgid "Smart playlist" -msgstr "Розумний список відтворення" - -msgid "Playlist type" -msgstr "Тип списку відтворення" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "Розумний список відтворення — це динамічний список композицій з вашої фонотеки. Існують різні типи розумних списків з різними способами відбору композицій." - -msgid "Finish" -msgstr "Завершити" - -msgid "Choose a name for your smart playlist" -msgstr "Введіть назву для свого розумного списку відтворення" - -msgid "Abort" -msgstr "Перервати" - -msgid "All albums" -msgstr "Всі альбоми" - -msgid "Albums with covers" -msgstr "Альбоми з обкладинками" - -msgid "Albums without covers" -msgstr "Альбоми без обкладинок" - -msgid "Really cancel?" -msgstr "Дійсно скасувати?" - -msgid "Closing this window will stop searching for album covers." -msgstr "Закриття цього вікна зупинить пошук обкладинок альбомів." - -msgid "Don't stop!" -msgstr "Не зупиняти!" - -msgid "All artists" -msgstr "Всі виконавці" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "Отримано %1 обкладинок з %2 (%3 не вдалось)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 передано" - -msgid "Export finished" -msgstr "Експортування завершено" - -msgid "No covers to export." -msgstr "Немає зображень обкладинок для експортування." - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "Експортовано %1 обкладинок з %2 (%3 пропущено)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "Обкладинки з %1" - -msgid "Search" -msgstr "Пошук" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "Зображення (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "Зображення (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "Всі файли (*)" - -msgid "Load cover from disk..." -msgstr "Завантажити обкладинку з диска..." - -msgid "Save cover to disk..." -msgstr "Зберегти обкладинку на диск..." - -msgid "Load cover from URL..." -msgstr "Завантажити обкладинку з адресою..." - -msgid "Search for album covers..." -msgstr "Шукати обкладинки альбомів..." - -msgid "Unset cover" -msgstr "Вилучити обкладинку" - -msgid "Delete cover" -msgstr "Видалити обкладинку" - -msgid "Clear cover" -msgstr "Стерти обкладинку" - -msgid "Show fullsize..." -msgstr "Показати на повний розмір..." - -msgid "Search automatically" -msgstr "Шукати автоматично" - -msgid "Load cover from disk" -msgstr "Завантаження обкладинки з диска" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "Не вдалось відкрити файл обкладинки %1 для читання: %2" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "Файл обкладинки %1 пустий." - -msgid "unknown" -msgstr "невідомо" - -msgid "Save album cover" -msgstr "Зберегти обкладинку альбому" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "Не вдалось відкрити файл обкладинки %1 для запису: %2" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "Не вдалось записати обкладинку в файл %1: %2" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "Не вдалось записати обкладинку в файл %1." - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "Не вдалось видалити файл обкладинки %1: %2" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "Не вдалось записати обкладинку в файл %1: %2" - -msgid "Total network requests made" -msgstr "Всього зроблено запитів до мережі" - -msgid "Average image size" -msgstr "Середній розмір малюнку" - -msgid "Total bytes transferred" -msgstr "Всього передано байт" - -msgid "Fetching cover error" -msgstr "Не вдалося завантажити обкладинку" - -msgid "The site you requested does not exist!" -msgstr "Вказана адреса не існує!" - -msgid "The site you requested is not an image!" -msgstr "Вказана адреса не є малюнком!" - -msgid "Genius Authentication" -msgstr "Автентифікація на Genius" - -msgid "Please open this URL in your browser" -msgstr "Відкрийте цю адресу у браузері" - -msgid "Redirect missing token code!" -msgstr "Переспрямування не містить код маркера!" - -msgid "Received invalid reply from web browser." -msgstr "Отримана недійсна відповідь з веб-браузера." - -msgid "Redirect from Genius is missing query items code or state." -msgstr "Переспрямування з Genius не містить код або стан елементів запиту." - -msgid "General" -msgstr "Загальне" - -msgid "User interface" -msgstr "Інтерфейс користувача" - -msgid "Streaming" -msgstr "Потік" - -msgid "Add directory..." -msgstr "Додати папку..." - -msgid "Write all playcounts and ratings to files" -msgstr "Записати кількість відтворювань і рейтинги в файли" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "Дійсно записати кількості відтворень та рейтинги композицій в файл для всіх композицій у вашій колекції?" - -msgid "Enter your user token from" -msgstr "Введіть свій маркер користувача з" - -msgid "Use Tidal settings to authenticate." -msgstr "Використовувати налаштування Tidal для автентифікації." - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "Використовувати налаштування Qobuz для автентифікації." - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 потребує автентифікації." - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 не потребує автентифікації." - -msgid "No provider selected." -msgstr "Постачальника не вибрано." - -msgid "Authentication failed" -msgstr "Помилка автентификації" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "Вибір фонового зображення" - -msgid "OSD Preview" -msgstr "Попередній перегляд сповіщення" - -msgid "Drag to reposition" -msgstr "Перетягніть, щоб змінити розташування" - -msgid "About Strawberry" -msgstr "Про Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "Версія %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "Strawberry — це програвач музики та організатор музичних колекцій." - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "Це відгалуження Clementine випущене в 2018 році і призначене для колекціонерів музики та аудіофілів." - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "Strawberry — це безкоштовне програмне забезпечення, випущене під GPL. Вихідний код доступний на %1" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "Ви повинні були отримати копію Загальної публічної ліцензії GNU разом із цією програмою. В іншому випадку див. %1" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "Якщо вам подобається Strawberry і ви часто ним користуєтесь, подумайте про спонсорство або пожертвування." - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "Ви можете підтримати автора на %1. Ви також можете зробити одноразовий платіж через %2." - -msgid "Author and maintainer" -msgstr "Координатор" - -msgid "Contributors" -msgstr "Учасники проекту" - -msgid "Clementine authors" -msgstr "Автори Clementine" - -msgid "Clementine contributors" -msgstr "Учасники проекту Clementine" - -msgid "Thanks to" -msgstr "Окрема подяка" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "Дякуємо всім іншим учасникам проектів Amarok і Clementine." - -msgid "(different across multiple songs)" -msgstr "(відрізняється поміж багатьма композиціями)" - -msgid "Different art across multiple songs." -msgstr "Різні зображення поміж кількох композицій." - -msgid "Previous" -msgstr "Попередня" - -msgid "Next" -msgstr "Наступна" - -msgid "Saving tracks" -msgstr "Збереження композицій" - -#, qt-format -msgid "%1 songs selected." -msgstr "Вибрано %1 композицій." - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "Обкладинку не встановлено" - -msgid "Album cover editing is only available for collection songs." -msgstr "Редагування обкладинки альбому доступне лише для пісень з колекції." - -msgid "Cover changed: Will be cleared when saved." -msgstr "Обкладинку змінено: вона буде скасована під час збереження." - -msgid "Cover changed: Will be unset when saved." -msgstr "Обкладинку змінено: вона буде прибрана під час збереження." - -msgid "Cover changed: Will be deleted when saved." -msgstr "Обкладинку змінено: вона буде видалена під час збереження." - -msgid "Cover changed: Will set new when saved." -msgstr "Обкладинку змінено: під час збереження буде встановлена нова." - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "Початкові теги" - -msgid "Suggested tags" -msgstr "Пропоновані теги" - -msgid "Delete files" -msgstr "Видалити файли" - -msgid "The following files will be deleted from disk:" -msgstr "Наступні файли будуть видалені з диска:" - -msgid "Are you sure you want to continue?" -msgstr "Дійсно продовжити?" - -msgid "Receiving initial data from last.fm..." -msgstr "Отримання початкових даних з last.fm..." - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "Отримання кількості відтворень для %1композицій і дані про останнє відтворення для %2 композицій." - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "Отримання даних про останнє відтворення для %1 композицій." - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "Отримання кількостей відтворення для %1 композицій." - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "Отримано кількість відтворень для %1композицій і дані про останнє відтворення для %2 композицій." - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "Отримано дані про останнє відтворення для %1 композицій." - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "Кількість відтворень для %1 отриманих композицій." - -msgid "Strawberry is running as a Snap" -msgstr "Strawberry працює як Snap" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "Було виявлено, що Strawberry працює як Snap" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "Strawberry під час роботи як Snap буде повільнішим та більш обмеженим. Доступу до кореневої файлової системи (/) немає. Також можуть існувати інші обмеження, наприклад доступ до певних пристроїв або спільних мережевих ресурсів." - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "Для Ubuntu існує офіційне PPA-сховище на %1." - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Доступні офіційні пакети для Debian та Ubuntu, які також працюють на більшості їхніх похідних. Додаткові відомості див. у %1." - -msgid "For a better experience please consider the other options above." -msgstr "Також вам можливо стануть у нагоді інші варіанти вище." - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "Перш ніж видаляти snap, скопіюйте файли strawberry.conf і strawberry.db з каталогу ~/snap, щоб не втратити свою конфігурацію:" - -msgid "Uninstall the snap with:" -msgstr "Видалити snap з:" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "Велика бічна панель" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "Маленька бічна панель" - -msgid "Plain sidebar" -msgstr "Звичайна бічна панель" - -msgid "Tabs on top" -msgstr "Вкладки зверху" - -msgid "Icons on top" -msgstr "Піктограми зверху" - -msgid "Available" -msgstr "Доступне" - -msgid "New songs" -msgstr "Нові композиції" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "Використано" - -msgid "Clear" -msgstr "Очистити" - -msgid "Reset" -msgstr "Скинути" - -msgid "Small album cover" -msgstr "Маленька обкладинка альбому" - -msgid "Large album cover" -msgstr "Велика обкладинка альбому" - -msgid "Fit cover to width" -msgstr "Підібрати розміри обкладинки за шириною" - -msgid "Show above status bar" -msgstr "Показати над рядком стану" - -msgid "You are signed in." -msgstr "Ви ввійшли до системи." - -#, qt-format -msgid "You are signed in as %1." -msgstr "Ви ввійшли до системи як %1." - -#, qt-format -msgid "Expires on %1" -msgstr "Діє до %1" - -#, qt-format -msgid "disc %1" -msgstr "диск %1" - -#, qt-format -msgid "track %1" -msgstr "композиція %1" - -msgid "Paused" -msgstr "Призупинено" - -msgid "Stopped" -msgstr "Зупинено" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "Зупинити відтворення після композиції %1" - -msgid "On" -msgstr "Увімкн" - -msgid "Off" -msgstr "Вимкн" - -msgid "Playlist finished" -msgstr "Список відтворення завершився" - -#, qt-format -msgid "Volume %1%" -msgstr "Гучність %1%" - -msgid "Don't shuffle" -msgstr "Не перемішувати" - -msgid "Shuffle all" -msgstr "Перемішати все" - -msgid "Shuffle tracks in this album" -msgstr "Перемішати поточний альбом" - -msgid "Shuffle albums" -msgstr "Перемішати альбоми" - -msgid "Don't repeat" -msgstr "Не повторювати" - -msgid "Repeat track" -msgstr "Повторювати композицію" - -msgid "Repeat album" -msgstr "Повторювати альбом" - -msgid "Repeat playlist" -msgstr "Повторювати список відтворення" - -msgid "Stop after every track" -msgstr "Зупинятися після будь-якої композиції" - -msgid "Intro tracks" -msgstr "Вступні композиції" - -#, qt-format -msgid "Configure %1..." -msgstr "Налаштувати %1..." - -msgid "Add to artists" -msgstr "Додати до виконавців" - -msgid "Add to albums" -msgstr "Додати до альбомів" - -msgid "Add to songs" -msgstr "Додати до композицій" - -msgid "Enter search terms above to find music" -msgstr "Введіть вище критерії для пошуку музики" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "Клацніть тут, щоб отримати музику" - -msgid "Remove from favorites" -msgstr "Вилучити з улюблених" - -msgid "Open homepage" -msgstr "Відкрити домашню сторінку" - -msgid "Donate" -msgstr "Пожертвувати" - -msgid "Refresh channels" -msgstr "Оновити канали" - -#, qt-format -msgid "Getting %1 channels" -msgstr "Отримання %1 каналів" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "Аутентифікація скроблера %1" - -msgid "Open URL in web browser?" -msgstr "Відкрити адресу в браузері?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "Натисніть «Зберегти», щоб скопіювати адресу в буфер обміну, та відкрийте її у веб-браузері." - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "Не вдалось відкрити адресу. Перейдіть за цією адресу у браузері" - -msgid "Invalid reply from web browser. Missing token." -msgstr "Недійсна відповідь з веб-браузера. Відсутній маркер." - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "Помилка автентифікації скроблера %1!" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "Помилка скроблера %1: %2" - -msgid "ListenBrainz Authentication" -msgstr "Автентифікація на ListenBrainz" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "Відсутнє ім'я користувача. Спочатку увійдіть до last.fm!" - -msgid "Organizing files" -msgstr "Впорядкування файлів" - -msgid "Artist's initial" -msgstr "Ініціали виконавця" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "Бітова швидкість" - -msgid "File extension" -msgstr "Розширення файлу" - -msgid "Error copying songs" -msgstr "Не вдалось скопіювати композиції" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "Виникли проблеми з копіюванням деяких композицій. Не вдалось скопіювати наступні:" - -msgid "Error deleting songs" -msgstr "Не вдалось видалити композиції" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "Виникли проблеми з видаленням деяких композицій. Не вдалось вилучити наступні:" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "Попередня композиція" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "Вимкнути звук" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "Люблю" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "Натисніть комбінацію клавіш для %1..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "Команду \"%1\" не вдалось виконати." - -#, qt-format -msgid "Shortcut for %1" -msgstr "Сполучення клавіш для %1" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "Сполучення клавіш X11 не рекомендується використовувати у %1, оскільки це може призвести до того, що клавіатура перестане працювати!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr " Ярлики на %1 зазвичай використовують через MPRIS та KGlobalAccel." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr " Ярлики на %1 зазвичай використовуються через GSD, і замість цього їх слід налаштовувати у gnome-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr " Ярлики на %1 зазвичай використовуються через GSD, і замість цього їх слід налаштовувати у cinnamon-settings-daemon." - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr " Ярлики на %1 зазвичай використовуються через MSD, і замість цього їх слід налаштовувати там." - -msgid "Buffering" -msgstr "Буферизація" - -msgid "D-Bus path" -msgstr "Шлях D-Bus" - -msgid "Serial number" -msgstr "Серійний номер" - -msgid "Mount points" -msgstr "Точки монтування" - -msgid "Partition label" -msgstr "Мітка розділу" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "Підключити пристрій" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "Це перше під'єднання цього пристрою. Strawberry спробує знайти на ньому музичні файли. Це може зайняти деякий час." - -msgid "This device will not work properly" -msgstr "Цей пристрій не працюватиме як слід" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "Це пристрій MTP, але Strawberry був зібраний без підтримки libmtp." - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "Якщо продовжити, цей пристрій буде працювати повільно і скопійовані на нього композиції можуть не відтворюватись." - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "Це пристрій iPod, але Strawberry був зібраний без підтримки libgpod." - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "Цей тип пристрою не підтримується: %1" - -#, qt-format -msgid "Updating %1%..." -msgstr "Оновлення %1%..." - -msgid "Not connected" -msgstr "Не з'єднано" - -msgid "Not mounted - double click to mount" -msgstr "Не змонтовано — двічі клацніть, щоб змонтувати" - -msgid "Double click to open" -msgstr "Подвійне клацання, щоб відкрити" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 композиція %2" - -msgid "Safely remove device" -msgstr "Безпечно відключити пристрій" - -msgid "Forget device" -msgstr "Забути пристрій" - -msgid "Device properties..." -msgstr "Налаштування пристрою..." - -msgid "Delete from device..." -msgstr "Видалити з пристрою..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "Після забування пристрій буде вилучено з цього списку. Strawberry знову доведеться шукати композиції на ньому під час наступного з'єднання." - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "Ці файли будуть видалені з пристрою. Дійсно видалити їх?" - -msgid "Model" -msgstr "Модель" - -msgid "Manufacturer" -msgstr "Виробник" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "Завантаження бази даних iPod" - -msgid "An error occurred loading the iTunes database" -msgstr "Виникла помилка завантаження бази даних iTunes" - -msgid "Mount point" -msgstr "Точка монтування" - -msgid "Device" -msgstr "Пристрій" - -msgid "URI" -msgstr "Адреса" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "Завантаження пристрою MTP" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "Не вдалось підключитись до MTP-пристрою %1" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "Не вдалось створити елемент GStreamer «%1». Переконайтесь, що встановлені всі потрібні для GStreamer модулі" - -#, qt-format -msgid "Successfully written %1" -msgstr "Успішно записано %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "Перекодовано %1 файлів, використовуючи %2 гілки" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "Помилка обробляння %1: %2" - -#, qt-format -msgid "Starting %1" -msgstr "Запуск %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "Не вдалось знайти кодер для %1. Перевірте чи правильно встановлений модуль GStreamer" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "Не вдалось знайти ущільнювач для %1. Перевірте чи правильно встановлений модуль GStreamer" - -msgid "Start transcoding" -msgstr "Почати перекодування" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n залишилось" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n завершено" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n з помилкою" - -msgid "Add files to transcode" -msgstr "Додати файли для перекодування" - -msgid "Open a directory to import music from" -msgstr "Відкрити каталог для імпортування музичних творів" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "Не вдалось перевести пристрій CDDA у стан готовності." - -msgid "Error while setting CDDA device to pause state." -msgstr "Не вдалось перевести пристрій CDDA у стан паузи." - -msgid "Error while querying CDDA tracks." -msgstr "Не вдалось опитати CDDA-композиції." - -msgid "Server URL is invalid." -msgstr "Недійсна адреса сервера." - -msgid "Missing username or password." -msgstr "Відсутнє ім'я користувача або пароль." - -msgid "Subsonic server URL is invalid." -msgstr "Недійсна адреса сервера Subsonic." - -msgid "Missing Subsonic username or password." -msgstr "Відсутнє ім'я користувача або пароль Subsonic." - -msgid "Retrieving albums..." -msgstr "Завантаження альбомів..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "Завантаження композицій для %1 альбому..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "Завантаження композицій для %1 альбомів..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "Завантаження обкладинки для %1 альбому..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "Завантаження обкладинок для %1 альбомів..." - -msgid "Configuration incomplete" -msgstr "Конфігурація неповна" - -msgid "Missing server url, username or password." -msgstr "Відсутня адреса сервера, ім’я користувача або пароль." - -msgid "Configuration incorrect" -msgstr "Конфігурація з помилками" - -msgid "Test successful!" -msgstr "Тест успішний!" - -msgid "Test failed!" -msgstr "Тест не пройшов!" - -msgid "Reply from Tidal is missing query items." -msgstr "Відповідь з Tidal не містить елементи запиту." - -msgid "Missing Tidal API token." -msgstr "Відсутній маркер API Tidal." - -msgid "Missing Tidal username." -msgstr "Відсутнє ім'я користувача Tidal." - -msgid "Missing Tidal password." -msgstr "Відсутній пароль Tidal." - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "Помилка автентифікації на Tidal і досягнута максимальна кількість спроб входу." - -msgid "Not authenticated with Tidal." -msgstr "Помилка автентифікації на Tidal." - -msgid "Missing Tidal API token, username or password." -msgstr "Відсутній маркер API, ім'я користувача або пароль Tidal." - -msgid "Authenticating..." -msgstr "Автентифікація..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "Пошук..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "Немає збігів." - -msgid "Cancelled." -msgstr "Скасовано." - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Отримано URL-адресу з %1 зашифрованим потоком з Tidal. Strawberry наразі не підтримує зашифровані потоки." - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "Отримано URL-адресу з зашифрованим потоком з Tidal. Strawberry наразі не підтримує зашифровані потоки." - -msgid "Missing Tidal client ID." -msgstr "Відсутній ID клієнта Tidal." - -msgid "Missing API token." -msgstr "Відсутній маркер API." - -msgid "Missing username." -msgstr "Відсутнє ім'я користувача." - -msgid "Missing password." -msgstr "Відсутній пароль." - -msgid "Spotify Authentication" -msgstr "Автентифікація на Spotify" - -msgid "Redirect missing token code or state!" -msgstr "Переспрямування не містить код або стан маркера!" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "Досягнута максимальна кількість спроб входу." - -msgid "Missing Qobuz app ID." -msgstr "Відсутній ідентифікатор додатку Qobuz." - -msgid "Missing Qobuz username." -msgstr "Відсутнє ім'я користувача Qobuz." - -msgid "Missing Qobuz password." -msgstr "Відсутній пароль Qobuz." - -msgid "Not authenticated with Qobuz." -msgstr "Помилка автентифікації на Qobuz." - -msgid "Missing Qobuz app ID or secret." -msgstr "Відсутній ідентифікатор додатку Qobuz або секрет." - -msgid "Missing app id." -msgstr "Відсутній ідентифікатор додатку." - -msgid "Show moodbar" -msgstr "Показувати панель настрою" - -msgid "Moodbar style" -msgstr "Стиль панелі настрою" - -msgid "Normal" -msgstr "Звичайний" - -msgid "Angry" -msgstr "Лютий" - -msgid "Frozen" -msgstr "Заморожений" - -msgid "Happy" -msgstr "Щасливий" - -msgid "System colors" -msgstr "Системні кольори" - -msgid "Strawberry Music Player" -msgstr "Музичний програвач Strawberry" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "&Відтворити" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "&Зупинити" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "&Наступна композиція" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "&Вийти" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "&Очистити список відтворення" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "Пронумерувати композиції у такому порядку..." - -msgid "Set value for all selected tracks..." -msgstr "Встановити значення для всіх вибраних композицій..." - -msgid "Edit tag..." -msgstr "Редагувати тег..." - -msgid "&Settings..." -msgstr "&Налаштування..." - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "&Про Strawberry" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "&Перемішати список відтворення" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "&Додати файл..." - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "&Відкрити файл..." - -msgid "Open audio &CD..." -msgstr "Відкрити &аудіо-CD..." - -msgid "&Cover Manager" -msgstr "&Менеджер обкладинок" - -msgid "C&onsole" -msgstr "&Консоль" - -msgid "&Shuffle mode" -msgstr "Режим &перемішування" - -msgid "&Repeat mode" -msgstr "Режим &повтору" - -msgid "Remove from playlist" -msgstr "Вилучити зі списку відтворення" - -msgid "&Equalizer" -msgstr "Еквалайзер" - -msgid "&Transcode Music" -msgstr "&Перекодування музики" - -msgid "Add &folder..." -msgstr "Додати &папку..." - -msgid "&Jump to the currently playing track" -msgstr "&Перейти до композиції, що відтворюється зараз" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "&Створити список відтворення" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "Зберегти &список відтворення..." - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "&Завантажити список відтворення..." - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "До наступної вкладки списку відтворення" - -msgid "Go to previous playlist tab" -msgstr "До попередньої вкладки списку відтворення" - -msgid "&Update changed collection folders" -msgstr "&Оновити змінені теки колекції" - -msgid "About &Qt" -msgstr "Про &Qt" - -msgid "&Mute" -msgstr "&Вимкнути звук" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "&Повністю пересканувати колекцію" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "Заповнити мітки автоматично..." - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "Змінити режим скроблінгу" - -msgid "Remove &duplicates from playlist" -msgstr "Видалити &дублікати зі списку відтворення" - -msgid "Remove &unavailable tracks from playlist" -msgstr "Видалити &недоступні композиції зі списку відтворення" - -msgid "Add file(s) to transcoder" -msgstr "Додати файли для перекодування" - -msgid "Add file to transcoder" -msgstr "Додати файл для перекодування" - -msgid "Add stream..." -msgstr "Додати потік..." - -msgid "Show sidebar" -msgstr "Показати бічну панель" - -msgid "Import data from last.fm..." -msgstr "Імпортувати дані з last.fm..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "&Музика" - -msgid "P&laylist" -msgstr "&Список відтворення" - -msgid "Help" -msgstr "Довідка" - -msgid "&Tools" -msgstr "&Інструменти" - -msgid "Collection advanced grouping" -msgstr "Розширене групування фонотеки" - -msgid "You can change the way the songs in the collection are organized." -msgstr "Ви можете змінити спосіб впорядкування композицій у фонотеці." - -msgid "Group Collection by..." -msgstr "Групувати фонотеку за..." - -msgid "Second level" -msgstr "Другий рівень" - -msgid "Third level" -msgstr "Третій рівень" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "Фільтр фонотеки" - -msgid "Entire collection" -msgstr "Вся фонотека" - -msgid "Added today" -msgstr "Додано сьогодні" - -msgid "Added this week" -msgstr "Додано цього тижня" - -msgid "Added within three months" -msgstr "Додано за три місяці" - -msgid "Added this year" -msgstr "Додано цього року" - -msgid "Added this month" -msgstr "Додано цього місяця" - -msgid "Save current grouping" -msgstr "Зберегти поточне групування" - -msgid "Manage saved groupings" -msgstr "Керування збереженими групуваннями" - -msgid "Enter search terms here" -msgstr "Введіть сюди критерії пошуку" - -msgid "Form" -msgstr "Форма" - -msgid "Saved Grouping Manager" -msgstr "Керування збереженими групуваннями" - -msgid "Remove" -msgstr "Видалити" - -msgid "Ctrl+Up" -msgstr "Ctrl+Вгору" - -msgid "File paths" -msgstr "Шляхи до файлів" - -msgid "This can be changed later through the preferences" -msgstr "Згодом цей параметр можна буде змінити у налаштуваннях програми" - -msgid "Remember my choice" -msgstr "Запам'ятати вибір" - -msgid "Stop after each track" -msgstr "Зупинятися після кожної композиції" - -msgid "Repeat" -msgstr "Повторювати" - -msgid "Shuffle" -msgstr "Режим перемішування" - -msgid "Dynamic mode is on" -msgstr "Динамічний режим увімкнений" - -msgid "New tracks will be added automatically." -msgstr "Нові композиції будуть додані автоматично." - -msgid "Expand" -msgstr "Розширити" - -msgid "Repopulate" -msgstr "Повторно заповнити" - -msgid "Turn off" -msgstr "Вимкнути" - -msgid "QueueView" -msgstr "Подання черги" - -msgid "Move down" -msgstr "Перемістити вниз" - -msgid "Move up" -msgstr "Перемістити вгору" - -msgid "Ctrl+Down" -msgstr "Ctrl+Вниз" - -msgid "Search mode" -msgstr "Режим пошуку" - -msgid "Match every search term (AND)" -msgstr "Відповідати кожному критерію пошуку (логічне І)" - -msgid "Match one or more search terms (OR)" -msgstr "Відповідати одному чи кільком критеріям пошуку (логічне АБО)" - -msgid "Include all songs" -msgstr "Показати всі композиції" - -msgid "Sorting" -msgstr "Сортування" - -msgid "Put songs in a random order" -msgstr "Перемішати композиції у довільному порядку" - -msgid "Sort songs by" -msgstr "Сортувати композиції за" - -msgid "Limits" -msgstr "Обмеження" - -msgid "Show all the songs" -msgstr "Показати всі композиції" - -msgid "Only show the first" -msgstr "Показати тільки перший" - -msgid " songs" -msgstr " композиції" - -msgid "Preview" -msgstr "Попередній перегляд" - -msgid "and" -msgstr "і" - -msgid "ago" -msgstr "потому" - -msgid "New smart playlist" -msgstr "Новий розумний список відтворення" - -msgid "Edit smart playlist" -msgstr "Змінити розумний список відтворення" - -msgid "Use dynamic mode" -msgstr "Використовувати динамічний режим" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "У динамічному режимі нові композиції вибиратимуться та додаватимуться до списку відтворення одразу після закінчення попередньої композиції." - -msgid "Export covers" -msgstr "Експортувати обкладинки" - -msgid "Output" -msgstr "Результат" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "Вкажіть назву файлу для експортованих обкладинок (без суфікса назви):" - -msgid "Export downloaded covers" -msgstr "Експортувати отримані обкладинки" - -msgid "Export embedded covers" -msgstr "Експортувати вбудовані обкладинки" - -msgid "Existing covers" -msgstr "Наявні обкладинки" - -msgid "Do not overwrite" -msgstr "Не перезаписувати" - -msgid "O&verwrite all" -msgstr "&Перезаписати все" - -msgid "Overwrite s&maller ones only" -msgstr "Перезаписати лише &менші" - -msgid "Size" -msgstr "Розмір" - -msgid "Scale size" -msgstr "Масштабований розмір" - -msgid "Size:" -msgstr "Розмір:" - -msgid "Pixel" -msgstr "Піксель" - -msgid "Cover Manager" -msgstr "Менеджер обкладинок" - -msgid "Fetch automatically" -msgstr "Завантажувати автоматично" - -msgid "Load" -msgstr "Завантажити" - -msgid "Add to playlist" -msgstr "Додати до списку відтворення" - -msgid "View" -msgstr "Перегляд" - -msgid "Total albums:" -msgstr "Загалом альбомів:" - -msgid "Without cover:" -msgstr "Без обкладинки:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "Завантажити обкладинки, котрих бракує" - -msgid "Export Covers" -msgstr "Експортування обкладинок" - -msgid "Fetch completed" -msgstr "Завантаження завершено" - -msgid "Load cover from URL" -msgstr "Завантаження обкладинки за адресою" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "Вкажіть адресу для завантаження обкладинки з Інтернету:" - -msgid "Settings" -msgstr "Налаштування" - -msgid "Behavior" -msgstr "Поведінка" - -msgid "Show system tray icon" -msgstr "Показувати піктограму в системному лотку" - -msgid "Keep running in the background when the window is closed" -msgstr "Продовжувати виконання у фоні коли вікно зачинено" - -msgid "Show song progress on system tray icon" -msgstr "Показувати перебіг композиції на піктограмі в системному лотку" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "Відновлювати відтворення після запуску" - -msgid "Show playing widget" -msgstr "Показати віджет відтворення" - -msgid "On startup" -msgstr "Під час запуску" - -msgid "Remember from &last time" -msgstr "Запам'ятати &останній варіант" - -msgid "Show the main window" -msgstr "Показати головне вікно" - -msgid "Hide the main window" -msgstr "Сховати головне вікно" - -msgid "Show the main window maximized" -msgstr "Показати головне вікно розгорнутим" - -msgid "Show the main window minimized" -msgstr "Показати головне вікно згорнутим" - -msgid "Language" -msgstr "Мова" - -msgid "Use the system default" -msgstr "Використовувати системну" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "Після зміни мови потрібно перезапустити Strawberry." - -msgid "Using the menu to add a song will..." -msgstr "Використання меню для додавання композиції призведе до..." - -msgid "Never start playing" -msgstr "Ніколи не починати відтворення" - -msgid "Play if there is nothing already playing" -msgstr "Відтворювати, якщо зараз нічого не відтворюється" - -msgid "Always start playing" -msgstr "Завжди починати відтворення" - -msgid "Pressing \"Previous\" in player will..." -msgstr "Натискання «Попередня» у програвачі призведе до..." - -msgid "Jump to previous song right away" -msgstr "Перейти до попередньої композиції негайно" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "Перезапустити композицію, потім перейти до попередньої, якщо натиснуто ще раз" - -msgid "Double clicking a song will..." -msgstr "Подвійне клацання на композиції призведе до..." - -msgid "Append to the playlist" -msgstr "Додати до списку відтворення" - -msgid "Replace the playlist" -msgstr "Замінити список відтворення" - -msgid "Add to the queue" -msgstr "Додати до черги" - -msgid "Double clicking a song in the playlist will..." -msgstr "Подвійне клацання на композицій у списку призведе до..." - -msgid "Change the currently playing song" -msgstr "Змінити поточну відтворювану композицію" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "Позиціювання за допомогою сполучення клавіш або коліщатка миші" - -msgid "Time step" -msgstr "Крок за часом" - -msgid " s" -msgstr " с" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "В цих теках виконуватиметься пошук музики для створення фонотеки" - -msgid "Add new folder..." -msgstr "Додати нову папку..." - -msgid "Remove folder" -msgstr "Видалити теку" - -msgid "Automatic updating" -msgstr "Автоматичне оновлення" - -msgid "Update the collection when Strawberry starts" -msgstr "Оновлювати фонотеку під час запуску Strawberry" - -msgid "Monitor the collection for changes" -msgstr "Стежити за змінами у фонотеці" - -msgid "Song fingerprinting and tracking" -msgstr "Відбитки композицій і стеження" - -msgid "Mark disappeared songs unavailable" -msgstr "Позначити зниклі композиції як недоступні" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "Термін дії недоступних композицій закінчується після" - -msgid "days" -msgstr "днів" - -msgid "Preferred album art filenames (comma separated)" -msgstr "Бажані імена файлів для обкладинок, розділені комами" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "Під час пошуку обкладинок Strawberry спочатку шукатиме файли зображень, що містять одне з цих слів.\n" -"Якщо збігів не буде, використовуватиметься найбільше зображення в каталозі." - -msgid "Automatically open single categories in the collection tree" -msgstr "Автоматично відкривати одиночні категорії в дереві фонотеки" - -msgid "Show dividers" -msgstr "Показати розділювач" - -msgid "Show album cover art in collection" -msgstr "Показати обкладинку альбому в фонотеці" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "Pixmap кеш обкладинки альбому" - -msgid "Enable Disk Cache" -msgstr "Увімкнути кеш диска" - -msgid "Disk Cache Size" -msgstr "Розмір кешу диска" - -msgid "Current disk cache in use:" -msgstr "Поточний кеш диска:" - -msgid "Clear Disk Cache" -msgstr "Очистити кеш диска" - -msgid "Song playcounts and ratings" -msgstr "Кількість відтворювань і рейтинги композицій" - -msgid "Save playcounts to song tags when possible" -msgstr "Зберегти кількість відтворювань в тегах композиції, якщо можливо" - -msgid "Save ratings to song tags when possible" -msgstr "Зберігати рейтинги в теги композиції, якщо можливо" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "Перезаписати рейтинги з бази даних, коли композиції повторно зчитуються з диска" - -msgid "Save playcounts and ratings to files now" -msgstr "Зберегти кількість відтворювань і рейтинги в файли" - -msgid "Enable delete files in the right click context menu" -msgstr "Додати у контекстне меню команду для видалення файлів" - -msgid "Backend" -msgstr "Бекенд" - -msgid "Audio output" -msgstr "Виведення звуку" - -msgid "Engine" -msgstr "Обробник" - -msgid "ALSA plugin:" -msgstr "Плагін ALSA:" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "Дозволити керування гучністю" - -msgid "Upmix / downmix to" -msgstr "Знижувальне/збільшувальне мікшування" - -msgid "channels" -msgstr "канали" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "Буфер" - -msgid " ms" -msgstr " мс" - -msgid "Buffer duration" -msgstr "Місткість буфера" - -msgid "High watermark" -msgstr "Водяний знак зверху" - -msgid "Low watermark" -msgstr "Водяний знак знизу" - -msgid "Defaults" -msgstr "Стандартні значення" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "Вирівнювання гучності" - -msgid "Use Replay Gain metadata if it is available" -msgstr "Використовувати метадані Replay Gain, якщо можливо" - -msgid "Replay Gain mode" -msgstr "Режим вирівнювання гучності" - -msgid "Radio (equal loudness for all tracks)" -msgstr "Радіо (однакова гучність всіх композицій)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "Альбом (ідеальна гучність для всіх композицій)" - -msgid "Apply compression to prevent clipping" -msgstr "Застосувати стиснення для запобігання зрізанню" - -msgid "Fallback-gain" -msgstr "Вирівнювання гучності" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "Згасання" - -msgid "Fade out when stopping a track" -msgstr "Поступово заглушати під час зупинки відтворення" - -msgid "Cross-fade when changing tracks manually" -msgstr "Перехресне згасання під час ручної зміни композицій" - -msgid "Cross-fade when changing tracks automatically" -msgstr "Перехресне згасання під час автоматичної зміни композицій" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "Крім як між композиціями у одному альбомі, або в тому ж CUE-листі" - -msgid "Fading duration" -msgstr "Тривалість згасання" - -msgid "Fade out on pause / fade in on resume" -msgstr "Поступово заглушати під час призупинення і поступово робити голоснішим під час відновлення" - -msgid "Add song artist tag" -msgstr "Додати тег виконавця композиції" - -msgid "Add song album tag" -msgstr "Додати тег альбому композиції" - -msgid "Add song title tag" -msgstr "Додати тег назви композиції" - -msgid "Add song albumartist tag" -msgstr "Додати тег виконавця альбому" - -msgid "Add song year tag" -msgstr "Додати тег року композиції" - -msgid "Add song composer tag" -msgstr "Додати тег композитора" - -msgid "Add song performer tag" -msgstr "Додати тег виконавця композиції" - -msgid "Add song grouping tag" -msgstr "Додати тег групування композицій" - -msgid "Add song disc tag" -msgstr "Додати тег диску" - -msgid "Add song track tag" -msgstr "Додати тег номера композиції" - -msgid "Add song genre tag" -msgstr "Додати тег жанру композиції" - -msgid "Add song length tag" -msgstr "Додати тег тривалості композиції" - -msgid "Add song play count" -msgstr "Додати кількість відтворень композиції" - -msgid "Add song skip count" -msgstr "Додати кількість пропусків композиції" - -msgid "Add a new line if supported by the notification type" -msgstr "Додати новий рядок, якщо підтримується типом сповіщення" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "Додати ім'я файлу композиції" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "Додати URL-адресу композиції" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "Додати рейтинг композиції" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "Додати тег оригінального року композиції" - -msgid "Custom text settings" -msgstr "Власні налаштування тексту" - -msgid "Summary" -msgstr "Зведення" - -msgid "Enable Items" -msgstr "Увімкнути елементи" - -msgid "Technical Data" -msgstr "Технічні дані" - -msgid "Song Lyrics" -msgstr "Текст пісні" - -msgid "Automatically search for album cover" -msgstr "Автоматичний пошук обкладинки альбому" - -msgid "Font for headline" -msgstr "Шрифт для заголовка" - -msgid "Font" -msgstr "Шрифт" - -msgid "Font size" -msgstr "Розмір шрифту" - -msgid " pt" -msgstr " пт" - -msgid "Font for data and lyrics" -msgstr "Шрифт для даних та текстів пісень" - -msgid "Use alternating row colors" -msgstr "Чергувати кольори рядків" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "Перейти до наступного пункту в списку відтворення, якщо композиція недоступна" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "Виділяти сірим недоступні пісні у списках відтворення під час відтворення" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "Виділяти сірим недоступні пісні у списках відтворення під час запуску" - -msgid "Automatically select current playing track" -msgstr "Автоматично вибирати поточну композицію" - -msgid "Enable playlist toolbar" -msgstr "Увімкнути панель інструментів для списку відтворення" - -msgid "Enable playlist clear button" -msgstr "Увімкнути кнопку очищення списку відтворення" - -msgid "Automatically sort playlist when inserting songs" -msgstr "Автоматично сортувати список відтворення під час додавання композицій" - -msgid "When saving a playlist, file paths should be" -msgstr "Шляхи під час збереження списків відтворення мають бути" - -msgid "A&utomatic" -msgstr "&Автоматично" - -msgid "Absolu&te" -msgstr "&Абсолютний" - -msgid "Re&lative" -msgstr "&Відносно" - -msgid "As&k when saving" -msgstr "&Питати при збереженні" - -msgid "Metadata" -msgstr "Метадані" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "Якщо вибрано, теги композиції можна буде редагувати прямо списку відтворення простим клацанням на відповідному записі" - -msgid "Enable song metadata inline edition with click" -msgstr "Дозволити вбудоване редагування метаданих композиції клацанням" - -msgid "Write metadata when saving playlists" -msgstr "Записати метадані під час збереження списків відтворення" - -msgid "Scrobbler" -msgstr "Скроблер" - -msgid "Enable" -msgstr "Увімкнути" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "Композиції скроблюються, якщо вони мають дійсні метадані, мають тривалість більше 30 секунд та відтворюються щонайменше половину тривалості або 4 хвилини (залежно від того, що станеться раніше)." - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "Робота в автономному режимі (лише записувати дані скроблінгу в кеш)" - -msgid "Show scrobble button" -msgstr "Показати кнопку скороблінгу" - -msgid "Show love button" -msgstr "Показати кнопку «Люблю»" - -msgid "Submit scrobbles every" -msgstr "Надсилати дані скроблінгу кожні" - -msgid " seconds" -msgstr " секунд" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "(Це затримка між скроблінгом композиції та надсиланням даних на сервер. Якщо встановити 0 секунд, дані скроблінгу будуть надіслані негайно)." - -msgid "Prefer album artist when sending scrobbles" -msgstr "Надавати перевагу виконавцю альбому під час надсилання даних скроблінгу" - -msgid "Show dialog for errors" -msgstr "Показати діалогове вікно для помилок" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "Увімкнути скроблінг для наступних джерел:" - -msgid "Local file" -msgstr "Локальний файл" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "Потік" - -msgid "Radio Paradise" -msgstr "Радіо Paradise" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "Увійти" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "Маркер користувача:" - -msgid "Covers" -msgstr "Обкладинки" - -msgid "Cover providers" -msgstr "Постачальники обкладинок" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "Виберіть постачальників, яких потрібно використовувати під час пошуку обкладинок." - -msgid "Authentication" -msgstr "Автентифікація" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "Збереження обкладинок альбомів" - -msgid "Save album covers in album directory" -msgstr "Зберегти обкладинки альбому в каталозі альбому" - -msgid "Save album covers in cache directory" -msgstr "Зберегти обкладинки альбому в каталозі кешу" - -msgid "Save album covers as embedded cover" -msgstr "Зберегти обкладинки альбому як вбудовані" - -msgid "Filename:" -msgstr "Назва файлу:" - -msgid "Pattern" -msgstr "Шаблон" - -msgid "Random" -msgstr "Випадково" - -msgid "Overwrite existing file" -msgstr "Перезаписати наявний файл" - -msgid "Lowercase filename" -msgstr "Назва файлу в нижньому регистрі" - -msgid "Replace spaces with dashes" -msgstr "Замінити пробіли дефісами" - -msgid "Lyrics" -msgstr "Тексти пісень" - -msgid "Lyrics providers" -msgstr "Постачальники текстів пісень" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "Виберіть постачальників, яких ви хочете використовувати під час пошуку текстів композицій." - -msgid "Network Proxy" -msgstr "Проксі-сервер" - -msgid "&Use the system proxy settings" -msgstr "&Використати системні налаштування проксі" - -msgid "Direct internet connection" -msgstr "Пряме з'єднання з Інтернетом" - -msgid "&Manual proxy configuration" -msgstr "&Вручну налаштувати проксі" - -msgid "HTTP proxy" -msgstr "HTTP-проксі" - -msgid "SOCKS proxy" -msgstr "SOCKS-проксі" - -msgid "Port" -msgstr "Порт" - -msgid "Use authentication" -msgstr "Використовувати автентифікацію" - -msgid "Username" -msgstr "Користувач" - -msgid "Password" -msgstr "Пароль" - -msgid "Use proxy settings for streaming" -msgstr "Використовувати налаштування проксі для потокового передавання" - -msgid "Appearance" -msgstr "Вигляд" - -msgid "Style" -msgstr "Стиль" - -msgid "Use system theme icons" -msgstr "Використовувати системний набір піктограм" - -msgid "Settings require restart." -msgstr "Для налаштувань потрібен перезапуск." - -msgid "Tabbar colors" -msgstr "Колір панелі вкладок" - -msgid "&Use the system default color" -msgstr "&Використати стандартний системний колір" - -msgid "Use custom color" -msgstr "Використовувати власний колір" - -msgid "Use gradient background" -msgstr "Використовувати градієнтний фон" - -msgid "Select tabbar color:" -msgstr "Виберіть колір панелі вкладок:" - -msgid "Background image" -msgstr "Зображення тла" - -msgid "Default bac&kground image" -msgstr "Стандартне &фонове зображення" - -msgid "&No background image" -msgstr "&Без фонового зображення" - -msgid "The album cover of the currently playing song" -msgstr "Обкладинка альбому, до якого увійшла композиція, яка зараз відтворюється" - -msgid "Albu&m cover" -msgstr "Обкладинка &альбому" - -msgid "Custom image:" -msgstr "Власне зображення:" - -msgid "Browse..." -msgstr "Огляд..." - -msgid "Position" -msgstr "Розташування" - -msgid "Upper Left" -msgstr "Вгорі ліворуч" - -msgid "Upper Right" -msgstr "Вгорі праворуч" - -msgid "Middle" -msgstr "Середній" - -msgid "Bottom Left" -msgstr "Внизу ліворуч" - -msgid "Bottom Right" -msgstr "Внизу праворуч" - -msgid "Max cover size" -msgstr "Найбільший розмір обкладинки" - -msgid "Stretch image to fill playlist" -msgstr "Розтягнути зображення, щоб заповнити список відтворення" - -msgid "Keep aspect ratio" -msgstr "Зберегти співвідношення сторін" - -msgid "Do not cut image" -msgstr "Не обрізати зображення" - -msgid "Blur amount" -msgstr "Рівень розмивання" - -msgid "0px" -msgstr "0 пкс" - -msgid "Opacity" -msgstr "Непрозорість" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "Розміри піктограм" - -msgid "Playlist buttons" -msgstr "Кнопки керування списком відтворення" - -msgid "Tabbar large mode" -msgstr "Велика панель вкладок" - -msgid "Play control buttons" -msgstr "Кнопки керування відтворенням" - -msgid "Configure buttons" -msgstr "Налаштувати кнопки" - -msgid "Files, playlists and queue buttons" -msgstr "Кнопки файлів, списків відтворення і черг" - -msgid "Tabbar small mode" -msgstr "Мала панель вкладок" - -msgid "Playlist playing song color" -msgstr "Колір відтворюваної композиції у списку" - -msgid "System highlight color" -msgstr "Системний колір виділення" - -msgid "Custom color" -msgstr "Власний колір" - -msgid "Select playlist playing song color:" -msgstr "Виберіть колір відтворюваної композиції у списку:" - -msgid "Notifications" -msgstr "Сповіщення" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry може показувати повідомлення під час зміни композиції." - -msgid "Notification type" -msgstr "Тип сповіщення" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "Вимкнено" - -msgid "Show a &native desktop notification" -msgstr "Показувати &системне сповіщення на робочому столі" - -msgid "Show a pretty OSD" -msgstr "Показувати спливаючі сповіщення" - -msgid "Show a popup fro&m the system tray" -msgstr "Показувати спливаюче сповіщення в &лотку" - -msgid "General settings" -msgstr "Загальні налаштування" - -msgid "Popup duration" -msgstr "Тривалість спливаючого сповіщення" - -msgid "Disable duration" -msgstr "Вимкнути тривалість" - -msgid "Show a notification when I change the volume" -msgstr "Показувати сповіщення після зміни гучністі" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "Показувати сповіщення після зміни режиму повторення чи перемішування" - -msgid "Show a notification when I pause playback" -msgstr "Показувати сповіщення після призупинення відтворення" - -msgid "Show a notification when I resume playback" -msgstr "Показувати сповіщення після відновлення відтворення" - -msgid "Include album art in the notification" -msgstr "Показувати обкладинку в сповіщенні" - -msgid "Custom message settings" -msgstr "Власні налаштування повідомлень" - -msgid "Use a custom message for notifications" -msgstr "Використовувати власне повідомлення для сповіщень" - -msgid "Body" -msgstr "Текст" - -msgid "Pretty OSD options" -msgstr "Налаштування спливаючого сповіщення" - -msgid "Background color" -msgstr "Колір фону" - -msgid "Text options" -msgstr "Налаштування тексту" - -msgid "Choose font..." -msgstr "Вибрати шрифт..." - -msgid "Choose color..." -msgstr "Вибрати колір..." - -msgid "Background opacity" -msgstr "Прозорість фону" - -msgid "Basic Blue" -msgstr "Стандартний синій" - -msgid "Strawberry Red" -msgstr "Червоний Strawberry" - -msgid "Custom..." -msgstr "Власний..." - -msgid "Enable fading" -msgstr "Увімкнути згасання" - -msgid "Equalizer" -msgstr "Еквалайзер" - -msgid "Preset:" -msgstr "Визначені налаштування:" - -msgid "Enable equalizer" -msgstr "Увімкнути еквалайзер" - -msgid "Enable stereo balancer" -msgstr "Увімкнути балансування стерео" - -msgid "Left" -msgstr "Ліворуч" - -msgid "Balance" -msgstr "Баланс" - -msgid "Right" -msgstr "Праворуч" - -msgid "About" -msgstr "Про програму" - -msgid "Strawberry Error" -msgstr "Помилка Strawberry" - -msgid "Console" -msgstr "Консоль" - -msgid "Run" -msgstr "Виконати" - -msgid "Edit track information" -msgstr "Редагувати дані композиції" - -msgid "Date created" -msgstr "Дата створення" - -msgid "Art Automatic" -msgstr "Автоматично" - -msgid "Date modified" -msgstr "Дата зміни" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "Останнє відтворення" - -msgid "Play count" -msgstr "Кількість відтворень" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "Бітова швидкість" - -msgid "Skip count" -msgstr "Кількість пропусків" - -msgid "Path" -msgstr "Шлях" - -msgid "Filename" -msgstr "Назва файлу" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "Розмір файлу" - -msgid "Art Manual" -msgstr "Вручну" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "Скинути лічильник відтворень" - -msgid "Change art" -msgstr "Змінити зображення" - -msgid "Embedded cover" -msgstr "Вбудована обкладинка" - -msgid "Complete tags automatically" -msgstr "Заповнити мітки автоматично" - -msgid "Compilation" -msgstr "Компіляція" - -msgid "Tags" -msgstr "Теги" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "Завантажувач тегів" - -msgid "Sorry" -msgstr "Вибачте" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry не знайшов нічого для цього файлу" - -msgid "Select best possible match" -msgstr "Оберіть найкращий збіг" - -msgid "Add Stream" -msgstr "Додати потік" - -msgid "Enter the URL of a stream:" -msgstr "Вкажіть адресу потоку:" - -msgid "Enter username and password" -msgstr "Вкажіть ім'я користувача і пароль" - -msgid "Import data from last.fm" -msgstr "Імпорт даних з last.fm" - -msgid "Choose data to import from last.fm" -msgstr "Виберіть дані для імпорту з last.fm" - -msgid "Play counts" -msgstr "Кількості відтворень" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "Попередження: кількість відтворень і останні відтворення з last.fm повністю замінять ті самі дані для відповідних пісень. Кількість відтворень буде замінена даними на основі виконавця та назви композиції для тих самих альбомів! Перед початком створіть резервну копію бази даних." - -msgid "Go!" -msgstr "Уперед!" - -msgid "Close" -msgstr "Закрити" - -msgid "Cancel" -msgstr "Скасувати" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "Більше не показувати це повідомлення." - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "Клацніть аби перемкнутися між часом, що залишився, та загальним" - -msgid "You are not signed in." -msgstr "Ви не ввійшли до системи." - -msgid "Sign out" -msgstr "Вийти" - -msgid "Signing in..." -msgstr "Реєстрація..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "Виконавці" - -msgid "Albums" -msgstr "Альбоми" - -msgid "Songs" -msgstr "Композиції" - -msgid "Refresh catalogue" -msgstr "Оновити каталог" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "виконавці" - -msgid "albums" -msgstr "альбоми" - -msgid "songs" -msgstr "композиції" - -msgid "Organize Files" -msgstr "Впорядкування файлів" - -msgid "Destination" -msgstr "Призначення" - -msgid "After copying..." -msgstr "Після копіювання..." - -msgid "Keep the original files" -msgstr "Зберегти оригінальні файли" - -msgid "Delete the original files" -msgstr "Видалити оригінальні файли" - -msgid "Naming options" -msgstr "Налаштування найменування" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

Мітки починаються з %, наприклад: %artist %album %title

\n\n" -"

Якщо взяти частину тексту з міткою у фігурні дужки, цю частину буде приховано, якщо мітка порожня.

" - -msgid "Insert..." -msgstr "Вставити..." - -msgid "Remove problematic characters from filenames" -msgstr "Видалити проблемні символи з імен файлів" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "Обмежитись символами, дозволеними у файлових системах FAT" - -msgid "Restrict characters to ASCII" -msgstr "Обмежитись символами ASCII" - -msgid "Allow extended ASCII characters" -msgstr "Дозволити розширені символи ASCII" - -msgid "Replace spaces with underscores" -msgstr "Замінити пробіли символами підкреслення" - -msgid "Overwrite existing files" -msgstr "Перезаписати наявні файли" - -msgid "Copy album cover artwork" -msgstr "Копіювати обкладинку альбому" - -msgid "Safely remove the device after copying" -msgstr "Безпечно відключити пристрій після копіювання" - -msgid "Press a key" -msgstr "Натисніть клавішу" - -msgid "Global Shortcuts" -msgstr "Глобальні сполучення клавіш" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "Використовувати сполучення клавіш Gnome (GSD), якщо можливо" - -msgid "Open..." -msgstr "Відкрити..." - -msgid "Use MATE shortcuts when available" -msgstr "Використовувати сполучення клавіш MATE, якщо можливо" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "Використовувати сполучення клавіш KDE (KGlobalAccel), якщо можливо" - -msgid "Use X11 shortcuts when available" -msgstr "Використовувати сполучення клавіш X11, якщо можливо" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "Щоб у Strawberry можна було користуватися глобальними сполученнями клавішу, запустіть програму «Системні налаштування» і дозвольте Strawberry «керувати вашим комп'тером»." - -msgid "Shortcut" -msgstr "Сполучення клавіш" - -msgctxt "Category label" -msgid "Action" -msgstr "Дія" - -msgid "&None" -msgstr "&Нічого" - -msgid "&Default" -msgstr "&Стандартний" - -msgid "&Custom" -msgstr "&Власний" - -msgid "Change shortcut..." -msgstr "Змінити комбінацію клавіш..." - -msgid "Device Properties" -msgstr "Налаштування пристрою" - -msgid "Icon" -msgstr "Піктограма" - -msgid "Hardware information" -msgstr "Відомості про обладнання" - -msgid "Hardware information is only available while the device is connected." -msgstr "Відомості про обладнання доступні лише після під'єднання пристрою." - -msgid "Information" -msgstr "Інформація" - -msgid "Supported formats" -msgstr "Підтримувані формати" - -msgid "This device supports the following file formats:" -msgstr "Цей пристрій підтримує наступні формати файлів:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry може автоматично конвертувати скопійовану до цього пристрою музику в потрібний формат." - -msgid "Do not convert any music" -msgstr "Не конвертувати ніяку музику" - -msgid "Convert any music that the device can't play" -msgstr "Конвертувати всю музику, яку не може відтворити пристрій" - -msgid "Convert all music" -msgstr "Конвертувати всю музику" - -msgid "Preferred format" -msgstr "Бажаний формат" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "Потрібно під'єднати та відкрити пристрій, щоб Strawberry , які формати файлів він підтримує." - -msgid "Open device" -msgstr "Відкрити пристрій" - -msgid "Querying device..." -msgstr "Опитування пристрою..." - -msgid "File formats" -msgstr "Формати файлів" - -msgid "Transcode Music" -msgstr "Перекодування музики" - -msgid "Files to transcode" -msgstr "Файли для перекодування" - -msgid "Directory" -msgstr "Тека" - -msgid "Add..." -msgstr "Додати..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "Додати усі композиції з каталогу та усіх його підкаталогів" - -msgid "Import..." -msgstr "Імпортувати..." - -msgid "Output options" -msgstr "Налаштування виведення" - -msgid "Audio format" -msgstr "Аудіо-формат" - -msgid "Options..." -msgstr "Налаштування..." - -msgid "Alongside the originals" -msgstr "Разом з оригіналами" - -msgid "Select..." -msgstr "Вибрати..." - -msgid "Progress" -msgstr "Поступ" - -msgid "Details..." -msgstr "Детальніше..." - -msgid "Transcoder Log" -msgstr "Журнал перекодування" - -msgid " kbps" -msgstr " кб/с" - -msgid "Profile" -msgstr "Профіль" - -msgid "Main profile (MAIN)" -msgstr "Основний профіль (MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "Профіль низької складності (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "Профіль масштабованої частоти вибірки (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "Профіль довготривалого передбачення (LTP)" - -msgid "Use temporal noise shaping" -msgstr "Використовувати тимчасове формування шуму" - -msgid "Allow mid/side encoding" -msgstr "Дозволити mid/side кодування" - -msgid "Block type" -msgstr "Тип блоку" - -msgid "Normal block type" -msgstr "Звичаний тип блоку" - -msgid "No short blocks" -msgstr "Без коротких блоків" - -msgid "No long blocks" -msgstr "Без довгих блоків" - -msgid "Transcoding options" -msgstr "Налаштування перекодування" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "Якість" - -msgid "Fast" -msgstr "Швидко" - -msgid "Best" -msgstr "Найкраще" - -msgid "Use bitrate management engine" -msgstr "Використовувати засіб керування бітовою швидкістю" - -msgid "Target bitrate" -msgstr "Цільова бітова швидкість" - -msgid "Minimum bitrate" -msgstr "Найменша бітова швидкість" - -msgid "disabled" -msgstr "вимкнено" - -msgid "Maximum bitrate" -msgstr "Найбільша бітова швидкість" - -msgid "automatic" -msgstr "автоматично" - -msgid "Average bitrate" -msgstr "Середня бітова швидкість" - -msgid "Encoding mode" -msgstr "Режим кодування" - -msgid "Auto" -msgstr "Автоматично" - -msgid "Ultra wide band (UWB)" -msgstr "Надзвичайно широка смуга (UWB)" - -msgid "Wide band (WB)" -msgstr "Широка смуга (WB)" - -msgid "Narrow band (NB)" -msgstr "Вузька смуга (NB)" - -msgid "Variable bit rate" -msgstr "Змінна бітова швидкість" - -msgid "Voice activity detection" -msgstr "Визначення голосової активності" - -msgid "Discontinuous transmission" -msgstr "Переривчаста передача" - -msgid "Encoding complexity" -msgstr "Складність кодування" - -msgid "Frames per buffer" -msgstr "Кадрів на буфер" - -msgid "Optimize for &quality" -msgstr "Оптимізувати під &якість" - -msgid "Opti&mize for bitrate" -msgstr "Оптимізувати під &бітову швидкість" - -msgid "Constant bitrate" -msgstr "Стала бітова швидкість" - -msgid "Encoding engine quality" -msgstr "Якість кодування" - -msgid "Standard" -msgstr "Стандартний" - -msgid "High" -msgstr "Високий" - -msgid "Force mono encoding" -msgstr "Примусове моно-кодування" - -msgid "Transcoding" -msgstr "Перекодування" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "Ці налаштування використовуються у діалозі «Перекодування музики» та під час конвертування музики перед її копіюванням на пристрій." - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "Адреса сервера" - -msgid "Authentication method:" -msgstr "Метод автентифікації:" - -msgid "Hex" -msgstr "Шістнадцяткове" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "Параметри" - -msgid "Use HTTP/2 when possible" -msgstr "Використовувати HTTP/2, якщо можливо" - -msgid "Verify server certificate" -msgstr "Перевірити сертифікат сервера" - -msgid "Download album covers" -msgstr "Завантажити обкладинки альбомів" - -msgid "Server-side scrobbling" -msgstr "Скроблінг на боці сервера" - -msgid "Test" -msgstr "Тест" - -msgid "Delete songs" -msgstr "Видалити пісні" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "Підтримка Tidal не є офіційною, і для роботи потрібен маркер API із зареєстрованої програми. Ми не можемо допомогти вам отримати ці дані." - -msgid "Use OAuth" -msgstr "Використовувати OAuth" - -msgid "Client ID" -msgstr "ID клієнта" - -msgid "API Token" -msgstr "Маркер API" - -msgid "Audio quality" -msgstr "Якість аудіо" - -msgid "Search delay" -msgstr "Затримка пошуку" - -msgid "ms" -msgstr "мс" - -msgid "Artists search limit" -msgstr "Обмеження на пошук виконавців" - -msgid "Albums search limit" -msgstr "Обмеження пошуку альбомів" - -msgid "Songs search limit" -msgstr "Обмеження пошуку композицій" - -msgid "Fetch entire albums when searching songs" -msgstr "Завантажувати повні альбоми під час пошуку композицій" - -msgid "Album cover size" -msgstr "Розмір обкладинки альбому" - -msgid "Stream URL method" -msgstr "Протокол адреси потоку" - -msgid "Append explicit to album title for explicit albums" -msgstr "Додати явний текст до назви альбому для явних альбомів" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "Підтримка Qobuz не є офіційною, і для роботи потрібен ідентифікатор API додатку та секрет із зареєстрованої програми. Ми не можемо допомогти вам отримати їх." - -msgid "App ID" -msgstr "ІД додатку" - -msgid "App Secret" -msgstr "Ключ додатку" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "Панель настрою" - -msgid "Show a moodbar in the track progress bar" -msgstr "Показувати панель настрою на панелі перебігу композиції" - -msgid "Save the .mood files directly in the songs folders" -msgstr "Зберігати MOOD-файли в каталогах композицій" - -msgid "Enabled" -msgstr "Увімкнено" - -msgid "Return to Strawberry" -msgstr "Повернутись до Strawberry" - -msgid "Success!" -msgstr "Виконано!" - -msgid "Please close your browser and return to Strawberry." -msgstr "Закрийте браузер і поверніться до Strawberry." - diff --git a/src/translations/zh_CN.po b/src/translations/zh_CN.po deleted file mode 100644 index 2503993d..00000000 --- a/src/translations/zh_CN.po +++ /dev/null @@ -1,4356 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: zh-CN\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Chinese Simplified\n" -"Language: zh_CN\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "全部文件 (*)" - -msgid "Context" -msgstr "上下文" - -msgid "Collection" -msgstr "媒体库" - -msgid "Queue" -msgstr "" - -msgid "Playlists" -msgstr "播放列表" - -msgid "Smart playlists" -msgstr "智能播放列表" - -msgid "Files" -msgstr "文件" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "设备" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "显示所有歌曲" - -msgid "Show only duplicates" -msgstr "只显示重复" - -msgid "Show only untagged" -msgstr "只显示未加标签的" - -msgid "Configure collection..." -msgstr "配置媒体库..." - -msgid "Play" -msgstr "播放" - -msgid "Stop after this track" -msgstr "在此曲目后停止" - -msgid "Toggle queue status" -msgstr "切换队列状态" - -msgid "Queue selected tracks to play next" -msgstr "" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "重新扫描歌曲..." - -msgid "Copy URL(s)..." -msgstr "复制 URL..." - -msgid "Show in collection..." -msgstr "在媒体库中显示..." - -msgid "Show in file browser..." -msgstr "在文件管理器中显示..." - -msgid "Organize files..." -msgstr "整理文件..." - -msgid "Copy to collection..." -msgstr "复制到媒体库..." - -msgid "Move to collection..." -msgstr "移动至媒体库..." - -msgid "Copy to device..." -msgstr "复制到设备..." - -msgid "Delete from disk..." -msgstr "从硬盘删除..." - -msgid "Check for updates..." -msgstr "检查更新..." - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "暂停" - -msgid "Dequeue track" -msgstr "移除曲目" - -msgid "Dequeue selected tracks" -msgstr "移除选定曲目" - -msgid "Queue track" -msgstr "加入队列" - -msgid "Queue selected tracks" -msgstr "将选定曲目加入队列" - -msgid "Queue to play next" -msgstr "" - -msgid "Unskip track" -msgstr "取消掠过曲目" - -msgid "Unskip selected tracks" -msgstr "取消略过的选定曲目" - -msgid "Skip track" -msgstr "跳过曲目" - -msgid "Skip selected tracks" -msgstr "跳过所选择的曲目" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "将 %1 设置为 %2..." - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "编辑标签 \"%1\"..." - -msgid "Add to another playlist" -msgstr "添加到另一播放列表" - -msgid "New playlist" -msgstr "新建播放列表" - -msgid "Add file" -msgstr "添加文件" - -msgid "Music" -msgstr "音乐" - -msgid "Add folder" -msgstr "添加文件夹" - -msgid "Clear playlist" -msgstr "清空播放列表" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "" - -msgid "Error" -msgstr "错误" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "已选择的曲目均不适合复制到设备" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "已更新Strawberry,由于添加了如下特性,您需要更新您的收藏:" - -msgid "Would you like to run a full rescan right now?" -msgstr "您要立即做个全部重新扫描?" - -msgid "Collection rescan notice" -msgstr "重新扫描媒体库提示" - -msgid "Usage" -msgstr "用法" - -msgid "options" -msgstr "选项" - -msgid "URL(s)" -msgstr "URL" - -msgid "Player options" -msgstr "播放器选项" - -msgid "Start the playlist currently playing" -msgstr "开始播放当前播放列表" - -msgid "Play if stopped, pause if playing" -msgstr "若停止则播放,若播放则停止" - -msgid "Pause playback" -msgstr "暂停播放" - -msgid "Stop playback" -msgstr "停止播放" - -msgid "Stop playback after current track" -msgstr "播放完此曲目后停止" - -msgid "Skip backwards in playlist" -msgstr "在播放列表中后退" - -msgid "Skip forwards in playlist" -msgstr "在播放列表中前进" - -msgid "Set the volume to percent" -msgstr "设置音量为 %" - -msgid "Increase the volume by 4 percent" -msgstr "将音量提升 4 %" - -msgid "Decrease the volume by 4 percent" -msgstr "将音量降低 4 %" - -msgid "Increase the volume by percent" -msgstr "将音量提升 %" - -msgid "Decrease the volume by percent" -msgstr "将音量降低 %" - -msgid "Seek the currently playing track to an absolute position" -msgstr "当前播放的曲目快进/快退至指定时间点" - -msgid "Seek the currently playing track by a relative amount" -msgstr "当前播放的曲目以相对步长快进/快退" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "重播当前曲目,如果曲目开播不足 8 秒钟则播放上一曲。" - -msgid "Playlist options" -msgstr "播放列表选项" - -msgid "Create a new playlist with files" -msgstr "用文件创建新播放列表" - -msgid "Append files/URLs to the playlist" -msgstr "添加文件/URL 到播放列表" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "载入文件或 URL,替换当前播放列表" - -msgid "Play the th track in the playlist" -msgstr "播放列表中的第 首" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "其它选项" - -msgid "Display the on-screen-display" -msgstr "显示屏幕显示" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "切换 OSD 可见性" - -msgid "Change the language" -msgstr "更改语言" - -msgid "Resize the window" -msgstr "重设窗口大小" - -msgid "Equivalent to --log-levels *:1" -msgstr "相当于 --log-levels *:1" - -msgid "Equivalent to --log-levels *:3" -msgstr "相当于 --log-levels *:3" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "class:level 列表用逗号分隔,level 范围 0-3" - -msgid "Print out version information" -msgstr "输出版本信息" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "完整性检验" - -msgid "Database corruption detected." -msgstr "检测到数据库损坏。" - -msgid "Backing up database" -msgstr "备份数据库" - -msgid "Deleting files" -msgstr "删除文件" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "目标文件 %1 存在,但不允许覆盖。" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "目标文件 %1 存在,但不允许覆盖" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "未知" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "" - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "只有 GStreamer 引擎可使用 CD 回放。" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "播放列表" - -msgid "1 day" -msgstr "1 天" - -#, qt-format -msgid "%1 days" -msgstr "%1 天" - -msgid "Today" -msgstr "今日" - -msgid "Yesterday" -msgstr "昨天" - -#, qt-format -msgid "%1 days ago" -msgstr "%1 天前" - -msgid "Tomorrow" -msgstr "明天" - -#, qt-format -msgid "In %1 days" -msgstr "在 %1 天内" - -msgid "Next week" -msgstr "下一周" - -#, qt-format -msgid "In %1 weeks" -msgstr "%1 周内" - -msgid "Show in file browser" -msgstr "在文件管理器中显示" - -msgid "Too many songs selected." -msgstr "" - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "已选择 %2 个不同文件夹中的 %1 首歌曲,确定要全部打开他们吗?" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "未知错误" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "可用范围" - -msgid "Framerate" -msgstr "帧速率" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "低(%1 fps)" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "中(%1 fps)" - -#, qt-format -msgid "High (%1 fps)" -msgstr "高(%1 fps)" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "很高(%1 fps)" - -msgid "No analyzer" -msgstr "无均衡器" - -msgid "Block analyzer" -msgstr "块状分析器" - -msgid "Boom analyzer" -msgstr "轰鸣音分析器" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "前置放大" - -msgid "Custom" -msgstr "自定义" - -msgid "Classical" -msgstr "古典" - -msgid "Club" -msgstr "俱乐部" - -msgid "Dance" -msgstr "舞曲" - -msgid "Full Bass" -msgstr "重低音" - -msgid "Full Treble" -msgstr "高音" - -msgid "Full Bass + Treble" -msgstr "低音饱满 + 高音清丽" - -msgid "Laptop/Headphones" -msgstr "笔记本电脑/耳机" - -msgid "Large Hall" -msgstr "大礼堂" - -msgid "Live" -msgstr "直播" - -msgid "Party" -msgstr "晚会" - -msgid "Pop" -msgstr "流行" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "摇滚" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "00" - -msgid "Save preset" -msgstr "保存预设" - -msgid "Name" -msgstr "名称" - -msgid "Delete preset" -msgstr "删除预设" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "您确定要删除预设 %1 吗?" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "文件类型" - -msgid "Length" -msgstr "长度" - -msgid "Samplerate" -msgstr "采样率" - -msgid "Bit depth" -msgstr "位深" - -msgid "Bitrate" -msgstr "位速率" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "显示专辑封面" - -msgid "Show song technical data" -msgstr "显示歌曲技术规格" - -msgid "Show song lyrics" -msgstr "显示歌词" - -msgid "Automatically search for song lyrics" -msgstr "自动搜索歌曲歌词" - -msgid "No song playing" -msgstr "没有歌曲在播放" - -#, qt-format -msgid "%1 song" -msgstr "%1 首歌曲" - -#, qt-format -msgid "%1 songs" -msgstr "%1 首歌曲" - -#, qt-format -msgid "%1 artist" -msgstr "%1 位艺术家" - -#, qt-format -msgid "%1 artists" -msgstr "%1 位艺术家" - -#, qt-format -msgid "%1 album" -msgstr "%1 张专辑" - -#, qt-format -msgid "%1 albums" -msgstr "%1 张专辑" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "正在保存播放计数和评分" - -msgid "Various artists" -msgstr "群星" - -msgid "Loading..." -msgstr "正在载入..." - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "正在更新 %1 数据库。" - -msgid "Updating collection" -msgstr "正在更新媒体库" - -#, qt-format -msgid "Updating %1" -msgstr "正在更新 %1" - -msgid "Your collection is empty!" -msgstr "您的媒体库是空的!" - -msgid "Click here to add some music" -msgstr "点击此处添加一些音乐" - -msgid "Append to current playlist" -msgstr "追加至当前播放列表" - -msgid "Replace current playlist" -msgstr "移除当前播放列表" - -msgid "Open in new playlist" -msgstr "在新播放列表中打开" - -msgid "Search for this" -msgstr "" - -msgid "Edit track information..." -msgstr "编辑曲目信息..." - -msgid "Edit tracks information..." -msgstr "编辑曲目信息..." - -msgid "Rescan song(s)" -msgstr "重新扫描歌曲..." - -msgid "Show in various artists" -msgstr "在群星中显示" - -msgid "Don't show in various artists" -msgstr "不在群星中显示" - -msgid "There are other songs in this album" -msgstr "此专辑中还有其它歌曲" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "显示" - -msgid "Group by" -msgstr "分组" - -msgid "Display options" -msgstr "显示选项" - -msgid "Group by Album artist/Album" -msgstr "按专辑 艺人/专辑来分组" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "按艺术家/专辑分组" - -msgid "Group by Artist/Album - Disc" -msgstr "按艺术家/专辑 - 碟片分组" - -msgid "Group by Artist/Year - Album" -msgstr "按艺术家/年份 - 专辑分组" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "按艺术家/年份 - 专辑 - 碟片分组" - -msgid "Group by Genre/Album artist/Album" -msgstr "按流派/专辑艺术家/专辑分组" - -msgid "Group by Genre/Artist/Album" -msgstr "按流派/艺人/专辑分组" - -msgid "Group by Album Artist" -msgstr "" - -msgid "Group by Artist" -msgstr "按艺术家分组" - -msgid "Group by Album" -msgstr "按专辑分组" - -msgid "Group by Genre/Album" -msgstr "按流派/专辑分组" - -msgid "Advanced grouping..." -msgstr "高级分组..." - -msgid "Grouping Name" -msgstr "分组名称" - -msgid "Grouping name:" -msgstr "分组名称:" - -msgid "First level" -msgstr "第一阶段" - -msgid "Second Level" -msgstr "第二等级" - -msgid "Third Level" -msgstr "第三等级" - -msgid "None" -msgstr "无" - -msgid "Album artist" -msgstr "专辑艺术家" - -msgid "Artist" -msgstr "艺术家" - -msgid "Album" -msgstr "专辑" - -msgid "Album - Disc" -msgstr "专辑 - 碟片" - -msgid "Year - Album" -msgstr "年份 - 专辑" - -msgid "Year - Album - Disc" -msgstr "年份 - 专辑 - 碟片" - -msgid "Original year - Album" -msgstr "原始年份 - 专辑" - -msgid "Original year - Album - Disc" -msgstr "原始年份 - 专辑 - 碟片" - -msgid "Disc" -msgstr "盘片" - -msgid "Year" -msgstr "年份" - -msgid "Original year" -msgstr "原始年代" - -msgid "Genre" -msgstr "流派" - -msgid "Composer" -msgstr "作曲家" - -msgid "Performer" -msgstr "表演者" - -msgid "Grouping" -msgstr "分组" - -msgid "File type" -msgstr "文件类型" - -msgid "Format" -msgstr "格式" - -msgid "Sample rate" -msgstr "采样率" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "标题" - -msgid "Track" -msgstr "音轨" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "位深" - -msgid "File Name" -msgstr "文件名" - -msgid "File Name (without path)" -msgstr "文件名(无路径)" - -msgid "File Size" -msgstr "文件大小" - -msgid "File Type" -msgstr "文件类型" - -msgid "Date Modified" -msgstr "修改日期" - -msgid "Date Created" -msgstr "创建日期" - -msgid "Comment" -msgstr "备注" - -msgid "Source" -msgstr "来源" - -msgid "Mood" -msgstr "情绪" - -msgid "Rating" -msgstr "" - -msgid "CUE" -msgstr "CUE" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "载入播放列表" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "无匹配。清空搜索框以重新显示整个播放列表。" - -msgid "stop" -msgstr "停止" - -msgid "Never" -msgstr "从不" - -msgid "&Hide..." -msgstr "隐藏(&H)..." - -msgid "&Stretch columns to fit window" -msgstr "拉伸栏以适应窗口(&S)" - -msgid "&Reset columns to default" -msgstr "重置列为默认(&R)" - -msgid "&Lock rating" -msgstr "锁定评分(&L)" - -msgid "&Align text" -msgstr "对齐文本(&A)" - -msgid "&Left" -msgstr "左对齐(&L)" - -msgid "&Center" -msgstr "居中(&C)" - -msgid "&Right" -msgstr "右对齐(&R)" - -#, qt-format -msgid "&Hide %1" -msgstr "隐藏 %1(&H)" - -msgid "New folder" -msgstr "创建新文件夹" - -msgid "Delete" -msgstr "删除" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "保存播放列表" - -msgid "Enter the name of the folder" -msgstr "输入文件夹名字" - -msgid "Copy to device" -msgstr "复制到设备" - -msgid "Playlist must be open first." -msgstr "必须先打开播放列表。" - -msgid "Remove playlists" -msgstr "删除播放列表" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "您正试图从收藏夹中删除播放列表 %1 ,确定要这样做吗?" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "您可以通过点击播放列表名称旁的星标来收藏播放列表" - -msgid "Favorited playlists will be saved here" -msgstr "收藏的播放列表将被保存至此" - -msgid "Couldn't create playlist" -msgstr "无法创建列表" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "保存播放列表" - -msgid "Unknown playlist extension" -msgstr "未知的播放列表扩展名" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "%1 选定" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "自动" - -msgid "Relative" -msgstr "相关" - -msgid "Absolute" -msgstr "绝对" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "关闭播放列表" - -msgid "Rename playlist..." -msgstr "重命名播放列表..." - -msgid "Save playlist..." -msgstr "保存播放列表..." - -msgid "Rename playlist" -msgstr "重命名播放列表" - -msgid "Enter a new name for this playlist" -msgstr "输入播放列表的新名称" - -msgid "Remove playlist" -msgstr "删除播放列表" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "您正试图删除未收藏的播放列表: 此播放列表将被真正删除 (此操作无法撤销)。\n" -"您确定要继续吗?" - -msgid "Warn me when closing a playlist tab" -msgstr "关闭播放列表标签时,提示我" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "这些选项可以在“行为”设置中修改" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "添加 %n 首曲目" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "移除 %n 首歌" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "移动 %n 首歌" - -msgid "sort songs" -msgstr "排序歌曲" - -msgid "shuffle songs" -msgstr "乱序歌曲" - -msgid "Hz" -msgstr "赫兹" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "" - -msgid "Loading tracks" -msgstr "正在载入曲目" - -msgid "Loading tracks info" -msgstr "正在加载曲目信息" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "全部播放列表 (%1)" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "%1 播放列表 (%2)" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "目录 %1 不存在。" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "正在加载智能播放列表" - -msgid "Collection search" -msgstr "媒体库搜索" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "搜索条件" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "如果歌曲满足这些条件,则播放列表将会包含其在内。" - -msgid "Search options" -msgstr "搜索选项" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "选择播放列表排序方式和包含的歌曲数目。" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "找到了 %1 首歌曲(正在显示 %2)" - -#, qt-format -msgid "%1 songs found" -msgstr "找到 %1 首歌曲" - -msgid "after" -msgstr "后" - -msgid "before" -msgstr "" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "" - -msgid "contains" -msgstr "" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "空" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "小时" - -msgid "Days" -msgstr "天" - -msgid "Weeks" -msgstr "星期" - -msgid "Months" -msgstr "月份" - -msgid "Years" -msgstr "年份" - -msgid "The second value must be greater than the first one!" -msgstr "第二个数值必须比第一个数值大!" - -msgid "Add search term" -msgstr "添加搜索条件" - -msgid "Newest tracks" -msgstr "最新添加的曲目" - -msgid "50 random tracks" -msgstr "" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "从未播放过" - -msgid "Last played" -msgstr "最近播放" - -msgid "Most played" -msgstr "最常播放" - -msgid "Favourite tracks" -msgstr "" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "所有曲目" - -msgid "Dynamic random mix" -msgstr "" - -msgid "New smart playlist..." -msgstr "新建智能播放列表..." - -msgid "Play next" -msgstr "播放下一首" - -msgid "Edit smart playlist..." -msgstr "编辑智能播放列表..." - -msgid "Delete smart playlist" -msgstr "删除智能播放列表" - -msgid "Smart playlist" -msgstr "智能播放列表" - -msgid "Playlist type" -msgstr "播放列表类型" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "智能播放列表是从媒体库生成的动态歌曲列表。不同类型的智能播放列表提供不同的歌曲选择方式。" - -msgid "Finish" -msgstr "完成" - -msgid "Choose a name for your smart playlist" -msgstr "选择智能播放列表的名称" - -msgid "Abort" -msgstr "中止" - -msgid "All albums" -msgstr "全部专辑" - -msgid "Albums with covers" -msgstr "有封面的专辑" - -msgid "Albums without covers" -msgstr "无封面的专辑" - -msgid "Really cancel?" -msgstr "确实取消?" - -msgid "Closing this window will stop searching for album covers." -msgstr "关闭此窗口将停止寻找专辑封面。" - -msgid "Don't stop!" -msgstr "不要停止!" - -msgid "All artists" -msgstr "全部艺人" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "获取了 %1 个封面,共 %2 个(失败 %3 个)" - -#, qt-format -msgid "%1 transferred" -msgstr "%1 已传输" - -msgid "Export finished" -msgstr "导出完成" - -msgid "No covers to export." -msgstr "无封面可供导出。" - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "已导出 %1 个封面,共 %2 个(跳过 %3 个)" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "来自 %1 的封面" - -msgid "Search" -msgstr "搜索" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "图像 (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "图像 (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" - -msgid "All files (*)" -msgstr "全部文件 (*)" - -msgid "Load cover from disk..." -msgstr "从磁盘载入封面..." - -msgid "Save cover to disk..." -msgstr "保存封面至硬盘..." - -msgid "Load cover from URL..." -msgstr "从 URL 载入封面..." - -msgid "Search for album covers..." -msgstr "搜索专辑封面..." - -msgid "Unset cover" -msgstr "撤销封面" - -msgid "Delete cover" -msgstr "删除封面" - -msgid "Clear cover" -msgstr "清除封面" - -msgid "Show fullsize..." -msgstr "显示完整尺寸..." - -msgid "Search automatically" -msgstr "自动搜索" - -msgid "Load cover from disk" -msgstr "从磁盘读取封面" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "未知" - -msgid "Save album cover" -msgstr "保存专辑封面" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "已发出网络连接总数" - -msgid "Average image size" -msgstr "图片平均大小" - -msgid "Total bytes transferred" -msgstr "已传输字节总数" - -msgid "Fetching cover error" -msgstr "获取封面出错" - -msgid "The site you requested does not exist!" -msgstr "请求的站点不存在!" - -msgid "The site you requested is not an image!" -msgstr "您请求的站点并不是一个图片!" - -msgid "Genius Authentication" -msgstr "Genius 身份验证" - -msgid "Please open this URL in your browser" -msgstr "请在浏览器中打开这个 URL" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "一般" - -msgid "User interface" -msgstr "用户界面" - -msgid "Streaming" -msgstr "串流" - -msgid "Add directory..." -msgstr "添加目录..." - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "使用 Tidal 设置来认证。" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "使用 Qobuz 设置来认证。" - -#, qt-format -msgid "%1 needs authentication." -msgstr "%1 需要授权。" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "%1 不需要授权。" - -msgid "No provider selected." -msgstr "未选择提供方。" - -msgid "Authentication failed" -msgstr "认证失败" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "选择背景图片" - -msgid "OSD Preview" -msgstr "OSD 预览" - -msgid "Drag to reposition" -msgstr "拖拽以重新定位" - -msgid "About Strawberry" -msgstr "关于 Strawberry" - -#, qt-format -msgid "Version %1" -msgstr "版本 %1" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "" - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "" - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "作者和维护者" - -msgid "Contributors" -msgstr "贡献者" - -msgid "Clementine authors" -msgstr "Clementine 作者" - -msgid "Clementine contributors" -msgstr "Clementine 贡献者" - -msgid "Thanks to" -msgstr "致谢" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "感谢所有其他的 Amarok 和 Clementine 的贡献者们。" - -msgid "(different across multiple songs)" -msgstr "(多个歌曲间不同)" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "上一首" - -msgid "Next" -msgstr "下一首" - -msgid "Saving tracks" -msgstr "正在保存音轨" - -#, qt-format -msgid "%1 songs selected." -msgstr "已选择 %1 首歌曲。" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "未设置封面" - -msgid "Album cover editing is only available for collection songs." -msgstr "只有媒体库中的歌曲可编辑专辑封面。" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "原始标签" - -msgid "Suggested tags" -msgstr "推荐标签" - -msgid "Delete files" -msgstr "删除文件" - -msgid "The following files will be deleted from disk:" -msgstr "下列文件将从磁盘上删除:" - -msgid "Are you sure you want to continue?" -msgstr "你确定要继续吗?" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "对于Ubuntu来说,有一个官方的PPA仓库,可在 %1 上使用。" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "Debian 和 Ubuntu 有本软件的官方版本可用,同时也支持它们大多数的衍生发行版。参阅 %1 了解详情。" - -msgid "For a better experience please consider the other options above." -msgstr "为了更好的体验,请考虑上述其他选项。" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "选择播放列表目录" - -msgid "Directory does not exist." -msgstr "目录不存在。" - -msgid "Large sidebar" -msgstr "大侧边栏" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "小侧边栏" - -msgid "Plain sidebar" -msgstr "普通侧边栏" - -msgid "Tabs on top" -msgstr "标签在上" - -msgid "Icons on top" -msgstr "图标在上" - -msgid "Available" -msgstr "可用" - -msgid "New songs" -msgstr "新曲目" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "已使用" - -msgid "Clear" -msgstr "清除" - -msgid "Reset" -msgstr "重置" - -msgid "Small album cover" -msgstr "小专辑封面" - -msgid "Large album cover" -msgstr "大专辑封面" - -msgid "Fit cover to width" -msgstr "适应封面到等宽" - -msgid "Show above status bar" -msgstr "在状态栏之上显示" - -msgid "You are signed in." -msgstr "您已经登录。" - -#, qt-format -msgid "You are signed in as %1." -msgstr "您已经作为%1登录。" - -#, qt-format -msgid "Expires on %1" -msgstr "于 %1 过期" - -#, qt-format -msgid "disc %1" -msgstr "盘片%1" - -#, qt-format -msgid "track %1" -msgstr "曲目 %1" - -msgid "Paused" -msgstr "已暂停" - -msgid "Stopped" -msgstr "已停止" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "播完曲目 %1 后停止" - -msgid "On" -msgstr "打开" - -msgid "Off" -msgstr "关闭" - -msgid "Playlist finished" -msgstr "已完成播放列表" - -#, qt-format -msgid "Volume %1%" -msgstr "音量 %1%" - -msgid "Don't shuffle" -msgstr "不随机播放" - -msgid "Shuffle all" -msgstr "乱序全部" - -msgid "Shuffle tracks in this album" -msgstr "此专辑的曲目乱序播放" - -msgid "Shuffle albums" -msgstr "乱序专辑" - -msgid "Don't repeat" -msgstr "不循环播放" - -msgid "Repeat track" -msgstr "单曲循环" - -msgid "Repeat album" -msgstr "专辑循环" - -msgid "Repeat playlist" -msgstr "播放列表循环" - -msgid "Stop after every track" -msgstr "播放每个曲目前停止" - -msgid "Intro tracks" -msgstr "代表曲目" - -#, qt-format -msgid "Configure %1..." -msgstr "配置 %1 ..." - -msgid "Add to artists" -msgstr "添加到艺术家" - -msgid "Add to albums" -msgstr "添加到专辑" - -msgid "Add to songs" -msgstr "添加到歌曲" - -msgid "Enter search terms above to find music" -msgstr "" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "点击此处检索音乐" - -msgid "Remove from favorites" -msgstr "" - -msgid "Open homepage" -msgstr "打开主页" - -msgid "Donate" -msgstr "捐赠" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "正在获取 %1 频道" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "" - -msgid "Open URL in web browser?" -msgstr "要在网页浏览器中打开 URL 吗?" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "" - -msgid "Invalid reply from web browser. Missing token." -msgstr "" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "ListenBrainz 认证" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "缺失用户民,请先登录到 Last.fm!" - -msgid "Organizing files" -msgstr "正在整理文件" - -msgid "Artist's initial" -msgstr "艺术家名字的首字母" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "比特率" - -msgid "File extension" -msgstr "文件扩展名" - -msgid "Error copying songs" -msgstr "复制曲目出错" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "复制歌曲出错。以下歌曲无法复制:" - -msgid "Error deleting songs" -msgstr "删除曲目出错" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "删除歌曲出错。以下歌曲无法删除:" - -msgid "Play/Pause" -msgstr "播放/暂停" - -msgid "Stop" -msgstr "停止" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "下一曲目" - -msgid "Previous track" -msgstr "上一首曲目" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "提升音量" - -msgid "Decrease volume" -msgstr "降低音量" - -msgid "Mute" -msgstr "静音" - -msgid "Seek forward" -msgstr "向后查找" - -msgid "Seek backward" -msgstr "向前查找" - -msgid "Show/Hide" -msgstr "显示/隐藏" - -msgid "Show OSD" -msgstr "显示 OSD" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "更改乱序模式" - -msgid "Change repeat mode" -msgstr "更改循环模式" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "喜欢" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "请为 %1 按下新的组合键..." - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "命令\"%1\"无法执行。" - -#, qt-format -msgid "Shortcut for %1" -msgstr "%1 的快捷键" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "不推荐在 %1 上使用 X11 快捷键,这可导致键盘失去响应!" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "缓冲中" - -msgid "D-Bus path" -msgstr "D-Bus 路径" - -msgid "Serial number" -msgstr "序列号" - -msgid "Mount points" -msgstr "挂载点" - -msgid "Partition label" -msgstr "分区标签" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "连接设备" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "这是您第一次连接该设备。Strawberry 将扫描设备上的音乐文件-这需要花费一些时间。" - -msgid "This device will not work properly" -msgstr "这个设备将不会正常工作" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "这个一部 MTP 设备,但是您可以通过 Strawberry 来编辑而无需 libmtp 的支持。" - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "如果您选择继续,设备运行将会变慢并且复制歌曲工作可能无法正常进行。" - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "这是 iPod 设备,但 Strawberry 编译时未包含 libgpod 支持。" - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "这类设备不受支持:%1" - -#, qt-format -msgid "Updating %1%..." -msgstr "正在更新 %1%..." - -msgid "Not connected" -msgstr "未连接" - -msgid "Not mounted - double click to mount" -msgstr "尚未挂载 - 双击进行挂载" - -msgid "Double click to open" -msgstr "双击打开" - -#, qt-format -msgid "%1 song%2" -msgstr "%1 首歌曲%2" - -msgid "Safely remove device" -msgstr "安全移除设备" - -msgid "Forget device" -msgstr "忘记设备" - -msgid "Device properties..." -msgstr "设备属性..." - -msgid "Delete from device..." -msgstr "从设备删除..." - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "忘记设备将从列表删除该设备.如果下次您再次插入该设备,Strawberry将重新扫描所有歌曲。" - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "将从设备中删除这些文件.确定删除吗?" - -msgid "Model" -msgstr "型号" - -msgid "Manufacturer" -msgstr "生产商" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "无法将 %1 复制到 %2: %3" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "正在载入 iPod 数据库" - -msgid "An error occurred loading the iTunes database" -msgstr "加载 iTunes 数据库时出错" - -msgid "Mount point" -msgstr "挂载点" - -msgid "Device" -msgstr "设备" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "正在载入 MTP 设备" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "连接 MTP 设备 %1 时发生错误" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "无法创建GStreamer元素 \"%1\" - 请确认您已安装了所需GStreamer插件" - -#, qt-format -msgid "Successfully written %1" -msgstr "成功写入 %1" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "正在转码 %1 个文件,占用线程 %2 个" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "处理 %1 出错:%2" - -#, qt-format -msgid "Starting %1" -msgstr "正在开始 %1" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "无法找到适合 %1 的解码器,请确认您正确安装了GStreamer插件" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "无法为%1找到混音器,请检查是否安装了正确的Gstreamer插件" - -msgid "Start transcoding" -msgstr "开始转换" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "%n 剩余" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "%n 完成" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "%n 失败" - -msgid "Add files to transcode" -msgstr "添加需转码文件" - -msgid "Open a directory to import music from" -msgstr "打开目录导入音乐" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "歌曲指纹" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -msgid "Server URL is invalid." -msgstr "无效的服务器 URL。" - -msgid "Missing username or password." -msgstr "缺失用户名或密码。" - -msgid "Subsonic server URL is invalid." -msgstr "无效的 Subsonic 服务器 URL。" - -msgid "Missing Subsonic username or password." -msgstr "缺失 Subsonic 用户名或密码。" - -msgid "Retrieving albums..." -msgstr "正在检索专辑..." - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "正在检索 %1 张专辑的歌曲..." - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "正在检索 %1 张专辑的歌曲..." - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "正在检索 %1 张专辑的封面..." - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "正在检索 %1 张专辑的封面..." - -msgid "Configuration incomplete" -msgstr "配置不完整" - -msgid "Missing server url, username or password." -msgstr "缺失服务器 URL、用户名或密码。" - -msgid "Configuration incorrect" -msgstr "配置不正确" - -msgid "Test successful!" -msgstr "测试成功!" - -msgid "Test failed!" -msgstr "测试失败!" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "缺失 Tidal API 令牌。" - -msgid "Missing Tidal username." -msgstr "缺失 Tidal 用户名。" - -msgid "Missing Tidal password." -msgstr "缺失 Tidal 密码。" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "未通过 Tidal 进行身份验证,且已达到最大登录尝试次数。" - -msgid "Not authenticated with Tidal." -msgstr "未通过 Tidal 认证。" - -msgid "Missing Tidal API token, username or password." -msgstr "缺失 Tidal API 令牌、用户名或密码。" - -msgid "Authenticating..." -msgstr "正在验证..." - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "正在搜索..." - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "没有匹配项。" - -msgid "Cancelled." -msgstr "已取消。" - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "缺失 Tidal 客户端 ID。" - -msgid "Missing API token." -msgstr "缺失 API 令牌。" - -msgid "Missing username." -msgstr "缺失用户名。" - -msgid "Missing password." -msgstr "缺失密码。" - -msgid "Spotify Authentication" -msgstr "Spotify 认证" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "数据缺失错误" - -msgid "Maximum number of login attempts reached." -msgstr "" - -msgid "Missing Qobuz app ID." -msgstr "缺失 Qobuz 应用 ID。" - -msgid "Missing Qobuz username." -msgstr "缺失 Qobuz 用户名。" - -msgid "Missing Qobuz password." -msgstr "缺失 Qobuz 密码。" - -msgid "Not authenticated with Qobuz." -msgstr "未通过 Qobuz 认证。" - -msgid "Missing Qobuz app ID or secret." -msgstr "缺失 Qobuz 应用 ID 或密钥。" - -msgid "Missing app id." -msgstr "缺失应用 ID。" - -msgid "Show moodbar" -msgstr "显示情绪栏" - -msgid "Moodbar style" -msgstr "情绪栏风格" - -msgid "Normal" -msgstr "正常" - -msgid "Angry" -msgstr "生气" - -msgid "Frozen" -msgstr "冻结" - -msgid "Happy" -msgstr "高兴" - -msgid "System colors" -msgstr "系统颜色" - -msgid "Strawberry Music Player" -msgstr "Strawberry 音乐播放器" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "播放(&P)" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "停止(&S)" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "下一曲目(&N)" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "退出(&Q)" - -msgid "Ctrl+Q" -msgstr "Ctrl+Q" - -msgid "Ctrl+Alt+V" -msgstr "Ctrl+Alt+V" - -msgid "&Clear playlist" -msgstr "清空播放列表(&C)" - -msgid "Ctrl+K" -msgstr "Ctrl+K" - -msgid "Ctrl+E" -msgstr "Ctrl+E" - -msgid "Renumber tracks in this order..." -msgstr "以此顺序为曲目重新编号..." - -msgid "Set value for all selected tracks..." -msgstr "为全部选中的曲目设置值..." - -msgid "Edit tag..." -msgstr "编辑标签..." - -msgid "&Settings..." -msgstr "设置(&S)..." - -msgid "Ctrl+P" -msgstr "Ctrl+P" - -msgid "&About Strawberry" -msgstr "关于 Strawberry(&A)" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "乱序播放列表(&H)" - -msgid "Ctrl+H" -msgstr "Ctrl+H" - -msgid "&Add file..." -msgstr "添加文件(&A)..." - -msgid "Ctrl+Shift+A" -msgstr "Ctrl+Shift+A" - -msgid "&Open file..." -msgstr "打开文件(&O)..." - -msgid "Open audio &CD..." -msgstr "打开音频 &CD..." - -msgid "&Cover Manager" -msgstr "封面管理器(&C)" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "随机播放模式(&S)" - -msgid "&Repeat mode" -msgstr "循环模式(&R)" - -msgid "Remove from playlist" -msgstr "从播放列表中移除" - -msgid "&Equalizer" -msgstr "均衡器(&E)" - -msgid "&Transcode Music" -msgstr "转码音乐(&T)" - -msgid "Add &folder..." -msgstr "添加文件夹(&F)..." - -msgid "&Jump to the currently playing track" -msgstr "跳到当前正在播放的曲目(&J)" - -msgid "Ctrl+J" -msgstr "Ctrl+J" - -msgid "&New playlist" -msgstr "新建播放列表(&N)" - -msgid "Ctrl+N" -msgstr "Ctrl+N" - -msgid "Save &playlist..." -msgstr "保存播放列表(&P)..." - -msgid "Ctrl+S" -msgstr "Ctrl+S" - -msgid "&Load playlist..." -msgstr "加载播放列表(&L)..." - -msgid "Ctrl+Shift+O" -msgstr "Ctrl+Shift+O" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "转到下一播放列表标签" - -msgid "Go to previous playlist tab" -msgstr "转到上一播放列表标签" - -msgid "&Update changed collection folders" -msgstr "更新已更改的媒体库文件夹(&U)" - -msgid "About &Qt" -msgstr "关于 &Qt" - -msgid "&Mute" -msgstr "静音(&M)" - -msgid "Ctrl+M" -msgstr "Ctrl+M" - -msgid "&Do a full collection rescan" -msgstr "完全重新扫描媒体库(&D)" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "自动补全标签..." - -msgid "Ctrl+T" -msgstr "Ctrl+T" - -msgid "Toggle scrobbling" -msgstr "切换歌曲记录" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "添加文件至转码器" - -msgid "Add file to transcoder" -msgstr "添加文件至转码器" - -msgid "Add stream..." -msgstr "添加流..." - -msgid "Show sidebar" -msgstr "显示侧边栏" - -msgid "Import data from last.fm..." -msgstr "从 Last.fm 导入数据..." - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "音乐(&M)" - -msgid "P&laylist" -msgstr "播放列表(&L)" - -msgid "Help" -msgstr "帮助" - -msgid "&Tools" -msgstr "工具(&T)" - -msgid "Collection advanced grouping" -msgstr "媒体库高级分组" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "媒体库分组..." - -msgid "Second level" -msgstr "第二阶段" - -msgid "Third level" -msgstr "第三阶段" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "媒体库筛选器" - -msgid "Entire collection" -msgstr "整个集合" - -msgid "Added today" -msgstr "今日加入" - -msgid "Added this week" -msgstr "本周加入" - -msgid "Added within three months" -msgstr "于三个月内加入" - -msgid "Added this year" -msgstr "今年加入" - -msgid "Added this month" -msgstr "本月加入" - -msgid "Save current grouping" -msgstr "保存当前分组" - -msgid "Manage saved groupings" -msgstr "管理已保存的分组" - -msgid "Enter search terms here" -msgstr "在此输入搜索条件" - -msgid "Form" -msgstr "表格" - -msgid "Saved Grouping Manager" -msgstr "已保存的分组管理器" - -msgid "Remove" -msgstr "移除" - -msgid "Ctrl+Up" -msgstr "Ctrl+上" - -msgid "File paths" -msgstr "文件路径" - -msgid "This can be changed later through the preferences" -msgstr "此项可以稍后在首选项中进行更改" - -msgid "Remember my choice" -msgstr "记住我的选择" - -msgid "Stop after each track" -msgstr "播放完每个曲目后停止" - -msgid "Repeat" -msgstr "循环" - -msgid "Shuffle" -msgstr "乱序" - -msgid "Dynamic mode is on" -msgstr "动态模式已开启" - -msgid "New tracks will be added automatically." -msgstr "将会自动添加新的曲目。" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "关闭" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "下移" - -msgid "Move up" -msgstr "上移" - -msgid "Ctrl+Down" -msgstr "Ctrl+下" - -msgid "Search mode" -msgstr "搜索模式" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "包括所有歌曲" - -msgid "Sorting" -msgstr "排序" - -msgid "Put songs in a random order" -msgstr "以随机顺序排布歌曲" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "显示所有歌曲" - -msgid "Only show the first" -msgstr "只在第一次启动时显示" - -msgid " songs" -msgstr " 首曲目" - -msgid "Preview" -msgstr "预览" - -msgid "and" -msgstr "和" - -msgid "ago" -msgstr "前" - -msgid "New smart playlist" -msgstr "新建智能播放列表" - -msgid "Edit smart playlist" -msgstr "编辑智能播放列表" - -msgid "Use dynamic mode" -msgstr "使用动态模式" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "导出封面" - -msgid "Output" -msgstr "输出" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "输入导出封面的文件名(不含扩展名):" - -msgid "Export downloaded covers" -msgstr "导出下载的封面" - -msgid "Export embedded covers" -msgstr "导出内嵌封面" - -msgid "Existing covers" -msgstr "现有封面" - -msgid "Do not overwrite" -msgstr "不要覆盖" - -msgid "O&verwrite all" -msgstr "覆盖所有(&V)" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "大小" - -msgid "Scale size" -msgstr "缩放" - -msgid "Size:" -msgstr "大小:" - -msgid "Pixel" -msgstr "像素" - -msgid "Cover Manager" -msgstr "封面管理器" - -msgid "Fetch automatically" -msgstr "自动获取" - -msgid "Load" -msgstr "载入" - -msgid "Add to playlist" -msgstr "添加到播放列表" - -msgid "View" -msgstr "查看" - -msgid "Total albums:" -msgstr "专辑总数:" - -msgid "Without cover:" -msgstr "无封面:" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "获取缺少的封面" - -msgid "Export Covers" -msgstr "导出封面" - -msgid "Fetch completed" -msgstr "读取完毕" - -msgid "Load cover from URL" -msgstr "从 URL 载入封面" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "输入 URL 以便从网络下载封面:" - -msgid "Settings" -msgstr "设置" - -msgid "Behavior" -msgstr "行为" - -msgid "Show system tray icon" -msgstr "显示系统托盘图标" - -msgid "Keep running in the background when the window is closed" -msgstr "当窗口关闭时仍在后台运行" - -msgid "Show song progress on system tray icon" -msgstr "在系统托盘图标上显示歌曲进度" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "启动时恢复播放" - -msgid "Show playing widget" -msgstr "显示播放小部件" - -msgid "On startup" -msgstr "在启动时" - -msgid "Remember from &last time" -msgstr "" - -msgid "Show the main window" -msgstr "显示主窗口" - -msgid "Hide the main window" -msgstr "隐藏主窗口" - -msgid "Show the main window maximized" -msgstr "显示最大化主窗口" - -msgid "Show the main window minimized" -msgstr "显示最小化主窗口" - -msgid "Language" -msgstr "语言" - -msgid "Use the system default" -msgstr "使用系统默认" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "如果更改语言,您需要重启 Strawberry 使设置生效。" - -msgid "Using the menu to add a song will..." -msgstr "使用菜单添加歌曲将..." - -msgid "Never start playing" -msgstr "从未播放" - -msgid "Play if there is nothing already playing" -msgstr "如无歌曲播放则自动播放添加的歌曲" - -msgid "Always start playing" -msgstr "总是开始播放" - -msgid "Pressing \"Previous\" in player will..." -msgstr "点击“上一首”将会..." - -msgid "Jump to previous song right away" -msgstr "立即跳到上首歌" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "按一次重新播放歌曲,连按两次则播放上首歌" - -msgid "Double clicking a song will..." -msgstr "双击歌曲将..." - -msgid "Append to the playlist" -msgstr "追加至播放列表" - -msgid "Replace the playlist" -msgstr "移除播放列表" - -msgid "Add to the queue" -msgstr "添加到队列" - -msgid "Double clicking a song in the playlist will..." -msgstr "双击播放列表中的歌曲将..." - -msgid "Change the currently playing song" -msgstr "改变正在播放歌曲" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "使用键盘快捷键或者鼠标滑轮进行寻位" - -msgid "Time step" -msgstr "时间步长" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "这些文件夹将被扫描然后收录进您的媒体库" - -msgid "Add new folder..." -msgstr "添加新文件夹..." - -msgid "Remove folder" -msgstr "删除文件夹" - -msgid "Automatic updating" -msgstr "自动更新" - -msgid "Update the collection when Strawberry starts" -msgstr "Strawberry 启动时更新媒体库" - -msgid "Monitor the collection for changes" -msgstr "监控媒体库的更改" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "天" - -msgid "Preferred album art filenames (comma separated)" -msgstr "专辑封面的文件名(逗号分隔)" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "当查找专辑封面时,Strawberry将首先查找包含这些关键词的图片。\n" -"如果未能匹配,Strawberry将使用目录下最大的图片。" - -msgid "Automatically open single categories in the collection tree" -msgstr "自动打开媒体库树重的单个分类" - -msgid "Show dividers" -msgstr "显示分频器" - -msgid "Show album cover art in collection" -msgstr "在媒体库中显示专辑封面图稿" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "专辑封面像素图缓存" - -msgid "Enable Disk Cache" -msgstr "启用磁盘缓存" - -msgid "Disk Cache Size" -msgstr "磁盘缓存大小" - -msgid "Current disk cache in use:" -msgstr "当前已用磁盘缓存:" - -msgid "Clear Disk Cache" -msgstr "清空磁盘缓存" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "保存播放计数到歌曲标签(如果可能)" - -msgid "Save ratings to song tags when possible" -msgstr "保存评分到歌曲标签(如果可能)" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "当从磁盘重新读取歌曲时覆盖数据库中的播放计数" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "当从磁盘重新读取歌曲时覆盖数据库中的评分" - -msgid "Save playcounts and ratings to files now" -msgstr "现在保存播放计数和评分到文件" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "后端" - -msgid "Audio output" -msgstr "音频输出" - -msgid "Engine" -msgstr "引擎" - -msgid "ALSA plugin:" -msgstr "ALSA 插件:" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "选项" - -msgid "Enable volume control" -msgstr "启用音量控制" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "缓冲" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "缓冲时长" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "默认" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "回放增益" - -msgid "Use Replay Gain metadata if it is available" -msgstr "使用播放增益元数据(如果可用)" - -msgid "Replay Gain mode" -msgstr "回放增益模式" - -msgid "Radio (equal loudness for all tracks)" -msgstr "电台(所有曲目采用相同的音量)" - -msgid "Album (ideal loudness for all tracks)" -msgstr "专辑(所有曲目采用合适音量)" - -msgid "Apply compression to prevent clipping" -msgstr "允许压缩以阻止剪切" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "淡入淡出" - -msgid "Fade out when stopping a track" -msgstr "停止播放曲目时淡出" - -msgid "Cross-fade when changing tracks manually" -msgstr "手动换曲时淡入淡出" - -msgid "Cross-fade when changing tracks automatically" -msgstr "自动换曲时淡入淡出" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "同一专辑歌曲或者同一CUE sheet不淡出" - -msgid "Fading duration" -msgstr "淡入淡出时长" - -msgid "Fade out on pause / fade in on resume" -msgstr "暂停时淡出/恢复时淡入" - -msgid "Add song artist tag" -msgstr "添加歌曲艺术家标签" - -msgid "Add song album tag" -msgstr "添加歌曲专辑标签" - -msgid "Add song title tag" -msgstr "添加歌曲标题标签" - -msgid "Add song albumartist tag" -msgstr "添加歌曲专辑作者标签" - -msgid "Add song year tag" -msgstr "添加歌曲年份标签" - -msgid "Add song composer tag" -msgstr "添加歌曲作曲家标签" - -msgid "Add song performer tag" -msgstr "添加歌曲表演者标签" - -msgid "Add song grouping tag" -msgstr "添加歌曲分组标签" - -msgid "Add song disc tag" -msgstr "添加歌曲盘片标签" - -msgid "Add song track tag" -msgstr "添加歌曲曲目标签" - -msgid "Add song genre tag" -msgstr "添加歌曲流派标签" - -msgid "Add song length tag" -msgstr "添加歌曲长度标签" - -msgid "Add song play count" -msgstr "统计音乐播放次数" - -msgid "Add song skip count" -msgstr "统计跳过歌曲的次数" - -msgid "Add a new line if supported by the notification type" -msgstr "如果支持此通知类型,则添加一个新行" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "添加音乐文件" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "添加歌曲链接" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "添加歌曲评级" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "添加歌曲的原始年份标签" - -msgid "Custom text settings" -msgstr "自定义文本设置" - -msgid "Summary" -msgstr "总览" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "技术规格" - -msgid "Song Lyrics" -msgstr "歌词" - -msgid "Automatically search for album cover" -msgstr "自动搜索专辑封面" - -msgid "Font for headline" -msgstr "标题字体" - -msgid "Font" -msgstr "字体" - -msgid "Font size" -msgstr "字体大小" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "数据与歌词字体" - -msgid "Use alternating row colors" -msgstr "使用备用行颜色" - -msgid "Show bars on the currently playing track" -msgstr "在当前正在播放的音轨上显示栏" - -msgid "Show a glowing animation on the currently playing track" -msgstr "在当前播放的曲目上显示发光动画" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "如果歌曲不可用,继续播放列表中的下一项目" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "" - -msgid "Automatically select current playing track" -msgstr "自动选择当前播放曲目" - -msgid "Enable playlist toolbar" -msgstr "启用播放列表工具栏" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "插入歌曲时播放列表自动排序" - -msgid "When saving a playlist, file paths should be" -msgstr "保存播放列表时,保存路径应该为" - -msgid "A&utomatic" -msgstr "自动(&U)" - -msgid "Absolu&te" -msgstr "" - -msgid "Re&lative" -msgstr "" - -msgid "As&k when saving" -msgstr "保存时询问(&L)" - -msgid "Metadata" -msgstr "元数据" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "如果选择启用,在播放列表中点击一个已选择的歌曲则会直接打开标签编辑" - -msgid "Enable song metadata inline edition with click" -msgstr "启用单击后行内编辑元数据" - -msgid "Write metadata when saving playlists" -msgstr "" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "启用" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "" - -msgid "Show love button" -msgstr "显示喜欢按钮" - -msgid "Submit scrobbles every" -msgstr "" - -msgid " seconds" -msgstr " 秒" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "" - -msgid "Show dialog for errors" -msgstr "显示错误对话框" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "本地文件" - -msgid "CDDA" -msgstr "CDDA" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "流媒体" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "登录" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "用户令牌:" - -msgid "Covers" -msgstr "封面" - -msgid "Cover providers" -msgstr "封面提供方" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "选择想要的封面搜索提供方。" - -msgid "Authentication" -msgstr "验证" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "正在保存专辑封面" - -msgid "Save album covers in album directory" -msgstr "将专辑封面保存到专辑目录" - -msgid "Save album covers in cache directory" -msgstr "将专辑封面保存到缓存目录" - -msgid "Save album covers as embedded cover" -msgstr "将专辑封面保存为嵌入式封面" - -msgid "Filename:" -msgstr "文件名:" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "覆盖已存在的文件" - -msgid "Lowercase filename" -msgstr "小写字母文件名" - -msgid "Replace spaces with dashes" -msgstr "" - -msgid "Lyrics" -msgstr "歌词" - -msgid "Lyrics providers" -msgstr "歌词提供方" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "选择想要的歌词搜索提供方。" - -msgid "Network Proxy" -msgstr "网络代理" - -msgid "&Use the system proxy settings" -msgstr "使用系统代理设置(&U)" - -msgid "Direct internet connection" -msgstr "直接连接到互联网" - -msgid "&Manual proxy configuration" -msgstr "手动代理配置(&M)" - -msgid "HTTP proxy" -msgstr "HTTP 代理" - -msgid "SOCKS proxy" -msgstr "SOCKS 代理" - -msgid "Port" -msgstr "端口" - -msgid "Use authentication" -msgstr "使用认证" - -msgid "Username" -msgstr "用户名" - -msgid "Password" -msgstr "密码" - -msgid "Use proxy settings for streaming" -msgstr "使用串流代理设置" - -msgid "Appearance" -msgstr "外观" - -msgid "Style" -msgstr "风格" - -msgid "Use system theme icons" -msgstr "使用系统主题图标" - -msgid "Settings require restart." -msgstr "设置需要重启。" - -msgid "Tabbar colors" -msgstr "标签栏颜色" - -msgid "&Use the system default color" -msgstr "使用系统默认颜色(&U)" - -msgid "Use custom color" -msgstr "使用自定义颜色" - -msgid "Use gradient background" -msgstr "使用渐变色背景" - -msgid "Select tabbar color:" -msgstr "选择标签栏颜色:" - -msgid "Background image" -msgstr "背景图片" - -msgid "Default bac&kground image" -msgstr "默认背景图像(&K)" - -msgid "&No background image" -msgstr "无背景图像(&N)" - -msgid "The album cover of the currently playing song" -msgstr "目前正在播放的音乐的专辑封面" - -msgid "Albu&m cover" -msgstr "专辑封面(&M)" - -msgid "Custom image:" -msgstr "自定义图片:" - -msgid "Browse..." -msgstr "浏览..." - -msgid "Position" -msgstr "位置" - -msgid "Upper Left" -msgstr "左上" - -msgid "Upper Right" -msgstr "右上" - -msgid "Middle" -msgstr "" - -msgid "Bottom Left" -msgstr "左下" - -msgid "Bottom Right" -msgstr "右下" - -msgid "Max cover size" -msgstr "最大封面大小" - -msgid "Stretch image to fill playlist" -msgstr "拉伸图像来填充播放列表" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "不要裁剪图像" - -msgid "Blur amount" -msgstr "模糊量" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "不透明度" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "图标大小" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "大标签栏模式" - -msgid "Play control buttons" -msgstr "播放控制按钮" - -msgid "Configure buttons" -msgstr "配置按钮" - -msgid "Files, playlists and queue buttons" -msgstr "文件、播放列表和队列按钮" - -msgid "Tabbar small mode" -msgstr "小标签栏模式" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "系统高亮颜色" - -msgid "Custom color" -msgstr "自定义颜色" - -msgid "Select playlist playing song color:" -msgstr "选择播放列表正在播放歌曲的颜色:" - -msgid "Notifications" -msgstr "通知" - -msgid "Strawberry can show a message when the track changes." -msgstr "Strawberry 可在曲目发生变化时显示提示。" - -msgid "Notification type" -msgstr "通知类型" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "禁用" - -msgid "Show a &native desktop notification" -msgstr "显示原生桌面通知(&N)" - -msgid "Show a pretty OSD" -msgstr "显示漂亮的 OSD" - -msgid "Show a popup fro&m the system tray" -msgstr "从系统托盘显示悬浮窗(&M)" - -msgid "General settings" -msgstr "常规设置" - -msgid "Popup duration" -msgstr "弹出时长" - -msgid "Disable duration" -msgstr "关闭时长" - -msgid "Show a notification when I change the volume" -msgstr "改变音量是显示通知" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "在我更改了循环播放模式时弹出通知" - -msgid "Show a notification when I pause playback" -msgstr "在暂停播放时显示通知" - -msgid "Show a notification when I resume playback" -msgstr "在恢复播放时显示通知" - -msgid "Include album art in the notification" -msgstr "在通知中加入专辑封面" - -msgid "Custom message settings" -msgstr "自定义消息设置" - -msgid "Use a custom message for notifications" -msgstr "自定义通告信息" - -msgid "Body" -msgstr "通知正文" - -msgid "Pretty OSD options" -msgstr "漂亮的 OSD 选项" - -msgid "Background color" -msgstr "背景颜色" - -msgid "Text options" -msgstr "文本设置" - -msgid "Choose font..." -msgstr "选择字体..." - -msgid "Choose color..." -msgstr "选择颜色..." - -msgid "Background opacity" -msgstr "背景透明度" - -msgid "Basic Blue" -msgstr "基础蓝" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "自定义..." - -msgid "Enable fading" -msgstr "启用淡入淡出" - -msgid "Equalizer" -msgstr "均衡器" - -msgid "Preset:" -msgstr "预设:" - -msgid "Enable equalizer" -msgstr "启用均衡器" - -msgid "Enable stereo balancer" -msgstr "" - -msgid "Left" -msgstr "左" - -msgid "Balance" -msgstr "均衡" - -msgid "Right" -msgstr "右" - -msgid "About" -msgstr "关于" - -msgid "Strawberry Error" -msgstr "Strawberry 错误" - -msgid "Console" -msgstr "终端" - -msgid "Run" -msgstr "运行" - -msgid "Edit track information" -msgstr "编辑曲目信息" - -msgid "Date created" -msgstr "创建日期" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "修改日期" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "上次播放的" - -msgid "Play count" -msgstr "播放计数" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "位速率" - -msgid "Skip count" -msgstr "跳过计数" - -msgid "Path" -msgstr "路径" - -msgid "Filename" -msgstr "文件名" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "文件大小" - -msgid "Art Manual" -msgstr "艺术手册" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "重置播放计数" - -msgid "Change art" -msgstr "更改图稿" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "自动补全标签" - -msgid "Compilation" -msgstr "编译" - -msgid "Tags" -msgstr "标签" - -msgid "Complete lyrics automatically" -msgstr "自动填写歌词" - -msgid "Tag fetcher" -msgstr "标签提取程序" - -msgid "Sorry" -msgstr "抱歉" - -msgid "Strawberry was unable to find results for this file" -msgstr "Strawberry 无法为此文件查找结果" - -msgid "Select best possible match" -msgstr "选择最可能的匹配项" - -msgid "Add Stream" -msgstr "添加Stream" - -msgid "Enter the URL of a stream:" -msgstr "输入流 URL:" - -msgid "Enter username and password" -msgstr "输入用户名和密码" - -msgid "Import data from last.fm" -msgstr "从 Last.fm 导入数据" - -msgid "Choose data to import from last.fm" -msgstr "选择从 Last.fm 导入的数据" - -msgid "Play counts" -msgstr "播放计数" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "启动!" - -msgid "Close" -msgstr "关闭" - -msgid "Cancel" -msgstr "取消" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "不再显示此消息。" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "单击切换剩余时间和总计时间模式" - -msgid "You are not signed in." -msgstr "您未登录。" - -msgid "Sign out" -msgstr "注销" - -msgid "Signing in..." -msgstr "登录..." - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "艺术家" - -msgid "Albums" -msgstr "专辑" - -msgid "Songs" -msgstr "" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "" - -msgid "albums" -msgstr "专辑" - -msgid "songs" -msgstr "" - -msgid "Organize Files" -msgstr "整理文件" - -msgid "Destination" -msgstr "目标" - -msgid "After copying..." -msgstr "复制后..." - -msgid "Keep the original files" -msgstr "保留原始文件" - -msgid "Delete the original files" -msgstr "删除原始文件" - -msgid "Naming options" -msgstr "命名选项" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "

变量标记以%开头,例如: %artist %album %title

\n\n" -"

如果您用花括号\"{}\"将含有标记的部分文本括起来,此部分在标记内容为空时将自动隐藏。

" - -msgid "Insert..." -msgstr "插入..." - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "" - -msgid "Restrict characters to ASCII" -msgstr "" - -msgid "Allow extended ASCII characters" -msgstr "允许扩展 ASCII 字符" - -msgid "Replace spaces with underscores" -msgstr "" - -msgid "Overwrite existing files" -msgstr "覆盖已存在的文件" - -msgid "Copy album cover artwork" -msgstr "复制专辑封面图稿" - -msgid "Safely remove the device after copying" -msgstr "复制后安全移除设备" - -msgid "Press a key" -msgstr "按一个键" - -msgid "Global Shortcuts" -msgstr "全局快捷键" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "打开..." - -msgid "Use MATE shortcuts when available" -msgstr "使用 MATE 快捷键(如果可用)" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "使用 KDE(KGlobalAccel)快捷键(如果可用)" - -msgid "Use X11 shortcuts when available" -msgstr "使用 X11 快捷键(如果可用)" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "您需要在系统设置中开启\"控制您的电脑\"选项,允许Strawberry使用全局快捷键。" - -msgid "Shortcut" -msgstr "快捷键" - -msgctxt "Category label" -msgid "Action" -msgstr "操作" - -msgid "&None" -msgstr "无(&N)" - -msgid "&Default" -msgstr "&默认" - -msgid "&Custom" -msgstr "自定义(&C)" - -msgid "Change shortcut..." -msgstr "更改快捷键..." - -msgid "Device Properties" -msgstr "设备属性" - -msgid "Icon" -msgstr "图标" - -msgid "Hardware information" -msgstr "硬件信息" - -msgid "Hardware information is only available while the device is connected." -msgstr "硬件信息仅在设备连接上后可用。" - -msgid "Information" -msgstr "信息" - -msgid "Supported formats" -msgstr "支持的格式" - -msgid "This device supports the following file formats:" -msgstr "该设备支持以下文件格式:" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "Strawberry 可自动将要复制到设备的文件转换为它可以播放的格式。" - -msgid "Do not convert any music" -msgstr "不转换任何曲目" - -msgid "Convert any music that the device can't play" -msgstr "转换设备不能播放的音乐" - -msgid "Convert all music" -msgstr "转换全部音乐" - -msgid "Preferred format" -msgstr "首选格式" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "此设备必须在连接并打开之前,Strawberry可以检测它支持什么文件格式。" - -msgid "Open device" -msgstr "打开设备" - -msgid "Querying device..." -msgstr "正在查询设备..." - -msgid "File formats" -msgstr "文件格式" - -msgid "Transcode Music" -msgstr "音乐转码" - -msgid "Files to transcode" -msgstr "要转换的文件" - -msgid "Directory" -msgstr "目录" - -msgid "Add..." -msgstr "添加..." - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "添加目录及其子目录的所有曲目" - -msgid "Import..." -msgstr "导入..." - -msgid "Output options" -msgstr "输出选项" - -msgid "Audio format" -msgstr "音频格式" - -msgid "Options..." -msgstr "选项..." - -msgid "Alongside the originals" -msgstr "原始歌曲同一目录下" - -msgid "Select..." -msgstr "选择……" - -msgid "Progress" -msgstr "进度" - -msgid "Details..." -msgstr "详情..." - -msgid "Transcoder Log" -msgstr "转换日志" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "档案" - -msgid "Main profile (MAIN)" -msgstr "主要档案(MAIN)" - -msgid "Low complexity profile (LC)" -msgstr "低复杂度 (LC)" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "可变采样频率 (SSR)" - -msgid "Long term prediction profile (LTP)" -msgstr "长期预测 (LTP)" - -msgid "Use temporal noise shaping" -msgstr "使用瞬时降噪" - -msgid "Allow mid/side encoding" -msgstr "允许 M/S 编码 (和差编码)" - -msgid "Block type" -msgstr "屏蔽类型" - -msgid "Normal block type" -msgstr "普通块类型" - -msgid "No short blocks" -msgstr "无短块" - -msgid "No long blocks" -msgstr "无长块" - -msgid "Transcoding options" -msgstr "转码设置" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "质量" - -msgid "Fast" -msgstr "快速" - -msgid "Best" -msgstr "最佳" - -msgid "Use bitrate management engine" -msgstr "使用位速率管理引擎" - -msgid "Target bitrate" -msgstr "目标位速率" - -msgid "Minimum bitrate" -msgstr "最小比特率" - -msgid "disabled" -msgstr "关闭" - -msgid "Maximum bitrate" -msgstr "最大位速率" - -msgid "automatic" -msgstr "自动" - -msgid "Average bitrate" -msgstr "平均位速率" - -msgid "Encoding mode" -msgstr "编码模式" - -msgid "Auto" -msgstr "自动" - -msgid "Ultra wide band (UWB)" -msgstr "超宽带 (UWB)" - -msgid "Wide band (WB)" -msgstr "宽带 (WB)" - -msgid "Narrow band (NB)" -msgstr "窄带(NB)" - -msgid "Variable bit rate" -msgstr "可变比特率" - -msgid "Voice activity detection" -msgstr "语音活动检测" - -msgid "Discontinuous transmission" -msgstr "断续传输" - -msgid "Encoding complexity" -msgstr "编码复杂度" - -msgid "Frames per buffer" -msgstr "每次缓冲帧数" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "" - -msgid "Constant bitrate" -msgstr "固定位速率" - -msgid "Encoding engine quality" -msgstr "编码引擎质量" - -msgid "Standard" -msgstr "标准" - -msgid "High" -msgstr "高" - -msgid "Force mono encoding" -msgstr "强制单声道编码" - -msgid "Transcoding" -msgstr "转码" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "这些设置将用于“音乐转码”对话框,及向设备中复制音乐前的格式转换。" - -msgid "FLAC" -msgstr "FLAC" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "ASF(WMA)" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "服务器 URL" - -msgid "Authentication method:" -msgstr "认证方式:" - -msgid "Hex" -msgstr "十六进制" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "首选项" - -msgid "Use HTTP/2 when possible" -msgstr "使用 HTTP/2(如果可能)" - -msgid "Verify server certificate" -msgstr "验证服务器证书" - -msgid "Download album covers" -msgstr "下载专辑封面" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "测试" - -msgid "Delete songs" -msgstr "删除歌曲" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "使用 OAuth" - -msgid "Client ID" -msgstr "客户端 ID" - -msgid "API Token" -msgstr "API 令牌" - -msgid "Audio quality" -msgstr "音频质量" - -msgid "Search delay" -msgstr "延迟搜索" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "艺术家搜索限制条件" - -msgid "Albums search limit" -msgstr "专辑搜索限制" - -msgid "Songs search limit" -msgstr "" - -msgid "Fetch entire albums when searching songs" -msgstr "" - -msgid "Album cover size" -msgstr "专辑封面尺寸" - -msgid "Stream URL method" -msgstr "流媒体 URL 方式" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "应用账号" - -msgid "App Secret" -msgstr "应用秘密" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "情绪栏" - -msgid "Show a moodbar in the track progress bar" -msgstr "在曲目进度条中显示情绪栏" - -msgid "Save the .mood files directly in the songs folders" -msgstr "直接保存 .mood 文件到歌曲文件夹" - -msgid "Enabled" -msgstr "已启用" - -msgid "Return to Strawberry" -msgstr "回到 Strawberry" - -msgid "Success!" -msgstr "成功!" - -msgid "Please close your browser and return to Strawberry." -msgstr "请关闭你的浏览器,回到 Strawberry。" - diff --git a/src/translations/zh_TW.po b/src/translations/zh_TW.po deleted file mode 100644 index 03ae7952..00000000 --- a/src/translations/zh_TW.po +++ /dev/null @@ -1,4353 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: strawberrymusicplayer\n" -"X-Crowdin-Project-ID: 668188\n" -"X-Crowdin-Language: zh-TW\n" -"X-Crowdin-File: /master/src/translations/translations.pot\n" -"X-Crowdin-File-ID: 38\n" -"Project-Id-Version: strawberrymusicplayer\n" -"Language-Team: Chinese Traditional\n" -"Language: zh_TW\n" -"PO-Revision-Date: 2024-09-28 13:40\n" - -msgid "All Files (*)" -msgstr "" - -msgid "Context" -msgstr "" - -msgid "Collection" -msgstr "" - -msgid "Queue" -msgstr "" - -msgid "Playlists" -msgstr "" - -msgid "Smart playlists" -msgstr "" - -msgid "Files" -msgstr "" - -msgid "Radios" -msgstr "" - -msgid "Devices" -msgstr "" - -msgid "Subsonic" -msgstr "" - -msgid "Tidal" -msgstr "" - -msgid "Spotify" -msgstr "" - -msgid "Qobuz" -msgstr "" - -msgid "Show all songs" -msgstr "" - -msgid "Show only duplicates" -msgstr "" - -msgid "Show only untagged" -msgstr "" - -msgid "Configure collection..." -msgstr "" - -msgid "Play" -msgstr "" - -msgid "Stop after this track" -msgstr "" - -msgid "Toggle queue status" -msgstr "" - -msgid "Queue selected tracks to play next" -msgstr "" - -msgid "Toggle skip status" -msgstr "" - -msgid "Rescan song(s)..." -msgstr "" - -msgid "Copy URL(s)..." -msgstr "" - -msgid "Show in collection..." -msgstr "" - -msgid "Show in file browser..." -msgstr "" - -msgid "Organize files..." -msgstr "" - -msgid "Copy to collection..." -msgstr "" - -msgid "Move to collection..." -msgstr "" - -msgid "Copy to device..." -msgstr "" - -msgid "Delete from disk..." -msgstr "" - -msgid "Check for updates..." -msgstr "" - -msgid "Strawberry running under Rosetta" -msgstr "" - -#, qt-format -msgid "You are running Strawberry under Rosetta. Running Strawberry under Rosetta is unsupported and known to have issues. You should download Strawberry for the correct CPU architecture from %1" -msgstr "" - -msgid "Sponsoring Strawberry" -msgstr "" - -#, qt-format -msgid "Strawberry is free and open source software. If you like Strawberry, please consider sponsoring the project. For more information about sponsorship see our website %1" -msgstr "" - -msgid "Pause" -msgstr "" - -msgid "Dequeue track" -msgstr "" - -msgid "Dequeue selected tracks" -msgstr "" - -msgid "Queue track" -msgstr "" - -msgid "Queue selected tracks" -msgstr "" - -msgid "Queue to play next" -msgstr "" - -msgid "Unskip track" -msgstr "" - -msgid "Unskip selected tracks" -msgstr "" - -msgid "Skip track" -msgstr "" - -msgid "Skip selected tracks" -msgstr "" - -#, qt-format -msgid "Set %1 to \"%2\"..." -msgstr "" - -#, qt-format -msgid "Edit tag \"%1\"..." -msgstr "" - -msgid "Add to another playlist" -msgstr "" - -msgid "New playlist" -msgstr "" - -msgid "Add file" -msgstr "" - -msgid "Music" -msgstr "" - -msgid "Add folder" -msgstr "" - -msgid "Clear playlist" -msgstr "" - -#, qt-format -msgid "Playlist has %1 songs, too large to undo, are you sure you want to clear the playlist?" -msgstr "" - -msgid "Error" -msgstr "" - -msgid "None of the selected songs were suitable for copying to a device" -msgstr "" - -msgid "The version of Strawberry you've just updated to requires a full collection rescan because of the new features listed below:" -msgstr "" - -msgid "Would you like to run a full rescan right now?" -msgstr "" - -msgid "Collection rescan notice" -msgstr "" - -msgid "Usage" -msgstr "" - -msgid "options" -msgstr "" - -msgid "URL(s)" -msgstr "" - -msgid "Player options" -msgstr "" - -msgid "Start the playlist currently playing" -msgstr "" - -msgid "Play if stopped, pause if playing" -msgstr "" - -msgid "Pause playback" -msgstr "" - -msgid "Stop playback" -msgstr "" - -msgid "Stop playback after current track" -msgstr "" - -msgid "Skip backwards in playlist" -msgstr "" - -msgid "Skip forwards in playlist" -msgstr "" - -msgid "Set the volume to percent" -msgstr "" - -msgid "Increase the volume by 4 percent" -msgstr "" - -msgid "Decrease the volume by 4 percent" -msgstr "" - -msgid "Increase the volume by percent" -msgstr "" - -msgid "Decrease the volume by percent" -msgstr "" - -msgid "Seek the currently playing track to an absolute position" -msgstr "" - -msgid "Seek the currently playing track by a relative amount" -msgstr "" - -msgid "Restart the track, or play the previous track if within 8 seconds of start." -msgstr "" - -msgid "Playlist options" -msgstr "" - -msgid "Create a new playlist with files" -msgstr "" - -msgid "Append files/URLs to the playlist" -msgstr "" - -msgid "Loads files/URLs, replacing current playlist" -msgstr "" - -msgid "Play the th track in the playlist" -msgstr "" - -msgid "Play given playlist" -msgstr "" - -msgid "Other options" -msgstr "" - -msgid "Display the on-screen-display" -msgstr "" - -msgid "Toggle visibility for the pretty on-screen-display" -msgstr "" - -msgid "Change the language" -msgstr "" - -msgid "Resize the window" -msgstr "" - -msgid "Equivalent to --log-levels *:1" -msgstr "" - -msgid "Equivalent to --log-levels *:3" -msgstr "" - -msgid "Comma separated list of class:level, level is 0-3" -msgstr "" - -msgid "Print out version information" -msgstr "" - -#, qt-format -msgid "Unable to execute SQL query: %1" -msgstr "" - -#, qt-format -msgid "Failed SQL query: %1" -msgstr "" - -msgid "Integrity check" -msgstr "" - -msgid "Database corruption detected." -msgstr "" - -msgid "Backing up database" -msgstr "" - -msgid "Deleting files" -msgstr "" - -#, qt-format -msgid "Failed to create directory %1." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite." -msgstr "" - -#, qt-format -msgid "Destination file %1 exists, but not allowed to overwrite" -msgstr "" - -#, qt-format -msgid "Could not copy file %1 to %2." -msgstr "" - -msgid "Unknown" -msgstr "" - -msgid "LUFS" -msgstr "" - -msgid "LU" -msgstr "" - -msgid "You need GStreamer for this URL." -msgstr "" - -msgid "Preload function was not set for blocking operation." -msgstr "" - -#, qt-format -msgid "File %1 does not exist." -msgstr "" - -#, qt-format -msgid "File %1 is not recognized as a valid audio file." -msgstr "" - -msgid "CD playback is only available with the GStreamer engine." -msgstr "" - -#, qt-format -msgid "Could not open file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open CUE file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Could not open playlist file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer source element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer typefind element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't create GStreamer fakesink element for %1" -msgstr "" - -#, qt-format -msgid "Couldn't link GStreamer source, typefind and fakesink elements for %1" -msgstr "" - -msgid "Playlist" -msgstr "" - -msgid "1 day" -msgstr "" - -#, qt-format -msgid "%1 days" -msgstr "" - -msgid "Today" -msgstr "" - -msgid "Yesterday" -msgstr "" - -#, qt-format -msgid "%1 days ago" -msgstr "" - -msgid "Tomorrow" -msgstr "" - -#, qt-format -msgid "In %1 days" -msgstr "" - -msgid "Next week" -msgstr "" - -#, qt-format -msgid "In %1 weeks" -msgstr "" - -msgid "Show in file browser" -msgstr "" - -msgid "Too many songs selected." -msgstr "" - -#, qt-format -msgid "%1 songs in %2 different directories selected, are you sure you want to open them all?" -msgstr "" - -#, qt-format -msgid "Failed to load image from data for %1" -msgstr "" - -msgid "Success" -msgstr "" - -msgid "File is unsupported" -msgstr "" - -msgid "Filename is missing" -msgstr "" - -msgid "File does not exist" -msgstr "" - -msgid "File could not be opened" -msgstr "" - -msgid "Could not parse file" -msgstr "" - -msgid "Could save file" -msgstr "" - -msgid "Unknown error" -msgstr "" - -msgid "Prefix a search term with a field name to limit the search to that field, e.g.:" -msgstr "" - -msgid "artist" -msgstr "" - -#, qt-format -msgid "searches for all artists containing the word %1. " -msgstr "" - -#, qt-format -msgid "Search terms for numerical fields can be prefixed with %1 or %2 to refine the search, e.g.: " -msgstr "" - -msgid "rating" -msgstr "" - -#, qt-format -msgid "Multiple search terms can also be combined with \"%1\" (default) and \"%2\", as well as grouped with parentheses. " -msgstr "" - -msgid "Available fields" -msgstr "" - -msgid "Framerate" -msgstr "" - -#, qt-format -msgid "Low (%1 fps)" -msgstr "" - -#, qt-format -msgid "Medium (%1 fps)" -msgstr "" - -#, qt-format -msgid "High (%1 fps)" -msgstr "" - -#, qt-format -msgid "Super high (%1 fps)" -msgstr "" - -msgid "No analyzer" -msgstr "" - -msgid "Block analyzer" -msgstr "" - -msgid "Boom analyzer" -msgstr "" - -msgid "Turbine" -msgstr "" - -msgid "Sonogram" -msgstr "" - -msgid "WaveRubber" -msgstr "" - -msgid "Pre-amp" -msgstr "" - -msgid "Custom" -msgstr "" - -msgid "Classical" -msgstr "" - -msgid "Club" -msgstr "" - -msgid "Dance" -msgstr "" - -msgid "Full Bass" -msgstr "" - -msgid "Full Treble" -msgstr "" - -msgid "Full Bass + Treble" -msgstr "" - -msgid "Laptop/Headphones" -msgstr "" - -msgid "Large Hall" -msgstr "" - -msgid "Live" -msgstr "" - -msgid "Party" -msgstr "" - -msgid "Pop" -msgstr "" - -msgid "Reggae" -msgstr "" - -msgid "Rock" -msgstr "" - -msgid "Soft" -msgstr "" - -msgid "Ska" -msgstr "" - -msgid "Soft Rock" -msgstr "" - -msgid "Techno" -msgstr "" - -msgid "Zero" -msgstr "" - -msgid "Save preset" -msgstr "" - -msgid "Name" -msgstr "" - -msgid "Delete preset" -msgstr "" - -#, qt-format -msgid "Are you sure you want to delete the \"%1\" preset?" -msgstr "" - -#, qt-format -msgid "%1 dB" -msgstr "" - -msgid "Filetype" -msgstr "" - -msgid "Length" -msgstr "" - -msgid "Samplerate" -msgstr "" - -msgid "Bit depth" -msgstr "" - -msgid "Bitrate" -msgstr "" - -msgid "EBU R 128 Integrated Loudness" -msgstr "" - -msgid "EBU R 128 Loudness Range" -msgstr "" - -msgid "Show album cover" -msgstr "" - -msgid "Show song technical data" -msgstr "" - -msgid "Show song lyrics" -msgstr "" - -msgid "Automatically search for song lyrics" -msgstr "" - -msgid "No song playing" -msgstr "" - -#, qt-format -msgid "%1 song" -msgstr "" - -#, qt-format -msgid "%1 songs" -msgstr "" - -#, qt-format -msgid "%1 artist" -msgstr "" - -#, qt-format -msgid "%1 artists" -msgstr "" - -#, qt-format -msgid "%1 album" -msgstr "" - -#, qt-format -msgid "%1 albums" -msgstr "" - -msgid "kbps" -msgstr "" - -msgid "Saving playcounts and ratings" -msgstr "" - -msgid "Various artists" -msgstr "" - -msgid "Loading..." -msgstr "" - -#, qt-format -msgid "Unable to execute collection SQL query: %1" -msgstr "" - -#, qt-format -msgid "Updating %1 database." -msgstr "" - -msgid "Updating collection" -msgstr "" - -#, qt-format -msgid "Updating %1" -msgstr "" - -msgid "Your collection is empty!" -msgstr "" - -msgid "Click here to add some music" -msgstr "" - -msgid "Append to current playlist" -msgstr "" - -msgid "Replace current playlist" -msgstr "" - -msgid "Open in new playlist" -msgstr "" - -msgid "Search for this" -msgstr "" - -msgid "Edit track information..." -msgstr "" - -msgid "Edit tracks information..." -msgstr "" - -msgid "Rescan song(s)" -msgstr "" - -msgid "Show in various artists" -msgstr "" - -msgid "Don't show in various artists" -msgstr "" - -msgid "There are other songs in this album" -msgstr "" - -msgid "Would you like to move the other songs on this album to Various Artists as well?" -msgstr "" - -msgid "Show" -msgstr "" - -msgid "Group by" -msgstr "" - -msgid "Display options" -msgstr "" - -msgid "Group by Album artist/Album" -msgstr "" - -msgid "Group by Album artist/Album - Disc" -msgstr "" - -msgid "Group by Album artist/Year - Album" -msgstr "" - -msgid "Group by Album artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Artist/Album" -msgstr "" - -msgid "Group by Artist/Album - Disc" -msgstr "" - -msgid "Group by Artist/Year - Album" -msgstr "" - -msgid "Group by Artist/Year - Album - Disc" -msgstr "" - -msgid "Group by Genre/Album artist/Album" -msgstr "" - -msgid "Group by Genre/Artist/Album" -msgstr "" - -msgid "Group by Album Artist" -msgstr "" - -msgid "Group by Artist" -msgstr "" - -msgid "Group by Album" -msgstr "" - -msgid "Group by Genre/Album" -msgstr "" - -msgid "Advanced grouping..." -msgstr "" - -msgid "Grouping Name" -msgstr "" - -msgid "Grouping name:" -msgstr "" - -msgid "First level" -msgstr "" - -msgid "Second Level" -msgstr "" - -msgid "Third Level" -msgstr "" - -msgid "None" -msgstr "" - -msgid "Album artist" -msgstr "" - -msgid "Artist" -msgstr "" - -msgid "Album" -msgstr "" - -msgid "Album - Disc" -msgstr "" - -msgid "Year - Album" -msgstr "" - -msgid "Year - Album - Disc" -msgstr "" - -msgid "Original year - Album" -msgstr "" - -msgid "Original year - Album - Disc" -msgstr "" - -msgid "Disc" -msgstr "" - -msgid "Year" -msgstr "" - -msgid "Original year" -msgstr "" - -msgid "Genre" -msgstr "" - -msgid "Composer" -msgstr "" - -msgid "Performer" -msgstr "" - -msgid "Grouping" -msgstr "" - -msgid "File type" -msgstr "" - -msgid "Format" -msgstr "" - -msgid "Sample rate" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1" -msgstr "" - -#, qt-format -msgid "Could not write metadata to %1: %2" -msgstr "" - -msgid "Title" -msgstr "" - -msgid "Track" -msgstr "" - -msgid "Original Year" -msgstr "" - -msgid "Album Artist" -msgstr "" - -msgid "Play Count" -msgstr "" - -msgid "Skip Count" -msgstr "" - -msgid "Last Played" -msgstr "" - -msgid "Sample Rate" -msgstr "" - -msgid "Bit Depth" -msgstr "" - -msgid "File Name" -msgstr "" - -msgid "File Name (without path)" -msgstr "" - -msgid "File Size" -msgstr "" - -msgid "File Type" -msgstr "" - -msgid "Date Modified" -msgstr "" - -msgid "Date Created" -msgstr "" - -msgid "Comment" -msgstr "" - -msgid "Source" -msgstr "" - -msgid "Mood" -msgstr "" - -msgid "Rating" -msgstr "" - -msgid "CUE" -msgstr "" - -msgid "Integrated Loudness" -msgstr "" - -msgid "Loudness Range" -msgstr "" - -msgid "Undo" -msgstr "" - -msgid "Redo" -msgstr "" - -msgid "Load playlist" -msgstr "" - -msgid "No matches found. Clear the search box to show the whole playlist again." -msgstr "" - -msgid "stop" -msgstr "" - -msgid "Never" -msgstr "" - -msgid "&Hide..." -msgstr "" - -msgid "&Stretch columns to fit window" -msgstr "" - -msgid "&Reset columns to default" -msgstr "" - -msgid "&Lock rating" -msgstr "" - -msgid "&Align text" -msgstr "" - -msgid "&Left" -msgstr "" - -msgid "&Center" -msgstr "" - -msgid "&Right" -msgstr "" - -#, qt-format -msgid "&Hide %1" -msgstr "" - -msgid "New folder" -msgstr "" - -msgid "Delete" -msgstr "" - -msgctxt "Save playlist menu action." -msgid "Save playlist" -msgstr "" - -msgid "Enter the name of the folder" -msgstr "" - -msgid "Copy to device" -msgstr "" - -msgid "Playlist must be open first." -msgstr "" - -msgid "Remove playlists" -msgstr "" - -#, qt-format -msgid "You are about to remove %1 playlists from your favorites, are you sure?" -msgstr "" - -msgid "You can favorite playlists by clicking the star icon next to a playlist name" -msgstr "" - -msgid "Favorited playlists will be saved here" -msgstr "" - -msgid "Couldn't create playlist" -msgstr "" - -msgctxt "Title of the playlist save dialog." -msgid "Save playlist" -msgstr "" - -msgid "Unknown playlist extension" -msgstr "" - -msgid "Unknown file extension for playlist." -msgstr "" - -#, qt-format -msgid "%1 selected of" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n track(s)" -msgstr "" - -msgid "Automatic" -msgstr "" - -msgid "Relative" -msgstr "" - -msgid "Absolute" -msgstr "" - -msgid "Star playlist" -msgstr "" - -msgid "Close playlist" -msgstr "" - -msgid "Rename playlist..." -msgstr "" - -msgid "Save playlist..." -msgstr "" - -msgid "Rename playlist" -msgstr "" - -msgid "Enter a new name for this playlist" -msgstr "" - -msgid "Remove playlist" -msgstr "" - -msgid "You are about to remove a playlist which is not part of your favorite playlists: the playlist will be deleted (this action cannot be undone). \n" -"Are you sure you want to continue?" -msgstr "" - -msgid "Warn me when closing a playlist tab" -msgstr "" - -msgid "This option can be changed in the \"Behavior\" preferences" -msgstr "" - -msgid "Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar" -msgstr "" - -#, c-format, qt-plural-format -msgid "add %n songs" -msgstr "" - -#, c-format, qt-plural-format -msgid "remove %n songs" -msgstr "" - -#, c-format, qt-plural-format -msgid "move %n songs" -msgstr "" - -msgid "sort songs" -msgstr "" - -msgid "shuffle songs" -msgstr "" - -msgid "Hz" -msgstr "" - -msgid "Bit" -msgstr "" - -msgid "Error while loading audio CD." -msgstr "" - -msgid "Loading tracks" -msgstr "" - -msgid "Loading tracks info" -msgstr "" - -msgid "Saving CUE files is not supported." -msgstr "" - -#, qt-format -msgid "Don't know how to handle %1" -msgstr "" - -#, qt-format -msgid "All playlists (%1)" -msgstr "" - -#, qt-format -msgid "%1 playlists (%2)" -msgstr "" - -#, qt-format -msgid "Unknown filetype: %1" -msgstr "" - -#, qt-format -msgid "Could not open file %1" -msgstr "" - -#, qt-format -msgid "Directory %1 does not exist." -msgstr "" - -#, qt-format -msgid "Failed to open %1 for writing." -msgstr "" - -msgid "Loading smart playlist" -msgstr "" - -msgid "Collection search" -msgstr "" - -msgid "Find songs in your collection that match the criteria you specify." -msgstr "" - -msgid "Search terms" -msgstr "" - -msgid "A song will be included in the playlist if it matches these conditions." -msgstr "" - -msgid "Search options" -msgstr "" - -msgid "Choose how the playlist is sorted and how many songs it will contain." -msgstr "" - -#, qt-format -msgid "%1 songs found (showing %2)" -msgstr "" - -#, qt-format -msgid "%1 songs found" -msgstr "" - -msgid "after" -msgstr "" - -msgid "before" -msgstr "" - -msgid "on" -msgstr "" - -msgid "not on" -msgstr "" - -msgid "in the last" -msgstr "" - -msgid "not in the last" -msgstr "" - -msgid "between" -msgstr "" - -msgid "contains" -msgstr "" - -msgid "does not contain" -msgstr "" - -msgid "starts with" -msgstr "" - -msgid "ends with" -msgstr "" - -msgid "greater than" -msgstr "" - -msgid "less than" -msgstr "" - -msgid "equals" -msgstr "" - -msgid "not equals" -msgstr "" - -msgid "empty" -msgstr "" - -msgid "not empty" -msgstr "" - -msgid "A-Z" -msgstr "" - -msgid "Z-A" -msgstr "" - -msgid "oldest first" -msgstr "" - -msgid "newest first" -msgstr "" - -msgid "shortest first" -msgstr "" - -msgid "longest first" -msgstr "" - -msgid "smallest first" -msgstr "" - -msgid "biggest first" -msgstr "" - -msgid "Hours" -msgstr "" - -msgid "Days" -msgstr "" - -msgid "Weeks" -msgstr "" - -msgid "Months" -msgstr "" - -msgid "Years" -msgstr "" - -msgid "The second value must be greater than the first one!" -msgstr "" - -msgid "Add search term" -msgstr "" - -msgid "Newest tracks" -msgstr "" - -msgid "50 random tracks" -msgstr "" - -msgid "Ever played" -msgstr "" - -msgid "Never played" -msgstr "" - -msgid "Last played" -msgstr "" - -msgid "Most played" -msgstr "" - -msgid "Favourite tracks" -msgstr "" - -msgid "Least favourite tracks" -msgstr "" - -msgid "All tracks" -msgstr "" - -msgid "Dynamic random mix" -msgstr "" - -msgid "New smart playlist..." -msgstr "" - -msgid "Play next" -msgstr "" - -msgid "Edit smart playlist..." -msgstr "" - -msgid "Delete smart playlist" -msgstr "" - -msgid "Smart playlist" -msgstr "" - -msgid "Playlist type" -msgstr "" - -msgid "A smart playlist is a dynamic list of songs that come from your collection. There are different types of smart playlist that offer different ways of selecting songs." -msgstr "" - -msgid "Finish" -msgstr "" - -msgid "Choose a name for your smart playlist" -msgstr "" - -msgid "Abort" -msgstr "" - -msgid "All albums" -msgstr "" - -msgid "Albums with covers" -msgstr "" - -msgid "Albums without covers" -msgstr "" - -msgid "Really cancel?" -msgstr "" - -msgid "Closing this window will stop searching for album covers." -msgstr "" - -msgid "Don't stop!" -msgstr "" - -msgid "All artists" -msgstr "" - -#, qt-format -msgid "Got %1 covers out of %2 (%3 failed)" -msgstr "" - -#, qt-format -msgid "%1 transferred" -msgstr "" - -msgid "Export finished" -msgstr "" - -msgid "No covers to export." -msgstr "" - -#, qt-format -msgid "Exported %1 covers out of %2 (%3 skipped)" -msgstr "" - -#, qt-format -msgid "Could not save cover to file %1." -msgstr "" - -#, qt-format -msgid "Covers from %1" -msgstr "" - -msgid "Search" -msgstr "" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" -msgstr "" - -msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" -msgstr "" - -msgid "All files (*)" -msgstr "" - -msgid "Load cover from disk..." -msgstr "" - -msgid "Save cover to disk..." -msgstr "" - -msgid "Load cover from URL..." -msgstr "" - -msgid "Search for album covers..." -msgstr "" - -msgid "Unset cover" -msgstr "" - -msgid "Delete cover" -msgstr "" - -msgid "Clear cover" -msgstr "" - -msgid "Show fullsize..." -msgstr "" - -msgid "Search automatically" -msgstr "" - -msgid "Load cover from disk" -msgstr "" - -#, qt-format -msgid "Failed to open cover file %1 for reading: %2" -msgstr "" - -#, qt-format -msgid "Cover file %1 is empty." -msgstr "" - -msgid "unknown" -msgstr "" - -msgid "Save album cover" -msgstr "" - -#, qt-format -msgid "Failed to open cover file %1 for writing: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed writing cover to file %1." -msgstr "" - -#, qt-format -msgid "Failed to delete cover file %1: %2" -msgstr "" - -#, qt-format -msgid "Failed to write cover to file %1: %2" -msgstr "" - -msgid "Total network requests made" -msgstr "" - -msgid "Average image size" -msgstr "" - -msgid "Total bytes transferred" -msgstr "" - -msgid "Fetching cover error" -msgstr "" - -msgid "The site you requested does not exist!" -msgstr "" - -msgid "The site you requested is not an image!" -msgstr "" - -msgid "Genius Authentication" -msgstr "" - -msgid "Please open this URL in your browser" -msgstr "" - -msgid "Redirect missing token code!" -msgstr "" - -msgid "Received invalid reply from web browser." -msgstr "" - -msgid "Redirect from Genius is missing query items code or state." -msgstr "" - -msgid "General" -msgstr "" - -msgid "User interface" -msgstr "" - -msgid "Streaming" -msgstr "" - -msgid "Add directory..." -msgstr "" - -msgid "Write all playcounts and ratings to files" -msgstr "" - -msgid "Are you sure you want to write song playcounts and ratings to file for all songs in your collection?" -msgstr "" - -msgid "Enter your user token from" -msgstr "" - -msgid "Use Tidal settings to authenticate." -msgstr "" - -msgid "Use Spotify settings to authenticate." -msgstr "" - -msgid "Use Qobuz settings to authenticate." -msgstr "" - -#, qt-format -msgid "%1 needs authentication." -msgstr "" - -#, qt-format -msgid "%1 does not need authentication." -msgstr "" - -msgid "No provider selected." -msgstr "" - -msgid "Authentication failed" -msgstr "" - -#, qt-format -msgid "Manually unset (%1)" -msgstr "" - -#, qt-format -msgid "Set through album cover search (%1)" -msgstr "" - -#, qt-format -msgid "Automatically picked up from album directory (%1)" -msgstr "" - -#, qt-format -msgid "Embedded album cover art (%1)" -msgstr "" - -msgid "Select background image" -msgstr "" - -msgid "OSD Preview" -msgstr "" - -msgid "Drag to reposition" -msgstr "" - -msgid "About Strawberry" -msgstr "" - -#, qt-format -msgid "Version %1" -msgstr "" - -msgid "Strawberry is a music player and music collection organizer." -msgstr "" - -msgid "It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles." -msgstr "" - -#, qt-format -msgid "Strawberry is free software released under GPL. The source code is available on %1" -msgstr "" - -#, qt-format -msgid "You should have received a copy of the GNU General Public License along with this program. If not, see %1" -msgstr "" - -msgid "If you like Strawberry and can make use of it, consider sponsoring or donating." -msgstr "" - -#, qt-format -msgid "You can sponsor the author on %1. You can also make a one-time payment through %2." -msgstr "" - -msgid "Author and maintainer" -msgstr "" - -msgid "Contributors" -msgstr "" - -msgid "Clementine authors" -msgstr "" - -msgid "Clementine contributors" -msgstr "" - -msgid "Thanks to" -msgstr "" - -msgid "Thanks to all the other Amarok and Clementine contributors." -msgstr "" - -msgid "(different across multiple songs)" -msgstr "" - -msgid "Different art across multiple songs." -msgstr "" - -msgid "Previous" -msgstr "" - -msgid "Next" -msgstr "" - -msgid "Saving tracks" -msgstr "" - -#, qt-format -msgid "%1 songs selected." -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "Cover is unset." -msgstr "" - -msgid "Cover from embedded image." -msgstr "" - -#, qt-format -msgid "Cover from %1" -msgstr "" - -msgid "Cover art not set" -msgstr "" - -msgid "Album cover editing is only available for collection songs." -msgstr "" - -msgid "Cover changed: Will be cleared when saved." -msgstr "" - -msgid "Cover changed: Will be unset when saved." -msgstr "" - -msgid "Cover changed: Will be deleted when saved." -msgstr "" - -msgid "Cover changed: Will set new when saved." -msgstr "" - -msgid "Reset song play statistics" -msgstr "" - -msgid "Are you sure you want to reset this song's play statistics?" -msgstr "" - -msgid "loading..." -msgstr "" - -msgid "Not found." -msgstr "" - -msgid "Original tags" -msgstr "" - -msgid "Suggested tags" -msgstr "" - -msgid "Delete files" -msgstr "" - -msgid "The following files will be deleted from disk:" -msgstr "" - -msgid "Are you sure you want to continue?" -msgstr "" - -msgid "Receiving initial data from last.fm..." -msgstr "" - -#, qt-format -msgid "Receiving playcount for %1 songs and last played for %2 songs." -msgstr "" - -#, qt-format -msgid "Receiving last played for %1 songs." -msgstr "" - -#, qt-format -msgid "Receiving playcounts for %1 songs." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs and last played for %2 songs received." -msgstr "" - -#, qt-format -msgid "Last played for %1 songs received." -msgstr "" - -#, qt-format -msgid "Playcounts for %1 songs received." -msgstr "" - -msgid "Strawberry is running as a Snap" -msgstr "" - -msgid "It is detected that Strawberry is running as a Snap" -msgstr "" - -msgid "Strawberry is slower, and has restrictions when running as a Snap. Accessing the root filesystem (/) will not work. There also might be other restrictions such as accessing certain devices or network shares." -msgstr "" - -#, qt-format -msgid "For Ubuntu there is an official PPA repository available at %1." -msgstr "" - -#, qt-format -msgid "Official releases are available for Debian and Ubuntu which also work on most of their derivatives. See %1 for more information." -msgstr "" - -msgid "For a better experience please consider the other options above." -msgstr "" - -msgid "Copy your strawberry.conf and strawberry.db from your ~/snap directory to avoid losing configuration before you uninstall the snap:" -msgstr "" - -msgid "Uninstall the snap with:" -msgstr "" - -msgid "Install strawberry through PPA:" -msgstr "" - -msgid "Select directory for the playlists" -msgstr "" - -msgid "Directory does not exist." -msgstr "" - -msgid "Large sidebar" -msgstr "" - -msgid "Icons sidebar" -msgstr "" - -msgid "Small sidebar" -msgstr "" - -msgid "Plain sidebar" -msgstr "" - -msgid "Tabs on top" -msgstr "" - -msgid "Icons on top" -msgstr "" - -msgid "Available" -msgstr "" - -msgid "New songs" -msgstr "" - -msgid "Exceeded by" -msgstr "" - -msgid "Used" -msgstr "" - -msgid "Clear" -msgstr "" - -msgid "Reset" -msgstr "" - -msgid "Small album cover" -msgstr "" - -msgid "Large album cover" -msgstr "" - -msgid "Fit cover to width" -msgstr "" - -msgid "Show above status bar" -msgstr "" - -msgid "You are signed in." -msgstr "" - -#, qt-format -msgid "You are signed in as %1." -msgstr "" - -#, qt-format -msgid "Expires on %1" -msgstr "" - -#, qt-format -msgid "disc %1" -msgstr "" - -#, qt-format -msgid "track %1" -msgstr "" - -msgid "Paused" -msgstr "" - -msgid "Stopped" -msgstr "" - -#, qt-format -msgid "Stop playing after track: %1" -msgstr "" - -msgid "On" -msgstr "" - -msgid "Off" -msgstr "" - -msgid "Playlist finished" -msgstr "" - -#, qt-format -msgid "Volume %1%" -msgstr "" - -msgid "Don't shuffle" -msgstr "" - -msgid "Shuffle all" -msgstr "" - -msgid "Shuffle tracks in this album" -msgstr "" - -msgid "Shuffle albums" -msgstr "" - -msgid "Don't repeat" -msgstr "" - -msgid "Repeat track" -msgstr "" - -msgid "Repeat album" -msgstr "" - -msgid "Repeat playlist" -msgstr "" - -msgid "Stop after every track" -msgstr "" - -msgid "Intro tracks" -msgstr "" - -#, qt-format -msgid "Configure %1..." -msgstr "" - -msgid "Add to artists" -msgstr "" - -msgid "Add to albums" -msgstr "" - -msgid "Add to songs" -msgstr "" - -msgid "Enter search terms above to find music" -msgstr "" - -msgid "The streaming collection is empty!" -msgstr "" - -msgid "Click here to retrieve music" -msgstr "" - -msgid "Remove from favorites" -msgstr "" - -msgid "Open homepage" -msgstr "" - -msgid "Donate" -msgstr "" - -msgid "Refresh channels" -msgstr "" - -#, qt-format -msgid "Getting %1 channels" -msgstr "" - -#, qt-format -msgid "%1 Scrobbler Authentication" -msgstr "" - -msgid "Open URL in web browser?" -msgstr "" - -msgid "Press \"Save\" to copy the URL to clipboard and manually open it in a web browser." -msgstr "" - -msgid "Could not open URL. Please open this URL in your browser" -msgstr "" - -msgid "Invalid reply from web browser. Missing token." -msgstr "" - -msgid "Received invalid reply from web browser. Try another browser." -msgstr "" - -#, qt-format -msgid "Scrobbler %1 is not authenticated!" -msgstr "" - -#, qt-format -msgid "Scrobbler %1 error: %2" -msgstr "" - -msgid "ListenBrainz Authentication" -msgstr "" - -#, qt-format -msgid "Unable to scrobble %1 - %2 because of error: %3" -msgstr "" - -#, qt-format -msgid "Missing MusicBrainz recording ID for %1 %2 %3" -msgstr "" - -#, qt-format -msgid "ListenBrainz error: %1" -msgstr "" - -msgid "Missing username, please login to last.fm first!" -msgstr "" - -msgid "Organizing files" -msgstr "" - -msgid "Artist's initial" -msgstr "" - -msgctxt "Refers to bitrate in file organize dialog." -msgid "Bitrate" -msgstr "" - -msgid "File extension" -msgstr "" - -msgid "Error copying songs" -msgstr "" - -msgid "There were problems copying some songs. The following files could not be copied:" -msgstr "" - -msgid "Error deleting songs" -msgstr "" - -msgid "There were problems deleting some songs. The following files could not be deleted:" -msgstr "" - -msgid "Play/Pause" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Stop playing after current track" -msgstr "" - -msgid "Next track" -msgstr "" - -msgid "Previous track" -msgstr "" - -msgid "Restart or previous track" -msgstr "" - -msgid "Increase volume" -msgstr "" - -msgid "Decrease volume" -msgstr "" - -msgid "Mute" -msgstr "" - -msgid "Seek forward" -msgstr "" - -msgid "Seek backward" -msgstr "" - -msgid "Show/Hide" -msgstr "" - -msgid "Show OSD" -msgstr "" - -msgid "Toggle Pretty OSD" -msgstr "" - -msgid "Change shuffle mode" -msgstr "" - -msgid "Change repeat mode" -msgstr "" - -msgid "Enable/disable scrobbling" -msgstr "" - -msgid "Love" -msgstr "" - -#, qt-format -msgid "Press a key combination to use for %1..." -msgstr "" - -#, qt-format -msgid "The \"%1\" command could not be started." -msgstr "" - -#, qt-format -msgid "Shortcut for %1" -msgstr "" - -#, qt-format -msgid "Using X11 shortcuts on %1 is not recommended and can cause keyboard to become unresponsive!" -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MPRIS and KGlobalAccel." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in gnome-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through Gnome Settings Daemon and should be configured in cinnamon-settings-daemon instead." -msgstr "" - -#, qt-format -msgid " Shortcuts on %1 are usually used through MATE Settings Daemon and should be configured there instead." -msgstr "" - -msgid "Buffering" -msgstr "" - -msgid "D-Bus path" -msgstr "" - -msgid "Serial number" -msgstr "" - -msgid "Mount points" -msgstr "" - -msgid "Partition label" -msgstr "" - -msgid "UUID" -msgstr "" - -msgid "Connect device" -msgstr "" - -msgid "This is the first time you have connected this device. Strawberry will now scan the device to find music files - this may take some time." -msgstr "" - -msgid "This device will not work properly" -msgstr "" - -msgid "This is an MTP device, but you compiled Strawberry without libmtp support." -msgstr "" - -msgid "If you continue, this device will work slowly and songs copied to it may not work." -msgstr "" - -msgid "This is an iPod, but you compiled Strawberry without libgpod support." -msgstr "" - -#, qt-format -msgid "This type of device is not supported: %1" -msgstr "" - -#, qt-format -msgid "Updating %1%..." -msgstr "" - -msgid "Not connected" -msgstr "" - -msgid "Not mounted - double click to mount" -msgstr "" - -msgid "Double click to open" -msgstr "" - -#, qt-format -msgid "%1 song%2" -msgstr "" - -msgid "Safely remove device" -msgstr "" - -msgid "Forget device" -msgstr "" - -msgid "Device properties..." -msgstr "" - -msgid "Delete from device..." -msgstr "" - -msgid "Forgetting a device will remove it from this list and Strawberry will have to rescan all the songs again next time you connect it." -msgstr "" - -msgid "These files will be deleted from the device, are you sure you want to continue?" -msgstr "" - -msgid "Model" -msgstr "" - -msgid "Manufacturer" -msgstr "" - -#, qt-format -msgid "Could not copy %1 to %2: %3" -msgstr "" - -#, qt-format -msgid "Writing database failed: %1" -msgstr "" - -msgid "Writing database failed." -msgstr "" - -msgid "Loading iPod database" -msgstr "" - -msgid "An error occurred loading the iTunes database" -msgstr "" - -msgid "Mount point" -msgstr "" - -msgid "Device" -msgstr "" - -msgid "URI" -msgstr "" - -#, qt-format -msgid "Invalid MTP device: %1" -msgstr "" - -msgid "Could not open MTP device." -msgstr "" - -#, qt-format -msgid "MTP error: %1" -msgstr "" - -msgid "MTP device not found." -msgstr "" - -msgid "Loading MTP device" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1" -msgstr "" - -#, qt-format -msgid "Error connecting MTP device %1: %2" -msgstr "" - -#, qt-format -msgid "Could not create the GStreamer element \"%1\" - make sure you have all the required GStreamer plugins installed" -msgstr "" - -#, qt-format -msgid "Successfully written %1" -msgstr "" - -#, qt-format -msgid "Transcoding %1 files using %2 threads" -msgstr "" - -#, qt-format -msgid "Error processing %1: %2" -msgstr "" - -#, qt-format -msgid "Starting %1" -msgstr "" - -#, qt-format -msgid "Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed" -msgstr "" - -#, qt-format -msgid "Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed" -msgstr "" - -msgid "Start transcoding" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n remaining" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n finished" -msgstr "" - -#, c-format, qt-plural-format -msgid "%n failed" -msgstr "" - -msgid "Add files to transcode" -msgstr "" - -msgid "Open a directory to import music from" -msgstr "" - -msgid "Identifying song" -msgstr "" - -msgid "Fingerprinting song" -msgstr "" - -msgid "Downloading metadata" -msgstr "" - -msgid "Error while setting CDDA device to ready state." -msgstr "" - -msgid "Error while setting CDDA device to pause state." -msgstr "" - -msgid "Error while querying CDDA tracks." -msgstr "" - -msgid "Server URL is invalid." -msgstr "" - -msgid "Missing username or password." -msgstr "" - -msgid "Subsonic server URL is invalid." -msgstr "" - -msgid "Missing Subsonic username or password." -msgstr "" - -msgid "Retrieving albums..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Retrieving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Retrieving album covers for %1 albums..." -msgstr "" - -msgid "Configuration incomplete" -msgstr "" - -msgid "Missing server url, username or password." -msgstr "" - -msgid "Configuration incorrect" -msgstr "" - -msgid "Test successful!" -msgstr "" - -msgid "Test failed!" -msgstr "" - -msgid "Reply from Tidal is missing query items." -msgstr "" - -msgid "Missing Tidal API token." -msgstr "" - -msgid "Missing Tidal username." -msgstr "" - -msgid "Missing Tidal password." -msgstr "" - -msgid "Not authenticated with Tidal and reached maximum number of login attempts." -msgstr "" - -msgid "Not authenticated with Tidal." -msgstr "" - -msgid "Missing Tidal API token, username or password." -msgstr "" - -msgid "Authenticating..." -msgstr "" - -msgid "Receiving artists..." -msgstr "" - -msgid "Receiving albums..." -msgstr "" - -msgid "Receiving songs..." -msgstr "" - -msgid "Searching..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artist..." -msgstr "" - -#, qt-format -msgid "Receiving albums for %1 artists..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving songs for %1 albums..." -msgstr "" - -#, qt-format -msgid "Receiving album cover for %1 album..." -msgstr "" - -#, qt-format -msgid "Receiving album covers for %1 albums..." -msgstr "" - -msgid "No match." -msgstr "" - -msgid "Cancelled." -msgstr "" - -#, qt-format -msgid "Received URL with %1 encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Received URL with encrypted stream from Tidal. Strawberry does not currently support encrypted streams." -msgstr "" - -msgid "Missing Tidal client ID." -msgstr "" - -msgid "Missing API token." -msgstr "" - -msgid "Missing username." -msgstr "" - -msgid "Missing password." -msgstr "" - -msgid "Spotify Authentication" -msgstr "" - -msgid "Redirect missing token code or state!" -msgstr "" - -msgid "Not authenticated with Spotify." -msgstr "" - -msgid "Data missing error" -msgstr "" - -msgid "Maximum number of login attempts reached." -msgstr "" - -msgid "Missing Qobuz app ID." -msgstr "" - -msgid "Missing Qobuz username." -msgstr "" - -msgid "Missing Qobuz password." -msgstr "" - -msgid "Not authenticated with Qobuz." -msgstr "" - -msgid "Missing Qobuz app ID or secret." -msgstr "" - -msgid "Missing app id." -msgstr "" - -msgid "Show moodbar" -msgstr "" - -msgid "Moodbar style" -msgstr "" - -msgid "Normal" -msgstr "" - -msgid "Angry" -msgstr "" - -msgid "Frozen" -msgstr "" - -msgid "Happy" -msgstr "" - -msgid "System colors" -msgstr "" - -msgid "Strawberry Music Player" -msgstr "" - -msgid "F5" -msgstr "" - -msgid "&Play" -msgstr "" - -msgid "F6" -msgstr "" - -msgid "&Stop" -msgstr "" - -msgid "F7" -msgstr "" - -msgid "&Next track" -msgstr "" - -msgid "F8" -msgstr "" - -msgid "&Quit" -msgstr "" - -msgid "Ctrl+Q" -msgstr "" - -msgid "Ctrl+Alt+V" -msgstr "" - -msgid "&Clear playlist" -msgstr "" - -msgid "Ctrl+K" -msgstr "" - -msgid "Ctrl+E" -msgstr "" - -msgid "Renumber tracks in this order..." -msgstr "" - -msgid "Set value for all selected tracks..." -msgstr "" - -msgid "Edit tag..." -msgstr "" - -msgid "&Settings..." -msgstr "" - -msgid "Ctrl+P" -msgstr "" - -msgid "&About Strawberry" -msgstr "" - -msgid "F1" -msgstr "" - -msgid "S&huffle playlist" -msgstr "" - -msgid "Ctrl+H" -msgstr "" - -msgid "&Add file..." -msgstr "" - -msgid "Ctrl+Shift+A" -msgstr "" - -msgid "&Open file..." -msgstr "" - -msgid "Open audio &CD..." -msgstr "" - -msgid "&Cover Manager" -msgstr "" - -msgid "C&onsole" -msgstr "" - -msgid "&Shuffle mode" -msgstr "" - -msgid "&Repeat mode" -msgstr "" - -msgid "Remove from playlist" -msgstr "" - -msgid "&Equalizer" -msgstr "" - -msgid "&Transcode Music" -msgstr "" - -msgid "Add &folder..." -msgstr "" - -msgid "&Jump to the currently playing track" -msgstr "" - -msgid "Ctrl+J" -msgstr "" - -msgid "&New playlist" -msgstr "" - -msgid "Ctrl+N" -msgstr "" - -msgid "Save &playlist..." -msgstr "" - -msgid "Ctrl+S" -msgstr "" - -msgid "&Load playlist..." -msgstr "" - -msgid "Ctrl+Shift+O" -msgstr "" - -msgid "&Save all playlists..." -msgstr "" - -msgid "Go to next playlist tab" -msgstr "" - -msgid "Go to previous playlist tab" -msgstr "" - -msgid "&Update changed collection folders" -msgstr "" - -msgid "About &Qt" -msgstr "" - -msgid "&Mute" -msgstr "" - -msgid "Ctrl+M" -msgstr "" - -msgid "&Do a full collection rescan" -msgstr "" - -msgid "Stop collection scan" -msgstr "" - -msgid "Complete tags automatically..." -msgstr "" - -msgid "Ctrl+T" -msgstr "" - -msgid "Toggle scrobbling" -msgstr "" - -msgid "Remove &duplicates from playlist" -msgstr "" - -msgid "Remove &unavailable tracks from playlist" -msgstr "" - -msgid "Add file(s) to transcoder" -msgstr "" - -msgid "Add file to transcoder" -msgstr "" - -msgid "Add stream..." -msgstr "" - -msgid "Show sidebar" -msgstr "" - -msgid "Import data from last.fm..." -msgstr "" - -msgid "MenuPopupToolButton" -msgstr "" - -msgid "&Music" -msgstr "" - -msgid "P&laylist" -msgstr "" - -msgid "Help" -msgstr "" - -msgid "&Tools" -msgstr "" - -msgid "Collection advanced grouping" -msgstr "" - -msgid "You can change the way the songs in the collection are organized." -msgstr "" - -msgid "Group Collection by..." -msgstr "" - -msgid "Second level" -msgstr "" - -msgid "Third level" -msgstr "" - -msgid "Separate albums by grouping tag" -msgstr "" - -msgid "Collection Filter" -msgstr "" - -msgid "Entire collection" -msgstr "" - -msgid "Added today" -msgstr "" - -msgid "Added this week" -msgstr "" - -msgid "Added within three months" -msgstr "" - -msgid "Added this year" -msgstr "" - -msgid "Added this month" -msgstr "" - -msgid "Save current grouping" -msgstr "" - -msgid "Manage saved groupings" -msgstr "" - -msgid "Enter search terms here" -msgstr "" - -msgid "Form" -msgstr "" - -msgid "Saved Grouping Manager" -msgstr "" - -msgid "Remove" -msgstr "" - -msgid "Ctrl+Up" -msgstr "" - -msgid "File paths" -msgstr "" - -msgid "This can be changed later through the preferences" -msgstr "" - -msgid "Remember my choice" -msgstr "" - -msgid "Stop after each track" -msgstr "" - -msgid "Repeat" -msgstr "" - -msgid "Shuffle" -msgstr "" - -msgid "Dynamic mode is on" -msgstr "" - -msgid "New tracks will be added automatically." -msgstr "" - -msgid "Expand" -msgstr "" - -msgid "Repopulate" -msgstr "" - -msgid "Turn off" -msgstr "" - -msgid "QueueView" -msgstr "" - -msgid "Move down" -msgstr "" - -msgid "Move up" -msgstr "" - -msgid "Ctrl+Down" -msgstr "" - -msgid "Search mode" -msgstr "" - -msgid "Match every search term (AND)" -msgstr "" - -msgid "Match one or more search terms (OR)" -msgstr "" - -msgid "Include all songs" -msgstr "" - -msgid "Sorting" -msgstr "" - -msgid "Put songs in a random order" -msgstr "" - -msgid "Sort songs by" -msgstr "" - -msgid "Limits" -msgstr "" - -msgid "Show all the songs" -msgstr "" - -msgid "Only show the first" -msgstr "" - -msgid " songs" -msgstr "" - -msgid "Preview" -msgstr "" - -msgid "and" -msgstr "" - -msgid "ago" -msgstr "" - -msgid "New smart playlist" -msgstr "" - -msgid "Edit smart playlist" -msgstr "" - -msgid "Use dynamic mode" -msgstr "" - -msgid "In dynamic mode new tracks will be chosen and added to the playlist every time a song finishes." -msgstr "" - -msgid "Export covers" -msgstr "" - -msgid "Output" -msgstr "" - -msgid "Enter a filename for exported covers (no extension):" -msgstr "" - -msgid "Export downloaded covers" -msgstr "" - -msgid "Export embedded covers" -msgstr "" - -msgid "Existing covers" -msgstr "" - -msgid "Do not overwrite" -msgstr "" - -msgid "O&verwrite all" -msgstr "" - -msgid "Overwrite s&maller ones only" -msgstr "" - -msgid "Size" -msgstr "" - -msgid "Scale size" -msgstr "" - -msgid "Size:" -msgstr "" - -msgid "Pixel" -msgstr "" - -msgid "Cover Manager" -msgstr "" - -msgid "Fetch automatically" -msgstr "" - -msgid "Load" -msgstr "" - -msgid "Add to playlist" -msgstr "" - -msgid "View" -msgstr "" - -msgid "Total albums:" -msgstr "" - -msgid "Without cover:" -msgstr "" - -msgid "0" -msgstr "" - -msgid "Fetch Missing Covers" -msgstr "" - -msgid "Export Covers" -msgstr "" - -msgid "Fetch completed" -msgstr "" - -msgid "Load cover from URL" -msgstr "" - -msgid "Enter a URL to download a cover from the Internet:" -msgstr "" - -msgid "Settings" -msgstr "" - -msgid "Behavior" -msgstr "" - -msgid "Show system tray icon" -msgstr "" - -msgid "Keep running in the background when the window is closed" -msgstr "" - -msgid "Show song progress on system tray icon" -msgstr "" - -msgid "Show song progress on taskbar" -msgstr "" - -msgid "Resume playback on start" -msgstr "" - -msgid "Show playing widget" -msgstr "" - -msgid "On startup" -msgstr "" - -msgid "Remember from &last time" -msgstr "" - -msgid "Show the main window" -msgstr "" - -msgid "Hide the main window" -msgstr "" - -msgid "Show the main window maximized" -msgstr "" - -msgid "Show the main window minimized" -msgstr "" - -msgid "Language" -msgstr "" - -msgid "Use the system default" -msgstr "" - -msgid "You will need to restart Strawberry if you change the language." -msgstr "" - -msgid "Using the menu to add a song will..." -msgstr "" - -msgid "Never start playing" -msgstr "" - -msgid "Play if there is nothing already playing" -msgstr "" - -msgid "Always start playing" -msgstr "" - -msgid "Pressing \"Previous\" in player will..." -msgstr "" - -msgid "Jump to previous song right away" -msgstr "" - -msgid "Restart song, then jump to previous if pressed again" -msgstr "" - -msgid "Double clicking a song will..." -msgstr "" - -msgid "Append to the playlist" -msgstr "" - -msgid "Replace the playlist" -msgstr "" - -msgid "Add to the queue" -msgstr "" - -msgid "Double clicking a song in the playlist will..." -msgstr "" - -msgid "Change the currently playing song" -msgstr "" - -msgid "Seeking using a keyboard shortcut or mouse wheel" -msgstr "" - -msgid "Time step" -msgstr "" - -msgid " s" -msgstr "" - -msgid "Volume Increment" -msgstr "" - -msgid "These folders will be scanned for music to make up your collection" -msgstr "" - -msgid "Add new folder..." -msgstr "" - -msgid "Remove folder" -msgstr "" - -msgid "Automatic updating" -msgstr "" - -msgid "Update the collection when Strawberry starts" -msgstr "" - -msgid "Monitor the collection for changes" -msgstr "" - -msgid "Song fingerprinting and tracking" -msgstr "" - -msgid "Mark disappeared songs unavailable" -msgstr "" - -msgid "Perform song EBU R 128 analysis (required for EBU R 128 loudness normalization)" -msgstr "" - -msgid "Expire unavailable songs after" -msgstr "" - -msgid "days" -msgstr "" - -msgid "Preferred album art filenames (comma separated)" -msgstr "" - -msgid "When looking for album art Strawberry will first look for picture files that contain one of these words.\n" -"If there are no matches then it will use the largest image in the directory." -msgstr "" - -msgid "Automatically open single categories in the collection tree" -msgstr "" - -msgid "Show dividers" -msgstr "" - -msgid "Show album cover art in collection" -msgstr "" - -msgid "Use various artists for compilation albums" -msgstr "" - -msgid "Skip leading articles (\"the\", \"a\", \"an\") when sorting artist names" -msgstr "" - -msgid "Album cover pixmap cache" -msgstr "" - -msgid "Enable Disk Cache" -msgstr "" - -msgid "Disk Cache Size" -msgstr "" - -msgid "Current disk cache in use:" -msgstr "" - -msgid "Clear Disk Cache" -msgstr "" - -msgid "Song playcounts and ratings" -msgstr "" - -msgid "Save playcounts to song tags when possible" -msgstr "" - -msgid "Save ratings to song tags when possible" -msgstr "" - -msgid "Overwrite database playcount when songs are re-read from disk" -msgstr "" - -msgid "Overwrite database rating when songs are re-read from disk" -msgstr "" - -msgid "Save playcounts and ratings to files now" -msgstr "" - -msgid "Enable delete files in the right click context menu" -msgstr "" - -msgid "Backend" -msgstr "" - -msgid "Audio output" -msgstr "" - -msgid "Engine" -msgstr "" - -msgid "ALSA plugin:" -msgstr "" - -msgid "hw" -msgstr "" - -msgid "p&lughw" -msgstr "" - -msgid "pcm" -msgstr "" - -msgid "Exclusive mode (Experimental)" -msgstr "" - -msgid "Options" -msgstr "" - -msgid "Enable volume control" -msgstr "" - -msgid "Upmix / downmix to" -msgstr "" - -msgid "channels" -msgstr "" - -msgid "Improve headphone listening of stereo audio records (bs2b)" -msgstr "" - -msgid "Enable HTTP/2 for streaming" -msgstr "" - -msgid "Use strict SSL mode" -msgstr "" - -msgid "Buffer" -msgstr "" - -msgid " ms" -msgstr "" - -msgid "Buffer duration" -msgstr "" - -msgid "High watermark" -msgstr "" - -msgid "Low watermark" -msgstr "" - -msgid "Defaults" -msgstr "" - -msgid "Audio normalization" -msgstr "" - -msgid "No audio normalization" -msgstr "" - -msgid "Replay Gain" -msgstr "" - -msgid "Use Replay Gain metadata if it is available" -msgstr "" - -msgid "Replay Gain mode" -msgstr "" - -msgid "Radio (equal loudness for all tracks)" -msgstr "" - -msgid "Album (ideal loudness for all tracks)" -msgstr "" - -msgid "Apply compression to prevent clipping" -msgstr "" - -msgid "Fallback-gain" -msgstr "" - -msgid "EBU R 128 Loudness Normalization" -msgstr "" - -msgid "Perform track loudness normalization" -msgstr "" - -msgid "Target Level" -msgstr "" - -msgid "Fading" -msgstr "" - -msgid "Fade out when stopping a track" -msgstr "" - -msgid "Cross-fade when changing tracks manually" -msgstr "" - -msgid "Cross-fade when changing tracks automatically" -msgstr "" - -msgid "Except between tracks on the same album or in the same CUE sheet" -msgstr "" - -msgid "Fading duration" -msgstr "" - -msgid "Fade out on pause / fade in on resume" -msgstr "" - -msgid "Add song artist tag" -msgstr "" - -msgid "Add song album tag" -msgstr "" - -msgid "Add song title tag" -msgstr "" - -msgid "Add song albumartist tag" -msgstr "" - -msgid "Add song year tag" -msgstr "" - -msgid "Add song composer tag" -msgstr "" - -msgid "Add song performer tag" -msgstr "" - -msgid "Add song grouping tag" -msgstr "" - -msgid "Add song disc tag" -msgstr "" - -msgid "Add song track tag" -msgstr "" - -msgid "Add song genre tag" -msgstr "" - -msgid "Add song length tag" -msgstr "" - -msgid "Add song play count" -msgstr "" - -msgid "Add song skip count" -msgstr "" - -msgid "Add a new line if supported by the notification type" -msgstr "" - -msgid "%filename%" -msgstr "" - -msgid "Add song filename" -msgstr "" - -msgid "%url%" -msgstr "" - -msgid "Add song URL" -msgstr "" - -msgid "%rating%" -msgstr "" - -msgid "Add song rating" -msgstr "" - -msgid "%originalyear%" -msgstr "" - -msgid "Add song original year tag" -msgstr "" - -msgid "Custom text settings" -msgstr "" - -msgid "Summary" -msgstr "" - -msgid "Enable Items" -msgstr "" - -msgid "Technical Data" -msgstr "" - -msgid "Song Lyrics" -msgstr "" - -msgid "Automatically search for album cover" -msgstr "" - -msgid "Font for headline" -msgstr "" - -msgid "Font" -msgstr "" - -msgid "Font size" -msgstr "" - -msgid " pt" -msgstr "" - -msgid "Font for data and lyrics" -msgstr "" - -msgid "Use alternating row colors" -msgstr "" - -msgid "Show bars on the currently playing track" -msgstr "" - -msgid "Show a glowing animation on the currently playing track" -msgstr "" - -msgid "Continue to the next item in the playlist if a song is unavailable" -msgstr "" - -msgid "Grey out unavailable songs in playlists on playback" -msgstr "" - -msgid "Grey out unavailable songs in playlists on startup" -msgstr "" - -msgid "Automatically select current playing track" -msgstr "" - -msgid "Enable playlist toolbar" -msgstr "" - -msgid "Enable playlist clear button" -msgstr "" - -msgid "Automatically sort playlist when inserting songs" -msgstr "" - -msgid "When saving a playlist, file paths should be" -msgstr "" - -msgid "A&utomatic" -msgstr "" - -msgid "Absolu&te" -msgstr "" - -msgid "Re&lative" -msgstr "" - -msgid "As&k when saving" -msgstr "" - -msgid "Metadata" -msgstr "" - -msgid "If activated, clicking a selected song in the playlist view will let you edit the tag value directly" -msgstr "" - -msgid "Enable song metadata inline edition with click" -msgstr "" - -msgid "Write metadata when saving playlists" -msgstr "" - -msgid "Scrobbler" -msgstr "" - -msgid "Enable" -msgstr "" - -msgid "Songs are scrobbled if they have valid metadata and are longer than 30 seconds, have been playing for at least half its duration or for 4 minutes (whichever occurs earlier)." -msgstr "" - -msgid "Work in offline mode (Only cache scrobbles)" -msgstr "" - -msgid "Show scrobble button" -msgstr "" - -msgid "Show love button" -msgstr "" - -msgid "Submit scrobbles every" -msgstr "" - -msgid " seconds" -msgstr "" - -msgid "(This is the delay between when a song is scrobbled and when scrobbles are submitted to the server. Setting the time to 0 seconds will submit scrobbles immediately)." -msgstr "" - -msgid "Prefer album artist when sending scrobbles" -msgstr "" - -msgid "Show dialog for errors" -msgstr "" - -msgid "Strip \"remastered\" and similar from album and title" -msgstr "" - -msgid "Enable scrobbling for the following sources:" -msgstr "" - -msgid "Local file" -msgstr "" - -msgid "CDDA" -msgstr "" - -msgid "SomaFM" -msgstr "" - -msgid "Stream" -msgstr "" - -msgid "Radio Paradise" -msgstr "" - -msgid "Last.fm" -msgstr "" - -msgid "Login" -msgstr "" - -msgid "Libre.fm" -msgstr "" - -msgid "Listenbrainz" -msgstr "" - -msgid "User token:" -msgstr "" - -msgid "Covers" -msgstr "" - -msgid "Cover providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for covers." -msgstr "" - -msgid "Authentication" -msgstr "" - -msgid "Album cover types" -msgstr "" - -msgid "Saving album covers" -msgstr "" - -msgid "Save album covers in album directory" -msgstr "" - -msgid "Save album covers in cache directory" -msgstr "" - -msgid "Save album covers as embedded cover" -msgstr "" - -msgid "Filename:" -msgstr "" - -msgid "Pattern" -msgstr "" - -msgid "Random" -msgstr "" - -msgid "Overwrite existing file" -msgstr "" - -msgid "Lowercase filename" -msgstr "" - -msgid "Replace spaces with dashes" -msgstr "" - -msgid "Lyrics" -msgstr "" - -msgid "Lyrics providers" -msgstr "" - -msgid "Choose the providers you want to use when searching for lyrics." -msgstr "" - -msgid "Network Proxy" -msgstr "" - -msgid "&Use the system proxy settings" -msgstr "" - -msgid "Direct internet connection" -msgstr "" - -msgid "&Manual proxy configuration" -msgstr "" - -msgid "HTTP proxy" -msgstr "" - -msgid "SOCKS proxy" -msgstr "" - -msgid "Port" -msgstr "" - -msgid "Use authentication" -msgstr "" - -msgid "Username" -msgstr "" - -msgid "Password" -msgstr "" - -msgid "Use proxy settings for streaming" -msgstr "" - -msgid "Appearance" -msgstr "" - -msgid "Style" -msgstr "" - -msgid "Use system theme icons" -msgstr "" - -msgid "Settings require restart." -msgstr "" - -msgid "Tabbar colors" -msgstr "" - -msgid "&Use the system default color" -msgstr "" - -msgid "Use custom color" -msgstr "" - -msgid "Use gradient background" -msgstr "" - -msgid "Select tabbar color:" -msgstr "" - -msgid "Background image" -msgstr "" - -msgid "Default bac&kground image" -msgstr "" - -msgid "&No background image" -msgstr "" - -msgid "The album cover of the currently playing song" -msgstr "" - -msgid "Albu&m cover" -msgstr "" - -msgid "Custom image:" -msgstr "" - -msgid "Browse..." -msgstr "" - -msgid "Position" -msgstr "" - -msgid "Upper Left" -msgstr "" - -msgid "Upper Right" -msgstr "" - -msgid "Middle" -msgstr "" - -msgid "Bottom Left" -msgstr "" - -msgid "Bottom Right" -msgstr "" - -msgid "Max cover size" -msgstr "" - -msgid "Stretch image to fill playlist" -msgstr "" - -msgid "Keep aspect ratio" -msgstr "" - -msgid "Do not cut image" -msgstr "" - -msgid "Blur amount" -msgstr "" - -msgid "0px" -msgstr "" - -msgid "Opacity" -msgstr "" - -msgid "40%" -msgstr "" - -msgid "Icon sizes" -msgstr "" - -msgid "Playlist buttons" -msgstr "" - -msgid "Tabbar large mode" -msgstr "" - -msgid "Play control buttons" -msgstr "" - -msgid "Configure buttons" -msgstr "" - -msgid "Files, playlists and queue buttons" -msgstr "" - -msgid "Tabbar small mode" -msgstr "" - -msgid "Playlist playing song color" -msgstr "" - -msgid "System highlight color" -msgstr "" - -msgid "Custom color" -msgstr "" - -msgid "Select playlist playing song color:" -msgstr "" - -msgid "Notifications" -msgstr "" - -msgid "Strawberry can show a message when the track changes." -msgstr "" - -msgid "Notification type" -msgstr "" - -msgctxt "Refers to a disabled notification type in Notification settings." -msgid "Disabled" -msgstr "" - -msgid "Show a &native desktop notification" -msgstr "" - -msgid "Show a pretty OSD" -msgstr "" - -msgid "Show a popup fro&m the system tray" -msgstr "" - -msgid "General settings" -msgstr "" - -msgid "Popup duration" -msgstr "" - -msgid "Disable duration" -msgstr "" - -msgid "Show a notification when I change the volume" -msgstr "" - -msgid "Show a notification when I change the repeat/shuffle mode" -msgstr "" - -msgid "Show a notification when I pause playback" -msgstr "" - -msgid "Show a notification when I resume playback" -msgstr "" - -msgid "Include album art in the notification" -msgstr "" - -msgid "Custom message settings" -msgstr "" - -msgid "Use a custom message for notifications" -msgstr "" - -msgid "Body" -msgstr "" - -msgid "Pretty OSD options" -msgstr "" - -msgid "Background color" -msgstr "" - -msgid "Text options" -msgstr "" - -msgid "Choose font..." -msgstr "" - -msgid "Choose color..." -msgstr "" - -msgid "Background opacity" -msgstr "" - -msgid "Basic Blue" -msgstr "" - -msgid "Strawberry Red" -msgstr "" - -msgid "Custom..." -msgstr "" - -msgid "Enable fading" -msgstr "" - -msgid "Equalizer" -msgstr "" - -msgid "Preset:" -msgstr "" - -msgid "Enable equalizer" -msgstr "" - -msgid "Enable stereo balancer" -msgstr "" - -msgid "Left" -msgstr "" - -msgid "Balance" -msgstr "" - -msgid "Right" -msgstr "" - -msgid "About" -msgstr "" - -msgid "Strawberry Error" -msgstr "" - -msgid "Console" -msgstr "" - -msgid "Run" -msgstr "" - -msgid "Edit track information" -msgstr "" - -msgid "Date created" -msgstr "" - -msgid "Art Automatic" -msgstr "" - -msgid "Date modified" -msgstr "" - -msgid "Art Embedded" -msgstr "" - -msgctxt "A playlist's tag." -msgid "Last played" -msgstr "" - -msgid "Play count" -msgstr "" - -msgid "EBU R 128 integrated loudness" -msgstr "" - -msgid "Bit rate" -msgstr "" - -msgid "Skip count" -msgstr "" - -msgid "Path" -msgstr "" - -msgid "Filename" -msgstr "" - -msgid "Art Unset" -msgstr "" - -msgid "File size" -msgstr "" - -msgid "Art Manual" -msgstr "" - -msgid "EBU R 128 loudness range" -msgstr "" - -msgid "Reset play counts" -msgstr "" - -msgid "Change art" -msgstr "" - -msgid "Embedded cover" -msgstr "" - -msgid "Complete tags automatically" -msgstr "" - -msgid "Compilation" -msgstr "" - -msgid "Tags" -msgstr "" - -msgid "Complete lyrics automatically" -msgstr "" - -msgid "Tag fetcher" -msgstr "" - -msgid "Sorry" -msgstr "" - -msgid "Strawberry was unable to find results for this file" -msgstr "" - -msgid "Select best possible match" -msgstr "" - -msgid "Add Stream" -msgstr "" - -msgid "Enter the URL of a stream:" -msgstr "" - -msgid "Enter username and password" -msgstr "" - -msgid "Import data from last.fm" -msgstr "" - -msgid "Choose data to import from last.fm" -msgstr "" - -msgid "Play counts" -msgstr "" - -msgid "Warning: Play counts and last played from last.fm will completely replace the same data for the matched songs. Play counts will replace the data based on artist and song title for the same albums! Please backup your database before you start." -msgstr "" - -msgid "Go!" -msgstr "" - -msgid "Close" -msgstr "" - -msgid "Cancel" -msgstr "" - -msgid "Message Dialog" -msgstr "" - -msgid "Do not show this message again." -msgstr "" - -msgid "Select directory for saving playlists" -msgstr "" - -msgid "Type" -msgstr "" - -msgid "0:00:00" -msgstr "" - -msgid "Click to toggle between remaining time and total time" -msgstr "" - -msgid "You are not signed in." -msgstr "" - -msgid "Sign out" -msgstr "" - -msgid "Signing in..." -msgstr "" - -msgid "Streaming Tabs View" -msgstr "" - -msgid "Artists" -msgstr "" - -msgid "Albums" -msgstr "" - -msgid "Songs" -msgstr "" - -msgid "Refresh catalogue" -msgstr "" - -msgid "Streaming Search View" -msgstr "" - -msgid "artists" -msgstr "" - -msgid "albums" -msgstr "" - -msgid "songs" -msgstr "" - -msgid "Organize Files" -msgstr "" - -msgid "Destination" -msgstr "" - -msgid "After copying..." -msgstr "" - -msgid "Keep the original files" -msgstr "" - -msgid "Delete the original files" -msgstr "" - -msgid "Naming options" -msgstr "" - -msgid "

Tokens start with %, for example: %artist %album %title

\n\n" -"

If you surround sections of text that contain a token with curly-braces, that section will be hidden if the token is empty.

" -msgstr "" - -msgid "Insert..." -msgstr "" - -msgid "Remove problematic characters from filenames" -msgstr "" - -msgid "Restrict to characters allowed on FAT filesystems" -msgstr "" - -msgid "Restrict characters to ASCII" -msgstr "" - -msgid "Allow extended ASCII characters" -msgstr "" - -msgid "Replace spaces with underscores" -msgstr "" - -msgid "Overwrite existing files" -msgstr "" - -msgid "Copy album cover artwork" -msgstr "" - -msgid "Safely remove the device after copying" -msgstr "" - -msgid "Press a key" -msgstr "" - -msgid "Global Shortcuts" -msgstr "" - -msgid "Use Gnome (GSD) shortcuts when available" -msgstr "" - -msgid "Open..." -msgstr "" - -msgid "Use MATE shortcuts when available" -msgstr "" - -msgid "Use KDE (KGlobalAccel) shortcuts when available" -msgstr "" - -msgid "Use X11 shortcuts when available" -msgstr "" - -msgid "You need to launch System Preferences and allow Strawberry to \"control your computer\" to use global shortcuts in Strawberry." -msgstr "" - -msgid "Shortcut" -msgstr "" - -msgctxt "Category label" -msgid "Action" -msgstr "" - -msgid "&None" -msgstr "" - -msgid "&Default" -msgstr "" - -msgid "&Custom" -msgstr "" - -msgid "Change shortcut..." -msgstr "" - -msgid "Device Properties" -msgstr "" - -msgid "Icon" -msgstr "" - -msgid "Hardware information" -msgstr "" - -msgid "Hardware information is only available while the device is connected." -msgstr "" - -msgid "Information" -msgstr "" - -msgid "Supported formats" -msgstr "" - -msgid "This device supports the following file formats:" -msgstr "" - -msgid "Strawberry can automatically convert the music you copy to this device into a format that it can play." -msgstr "" - -msgid "Do not convert any music" -msgstr "" - -msgid "Convert any music that the device can't play" -msgstr "" - -msgid "Convert all music" -msgstr "" - -msgid "Preferred format" -msgstr "" - -msgid "This device must be connected and opened before Strawberry can see what file formats it supports." -msgstr "" - -msgid "Open device" -msgstr "" - -msgid "Querying device..." -msgstr "" - -msgid "File formats" -msgstr "" - -msgid "Transcode Music" -msgstr "" - -msgid "Files to transcode" -msgstr "" - -msgid "Directory" -msgstr "" - -msgid "Add..." -msgstr "" - -msgid "Add all tracks from a directory and all its subdirectories" -msgstr "" - -msgid "Import..." -msgstr "" - -msgid "Output options" -msgstr "" - -msgid "Audio format" -msgstr "" - -msgid "Options..." -msgstr "" - -msgid "Alongside the originals" -msgstr "" - -msgid "Select..." -msgstr "" - -msgid "Progress" -msgstr "" - -msgid "Details..." -msgstr "" - -msgid "Transcoder Log" -msgstr "" - -msgid " kbps" -msgstr "" - -msgid "Profile" -msgstr "" - -msgid "Main profile (MAIN)" -msgstr "" - -msgid "Low complexity profile (LC)" -msgstr "" - -msgid "Scalable sampling rate profile (SSR)" -msgstr "" - -msgid "Long term prediction profile (LTP)" -msgstr "" - -msgid "Use temporal noise shaping" -msgstr "" - -msgid "Allow mid/side encoding" -msgstr "" - -msgid "Block type" -msgstr "" - -msgid "Normal block type" -msgstr "" - -msgid "No short blocks" -msgstr "" - -msgid "No long blocks" -msgstr "" - -msgid "Transcoding options" -msgstr "" - -msgctxt "Sound quality" -msgid "Quality" -msgstr "" - -msgid "Fast" -msgstr "" - -msgid "Best" -msgstr "" - -msgid "Use bitrate management engine" -msgstr "" - -msgid "Target bitrate" -msgstr "" - -msgid "Minimum bitrate" -msgstr "" - -msgid "disabled" -msgstr "" - -msgid "Maximum bitrate" -msgstr "" - -msgid "automatic" -msgstr "" - -msgid "Average bitrate" -msgstr "" - -msgid "Encoding mode" -msgstr "" - -msgid "Auto" -msgstr "" - -msgid "Ultra wide band (UWB)" -msgstr "" - -msgid "Wide band (WB)" -msgstr "" - -msgid "Narrow band (NB)" -msgstr "" - -msgid "Variable bit rate" -msgstr "" - -msgid "Voice activity detection" -msgstr "" - -msgid "Discontinuous transmission" -msgstr "" - -msgid "Encoding complexity" -msgstr "" - -msgid "Frames per buffer" -msgstr "" - -msgid "Optimize for &quality" -msgstr "" - -msgid "Opti&mize for bitrate" -msgstr "" - -msgid "Constant bitrate" -msgstr "" - -msgid "Encoding engine quality" -msgstr "" - -msgid "Standard" -msgstr "" - -msgid "High" -msgstr "" - -msgid "Force mono encoding" -msgstr "" - -msgid "Transcoding" -msgstr "" - -msgid "These settings are used in the \"Transcode Music\" dialog, and when converting music before copying it to a device." -msgstr "" - -msgid "FLAC" -msgstr "" - -msgid "WavPack" -msgstr "" - -msgid "Vorbis" -msgstr "" - -msgid "Opus" -msgstr "" - -msgid "Speex" -msgstr "" - -msgid "AAC" -msgstr "" - -msgid "ASF (WMA)" -msgstr "" - -msgid "MP3" -msgstr "" - -msgid "Server URL" -msgstr "" - -msgid "Authentication method:" -msgstr "" - -msgid "Hex" -msgstr "" - -msgid "MD5 token (Recommended)" -msgstr "" - -msgid "Preferences" -msgstr "" - -msgid "Use HTTP/2 when possible" -msgstr "" - -msgid "Verify server certificate" -msgstr "" - -msgid "Download album covers" -msgstr "" - -msgid "Server-side scrobbling" -msgstr "" - -msgid "Test" -msgstr "" - -msgid "Delete songs" -msgstr "" - -msgid "Tidal support is not official and requires a API token from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "Use OAuth" -msgstr "" - -msgid "Client ID" -msgstr "" - -msgid "API Token" -msgstr "" - -msgid "Audio quality" -msgstr "" - -msgid "Search delay" -msgstr "" - -msgid "ms" -msgstr "" - -msgid "Artists search limit" -msgstr "" - -msgid "Albums search limit" -msgstr "" - -msgid "Songs search limit" -msgstr "" - -msgid "Fetch entire albums when searching songs" -msgstr "" - -msgid "Album cover size" -msgstr "" - -msgid "Stream URL method" -msgstr "" - -msgid "Append explicit to album title for explicit albums" -msgstr "" - -msgid "Basic authentication" -msgstr "" - -msgid "Authenticate" -msgstr "" - -msgid "

The GStreamer Spotify plugin is not detected, you will not be able to stream songs from Spotify without it. See Wiki for instructions on how to install the plugin.

" -msgstr "" - -msgid "Qobuz support is not official and requires an API app ID and secret from a registered application to work. We can't help you getting these." -msgstr "" - -msgid "App ID" -msgstr "" - -msgid "App Secret" -msgstr "" - -msgid "Base64 encoded secret" -msgstr "" - -msgid "Moodbar" -msgstr "" - -msgid "Show a moodbar in the track progress bar" -msgstr "" - -msgid "Save the .mood files directly in the songs folders" -msgstr "" - -msgid "Enabled" -msgstr "" - -msgid "Return to Strawberry" -msgstr "" - -msgid "Success!" -msgstr "" - -msgid "Please close your browser and return to Strawberry." -msgstr "" -