diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-11-24 18:17:51 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2010-11-24 18:17:51 +0000 |
| commit | aa3f57c0236c77f2fd90415fc1f3062a93b25b93 (patch) | |
| tree | d9ab905b952cf9289239b95db99f39321a54e65b /src/plugins/Input/sndfile | |
| parent | 5c2f5798c6222d35e08fa0853812e2390181e735 (diff) | |
| download | qmmp-aa3f57c0236c77f2fd90415fc1f3062a93b25b93.tar.gz qmmp-aa3f57c0236c77f2fd90415fc1f3062a93b25b93.tar.bz2 qmmp-aa3f57c0236c77f2fd90415fc1f3062a93b25b93.zip | |
some api changes, partial mpris 2.0 implementation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1991 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/sndfile')
14 files changed, 90 insertions, 92 deletions
diff --git a/src/plugins/Input/sndfile/decodersndfilefactory.cpp b/src/plugins/Input/sndfile/decodersndfilefactory.cpp index 5ffbb8ddb..e01ac3103 100644 --- a/src/plugins/Input/sndfile/decodersndfilefactory.cpp +++ b/src/plugins/Input/sndfile/decodersndfilefactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2007-2009 by Ilya Kotov * + * Copyright (C) 2007-2010 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -18,6 +18,7 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include <QtGui> +#include <QRegExp> extern "C" { #include <sndfile.h> @@ -31,17 +32,7 @@ extern "C" bool DecoderSndFileFactory::supports(const QString &source) const { - - if ((source.right(3).toLower() == ".au") || - (source.right(4).toLower() == ".snd") || - (source.right(4).toLower() == ".aif") || - (source.right(5).toLower() == ".aiff") || - (source.right(5).toLower() == ".8svx") || - (source.right(4).toLower() == ".sph") || - (source.right(3).toLower() == ".sf") || - (source.right(4).toLower() == ".voc")) - return true; - else if (source.right(4).toLower() == ".wav") + if (source.right(4).toLower() == ".wav") { //try top open the file SF_INFO snd_info; @@ -52,6 +43,12 @@ bool DecoderSndFileFactory::supports(const QString &source) const sndfile = 0; return true; } + foreach(QString filter, properties().filters) + { + QRegExp regexp(filter, Qt::CaseInsensitive, QRegExp::Wildcard); + if (regexp.exactMatch(source)) + return true; + } return false; } @@ -64,14 +61,15 @@ const DecoderProperties DecoderSndFileFactory::properties() const { DecoderProperties properties; properties.name = tr("Sndfile Plugin"); - properties.filter = "*.wav *.au *.snd *.aif *.aiff *.8svx *.sph *.sf *.voc"; + properties.filters << "*.wav" << "*.au" << "*.snd" << "*.aif" << "*.aiff" << "*.8svx"; + properties.filters << "*.sph" << "*.sf" << "*.voc"; properties.description = tr("PCM Files"); //properties.contentType = ""; properties.shortName = "sndfile"; properties.hasAbout = true; properties.hasSettings = false; properties.noInput = true; - properties.protocols = "file"; + properties.protocols << "file"; return properties; } diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_cs.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_cs.ts index 28c04a70c..109275191 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_cs.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_cs.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Modul Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>Soubory PCM</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>O modulu Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Vstupní modul Qmmp Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Zkompilováno s</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Autor: Ilja Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_de.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_de.ts index eee5b58a3..dd6ed2a3d 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_de.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_de.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Sndfile-Modul</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>PCM-Dateien</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Über Sndfile-Audio-Modul</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Qmmp Sndfile-Audio-Modul</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Kompiliert gegen</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Autor: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_es.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_es.ts index 09fd41f47..fa63b9baf 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_es.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_es.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Módulo Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>Archivos PCM</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Acerca del módulo de sonido Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Módulo de sonido Sndfile para Qmmp</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Compilado con</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Escrito por: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_it.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_it.ts index e03d61a1c..628c534ec 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_it.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_it.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Modulo Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>Brani PCM</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Info sul modulo audio Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Modulo audio Sndfile per Qmmp</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Compilato su</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Autore: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_ja.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_ja.ts index 64bc1e524..60f950069 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_ja.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_ja.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Sndfile プラグイン</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>PCM ファイル</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Sndfile 音響プラグインについて</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>QMMP Sndfile 音響プラグイン</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>コンパイルに使用したライブラリ</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>制作: Илья Котов (Ilya Kotov) <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_lt.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_lt.ts index 39ef4efcf..852c23833 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_lt.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_lt.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Sndfile įskiepis</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>PCM bylos</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Apie Sndfile Audio įskiepį</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Qmmp Sndfile Audio įskiepis</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Compiled against</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Sukūrė: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_nl.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_nl.ts index 426ae2e57..94480cf02 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_nl.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_nl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Sndfile Module</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>PCM Bestanden</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Over de Sndfile Audio Module</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Sndfile Audio Module voor Qmmp</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Gebouwd tegen</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Auteur: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_pl.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_pl.ts index 70426ece5..8cf02b2dd 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_pl.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_pl.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Wtyczka Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>Pliki PCM</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>O wtyczce Sndfile Audio</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Wtyczka Sndfile Audio dla Qmmp</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Skompilowano przy użyciu</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Autor: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_ru.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_ru.ts index 5842f2dc8..df231ef4c 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_ru.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_ru.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Модуль Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>Файлы PCM</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Об аудио-модуле Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Модуль SndFile для Qmmp</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Собрано с</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Разработчик: Илья Котов <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_tr.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_tr.ts index 9fd98c7c1..a976bcfcf 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_tr.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_tr.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Sndfile Eklentisi</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>PCM Dosyaları</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Sndfile Ses Eklentisi Hakkında</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Qmmp Sndfile Ses Eklentisi</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Derlendi</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Yazan: Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_uk_UA.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_uk_UA.ts index 23acc3081..735d4761d 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_uk_UA.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_uk_UA.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Модуль Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>Файли PCM</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>Про аудіо-модуль Sndfile</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Модуль SndFile для Qmmp</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>Зкомпільовано з</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>Розробник: Ілля Котов <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_zh_CN.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_zh_CN.ts index 13fa4d9e1..9d766a3a9 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_zh_CN.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_zh_CN.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Sndfile 插件</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>PCM 文件</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>关于 Sndfile 音频插件</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Qmmp Sndfile 音频插件</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>编译依赖</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>作者:Ilya Kotov <forkotov02@hotmail.ru></translation> </message> diff --git a/src/plugins/Input/sndfile/translations/sndfile_plugin_zh_TW.ts b/src/plugins/Input/sndfile/translations/sndfile_plugin_zh_TW.ts index c36795f2b..8d0ef3990 100644 --- a/src/plugins/Input/sndfile/translations/sndfile_plugin_zh_TW.ts +++ b/src/plugins/Input/sndfile/translations/sndfile_plugin_zh_TW.ts @@ -4,32 +4,32 @@ <context> <name>DecoderSndFileFactory</name> <message> - <location filename="../decodersndfilefactory.cpp" line="66"/> + <location filename="../decodersndfilefactory.cpp" line="63"/> <source>Sndfile Plugin</source> <translation>Sndfile 插件</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="68"/> + <location filename="../decodersndfilefactory.cpp" line="66"/> <source>PCM Files</source> <translation>PCM 檔案</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="132"/> + <location filename="../decodersndfilefactory.cpp" line="130"/> <source>About Sndfile Audio Plugin</source> <translation>關於 Sndfile 聲訊插件</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="133"/> + <location filename="../decodersndfilefactory.cpp" line="131"/> <source>Qmmp Sndfile Audio Plugin</source> <translation>Qmmp Sndfile 聲訊插件</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="134"/> + <location filename="../decodersndfilefactory.cpp" line="132"/> <source>Compiled against</source> <translation>編譯依賴於</translation> </message> <message> - <location filename="../decodersndfilefactory.cpp" line="135"/> + <location filename="../decodersndfilefactory.cpp" line="133"/> <source>Writen by: Ilya Kotov <forkotov02@hotmail.ru></source> <translation>作者:Ilya Kotov <forkotov02@hotmail.ru></translation> </message> |
