changeset 3441:bd1a68dc9ebb trunk

Change xmms titlestring format values to Tuplez.
author William Pitcock <nenolod@atheme.org>
date Fri, 07 Sep 2007 07:12:28 -0500
parents 7f32f40201a4
children b0f4ab42dd3b e426b3e5fdb4
files src/audacious/ui_preferences.c
diffstat 1 files changed, 12 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/src/audacious/ui_preferences.c	Fri Sep 07 07:09:45 2007 -0500
+++ b/src/audacious/ui_preferences.c	Fri Sep 07 07:12:28 2007 -0500
@@ -120,16 +120,18 @@
 static gint n_categories = G_N_ELEMENTS(categories);
 
 static TitleFieldTag title_field_tags[] = {
-    { N_("Artist")     , "%p" },
-    { N_("Album")      , "%a" },
-    { N_("Title")      , "%t" },
-    { N_("Tracknumber"), "%n" },
-    { N_("Genre")      , "%g" },
-    { N_("Filename")   , "%f" },
-    { N_("Filepath")   , "%F" },
-    { N_("Date")       , "%d" },
-    { N_("Year")       , "%y" },
-    { N_("Comment")    , "%c" }
+    { N_("Artist")     , "${artist}" },
+    { N_("Album")      , "${album}" },
+    { N_("Title")      , "${title}" },
+    { N_("Tracknumber"), "${track-number}" },
+    { N_("Genre")      , "${genre}" },
+    { N_("Filename")   , "${file-name}" },
+    { N_("Filepath")   , "${file-path}" },
+    { N_("Date")       , "${date}" },
+    { N_("Year")       , "${year}" },
+    { N_("Comment")    , "${comment}" },
+    { N_("Codec")      , "${codec}" },
+    { N_("Quality")    , "${quality}" },
 };
 
 typedef struct {