blob: f135a8db629582a02784eccfa64ad46f23da297c (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* name of the icon used for notifications */
#define ICON_SOUND "sound"
/* strings used to display notification messages
* TEXT_PLAY needs to include three '%s', in order:
* title, artist, album */
#define TEXT_TOPIC "MPD Notification"
#define TEXT_PLAY "Playing <b>%s</b>\nby <i>%s</i>\nfrom <i>%s</i>"
#define TEXT_PAUSE "Paused playback"
#define TEXT_STOP "Stopped playback"
#define TEXT_NONE "No action received yet."
#define TEXT_UNKNOWN "(unknown)"
|