changeset 2777:4b8caa739baf trunk

[svn] - handle pluralization properly in playlist-display action
author nenolod
date Thu, 17 May 2007 01:56:41 -0700
parents 63fbbe9775a6
children 78350b4209ce
files ChangeLog src/audacious/build_stamp.c src/audtool/handlers.c
diffstat 3 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu May 17 01:54:13 2007 -0700
+++ b/ChangeLog	Thu May 17 01:56:41 2007 -0700
@@ -1,3 +1,11 @@
+2007-05-17 08:54:13 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [4578]
+  - remove no-longer-necessary debugging notice
+  
+  trunk/src/audacious/playlist.c |    3 ---
+  1 file changed, 3 deletions(-)
+
+
 2007-05-17 05:50:52 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
   revision [4576]
   - auddrct: more calls implemented (part 7)
--- a/src/audacious/build_stamp.c	Thu May 17 01:54:13 2007 -0700
+++ b/src/audacious/build_stamp.c	Thu May 17 01:56:41 2007 -0700
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070517-4576";
+const gchar *svn_stamp = "20070517-4578";
--- a/src/audtool/handlers.c	Thu May 17 01:54:13 2007 -0700
+++ b/src/audtool/handlers.c	Thu May 17 01:56:41 2007 -0700
@@ -451,7 +451,7 @@
 
 	i = audacious_remote_get_playlist_length(dbus_proxy);
 
-	g_print("%d tracks.\n", i);
+	g_print("%d track%s.\n", i, i != 1 ? "s" : "");
 
 	total = 0;