[gnac/devel] Added WavPack filter
- From: Benoît Dupasquier <bdupasqu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnac/devel] Added WavPack filter
- Date: Sat, 29 May 2010 20:10:15 +0000 (UTC)
commit 08c22e890e63ccb2c585f6dea600c8bcf19d46ea
Author: Benoît Dupasquier <bdupasqu src gnome org>
Date: Sat May 29 21:09:31 2010 +0100
Added WavPack filter
src/gnac-main.c | 29 ++++++++++++++++-------------
1 files changed, 16 insertions(+), 13 deletions(-)
---
diff --git a/src/gnac-main.c b/src/gnac-main.c
index 7803aae..074265f 100644
--- a/src/gnac-main.c
+++ b/src/gnac-main.c
@@ -355,30 +355,33 @@ gnac_init_filters(void)
{
filters = (GSList*) NULL;
+ /* To translators: translation of filters' name can be
+ * found in /usr/share/mime */
const gchar *lossy_mime[][2] = {
- { "audio/mpeg" , _("MPEG files (*.mp3)") },
- { "audio/mp4" , _("MPEG-4 files (*.aac, *.m4a, *.mp4)") },
- { "audio/x-musepack" , _("Musepack files (*.mpc)") },
- { "application/ogg" , _("Ogg Vorbis files (*.ogg)") },
- { "audio/vnd.rn-realaudio", _("RealAudio files (*.ra)") },
- { "audio/x-speex" , _("Speex files (*.spx)") },
- { "audio/x-ms-wma" , _("Windows Media files (*.wma)") },
+ { "audio/mpeg" , _("MP3 audio (*.mp3)") },
+ { "audio/mp4" , _("MPEG-4 audio (*.aac, *.m4a, *.mp4)") },
+ { "audio/x-musepack" , _("Musepack audio (*.mpc)") },
+ { "audio/ogg" , _("Ogg Audio (*.oga)") },
+ { "audio/vnd.rn-realaudio", _("RealAudio document (*.ra)") },
+ { "audio/x-speex" , _("Speex audio (*.spx)") },
+ { "audio/x-ms-wma" , _("Windows Media audio (*.wma)") },
{ NULL, NULL }
};
const gchar *lossless_mime[][2] = {
/* XXX the Monkey's Audio plug-in has not yet been ported
* to gstreamer-0.10 */
- /*{ "audio/x-ape" , _("Ape files (*.ape)") },*/
- { "audio/x-flac", _("Flac files (*.flac)") },
- { "audio/x-wav" , _("WAV files (*.wav)") },
+ /*{ "audio/x-ape" , _("Monkey's audio (*.ape)") },*/
+ { "audio/x-flac" , _("Flac audio (*.flac)") },
+ { "audio/x-wav" , _("WAV audio (*.wav)") },
+ { "audio/x-wavpack", _("WavPack audio (*.wv)") },
{ NULL, NULL }
};
const gchar *supported_mime_playlists[][2] = {
- { "audio/x-mpegurl" , _("M3U playlists (*.m3u)") },
- { "audio/x-scpls" , _("PLS playlists (*.pls)") },
- { "application/xspf+xml", _("XSPF playlists (*.xspf)") },
+ { "audio/x-mpegurl" , _("MP3 audio (streamed) (*.m3u)") },
+ { "audio/x-scpls" , _("MP3 ShoutCast playlist (*.pls)") },
+ { "application/xspf+xml", _("XSPF playlist (*.xspf)") },
{ NULL, NULL }
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]