# HG changeset patch # User nenolod # Date 1179392201 25200 # Node ID 4b8caa739baf616b6486cc3485144a2de266cbfe # Parent 63fbbe9775a6be6427093347e9aeae6d7f9d293d [svn] - handle pluralization properly in playlist-display action diff -r 63fbbe9775a6 -r 4b8caa739baf ChangeLog --- 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 + 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 revision [4576] - auddrct: more calls implemented (part 7) diff -r 63fbbe9775a6 -r 4b8caa739baf src/audacious/build_stamp.c --- 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 -const gchar *svn_stamp = "20070517-4576"; +const gchar *svn_stamp = "20070517-4578"; diff -r 63fbbe9775a6 -r 4b8caa739baf src/audtool/handlers.c --- 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;