From 6bad117a85507ecc24b8423cbedfaec6f3a4d3c7 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sun, 19 Aug 2012 10:15:23 +0000 Subject: analyzer: added option 'cells size' git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2888 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Visual/analyzer/analyzer.cpp | 3 +- src/plugins/Visual/analyzer/settingsdialog.cpp | 52 ++-- src/plugins/Visual/analyzer/settingsdialog.h | 7 +- src/plugins/Visual/analyzer/settingsdialog.ui | 310 ++++++++++++--------- .../analyzer/translations/analyzer_plugin_cs.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_de.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_es.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_it.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_ja.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_lt.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_nl.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_pl.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_ru.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_tr.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_uk_UA.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_zh_CN.ts | 64 +++-- .../analyzer/translations/analyzer_plugin_zh_TW.ts | 64 +++-- 17 files changed, 693 insertions(+), 511 deletions(-) (limited to 'src/plugins/Visual') diff --git a/src/plugins/Visual/analyzer/analyzer.cpp b/src/plugins/Visual/analyzer/analyzer.cpp index 8dd65afcf..c78d9b391 100644 --- a/src/plugins/Visual/analyzer/analyzer.cpp +++ b/src/plugins/Visual/analyzer/analyzer.cpp @@ -71,8 +71,7 @@ Analyzer::Analyzer (QWidget *parent) : Visual (parent), m_fps (20) m_bgColor.setNamedColor(settings.value("Analyzer/bg_color", "Black").toString()); //m_bgColor.setAlpha(0); m_peakColor.setNamedColor(settings.value("Analyzer/peak_color", "Cyan").toString()); - m_cell_size = QSize(15, 6); - //m_cell_size = QSize(5, 3); + m_cell_size = settings.value("Analyzer/cells_size", QSize(15, 6)).toSize(); QAction *fullScreenAction = new QAction(this); fullScreenAction->setShortcut(tr("F")); diff --git a/src/plugins/Visual/analyzer/settingsdialog.cpp b/src/plugins/Visual/analyzer/settingsdialog.cpp index fc1df9b2e..444a303dd 100644 --- a/src/plugins/Visual/analyzer/settingsdialog.cpp +++ b/src/plugins/Visual/analyzer/settingsdialog.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007 by Ilya Kotov * + * Copyright (C) 2007-2012 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -19,28 +19,28 @@ ***************************************************************************/ #include - +#include #include - #include "settingsdialog.h" -SettingsDialog::SettingsDialog(QWidget *parent) - : QDialog(parent) +SettingsDialog::SettingsDialog(QWidget *parent) : QDialog(parent) { - ui.setupUi(this); + m_ui.setupUi(this); QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - ui.analyzerComboBox->setCurrentIndex(settings.value("Analyzer/analyzer_falloff", 3).toInt()-1); - ui.peaksCheckBox->setChecked(settings.value("Analyzer/show_peaks", true).toBool()); - ui.peaksComboBox->setCurrentIndex(settings.value("Analyzer/peaks_falloff", 3).toInt()-1); - ui.fpsComboBox->setCurrentIndex(settings.value("Analyzer/refresh_rate", 2).toInt()-1); - ui.colorWidget1->setColor(settings.value("Analyzer/color1", "Green").toString()); - ui.colorWidget2->setColor(settings.value("Analyzer/color2", "Yellow").toString()); - ui.colorWidget3->setColor(settings.value("Analyzer/color3", "Red").toString()); - ui.bgColorWidget->setColor(settings.value("Analyzer/bg_color", "Black").toString()); - ui.peakColorWidget->setColor(settings.value("Analyzer/peak_color", "Cyan").toString()); + m_ui.analyzerComboBox->setCurrentIndex(settings.value("Analyzer/analyzer_falloff", 3).toInt()-1); + m_ui.peaksCheckBox->setChecked(settings.value("Analyzer/show_peaks", true).toBool()); + m_ui.peaksComboBox->setCurrentIndex(settings.value("Analyzer/peaks_falloff", 3).toInt()-1); + m_ui.fpsComboBox->setCurrentIndex(settings.value("Analyzer/refresh_rate", 2).toInt()-1); + m_ui.colorWidget1->setColor(settings.value("Analyzer/color1", "Green").toString()); + m_ui.colorWidget2->setColor(settings.value("Analyzer/color2", "Yellow").toString()); + m_ui.colorWidget3->setColor(settings.value("Analyzer/color3", "Red").toString()); + m_ui.bgColorWidget->setColor(settings.value("Analyzer/bg_color", "Black").toString()); + m_ui.peakColorWidget->setColor(settings.value("Analyzer/peak_color", "Cyan").toString()); + QSize cells_size = settings.value("Analyzer/cells_size", QSize(15, 6)).toSize(); + m_ui.cellWidthSpinBox->setValue(cells_size.width()); + m_ui.cellHeightSpinBox->setValue(cells_size.height()); } - SettingsDialog::~SettingsDialog() { } @@ -48,14 +48,16 @@ SettingsDialog::~SettingsDialog() void SettingsDialog::accept() { QSettings settings(Qmmp::configFile(), QSettings::IniFormat); - settings.setValue("Analyzer/analyzer_falloff", ui.analyzerComboBox->currentIndex() + 1); - settings.setValue("Analyzer/peaks_falloff", ui.peaksComboBox->currentIndex() + 1); - settings.setValue("Analyzer/refresh_rate", ui.fpsComboBox->currentIndex() + 1); - settings.setValue("Analyzer/show_peaks", ui.peaksCheckBox->isChecked()); - settings.setValue("Analyzer/color1", ui.colorWidget1->colorName()); - settings.setValue("Analyzer/color2", ui.colorWidget2->colorName()); - settings.setValue("Analyzer/color3", ui.colorWidget3->colorName()); - settings.setValue("Analyzer/bg_color", ui.bgColorWidget->colorName()); - settings.setValue("Analyzer/peak_color", ui.peakColorWidget->colorName()); + settings.setValue("Analyzer/analyzer_falloff", m_ui.analyzerComboBox->currentIndex() + 1); + settings.setValue("Analyzer/peaks_falloff", m_ui.peaksComboBox->currentIndex() + 1); + settings.setValue("Analyzer/refresh_rate", m_ui.fpsComboBox->currentIndex() + 1); + settings.setValue("Analyzer/show_peaks", m_ui.peaksCheckBox->isChecked()); + settings.setValue("Analyzer/color1", m_ui.colorWidget1->colorName()); + settings.setValue("Analyzer/color2", m_ui.colorWidget2->colorName()); + settings.setValue("Analyzer/color3", m_ui.colorWidget3->colorName()); + settings.setValue("Analyzer/bg_color", m_ui.bgColorWidget->colorName()); + settings.setValue("Analyzer/peak_color", m_ui.peakColorWidget->colorName()); + settings.setValue("Analyzer/cells_size", QSize(m_ui.cellWidthSpinBox->value(), + m_ui.cellHeightSpinBox->value())); QDialog::accept(); } diff --git a/src/plugins/Visual/analyzer/settingsdialog.h b/src/plugins/Visual/analyzer/settingsdialog.h index 17986e54f..fa48a92db 100644 --- a/src/plugins/Visual/analyzer/settingsdialog.h +++ b/src/plugins/Visual/analyzer/settingsdialog.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007 by Ilya Kotov * + * Copyright (C) 2007-2012by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -21,11 +21,10 @@ #define SETTINGSDIALOG_H #include - #include "ui_settingsdialog.h" /** - @author Ilya Kotov + @author Ilya Kotov */ class SettingsDialog : public QDialog { @@ -39,7 +38,7 @@ public slots: virtual void accept(); private: - Ui::SettingsDialog ui; + Ui::SettingsDialog m_ui; }; diff --git a/src/plugins/Visual/analyzer/settingsdialog.ui b/src/plugins/Visual/analyzer/settingsdialog.ui index e19e5c79c..3ced39a43 100644 --- a/src/plugins/Visual/analyzer/settingsdialog.ui +++ b/src/plugins/Visual/analyzer/settingsdialog.ui @@ -1,195 +1,239 @@ - + + SettingsDialog - - + + 0 0 - 292 - 327 + 314 + 310 - + Analyzer Plugin Settings - - - - - + + + + + 0 0 - + General - - - - + + + + Qt::LeftToRight - + Show peaks - - - + + + Analyzer falloff: - + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - + + + 2 - + Slowest - + Slow - + Medium - + Fast - + Fastest - - - + + + Peaks falloff: - + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - + + + 2 - + Slowest - + Slow - + Medium - + Fast - + Fastest - - - + + + Refresh rate: - + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - + + + 0 - + 50 FPS - + 25 FPS - + 10 FPS - + 5 FPS + + + + Cells size: + + + + + + + + + + + + X + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + - - - - + + + + 0 0 - + Colors - - - - + + + + Peaks: - + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - + + + + 0 0 - + + + 20 + 20 + + + 20 20 @@ -197,25 +241,31 @@ - - - + + + Analyzer #1: - + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - + + + + 0 0 - + + + 20 + 20 + + + 20 20 @@ -223,25 +273,31 @@ - - - + + + Background: - + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - + + + + 0 0 - + + + 20 + 20 + + + 20 20 @@ -249,25 +305,31 @@ - - - + + + Analyzer #2: - + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - + + + + 0 0 - + + + 20 + 20 + + + 20 20 @@ -275,12 +337,12 @@ - + - + Qt::Horizontal - + 111 20 @@ -288,25 +350,31 @@ - - - + + + Analyzer #3: - + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - + + + + 0 0 - + + + 20 + 20 + + + 20 20 @@ -317,25 +385,9 @@ - - - - Qt::Horizontal - - - QSizePolicy::Minimum - - - - 95 - 29 - - - - - - - + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok @@ -358,11 +410,11 @@ SettingsDialog accept() - + 204 303 - + 53 308 @@ -374,11 +426,11 @@ SettingsDialog reject() - + 228 307 - + 78 288 diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_cs.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_cs.ts index 48a717f71..1a96e6b1a 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_cs.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_cs.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Qmmp frekvenční analyzátor + + + F + + SettingsDialog - + Analyzer Plugin Settings Nastavení modulu frekvenčního analyzátoru - + General Obecné - + Show peaks Zobrazovat špičky - + Analyzer falloff: Pokles analyzátoru: - - + + Slowest Nejpomalejší - - + + Slow Pomalý - - + + Medium Střední - - + + Fast Rychlý - - + + Fastest Nejrychlejší - + Peaks falloff: Pokles špiček: - + Refresh rate: Obnovovací frekvence: - + 50 FPS 50 Hz - + 25 FPS 25 Hz - + 10 FPS 10 Hz - + 5 FPS 5 Hz - + + Cells size: + + + + Colors Barvy - + Peaks: Špičky: - + Analyzer #1: Analyzátor #1: - + Background: Pozadí: - + Analyzer #2: Analyzátor #2: - + Analyzer #3: Analyzátor #3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_de.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_de.ts index 65468ebd8..f83164f97 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_de.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_de.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Qmmp Analyzer + + + F + + SettingsDialog - + Analyzer Plugin Settings Einstellungen Analyzer-Plugin - + General Allgemein - + Show peaks Spitzen anzeigen - + Analyzer falloff: Abfallen des Analyzers: - - + + Slowest Sehr langsam - - + + Slow Langsam - - + + Medium Mittel - - + + Fast Schnell - - + + Fastest Sehr schnell - + Peaks falloff: Abfallen der Spitzen: - + Refresh rate: Wiederholrate: - + 50 FPS 50 FPS - + 25 FPS 25 FPS - + 10 FPS 10 FPS - + 5 FPS 5 FPS - + + Cells size: + + + + Colors Farben - + Peaks: Spitzen: - + Analyzer #1: Analyzer Nr. 1: - + Background: Hintergrund: - + Analyzer #2: Analyzer Nr. 2: - + Analyzer #3: Analyzer Nr. 3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_es.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_es.ts index 04622fd14..95601959a 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_es.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_es.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Analizador Qmmp + + + F + + SettingsDialog - + Analyzer Plugin Settings Configuración del módulo analizador - + General General - + Show peaks Mostrar picos - + Analyzer falloff: Caída del analizador: - - + + Slowest Muy lenta - - + + Slow Lenta - - + + Medium Media - - + + Fast Rápida - - + + Fastest Muy rápida - + Peaks falloff: Caída de picos: - + Refresh rate: Velocidad de actualización: - + 50 FPS 50 FPS - + 25 FPS 25 FPS - + 10 FPS 10 FPS - + 5 FPS 5 FPS - + + Cells size: + + + + Colors Colores - + Peaks: Picos: - + Analyzer #1: Analizador nº1: - + Background: Fondo: - + Analyzer #2: Analizador nº2: - + Analyzer #3: Analizzatore N° 3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_it.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_it.ts index bc77eaa44..734a7b6cd 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_it.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_it.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Analizzatore Qmmp + + + F + + SettingsDialog - + Analyzer Plugin Settings Impostazioni Del modulo Analizzatore - + General Generale - + Show peaks Mostra i picchi - + Analyzer falloff: Ricaduta analizzatore - - + + Slowest Molto lenta - - + + Slow Lenta - - + + Medium Media - - + + Fast Rapida - - + + Fastest Molto rapida - + Peaks falloff: Ricaduta picchi - + Refresh rate: Velocità di aggiornamento: - + 50 FPS 50 FPS - + 25 FPS 25 FPS - + 10 FPS 10 FPS - + 5 FPS 5 FPS - + + Cells size: + + + + Colors Colori - + Peaks: Picchi: - + Analyzer #1: Analizzatore Nr. 1: - + Background: Sfondo: - + Analyzer #2: Analizzatore N° 2: - + Analyzer #3: Analizzatore N° 3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_ja.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_ja.ts index 73ed503d1..a1fef0e81 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_ja.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_ja.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer QMMP アナライザー + + + F + + SettingsDialog - + Analyzer Plugin Settings アナライザープラグイン設定 - + General 一般 - + Show peaks ピーク表示 - + Analyzer falloff: アナライザー減衰速度: - - + + Slowest さらに遅く - - + + Slow 遅く - - + + Medium 適度 - - + + Fast 速く - - + + Fastest さらに速く - + Peaks falloff: ピーク減衰速度: - + Refresh rate: 再描画の頻度: - + 50 FPS 50 フレーム毎秒 - + 25 FPS 25 フレーム毎秒 - + 10 FPS 10 フレーム毎秒 - + 5 FPS 5 フレーム毎秒 - + + Cells size: + + + + Colors - + Peaks: 峰: - + Analyzer #1: 第一アナライザー: - + Background: 背景: - + Analyzer #2: 第二アナライザー: - + Analyzer #3: 第三アナライザー: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_lt.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_lt.ts index a090c3c11..d24fe1a7f 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_lt.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_lt.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Qmmp analizatorius + + + F + + SettingsDialog - + Analyzer Plugin Settings Analizatoriaus įskiepio nustatymai - + General Bendri - + Show peaks Rodyti pikus - + Analyzer falloff: Analizatoriaus kritimas: - - + + Slowest Lėčiausias - - + + Slow Lėtas - - + + Medium Vidutinis - - + + Fast Greitas - - + + Fastest Greičiausias - + Peaks falloff: Pikų kritimas: - + Refresh rate: Atnaujinimo dažnis: - + 50 FPS 50 FPS/с - + 25 FPS 25 FPS/с - + 10 FPS 10 FPS/с - + 5 FPS 5 FPS/с - + + Cells size: + + + + Colors Spalvos - + Peaks: Pikai: - + Analyzer #1: Analizatorius #1: - + Background: Fonas: - + Analyzer #2: Analizatorius #2: - + Analyzer #3: Analizatorius #3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_nl.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_nl.ts index 2309443c5..af2475398 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_nl.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_nl.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Qmmp Analysator + + + F + + SettingsDialog - + Analyzer Plugin Settings Analysator Module Instellingen - + General Algemeen - + Show peaks Laat toppen zien - + Analyzer falloff: Analysator uitval: - - + + Slowest Traagst - - + + Slow Traag - - + + Medium Normaal - - + + Fast Snel - - + + Fastest Snelst - + Peaks falloff: Toppen uitval: - + Refresh rate: Ververs frequentie: - + 50 FPS - + 25 FPS - + 10 FPS - + 5 FPS - + + Cells size: + + + + Colors Kleuren - + Peaks: Toppen: - + Analyzer #1: Analysator #1: - + Background: Achtergrond: - + Analyzer #2: Analysator #2: - + Analyzer #3: Analysator #3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_pl.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_pl.ts index 71c2aa7cc..9d6c180ef 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_pl.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_pl.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Qmmp Analizator + + + F + + SettingsDialog - + Analyzer Plugin Settings Ustawienia Wtyczki Analizator - + General Ogólne - + Show peaks Pokaż piki - + Analyzer falloff: Analizator opadanie: - - + + Slowest Najwolniej - - + + Slow Wolno - - + + Medium Średnio - - + + Fast Szybko - - + + Fastest Najszybciej - + Peaks falloff: Opadanie pików: - + Refresh rate: Odświeżanie: - + 50 FPS - + 25 FPS - + 10 FPS - + 5 FPS - + + Cells size: + + + + Colors Kolory - + Peaks: Piki: - + Analyzer #1: Analizator #1: - + Background: Tło: - + Analyzer #2: Analizator #2: - + Analyzer #3: Analizator #3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_ru.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_ru.ts index f1c21a309..a2aae3a0e 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_ru.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_ru.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Анализатор Qmmp + + + F + + SettingsDialog - + Analyzer Plugin Settings Настройки анализатора - + General Общие - + Show peaks Показывать пики - + Analyzer falloff: Падение анализатора: - - + + Slowest Самое медленное - - + + Slow Медленное - - + + Medium Среднее - - + + Fast Быстрое - - + + Fastest Самое быстрое - + Peaks falloff: Падение пиков: - + Refresh rate: Частота обновления: - + 50 FPS 50 кад/с - + 25 FPS 25 кад/с - + 10 FPS 10 кад/с - + 5 FPS 5 кад/с - + + Cells size: + Размер ячеек: + + + Colors Цвета - + Peaks: Пики: - + Analyzer #1: Анализатор #1: - + Background: Фон: - + Analyzer #2: Анализатор #2: - + Analyzer #3: Анализатор #3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_tr.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_tr.ts index db40fd187..80f05fa67 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_tr.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_tr.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Qmmp Çözümleyici + + + F + + SettingsDialog - + Analyzer Plugin Settings Çözümleyici Eklentisi Ayarları - + General Genel - + Show peaks Tepeleri göster - + Analyzer falloff: - - + + Slowest En yavaş - - + + Slow Yavaş - - + + Medium Orta - - + + Fast Hızlı - - + + Fastest En hızlı - + Peaks falloff: - + Refresh rate: Yineleme oranı: - + 50 FPS 50 FPS - + 25 FPS 25 FPS - + 10 FPS 10 FPS - + 5 FPS 5 FPS - + + Cells size: + + + + Colors Renkler - + Peaks: - + Analyzer #1: Çözümleyici #1: - + Background: Arkaplan: - + Analyzer #2: Çözümleyici #2: - + Analyzer #3: Çözümleyici #2: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_uk_UA.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_uk_UA.ts index 325e7b372..411ff5732 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_uk_UA.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_uk_UA.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Аналізатор Qmmp + + + F + + SettingsDialog - + Analyzer Plugin Settings Налаштування аналізатора - + General Загальні - + Show peaks Показувати піки - + Analyzer falloff: Падіння аналізатора: - - + + Slowest Найповільніше - - + + Slow Повільне - - + + Medium Середнє - - + + Fast Швидке - - + + Fastest Найшвидше - + Peaks falloff: Падіння піків: - + Refresh rate: Частота оновлення: - + 50 FPS 50 кад/с - + 25 FPS 25 кад/с - + 10 FPS 10 кад/с - + 5 FPS 5 кад/с - + + Cells size: + + + + Colors Кольори - + Peaks: Піки: - + Analyzer #1: Аналізатор #1: - + Background: Тло: - + Analyzer #2: Аналізатор #2: - + Analyzer #3: Аналізатор #3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_CN.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_CN.ts index df5c11467..add0c7ae8 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_CN.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_CN.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Qmmp 可视化分析器 + + + F + + SettingsDialog - + Analyzer Plugin Settings 可视化分析器插件设置 - + General 常规 - + Show peaks 显示峰值 - + Analyzer falloff: 分析器下降速度: - - + + Slowest 最慢 - - + + Slow - - + + Medium - - + + Fast - - + + Fastest 最快 - + Peaks falloff: 峰值下降速度: - + Refresh rate: 刷新率: - + 50 FPS 50 FPS - + 25 FPS 25 FPS - + 10 FPS 10 FPS - + 5 FPS 5 FPS - + + Cells size: + + + + Colors 颜色 - + Peaks: 峰值: - + Analyzer #1: 分析 #1: - + Background: 背景: - + Analyzer #2: 分析 #2: - + Analyzer #3: 分析 #3: diff --git a/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_TW.ts b/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_TW.ts index 85bb94acd..6c266e5f8 100644 --- a/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_TW.ts +++ b/src/plugins/Visual/analyzer/translations/analyzer_plugin_zh_TW.ts @@ -4,120 +4,130 @@ Analyzer - + Qmmp Analyzer Qmmp 可視化解析器 + + + F + + SettingsDialog - + Analyzer Plugin Settings 可視化解析器插件設定 - + General 常規 - + Show peaks 察看峰值 - + Analyzer falloff: 解析器下降速度: - - + + Slowest 最慢 - - + + Slow - - + + Medium - - + + Fast - - + + Fastest 最快 - + Peaks falloff: 峰值下降速度: - + Refresh rate: 清除率: - + 50 FPS 50 FPS - + 25 FPS 25 FPS - + 10 FPS 10 FPS - + 5 FPS 5 FPS - + + Cells size: + + + + Colors 色彩 - + Peaks: 峰值: - + Analyzer #1: 解析 #1: - + Background: 背景: - + Analyzer #2: 解析 #2: - + Analyzer #3: 解析 #3: -- cgit v1.2.3-13-gbd6f