From 20d7d8e597d171742452d902e41d930dd781387b Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Fri, 26 Feb 2010 17:31:53 +0000 Subject: added option 'continue playback on startup' git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1587 90c681e8-e032-0410-971d-27865f9a5e38 --- src/ui/configdialog.cpp | 3 + src/ui/forms/configdialog.ui | 18 ++++- src/ui/mainwindow.cpp | 25 +++++- src/ui/mainwindow.h | 3 +- src/ui/translations/qmmp_cs.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_de.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_hu.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_it.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_lt.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_pl_PL.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_pt_BR.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_ru.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_tr.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_uk_UA.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_zh_CN.ts | 164 ++++++++++++++++++++------------------ src/ui/translations/qmmp_zh_TW.ts | 164 ++++++++++++++++++++------------------ 16 files changed, 1088 insertions(+), 929 deletions(-) (limited to 'src/ui') diff --git a/src/ui/configdialog.cpp b/src/ui/configdialog.cpp index f9c213cf6..933769a6e 100644 --- a/src/ui/configdialog.cpp +++ b/src/ui/configdialog.cpp @@ -123,6 +123,8 @@ void ConfigDialog::readSettings() //skin options ui.skinCursorsCheckBox->setChecked(settings.value("General/skin_cursors", FALSE).toBool()); ui.doubleSizeCheckBox->setChecked(settings.value("General/double_size", FALSE).toBool()); + //resume playback + ui.continuePlaybackCheckBox->setChecked(settings.value("General/resume_on_startup", FALSE).toBool()); //cover options ui.coverIncludeLineEdit->setText(gs->coverNameFilters(TRUE).join(",")); ui.coverExcludeLineEdit->setText(gs->coverNameFilters(FALSE).join(",")); @@ -432,6 +434,7 @@ void ConfigDialog::saveSettings() settings.setValue ("PlayList/opacity", 1.0 - (double)ui.plTransparencySlider->value()/100); settings.setValue ("General/openbox_compat", ui.openboxCheckBox->isChecked()); settings.setValue ("General/metacity_compat", ui.metacityCheckBox->isChecked()); + settings.setValue ("General/resume_on_startup", ui.continuePlaybackCheckBox->isChecked()); settings.setValue ("MainWindow/bitmap_font", ui.useBitmapCheckBox->isChecked()); settings.setValue ("General/skin_cursors", ui.skinCursorsCheckBox->isChecked()); settings.setValue ("General/double_size", ui.doubleSizeCheckBox->isChecked()); diff --git a/src/ui/forms/configdialog.ui b/src/ui/forms/configdialog.ui index a355740a8..190a48b28 100644 --- a/src/ui/forms/configdialog.ui +++ b/src/ui/forms/configdialog.ui @@ -848,7 +848,7 @@ - + Qt::Vertical @@ -861,6 +861,22 @@ + + + + Playback + + + + + + Continue playback on startup + + + + + + diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index b43c65aaf..433727d73 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006-2009 by Ilya Kotov * + * Copyright (C) 2006-2010 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -133,6 +133,8 @@ MainWindow::MainWindow(const QStringList& args, BuiltinCommandLineOption* option #endif if (m_startHidden && m_generalHandler->visibilityControl()) toggleVisibility(); + if(args.isEmpty()) + resume(); } @@ -330,12 +332,16 @@ void MainWindow::writeSettings() //last directory settings.setValue("last_dir",m_lastDir); settings.endGroup(); - // Repeat/Shuffle settings.beginGroup("Playlist"); settings.setValue("repeatable",m_display->isRepeatable()); settings.setValue("shuffle",m_display->isShuffle()); - + settings.endGroup(); + // playback state + settings.beginGroup("General"); + settings.setValue("resume_playback", m_core->state() == Qmmp::Playing && + settings.value("resume_on_startup", FALSE).toBool()); + settings.setValue("resume_playback_time", m_core->totalTime() > 0 ? m_core->elapsed() : 0); settings.endGroup(); } @@ -603,3 +609,16 @@ void MainWindow::keyPressEvent(QKeyEvent *ke) ke->modifiers(), ke->text(),ke->isAutoRepeat(), ke->count()); QApplication::sendEvent(m_playlist,&event); } + +void MainWindow::resume() +{ + QSettings settings(Qmmp::configFile(), QSettings::IniFormat); + settings.beginGroup("General"); + if(settings.value("resume_playback", FALSE).toBool()) + { + play(); + qint64 pos = settings.value("resume_playback_time").toLongLong(); + if(pos) + m_core->seek(pos); + } +} diff --git a/src/ui/mainwindow.h b/src/ui/mainwindow.h index 2d8b102fc..0fefc57b2 100644 --- a/src/ui/mainwindow.h +++ b/src/ui/mainwindow.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006-2009 by Ilya Kotov * + * Copyright (C) 2006-2010 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -103,6 +103,7 @@ private: void readSettings(); void writeSettings(); void createActions(); + void resume(); SoundCore *m_core; QMenu *m_mainMenu; MainDisplay *m_display; diff --git a/src/ui/translations/qmmp_cs.ts b/src/ui/translations/qmmp_cs.ts index b0da5043d..532794091 100644 --- a/src/ui/translations/qmmp_cs.ts +++ b/src/ui/translations/qmmp_cs.ts @@ -183,13 +183,13 @@ Soubor - + Artist Umělec - + Album Album @@ -204,72 +204,72 @@ Vypnuto - + Transports - + Decoders - + Engines - + Title Název - + Track number Číslo stopy - + Two-digit track number Dvoumístné číslo stopy - + Disc number Číslo disku - + Condition Stav - + Composer Skladatel - + File name Název souboru - + File path Cesta k souboru - + Genre Žánr - + Year Rok - + Comment Poznámka @@ -326,7 +326,7 @@ ??? - + Replay Gain Zisk při přehrávání @@ -404,14 +404,14 @@ - + Preferences Nastavení - + Information Informace @@ -456,38 +456,48 @@ Hloubka rekurzivního hledání: - + + Playback + + + + + Continue playback on startup + + + + Replay Gain mode: Režim úpravy zisku při přehrávání: - + Preamp: Předzesílení: - - + + dB dB - + Default gain: Výchozí zisk: - + Use peak info to prevent clipping Použít informaci o vrcholu k zabránění ořezu - + Output: - + 16-bit output @@ -502,73 +512,73 @@ Souborový dialog - + Proxy Proxy - + Enable proxy usage Povolit používání proxy - + Proxy host name: Adresa proxy: - + Proxy port: Port proxy: - + Use authentication with proxy Použít autorizaci pro proxy - + Proxy user name: Uživatelské jméno: - + Proxy password: Heslo: - + Archived skin Sbalené téma - + Unarchived skin Rozbalené téma - + Visualization Vizualizace - + Effects Efekty - + General Obecné - + Audio Zvuk - + Use software volume control Používat softwarové ovládání hlasitosti @@ -598,12 +608,12 @@ Převést %20 na mezery - + Select Skin Files Vybrat soubory s tématy - + Skin files Soubory s tématy @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Výběr adresáře - + Select one or more files to open Vyberte jeden či více souborů k otevření - + &Play Pře&hrát - + X X - + &Pause Pau&za - + C C - + &Stop &Stop - + V V - + &Previous &Předchozí - + Z Z - + &Next &Další - + B B - + &Jump To File Přeskočit na soubo&r - + J J - + &Settings &Nastavení - + Ctrl+P Ctrl+P - + &About O &aplikaci - + &Exit U&končit - + Ctrl+Q Ctrl+Q - - + + Playlist Files Seznamy skladeb - + Open Playlist Načíst seznam skladeb - + Save Playlist Uložit seznam skladeb - + Space Mezerník - + &About Qt O knihovně &Qt - + &Play/Pause &Přehrát/Pauza - + All Supported Bitstreams Všechny podporované formáty - + &Repeat Track &Opakovat stopu - + &Shuffle Za&míchat - + R O - + Ctrl+R Ctrl+R - + S M - + &Repeat Playlist &Opakovat seznam skladeb - + Tools Nástroje diff --git a/src/ui/translations/qmmp_de.ts b/src/ui/translations/qmmp_de.ts index d136090c5..47ffabbba 100644 --- a/src/ui/translations/qmmp_de.ts +++ b/src/ui/translations/qmmp_de.ts @@ -183,13 +183,13 @@ Dateiname - + Artist Interpret - + Album Album @@ -204,72 +204,72 @@ Deaktiviert - + Transports Transporte - + Decoders Decoder - + Engines - + Title Titel - + Track number Stücknummer - + Two-digit track number Zweistellige Stücknummer - + Disc number CD-Nummer - + Condition Zustand - + Genre Genre - + Composer Komponist - + File name Dateiname - + File path Dateipfad - + Year Jahr - + Comment Kommentar @@ -326,7 +326,7 @@ ??? - + Replay Gain Replay Gain @@ -404,14 +404,14 @@ - + Preferences Konfiguration - + Information Information @@ -456,38 +456,48 @@ Rekursive Suchtiefe: - + + Playback + + + + + Continue playback on startup + + + + Replay Gain mode: Replay-Gain-Modus: - + Preamp: - - + + dB dB - + Default gain: - + Use peak info to prevent clipping - + Output: Ausgabe: - + 16-bit output 16-Bit-Ausgabe @@ -502,73 +512,73 @@ Datei-Dialog - + Proxy Proxyserver - + Enable proxy usage Proxyserver verwenden - + Proxy host name: Name des Proxyservers: - + Proxy port: Port: - + Use authentication with proxy Authentisierung verwenden - + Proxy user name: Benutzername: - + Proxy password: Passwort: - + Archived skin Archiviertes Design - + Unarchived skin Nicht archiviertes Design - + Visualization Visualisierung - + Effects Effekte - + General Sonstige - + Audio Audio - + Use software volume control Softwaregesteuerte Lautstärkeregelung @@ -598,12 +608,12 @@ %20 in Leerzeichen umwandeln - + Select Skin Files Design-Dateien auswählen - + Skin files Design-Dateien @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Verzeichnis wählen - + Select one or more files to open Dateien hinzufügen - + &Play &Wiedergabe - + X X - + &Pause &Pause - + C C - + &Stop &Stopp - + V V - + &Previous &Vorheriger Titel - + Z Z - + &Next &Nächster Titel - + B B - + &Jump To File Springe zu &Titel - + J J - + &Settings &Einstellungen - + Ctrl+P Strg+P - + &About Ü&ber - + &Exit Be&enden - + Ctrl+Q Strg+Q - - + + Playlist Files Wiedergabelisten - + Open Playlist Wiedergabeliste öffnen - + Save Playlist Wiedergabeliste speichern - + Space Leertaste - + &About Qt Übe&r Qt - + &Play/Pause Wieder&gabe/Pause - + All Supported Bitstreams Alle unterstützten Formate - + &Repeat Track Tite&l wiederholen - + &Shuffle &Zufallswiedergabe - + R R - + Ctrl+R Strg+R - + S S - + &Repeat Playlist W&iedergabeliste wiederholen - + Tools Werkzeuge diff --git a/src/ui/translations/qmmp_hu.ts b/src/ui/translations/qmmp_hu.ts index 18cc04f68..8bddb5b01 100644 --- a/src/ui/translations/qmmp_hu.ts +++ b/src/ui/translations/qmmp_hu.ts @@ -173,12 +173,12 @@ ConfigDialog - + Archived skin Tömörített skin - + Unarchived skin Tömörítettlen skin @@ -193,33 +193,33 @@ Fájlnév - + Artist Előadó - + Album Album - + Title Cím - + Genre Műfaj - + Year Év - + Comment Megjegyzés @@ -234,62 +234,62 @@ - + Transports - + Decoders - + Engines - + Track number - + Two-digit track number - + Composer - + Disc number - + File name - + File path - + Condition - + Select Skin Files Skin fájl kiválasztása - + Skin files Skin fájlok @@ -449,81 +449,91 @@ - + Preferences Tulajdonságok - + Information Információ - + + Playback + + + + + Continue playback on startup + + + + 16-bit output - + Visualization Vizualizáció - + Effects Effektek - + General Általános - + Audio Audió - + Replay Gain - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control Szoftveres hangerőszabályzó használata @@ -610,37 +620,37 @@ - + Proxy Proxy - + Enable proxy usage Proxy használatának engedélyezése - + Proxy host name: Proxy host name: - + Proxy port: Proxy port: - + Use authentication with proxy Hitelesítés hasznáalta proxy-val - + Proxy user name: Proxy felhasználónév: - + Proxy password: Proxy jelszó: @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Válassz egy könyvtárat - + All Supported Bitstreams Minden támogatott bitráta - + Select one or more files to open Válassz egy vagy több fájlat megnyitásra - + &Play &Lejátszás - + X X - + &Pause &Szünet - + C C - + &Stop &Megállítás - + V V - + &Previous &Előző - + Z Z - + &Next &Következő - + B B - + &Play/Pause &Lejátszás/Szünet - + Space Szóköz - + &Repeat Playlist Lista &ismétlése - + &Repeat Track Számok i&smétlése - + &Shuffle &Véletlenszerű - + R - + Ctrl+R Crtl+R - + S S - + &Jump To File &Ugrás fájlra - + J J - + Tools Eszközök - + &Settings &Beállítások - + Ctrl+P Ctrl+P - + &About &Névjegy - + &About Qt N&évjegy: Qt - + &Exit &Kilépés - + Ctrl+Q Ctrl+Q - - + + Playlist Files Lejátszási lista fájl - + Open Playlist Lista megnyitása - + Save Playlist Lista mentése diff --git a/src/ui/translations/qmmp_it.ts b/src/ui/translations/qmmp_it.ts index 7b0feaba0..b86d8446c 100644 --- a/src/ui/translations/qmmp_it.ts +++ b/src/ui/translations/qmmp_it.ts @@ -183,13 +183,13 @@ File - + Artist Interprete - + Album Album @@ -204,72 +204,72 @@ - + Transports - + Decoders - + Engines - + Title Titolo - + Track number Traccia n° - + Two-digit track number Traccia n° a due cifre - + Disc number Disco n° - + Condition Condizione - + Genre Genere - + Composer Compositore - + File name Nome file - + File path Percorso file - + Year Anno - + Comment Commento @@ -333,14 +333,14 @@ - + Preferences Impostazioni preferite - + Information Informazioni @@ -366,17 +366,17 @@ Avanzato - + 16-bit output - + Archived skin Tema archiviato - + Unarchived skin Tema non archiviato @@ -386,17 +386,17 @@ Connettività - + Visualization Visualizzazione - + Effects Effetti - + General Generale @@ -407,12 +407,12 @@ - + Audio Audio - + Replay Gain Guadagno riesecuzione @@ -462,38 +462,38 @@ Personalizza - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control Utilizza il controllo volume del programma @@ -553,37 +553,47 @@ Profondità ricerca ricorsiva: - + + Playback + + + + + Continue playback on startup + + + + Proxy Proxy - + Enable proxy usage Attiva il proxy - + Proxy host name: Nome del server : - + Proxy port: Porta del server : - + Use authentication with proxy Usa autenticazione con il proxy - + Proxy user name: Utente: - + Proxy password: Password : @@ -598,12 +608,12 @@ Converti il carattere « %20 » in spazi - + Select Skin Files Seleziona aspetto - + Skin files Aspetto @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Scegliere una cartella - + Select one or more files to open Seleziona uno o più brani da aprire - + &Play &Esegui - + X X - + &Pause &Pausa - + C C - + &Stop &Arresta - + V V - + &Previous &Precedente - + Z Z - + &Next &Successivo - + B B - + &Jump To File &Vai al brano - + J J - + &Settings &Configurazione - + Ctrl+P Ctrl+P - + &Exit &Esci - + Ctrl+Q Ctrl+Q - + Open Playlist Apri lista di brani - + Save Playlist Salva lista di brani - + &About &Informazioni - - + + Playlist Files Brani della lista - + Space Spazio - + &About Qt &Informazioni su Qt - + &Play/Pause &Esegui / Pausa - + All Supported Bitstreams Elenco di tutti i tipi di flusso accettati - + &Repeat Track &Ripeti brano - + &Shuffle &Ordine casuale - + R R - + Ctrl+R Ctrl+R - + S S - + &Repeat Playlist &Ripeti lista brani - + Tools Strumenti diff --git a/src/ui/translations/qmmp_lt.ts b/src/ui/translations/qmmp_lt.ts index 9910eda4a..581798ff3 100644 --- a/src/ui/translations/qmmp_lt.ts +++ b/src/ui/translations/qmmp_lt.ts @@ -183,13 +183,13 @@ Bylos pavadinimas - + Artist Atlikėjas - + Album Albumas @@ -204,72 +204,72 @@ - + Transports - + Decoders - + Engines - + Title Pavadinimas - + Track number Takelio numeris - + Two-digit track number Dviejų skaičių takelio numeris - + Disc number Disko numeris - + Condition Būklė - + Composer Autorius - + File name Bylos pavadinimas - + File path Bylos kelias - + Genre Žanras - + Year Metai - + Comment Komentaras @@ -333,14 +333,14 @@ - + Preferences Nustatymai - + Information Informacija @@ -366,17 +366,17 @@ Papildomi - + 16-bit output - + Archived skin Suspausta tema - + Unarchived skin Išskleista tema @@ -386,17 +386,17 @@ Tinklas - + Visualization Vizualizacija - + Effects Efektai - + General Bendri @@ -407,12 +407,12 @@ - + Audio Audio - + Replay Gain Neįsivaizduoju kaip verst @@ -463,38 +463,38 @@ Nustatyti - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control Naudoti programinį garso valdymą @@ -554,37 +554,47 @@ Rekursinės paieškos gylis - + + Playback + + + + + Continue playback on startup + + + + Proxy Proxy - + Enable proxy usage Įjungti proxy palaikymą - + Proxy host name: Proxy serveris: - + Proxy port: Proxy portas: - + Use authentication with proxy Naudoti proxy autentifikavimą - + Proxy user name: Proxy vartotojo vardas: - + Proxy password: Proxy slaptažodis: @@ -599,12 +609,12 @@ Paversti %20 į tarpus - + Select Skin Files Pasirinkti temų bylas - + Skin files Temų bylos @@ -955,168 +965,168 @@ MainWindow - + Choose a directory Pasirinkite aplanką - + Select one or more files to open Pasirinkite vieną ar kelias bylas atvėrimui - + &Play &Groti - + X - + &Pause &Pristabdyti - + C - + &Stop &Sustabdyti - + V - + &Previous &Ankstesnis - + Z - + &Next &Sekantis - + B - + &Jump To File &Pereiti prie bylos - + J - + &Settings &Nustatymai - + Ctrl+P - + &Exit &Išeiti - + Ctrl+Q - + Open Playlist Atverti grojaraštį - + Save Playlist Išsaugoti grojaraštį - + &About &Apie - - + + Playlist Files Grojaraščio bylos - + Space - + &About Qt &Apie Qt - + &Play/Pause &Groti/Pristabdyti - + All Supported Bitstreams Palaikomi bylų tipai - + &Repeat Track &Kartoti takelį - + &Shuffle &Atsitiktine tvarka - + R - + Ctrl+R - + S - + &Repeat Playlist &Kartoti grojaraštį - + Tools Įrankiai diff --git a/src/ui/translations/qmmp_pl_PL.ts b/src/ui/translations/qmmp_pl_PL.ts index 4fb17ff20..5a8f310ee 100644 --- a/src/ui/translations/qmmp_pl_PL.ts +++ b/src/ui/translations/qmmp_pl_PL.ts @@ -183,13 +183,13 @@ Nazwa pliku - + Artist Artysta - + Album Album @@ -204,72 +204,72 @@ Wyłączone - + Transports - + Decoders - + Engines - + Title Tytuł - + Track number Numer utworu - + Two-digit track number Dwuznakowy numer utworu - + Disc number Numer albumu - + Condition Warunek - + Genre Gatunek - + Composer Kompozytor - + File name Nazwa pliku - + File path Lokalizacja - + Year Rok - + Comment Komentarz @@ -333,14 +333,14 @@ - + Preferences Ustawienia - + Information Informacje @@ -366,17 +366,17 @@ Zaawansowane - + 16-bit output - + Archived skin Skompresowana skórka - + Unarchived skin Niekompresowana skórka @@ -386,17 +386,17 @@ Sieć - + Visualization Wizualizacje - + Effects Efekty - + General Ogólne @@ -407,12 +407,12 @@ - + Audio Dźwięk - + Replay Gain @@ -462,38 +462,38 @@ Dostosuj - + Replay Gain mode: Tryb Replay Gain: - + Preamp: - - + + dB - + Default gain: Domyślne wzmocnienie: - + Use peak info to prevent clipping Użyj informacji peak by zapobiec "klipnięciom" - + Output: - + Use software volume control Użyj programowej regulacji głośności @@ -553,37 +553,47 @@ Głębokość rekursywnego przeszukiwania: - + + Playback + + + + + Continue playback on startup + + + + Proxy Proxy - + Enable proxy usage Włącz proxy - + Proxy host name: Nazwa hosta proxy: - + Proxy port: Port proxy: - + Use authentication with proxy Użyj autoryzacji z proxy - + Proxy user name: Nazwa użytkownika: - + Proxy password: Hasło: @@ -598,12 +608,12 @@ Konwertuj sekwencje %20 na spacje - + Select Skin Files Wybierz skórę - + Skin files Pliki skór @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Wybierz katalog - + Select one or more files to open Wybierz jeden lub więcej plików do otwarcia - + &Play &Odtwarzaj - + X X - + &Pause &Wstrzymaj - + C C - + &Stop &Zatrzymaj - + V V - + &Previous &Poprzedni - + Z Z - + &Next &Następny - + B B - + &Jump To File &Skocz do pliku - + J J - + &Settings &Ustawienia - + Ctrl+P Ctrl+P - + &Exit &Wyjście - + Ctrl+Q Ctrl+Q - + Open Playlist Otwórz listę odtwarzania - + Save Playlist Zapisz listę odtwarzania - + &About &O programie - - + + Playlist Files Pliki listy odtwarzania - + Space - + &About Qt &O Qt - + &Play/Pause &Odtwarzaj/Wstrzymaj - + All Supported Bitstreams Wszystkie wspierane formaty - + &Repeat Track &Powtórz utwór - + &Shuffle &Losowo - + R - + Ctrl+R - + S - + &Repeat Playlist Powtó&rz listę odtwarzania - + Tools Narzędzia diff --git a/src/ui/translations/qmmp_pt_BR.ts b/src/ui/translations/qmmp_pt_BR.ts index e4c52ff2f..72305f88b 100644 --- a/src/ui/translations/qmmp_pt_BR.ts +++ b/src/ui/translations/qmmp_pt_BR.ts @@ -183,13 +183,13 @@ Nome do Arquivo - + Artist Artista - + Album Álbum @@ -204,72 +204,72 @@ - + Transports - + Decoders - + Engines - + Title Título - + Track number - + Two-digit track number - + Disc number - + Condition - + Genre Gênero - + Composer - + File name - + File path - + Year Ano - + Comment Comentário @@ -333,14 +333,14 @@ - + Preferences Preferências - + Information Informações @@ -366,17 +366,17 @@ Avançado - + 16-bit output - + Archived skin - + Unarchived skin @@ -386,17 +386,17 @@ - + Visualization - + Effects - + General @@ -407,12 +407,12 @@ - + Audio - + Replay Gain @@ -462,38 +462,38 @@ - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control @@ -553,37 +553,47 @@ - + + Playback + + + + + Continue playback on startup + + + + Proxy - + Enable proxy usage - + Proxy host name: - + Proxy port: - + Use authentication with proxy - + Proxy user name: - + Proxy password: @@ -598,12 +608,12 @@ - + Select Skin Files - + Skin files @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Escolher o diretorio - + Select one or more files to open Selecionar um ou mais arquivos - + &Play Tocar - + X - + &Pause Pausar - + C - + &Stop Parar - + V - + &Previous Anterior - + Z - + &Next Próximo - + B - + &Jump To File Pular para arquivo - + J - + &Settings Configurações - + Ctrl+P - + &Exit Sair - + Ctrl+Q - + Open Playlist Abrir Playlist - + Save Playlist Salvar Playlist - + &About &Sobre - - + + Playlist Files ФArquivos de lista de músicas - + Space - + &About Qt - + &Play/Pause - + All Supported Bitstreams - + &Repeat Track - + &Shuffle - + R - + Ctrl+R - + S - + &Repeat Playlist - + Tools diff --git a/src/ui/translations/qmmp_ru.ts b/src/ui/translations/qmmp_ru.ts index da6165697..cc803c279 100644 --- a/src/ui/translations/qmmp_ru.ts +++ b/src/ui/translations/qmmp_ru.ts @@ -183,13 +183,13 @@ Имя файла - + Artist Исполнитель - + Album Альбом @@ -204,72 +204,72 @@ Отключено - + Transports Транспорты - + Decoders Декодеры - + Engines Внешние проигрыватели - + Title Название - + Track number Номер трека - + Two-digit track number 2-x разрядный номер трека - + Disc number Номер диска - + Condition Условие - + Genre Жанр - + Composer Композитор - + File name Имя файла - + File path Путь к файлу - + Year Год - + Comment Комментарий @@ -333,14 +333,14 @@ - + Preferences Настройки - + Information Информация @@ -366,17 +366,17 @@ Дополнительно - + 16-bit output 16-битный вывод - + Archived skin Упакованная тема - + Unarchived skin Распакованная тема @@ -386,17 +386,17 @@ Сеть - + Visualization Визуализация - + Effects Эффекты - + General Общие @@ -407,12 +407,12 @@ - + Audio Аудио - + Replay Gain Выравнивание громкости (Replay Gain) @@ -462,38 +462,38 @@ Настроить - + Replay Gain mode: Режим Replay Gain: - + Preamp: Предусиление: - - + + dB дБ - + Default gain: Усиление по умолчанию: - + Use peak info to prevent clipping Использовать пиковое значение для предотвращения срезания - + Output: Вывод: - + Use software volume control Использовать программную регулировку громкости @@ -553,37 +553,47 @@ Глубина рекурсивного поиска: - + + Playback + Воспроизведение + + + + Continue playback on startup + Продолжить воспроизведение при запуске + + + Proxy Прокси - + Enable proxy usage Использовать прокси - + Proxy host name: Прокси сервер: - + Proxy port: Прокси порт: - + Use authentication with proxy Использовать авторизацию на прокси - + Proxy user name: Имя пользователя прокси: - + Proxy password: Пароль прокси: @@ -598,12 +608,12 @@ Преобразовывать %20 в пробел - + Select Skin Files Выберите файлы обложек - + Skin files Файлы обложек @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Выберите директорию - + Select one or more files to open Выберите один или несколько файлов - + &Play &Воспроизвести - + X - + &Pause &Приостановить - + C - + &Stop &Стоп - + V - + &Previous &Предыдущий фрагмент - + Z - + &Next &Следующий фрагмент - + B - + &Jump To File &Перейти к файлу - + J - + &Settings &Настройки - + Ctrl+P - + &Exit &Выход - + Ctrl+Q - + Open Playlist Открыть список - + Save Playlist Сохранить список - + &About &О программе - - + + Playlist Files Файлы списков - + Space - + &About Qt &О библиотеке Qt - + &Play/Pause &Воспр/приост - + All Supported Bitstreams Все форматы - + &Repeat Track &Повторять трек - + &Shuffle &В случайном порядке - + R - + Ctrl+R - + S - + &Repeat Playlist &Повторять список - + Tools Сервис diff --git a/src/ui/translations/qmmp_tr.ts b/src/ui/translations/qmmp_tr.ts index ccaec8156..d8a21c16f 100644 --- a/src/ui/translations/qmmp_tr.ts +++ b/src/ui/translations/qmmp_tr.ts @@ -183,13 +183,13 @@ Dosya adı - + Artist Sanatçı - + Album Albüm @@ -204,72 +204,72 @@ - + Transports - + Decoders - + Engines - + Title Başlık - + Track number - + Two-digit track number - + Disc number - + Condition - + Genre Tarz - + Composer - + File name - + File path - + Year Yıl - + Comment Yorum @@ -333,14 +333,14 @@ - + Preferences Tercihler - + Information Bilgi @@ -366,17 +366,17 @@ Gelişmiş - + 16-bit output - + Archived skin Arşivlenmiş kabuk - + Unarchived skin Arşivlenmemiş kabuk @@ -386,17 +386,17 @@ Bağlanırlık - + Visualization Görsellik - + Effects Efektler - + General Genel @@ -407,12 +407,12 @@ - + Audio Ses - + Replay Gain @@ -462,38 +462,38 @@ - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control Yazılımsal ses kontrolünü kullan @@ -553,37 +553,47 @@ - + + Playback + + + + + Continue playback on startup + + + + Proxy Vekil sunucu - + Enable proxy usage Vekil sunucu kullanımını etkinleştir - + Proxy host name: Vekil sunucu adı: - + Proxy port: Vekil sunucu portu: - + Use authentication with proxy Vekil sunucu yetkilendirmesi kullan - + Proxy user name: Vekil sunucu kullanıcı adı: - + Proxy password: Vekil sunucu parolası: @@ -598,12 +608,12 @@ %20 yi boşluğa çevir - + Select Skin Files Kabuk Dosyası Seç - + Skin files Kabuk dosyaları @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Bir dizin seçin - + Select one or more files to open Açmak için bir yada daha çok dosya seçin - + &Play &Çal - + X X - + &Pause &Duraklat - + C C - + &Stop &Durdur - + V V - + &Previous &Önceki - + Z Z - + &Next &Sonraki - + B B - + &Jump To File &Parçaya Git - + J J - + &Settings &Ayarlar - + Ctrl+P Ctrl+P - + &Exit &Çıkış - + Ctrl+Q Ctrl+Q - + Open Playlist Çalma Listesini Aç - + Save Playlist Çalma Listesini Kaydet - + &About &Hakkında - - + + Playlist Files Çalma Listesi Dosyaları - + Space Boşluk - + &About Qt &Qt Hakkında - + &Play/Pause &Oynat/Duraklat - + All Supported Bitstreams Tüm Desteklenen Bitstreamler - + &Repeat Track &Parçayı Yinele - + &Shuffle &Rastgele - + R R - + Ctrl+R Ctrl+R - + S S - + &Repeat Playlist &Çalma Listesini Yinele - + Tools Araçlar diff --git a/src/ui/translations/qmmp_uk_UA.ts b/src/ui/translations/qmmp_uk_UA.ts index b7ebb6391..6c7525b86 100644 --- a/src/ui/translations/qmmp_uk_UA.ts +++ b/src/ui/translations/qmmp_uk_UA.ts @@ -183,13 +183,13 @@ Ім'я файлу - + Artist Виконавець - + Album Альбом @@ -204,72 +204,72 @@ Вимкнено - + Transports Транспорти - + Decoders Декодери - + Engines Зовнішні програвачі - + Title Назва - + Track number Номер треку - + Two-digit track number 2- розрядний номер трека - + Disc number Номер диску - + Condition Умова - + Genre Жанр - + Composer Композитор - + File name Ім'я файлу - + File path Шлях файлу - + Year Рік - + Comment Коментар @@ -333,14 +333,14 @@ - + Preferences Налаштування - + Information Інформація @@ -366,17 +366,17 @@ Додатково - + 16-bit output 16-бітний вивід - + Archived skin Упакована тема - + Unarchived skin Розпакована тема @@ -386,17 +386,17 @@ Мережа - + Visualization Візуалізація - + Effects Ефекти - + General Загальне @@ -407,12 +407,12 @@ - + Audio Звук - + Replay Gain Нормалізація гучності @@ -462,38 +462,38 @@ Налаштувати - + Replay Gain mode: Режим нормалізації гучності: - + Preamp: Преамплітуда: - - + + dB - + Default gain: Нормалізація за умовчанням: - + Use peak info to prevent clipping Використовувати інформацію піків для запобігання відсікання - + Output: Виведення: - + Use software volume control Використовувати програмний контроль гучності @@ -553,37 +553,47 @@ Глибина рекурсивного пошуку: - + + Playback + + + + + Continue playback on startup + + + + Proxy Проксі - + Enable proxy usage Використосувати проксі - + Proxy host name: Сервер проксі: - + Proxy port: Порт проксі: - + Use authentication with proxy Використовувати авторизацію на проксі - + Proxy user name: Ім'я користвача проксі: - + Proxy password: Пароль проксі: @@ -598,12 +608,12 @@ Конвертувати %20 в пробіл - + Select Skin Files Вибрати файли скінів - + Skin files Файли скінів @@ -954,168 +964,168 @@ MainWindow - + Choose a directory Виберіть теку - + Select one or more files to open Виберіть один чи кілька файлів - + &Play &Відтворити - + X - + &Pause &Пауза - + C - + &Stop &Стоп - + V - + &Previous &Назад - + Z - + &Next &Вперед - + B - + &Jump To File &Перейти до файлу - + J - + &Settings &Налаштування - + Ctrl+P - + &Exit &Вихід - + Ctrl+Q - + Open Playlist Відкрити список - + Save Playlist Зберегти список - + &About &Про програму - - + + Playlist Files Файли списків - + Space - + &About Qt &Про Qt - + &Play/Pause &Грати/Пауза - + All Supported Bitstreams Усі формати - + &Repeat Track &Повторити трек - + &Shuffle &Перемішати - + R - + Ctrl+R - + S - + &Repeat Playlist &Повторити список - + Tools Утиліти diff --git a/src/ui/translations/qmmp_zh_CN.ts b/src/ui/translations/qmmp_zh_CN.ts index a9d31677c..fa5935925 100644 --- a/src/ui/translations/qmmp_zh_CN.ts +++ b/src/ui/translations/qmmp_zh_CN.ts @@ -183,13 +183,13 @@ 文件名 - + Artist 艺术家 - + Album 专辑 @@ -204,72 +204,72 @@ - + Transports - + Decoders - + Engines - + Title 标题 - + Track number - + Two-digit track number - + Disc number - + Condition - + Genre 流派 - + Composer - + File name - + File path - + Year 年代 - + Comment 备注 @@ -333,14 +333,14 @@ - + Preferences 参数设置 - + Information 信息 @@ -366,17 +366,17 @@ 高级 - + 16-bit output - + Archived skin 压缩皮肤 - + Unarchived skin 未压缩皮肤 @@ -386,17 +386,17 @@ 连接 - + Visualization 可视化 - + Effects 特效 - + General 常规 @@ -407,12 +407,12 @@ - + Audio 音频 - + Replay Gain @@ -462,38 +462,38 @@ - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control 使用软设备音量控制 @@ -553,37 +553,47 @@ - + + Playback + + + + + Continue playback on startup + + + + Proxy 代理 - + Enable proxy usage 启用代理 - + Proxy host name: 主机名: - + Proxy port: 端口: - + Use authentication with proxy 需要身份验证 - + Proxy user name: 用户名: - + Proxy password: 密码: @@ -598,12 +608,12 @@ 转换 %20 为空格 - + Select Skin Files 选择皮肤文件 - + Skin files 皮肤文件 @@ -954,168 +964,168 @@ MainWindow - + Choose a directory 选择一个目录 - + Select one or more files to open 选择打开一个或更多文件 - + &Play 播放(&P) - + X X - + &Pause 暂停(&P) - + C C - + &Stop 停止(&S) - + V V - + &Previous 上一曲(&P) - + Z Z - + &Next 下一曲(&N) - + B B - + &Jump To File 跳到文件(&J) - + J J - + &Settings 设置(&S) - + Ctrl+P Ctrl+P - + &Exit 退出(&E) - + Ctrl+Q Ctrl+Q - + Open Playlist 打开播放列表 - + Save Playlist 保存播放列表 - + &About 关于(&A) - - + + Playlist Files 播放列表文件 - + Space 空格 - + &About Qt 关于 Qt (&A) - + &Play/Pause 播放/暂停(&P) - + All Supported Bitstreams 支持的全部文件 - + &Repeat Track 重复音轨(&R) - + &Shuffle 乱序(&S) - + R R - + Ctrl+R Ctrl+R - + S S - + &Repeat Playlist 重复播放列表(&R) - + Tools 工具 diff --git a/src/ui/translations/qmmp_zh_TW.ts b/src/ui/translations/qmmp_zh_TW.ts index 31ef2ceff..27d4b389d 100644 --- a/src/ui/translations/qmmp_zh_TW.ts +++ b/src/ui/translations/qmmp_zh_TW.ts @@ -183,13 +183,13 @@ 檔名 - + Artist 藝術家 - + Album 專輯 @@ -204,72 +204,72 @@ - + Transports - + Decoders - + Engines - + Title 標題 - + Track number - + Two-digit track number - + Disc number - + Condition - + Genre 流派 - + Composer - + File name - + File path - + Year 年代 - + Comment 備註 @@ -333,14 +333,14 @@ - + Preferences 引數設定 - + Information 資訊 @@ -366,17 +366,17 @@ 進階 - + 16-bit output - + Archived skin 封包皮膚 - + Unarchived skin 未封包皮膚 @@ -386,17 +386,17 @@ 連線 - + Visualization 可視化 - + Effects 特效 - + General 常規 @@ -407,12 +407,12 @@ - + Audio 聲訊 - + Replay Gain @@ -462,38 +462,38 @@ - + Replay Gain mode: - + Preamp: - - + + dB - + Default gain: - + Use peak info to prevent clipping - + Output: - + Use software volume control 使用軟裝置音量控制 @@ -553,37 +553,47 @@ - + + Playback + + + + + Continue playback on startup + + + + Proxy 代理 - + Enable proxy usage 啟用代理 - + Proxy host name: 主機名: - + Proxy port: 通訊埠: - + Use authentication with proxy 需要身份驗證 - + Proxy user name: 用戶名: - + Proxy password: 密碼: @@ -598,12 +608,12 @@ 轉換 %20 為空格 - + Select Skin Files 選取皮膚檔案 - + Skin files 皮膚檔案 @@ -954,168 +964,168 @@ MainWindow - + Choose a directory 選取一個目錄 - + Select one or more files to open 選取開啟一個或更多檔案 - + &Play 播放(&P) - + X X - + &Pause 暫停(&P) - + C C - + &Stop 停止(&S) - + V V - + &Previous 上一曲(&P) - + Z Z - + &Next 下一曲(&N) - + B B - + &Jump To File 跳到檔案(&J) - + J J - + &Settings 設定(&S) - + Ctrl+P Ctrl+P - + &Exit 結束(&E) - + Ctrl+Q Ctrl+Q - + Open Playlist 開啟播放清單 - + Save Playlist 儲存播放清單 - + &About 關於(&A) - - + + Playlist Files 播放清單檔案 - + Space 空格 - + &About Qt 關於 Qt (&A) - + &Play/Pause 播放/暫停(&P) - + All Supported Bitstreams 支援的全部檔案 - + &Repeat Track 重復音軌(&R) - + &Shuffle 亂序(&S) - + R R - + Ctrl+R Ctrl+R - + S S - + &Repeat Playlist 重復播放清單(&R) - + Tools 工具 -- cgit v1.2.3-13-gbd6f