From 38ba9babb485a491c62a9ebd7a88e9253fccb839 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Mon, 5 Jan 2009 17:00:02 +0000 Subject: short command line keys git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@735 90c681e8-e032-0410-971d-27865f9a5e38 --- src/ui/builtincommandlineoption.cpp | 51 ++++++++++++----------- src/ui/mainwindow.cpp | 4 +- src/ui/qmmpstarter.cpp | 7 ++-- src/ui/translations/qmmp_cs.ts | 80 ++++++++++++++++++------------------ src/ui/translations/qmmp_de.ts | 81 ++++++++++++++++++------------------- src/ui/translations/qmmp_pl_PL.ts | 80 ++++++++++++++++++------------------ src/ui/translations/qmmp_pt_BR.ts | 80 ++++++++++++++++++------------------ src/ui/translations/qmmp_ru.ts | 81 ++++++++++++++++++------------------- src/ui/translations/qmmp_tr.ts | 80 ++++++++++++++++++------------------ src/ui/translations/qmmp_uk_UA.ts | 81 ++++++++++++++++++------------------- src/ui/translations/qmmp_zh_CN.ts | 80 ++++++++++++++++++------------------ src/ui/translations/qmmp_zh_TW.ts | 80 ++++++++++++++++++------------------ 12 files changed, 391 insertions(+), 394 deletions(-) (limited to 'src') diff --git a/src/ui/builtincommandlineoption.cpp b/src/ui/builtincommandlineoption.cpp index 32e22fb96..6baeb2429 100644 --- a/src/ui/builtincommandlineoption.cpp +++ b/src/ui/builtincommandlineoption.cpp @@ -24,7 +24,7 @@ #include "builtincommandlineoption.h" BuiltinCommandLineOption::BuiltinCommandLineOption(QObject *parent) - : QObject(parent) + : QObject(parent) { } @@ -37,15 +37,14 @@ BuiltinCommandLineOption::~BuiltinCommandLineOption() bool BuiltinCommandLineOption::identify(const QString & str) const { if ( - str == QString("--help") || str == QString("--next") || str == QString("--previous") || - str == QString("--play") || - str == QString("--pause") || - str == QString("--play-pause") || - str == QString("--stop") || + str == QString("--play") || str == QString("-p") || + str == QString("--pause") || str == QString("-u") || + str == QString("--play-pause") || str == QString("-t") || + str == QString("--stop") || str == QString("-s") || str.startsWith("--volume") || - str.startsWith("--jump-to-file") || + str.startsWith("--jump-to-file") || str.startsWith("-j") || str.startsWith("--toggle-visibility") || str.startsWith("--add-file") || str.startsWith("--add-dir") @@ -59,33 +58,33 @@ bool BuiltinCommandLineOption::identify(const QString & str) const const QString BuiltinCommandLineOption::helpString() const { - return QString( - "--next "+tr("Skip forward in playlist")+ "\n" + - "--previous "+tr("Skip backwards in playlist")+"\n" + - "--play "+tr("Start playing current song")+"\n" + - "--pause "+tr("Pause current song")+ "\n" - "--play-pause "+tr("Pause if playing, play otherwise")+ "\n" - "--stop "+tr("Stop current song")+ "\n" + - "--volume "+tr("Set playback volume(example: qmmp --volume20, qmmp --volume100)")+ "\n" - "--jump-to-file "+tr("Display Jump to File dialog")+ "\n" + - "--toggle-visibility "+tr("Show/hide application")+ "\n" + - "--add-file "+tr("Display Add File dialog")+ "\n" + - "--add-dir "+tr("Display Add Directory dialog") - ); + return QString( + "-p, --play "+tr("Start playing current song")+"\n" + + "-u, --pause "+tr("Pause current song")+ "\n" + "-t, --play-pause "+tr("Pause if playing, play otherwise")+ "\n" + "-s, --stop "+tr("Stop current song")+ "\n" + + "-j, --jump-to-file "+tr("Display Jump to File dialog")+ "\n" + + "--volume "+tr("Set playback volume(example: qmmp --volume20, qmmp --volume100)")+ "\n" + "--next "+tr("Skip forward in playlist")+ "\n" + + "--previous "+tr("Skip backwards in playlist")+"\n" + + "--toggle-visibility "+tr("Show/hide application")+ "\n" + + "--add-file "+tr("Display Add File dialog")+ "\n" + + "--add-dir "+tr("Display Add Directory dialog") + ); } -void BuiltinCommandLineOption::executeCommand(const QString & option_string, MainWindow *mw) +void BuiltinCommandLineOption::executeCommand(const QString &option_string, MainWindow *mw) { - if (option_string == "--play") + if (option_string == "--play" || option_string == "-p") { mw->play(); } - else if (option_string == "--stop") + else if (option_string == "--stop" || option_string == "-s") { mw->stop(); mw->mainDisplay()->hideTimeDisplay(); } - else if (option_string == "--pause") + else if (option_string == "--pause" || option_string == "-u") { mw->pause(); } @@ -101,11 +100,11 @@ void BuiltinCommandLineOption::executeCommand(const QString & option_string, Mai if (mw->soundCore()->state() == Qmmp::Stopped) mw->play(); } - else if (option_string == "--play-pause") + else if (option_string == "--play-pause" || option_string == "-t") { mw->playPause(); } - else if (option_string == "--jump-to-file") + else if (option_string == "--jump-to-file" || option_string == "-j") { mw->jumpToFile(); } diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index c7fb89397..faf8b1dda 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -552,7 +552,7 @@ bool MainWindow::processCommandArgs(const QStringList &slist,const QString& cwd) { QString str = slist[0]; - if (str.startsWith("--enqueue")) //check for "--enqueue" modifier + if (str.startsWith("--enqueue") || str.startsWith("-e")) //check for "--enqueue" modifier { if (slist.count() < 2) return FALSE; @@ -566,7 +566,7 @@ bool MainWindow::processCommandArgs(const QStringList &slist,const QString& cwd) } m_playListModel->addFileList(full_path_list); //TODO url support } - else if (str.startsWith("--")) // is it a command? + else if (str.startsWith("-")) // is it a command? { if (CommandLineManager::hasOption(str)) m_generalHandler->executeCommand(str); diff --git a/src/ui/qmmpstarter.cpp b/src/ui/qmmpstarter.cpp index aceae205f..6dd467344 100644 --- a/src/ui/qmmpstarter.cpp +++ b/src/ui/qmmpstarter.cpp @@ -57,10 +57,11 @@ QMMPStarter::QMMPStarter(int argc,char **argv, QObject* parent) : QObject(parent exit(0); } - if (argString.startsWith("--") && // command? + if (argString.startsWith("-") && // command? !(m_option_manager->identify(argString) || CommandLineManager::hasOption(argString) || - argString.startsWith("--enqueue"))) + argString.startsWith("--enqueue") || + argString.startsWith("-e"))) { qFatal("QMMP: Unknown command..."); exit(1); @@ -141,8 +142,8 @@ void QMMPStarter::printUsage() cout << qPrintable(tr("Usage: qmmp [options] [files]")) << endl; cout << qPrintable(tr("Options:")) << endl; cout << "--------" << endl; + cout << "-e, --enqueue " << qPrintable(tr("Don't clear the playlist")) << endl; cout << qPrintable(m_option_manager->helpString()) << endl; - cout << "--enqueue " << qPrintable(tr("Don't clear the playlist")) << endl; CommandLineManager::printUsage(); cout << "--help " << qPrintable(tr("Display this text and exit")) << endl; cout << "--version " << qPrintable(tr("Print version number and exit")) << endl; diff --git a/src/ui/translations/qmmp_cs.ts b/src/ui/translations/qmmp_cs.ts index d6a1da689..f47851fcf 100644 --- a/src/ui/translations/qmmp_cs.ts +++ b/src/ui/translations/qmmp_cs.ts @@ -96,7 +96,7 @@ Přidat URL - + Error Chyba @@ -114,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist Přejít vpřed v seznamu skladeb - + Skip backwards in playlist Přejít zpět v seznamu skladeb - + Start playing current song Spustit přehrávání aktuální skladby - + Pause current song Pozastavit aktuální skladbu - + Pause if playing, play otherwise Pozastavit, přehrává-li se, jinak přehrávat - + Stop current song Zastavit aktuální skladbu - + Set playback volume(example: qmmp --volume20, qmmp --volume100) Nastavit hlasitot přehrávání (příklady: qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog Zobrazit dialog Přeskočit na soubor - + Show/hide application Zobrazit/skrýt aplikaci - + Display Add File dialog Zobrazit dialog Přidat soubor - + Display Add Directory dialog Zobrazit dialog Přidat adresář @@ -242,7 +242,7 @@ Vzhled - + Playlist Seznam skladeb @@ -312,7 +312,7 @@ Nastavení - + Information Informace @@ -327,7 +327,7 @@ Výstup - + Close Zavřít @@ -337,42 +337,42 @@ Síť - + File Dialog 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: @@ -397,32 +397,32 @@ Efekty - + General Obecné - + Audio Zvuk - + Use software volume control Používat softwarové ovládání hlasitosti - + Visibility Control Viditelnost - + Hide on close Skrýt při zavření - + Start hidden Spustit skryté @@ -467,22 +467,22 @@ - + Transparency - + Main window - + 0 - + Equalizer @@ -1073,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] Použití: qmmp [volby] [soubory] - + Options: Volby: - + Print version number and exit Vypsat číslo verze a skončit - + Ideas, patches, bugreports send to forkotov02@hotmail.ru Nápady, patche, hlášení chyb posílejte na forkotov02@hotmail.ru (anglicky) - + Display this text and exit Zobrazit tento text a skončit - + QMMP version: Verze QMMP: @@ -1108,7 +1108,7 @@ - + Qt version: diff --git a/src/ui/translations/qmmp_de.ts b/src/ui/translations/qmmp_de.ts index 565e3825c..fc32a2aff 100644 --- a/src/ui/translations/qmmp_de.ts +++ b/src/ui/translations/qmmp_de.ts @@ -1,6 +1,5 @@ - AboutDialog @@ -97,7 +96,7 @@ Hinzuzufügende URL eingeben - + Error Fehler @@ -115,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist Nächsten Titel in Wiedergabeliste abspielen - + Skip backwards in playlist Vorherigen Titel in Wiedergabeliste abspielen - + Start playing current song Aktuellen Titel abspielen - + Pause current song Aktuellen Titel anhalten - + Pause if playing, play otherwise Wiedergabe anhalten oder fortsetzen - + Stop current song Aktuellen Titel stoppen - + Set playback volume(example: qmmp --volume20, qmmp --volume100) Lautstärke einstellen (Beispiel: qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog „Springe zu Titel“-Dialog anzeigen - + Show/hide application Anwendung ein-/ausblenden - + Display Add File dialog „Datei hinzufügen“-Dialog anzeigen - + Display Add Directory dialog „Verzeichnis hinzufügen“-Dialog anzeigen @@ -243,7 +242,7 @@ Erscheinungsbild - + Playlist Wiedergabeliste @@ -313,7 +312,7 @@ Konfiguration - + Information Information @@ -328,7 +327,7 @@ Ausgabe - + Close Schließen @@ -338,42 +337,42 @@ Verbindung - + File Dialog 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: @@ -398,32 +397,32 @@ Effekte - + General Sonstige - + Audio Audio - + Use software volume control Softwaregesteuerte Lautstärkeregelung - + Visibility Control Tray-Steuerung - + Hide on close Beim Schließen ausblenden - + Start hidden Minimiert starten @@ -468,22 +467,22 @@ Protokoll anzeigen - + Transparency Transparenz - + Main window Hauptfenster - + 0 0 - + Equalizer Equalizer @@ -1074,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] Aufruf: qmmp [Optionen] [Dateien] - + Options: Optionen: - + Print version number and exit Gibt die Versionsnummer aus - + Ideas, patches, bugreports send to forkotov02@hotmail.ru Ideen, Patches und Bugreports an <forkotov02@hotmail.ru> senden - + Display this text and exit Zeigt diesen Hilfetext an - + QMMP version: Qmmp-Version: @@ -1109,7 +1108,7 @@ Titel an Wiedergabeliste anhängen - + Qt version: Qt-Version: diff --git a/src/ui/translations/qmmp_pl_PL.ts b/src/ui/translations/qmmp_pl_PL.ts index ab9640dd1..0636ec955 100644 --- a/src/ui/translations/qmmp_pl_PL.ts +++ b/src/ui/translations/qmmp_pl_PL.ts @@ -91,7 +91,7 @@ AddUrlDialog - + Error Błąd @@ -114,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist Przeskocz do przodu na liście odtwarzania - + Skip backwards in playlist Przeskocz do tyłu na liście odtwarzania - + Start playing current song Zacznij grać biężącą piosenkę - + Pause current song Wstrzymaj bieżącą piosenkę - + Pause if playing, play otherwise - + Stop current song Zatrzymaj bieżącą piosenkę - + Set playback volume(example: qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog - + Show/hide application Pokaż/ukryj aplikację - + Display Add File dialog Wyświetl okno dialgowe dodawania plików - + Display Add Directory dialog Wyświetl okno dialgowe dodawania katalogów @@ -302,7 +302,7 @@ Ustawienia - + Information Informacje @@ -312,7 +312,7 @@ Wygląd - + Playlist Lista odtwarzania @@ -327,7 +327,7 @@ Zaawansowane - + Close Zamknij @@ -357,72 +357,72 @@ Efekty - + General Ogólne - + File Dialog Okno dialogowe - + Audio - + Use software volume control Użyj programowej regulacji głośności - + Visibility Control Sterowanie - + Hide on close Zminimalizuj przy zamykaniu - + Start hidden Uruchom zminimalizowany - + 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: @@ -467,22 +467,22 @@ - + Transparency - + Main window - + 0 - + Equalizer @@ -1073,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] Użycie: qmmp [opcje] [pliki] - + Options: Opcje: - + Print version number and exit Wyświetla wersję programu i wychodzi - + Ideas, patches, bugreports send to forkotov02@hotmail.ru Pomysły, poprawki, raporty o błędach proszę wysyłać na forkotov02@hotmail.ru - + Display this text and exit Wyświetal ten tekst i wychodzi - + QMMP version: Wersja QMMP: @@ -1108,7 +1108,7 @@ - + Qt version: diff --git a/src/ui/translations/qmmp_pt_BR.ts b/src/ui/translations/qmmp_pt_BR.ts index e59986364..a7c51e08d 100644 --- a/src/ui/translations/qmmp_pt_BR.ts +++ b/src/ui/translations/qmmp_pt_BR.ts @@ -91,7 +91,7 @@ AddUrlDialog - + Error @@ -114,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist - + Skip backwards in playlist - + Start playing current song - + Pause current song - + Pause if playing, play otherwise - + Stop current song - + Set playback volume(example: qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog - + Show/hide application - + Display Add File dialog - + Display Add Directory dialog @@ -302,7 +302,7 @@ Preferências - + Information Informações @@ -312,7 +312,7 @@ Aparência - + Playlist Lista de músicas @@ -327,7 +327,7 @@ Avançado - + Close Fechar @@ -357,72 +357,72 @@ - + General - + File Dialog - + Audio - + Use software volume control - + Visibility Control - + Hide on close - + Start hidden - + Proxy - + Enable proxy usage - + Proxy host name: - + Proxy port: - + Use authentication with proxy - + Proxy user name: - + Proxy password: @@ -467,22 +467,22 @@ - + Transparency - + Main window - + 0 - + Equalizer @@ -1073,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] - + Options: - + Print version number and exit - + Ideas, patches, bugreports send to forkotov02@hotmail.ru - + Display this text and exit - + QMMP version: @@ -1108,7 +1108,7 @@ - + Qt version: diff --git a/src/ui/translations/qmmp_ru.ts b/src/ui/translations/qmmp_ru.ts index 2b873fd78..2ac82e1bc 100644 --- a/src/ui/translations/qmmp_ru.ts +++ b/src/ui/translations/qmmp_ru.ts @@ -1,6 +1,5 @@ - AboutDialog @@ -92,7 +91,7 @@ AddUrlDialog - + Error Ошибка @@ -115,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist Перейти к следующему фрагменту - + Skip backwards in playlist Перейти к предыдущему фрагменту - + Start playing current song Воспроизвести текущую песню - + Pause current song Приостановить текущую песню - + Pause if playing, play otherwise Приостановить/воспроизвести - + Stop current song Остановить текущую песню - + Set playback volume(example: qmmp --volume20, qmmp --volume100) Установить громкость (пример: qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog Показать диалог перехода к файлу - + Show/hide application Показать/скрытть приложение - + Display Add File dialog Показать диалог добавления файлов - + Display Add Directory dialog Показать диалог добавления директорий @@ -303,7 +302,7 @@ Настройки - + Information Информация @@ -313,7 +312,7 @@ Внешний вид - + Playlist Список @@ -328,7 +327,7 @@ Дополнительно - + Close Закрыть @@ -358,72 +357,72 @@ Эффекты - + General Общие - + File Dialog Файловый диалог - + Audio Аудио - + Use software volume control Использовать программную регулировку громкости - + Visibility Control Управление видимостью - + Hide on close Скрывать при закрытии - + Start hidden Запускать скрытым - + Proxy Прокси - + Enable proxy usage Использовать прокси - + Proxy host name: Прокси сервер: - + Proxy port: Прокси порт: - + Use authentication with proxy Использовать авторизацию на прокси - + Proxy user name: Имя пользователя прокси: - + Proxy password: Пароль прокси: @@ -468,22 +467,22 @@ Показывать протокол - + Transparency Прозрачность - + Main window Главное окно - + 0 - + Equalizer Эквалайзер @@ -1074,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] Использование: qmmp [options] [files] - + Options: Опции: - + Print version number and exit Показать версии и выйти - + Ideas, patches, bugreports send to forkotov02@hotmail.ru Идеи, исправления, отчёты об ошибках: forkotov02@hotmail.ru - + Display this text and exit Показать этот текст и выйти - + QMMP version: Версия QMMP: @@ -1109,7 +1108,7 @@ Не очищать лист - + Qt version: Версия Qt: diff --git a/src/ui/translations/qmmp_tr.ts b/src/ui/translations/qmmp_tr.ts index eb159a1a9..fe6be9842 100644 --- a/src/ui/translations/qmmp_tr.ts +++ b/src/ui/translations/qmmp_tr.ts @@ -91,7 +91,7 @@ AddUrlDialog - + Error @@ -114,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist - + Skip backwards in playlist - + Start playing current song - + Pause current song - + Pause if playing, play otherwise - + Stop current song - + Set playback volume(example: qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog - + Show/hide application - + Display Add File dialog - + Display Add Directory dialog @@ -302,7 +302,7 @@ Tercihler - + Information Bilgi @@ -312,7 +312,7 @@ Görünüm - + Playlist Çalma Listesi @@ -327,7 +327,7 @@ Gelişmiş - + Close Kapat @@ -357,72 +357,72 @@ - + General - + File Dialog - + Audio - + Use software volume control - + Visibility Control - + Hide on close - + Start hidden - + Proxy - + Enable proxy usage - + Proxy host name: - + Proxy port: - + Use authentication with proxy - + Proxy user name: - + Proxy password: @@ -467,22 +467,22 @@ - + Transparency - + Main window - + 0 - + Equalizer @@ -1073,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] - + Options: - + Print version number and exit - + Ideas, patches, bugreports send to forkotov02@hotmail.ru - + Display this text and exit - + QMMP version: @@ -1108,7 +1108,7 @@ - + Qt version: diff --git a/src/ui/translations/qmmp_uk_UA.ts b/src/ui/translations/qmmp_uk_UA.ts index 64a165df7..54f567a67 100644 --- a/src/ui/translations/qmmp_uk_UA.ts +++ b/src/ui/translations/qmmp_uk_UA.ts @@ -1,6 +1,5 @@ - AboutDialog @@ -92,7 +91,7 @@ AddUrlDialog - + Error Помилка @@ -115,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist Перейти до наступного фрагменту - + Skip backwards in playlist Перейти до попереднього фрагменту - + Start playing current song Грати поточну пісню - + Pause current song Призупитини поточну пісню - + Pause if playing, play otherwise Призупинити/відтворити - + Stop current song Зупитини поточну пісню - + Set playback volume(example: qmmp --volume20, qmmp --volume100) Встановить гучність (приклад: qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog Показати діалог переходу до файла - + Show/hide application Показати/сховати програму - + Display Add File dialog Показати діалог додавання файлів - + Display Add Directory dialog Показати діалог додавання тек @@ -303,7 +302,7 @@ Налаштування - + Information Інформація @@ -313,7 +312,7 @@ Зовнішній вигляд - + Playlist Список @@ -328,7 +327,7 @@ Додатково - + Close Закрити @@ -358,72 +357,72 @@ Ефекти - + General Загальне - + File Dialog Файловий діалог - + Audio Звук - + Use software volume control Використовувати програмний контроль гучності - + Visibility Control Керування видимістю - + Hide on close Ховати при закритті - + Start hidden Запускати схованим - + Proxy Проксі - + Enable proxy usage Використосувати проксі - + Proxy host name: Сервер проксі: - + Proxy port: Порт проксі: - + Use authentication with proxy Використовувати авторизацію на проксі - + Proxy user name: Ім'я користвача проксі: - + Proxy password: Пароль проксі: @@ -468,22 +467,22 @@ Показати протокол - + Transparency Прозорість - + Main window Головне вікно - + 0 - + Equalizer Еквалайзер @@ -1074,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] Використання: qmmp [options] [files] - + Options: Опції: - + Print version number and exit Показати версію та вийти - + Ideas, patches, bugreports send to forkotov02@hotmail.ru Ідеї, виправлення, звіти про помилки: forkotov02@hotmail.ru - + Display this text and exit Показати цей текст та вийти - + QMMP version: Версія QMMP: @@ -1109,7 +1108,7 @@ Не очищати список - + Qt version: Версія Qt: diff --git a/src/ui/translations/qmmp_zh_CN.ts b/src/ui/translations/qmmp_zh_CN.ts index c9bb018e3..b7d9688b5 100644 --- a/src/ui/translations/qmmp_zh_CN.ts +++ b/src/ui/translations/qmmp_zh_CN.ts @@ -91,7 +91,7 @@ AddUrlDialog - + Error 错误 @@ -114,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist 跳到播放列表中的下一曲 - + Skip backwards in playlist 跳到播放列表中的上一曲 - + Start playing current song 开始播放当前曲目 - + Pause current song 暂停当前曲目 - + Pause if playing, play otherwise 正在播放则暂停,相反处于暂停则播放 - + Stop current song 停止当前曲目 - + Set playback volume(example: qmmp --volume20, qmmp --volume100) 设置回放音量(例如:qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog 显示跳到文件对话 - + Show/hide application 显示/隐藏程序 - + Display Add File dialog 显示添加文件对话 - + Display Add Directory dialog 显示添加目录对话 @@ -302,7 +302,7 @@ 参数设置 - + Information 信息 @@ -312,7 +312,7 @@ 外观 - + Playlist 播放列表 @@ -327,7 +327,7 @@ 高级 - + Close 关闭 @@ -357,72 +357,72 @@ 特效 - + General 常规 - + File Dialog 文件对话 - + Audio 音频 - + Use software volume control 使用软设备音量控制 - + Visibility Control 可见性控制 - + Hide on close 关闭时隐藏 - + Start hidden 启动时隐藏 - + Proxy 代理 - + Enable proxy usage 启用代理 - + Proxy host name: 主机名: - + Proxy port: 端口: - + Use authentication with proxy 需要身份验证 - + Proxy user name: 用户名: - + Proxy password: 密码: @@ -467,22 +467,22 @@ - + Transparency - + Main window - + 0 - + Equalizer @@ -1073,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] 使用:qmmp [设置] [文件] - + Options: 设置: - + Print version number and exit 显示版本并退出 - + Ideas, patches, bugreports send to forkotov02@hotmail.ru 建议、补丁或提交 bug 请发送到 forkotov02@hotmail.ru - + Display this text and exit 显示这些文本并退出 - + QMMP version: Qmmp 版本: @@ -1108,7 +1108,7 @@ - + Qt version: diff --git a/src/ui/translations/qmmp_zh_TW.ts b/src/ui/translations/qmmp_zh_TW.ts index 422ed5895..96354f91e 100644 --- a/src/ui/translations/qmmp_zh_TW.ts +++ b/src/ui/translations/qmmp_zh_TW.ts @@ -91,7 +91,7 @@ AddUrlDialog - + Error 錯誤 @@ -114,57 +114,57 @@ BuiltinCommandLineOption - + Skip forward in playlist 跳到播放清單中的下一曲 - + Skip backwards in playlist 跳到播放清單中的上一曲 - + Start playing current song 開始播放目前曲目 - + Pause current song 暫停目前曲目 - + Pause if playing, play otherwise 正在播放則暫停,相反處於暫停則播放 - + Stop current song 停止目前曲目 - + Set playback volume(example: qmmp --volume20, qmmp --volume100) 設定重播音量(例如:qmmp --volume20, qmmp --volume100) - + Display Jump to File dialog 察看跳到檔案對話 - + Show/hide application 察看/隱藏程式 - + Display Add File dialog 察看添加檔案對話 - + Display Add Directory dialog 察看添加目錄對話 @@ -302,7 +302,7 @@ 引數設定 - + Information 資訊 @@ -312,7 +312,7 @@ 外觀 - + Playlist 播放清單 @@ -327,7 +327,7 @@ 進階 - + Close 關閉 @@ -357,72 +357,72 @@ 特效 - + General 常規 - + File Dialog 檔案對話 - + Audio 聲訊 - + Use software volume control 使用軟裝置音量控制 - + Visibility Control 可見性控制 - + Hide on close 關閉時隱藏 - + Start hidden 啟動時隱藏 - + Proxy 代理 - + Enable proxy usage 啟用代理 - + Proxy host name: 主機名: - + Proxy port: 通訊埠: - + Use authentication with proxy 需要身份驗證 - + Proxy user name: 用戶名: - + Proxy password: 密碼: @@ -467,22 +467,22 @@ - + Transparency - + Main window - + 0 - + Equalizer @@ -1073,32 +1073,32 @@ QMMPStarter - + Usage: qmmp [options] [files] 使用:qmmp [設定] [檔案] - + Options: 設定: - + Print version number and exit 察看版本並結束 - + Ideas, patches, bugreports send to forkotov02@hotmail.ru 建議、補丁或提交 bug 請傳送到 forkotov02@hotmail.ru - + Display this text and exit 察看這些字檔並結束 - + QMMP version: Qmmp 版本: @@ -1108,7 +1108,7 @@ - + Qt version: -- cgit v1.2.3-13-gbd6f