From e890592ebb073e63cb4f5a463c7518f77e332977 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 31 Mar 2009 21:24:22 +0200 Subject: [PATCH] screen: added "mode" in mode message Print "Single _mode_ is on" instead of just "Single is on". This is intended to be clearer for both users and translators. --- src/screen.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/screen.c b/src/screen.c index e245f0d..899c9a6 100644 --- a/src/screen.c +++ b/src/screen.c @@ -630,23 +630,23 @@ screen_update(mpdclient_t *c) if (repeat != c->status->repeat) screen_status_printf(c->status->repeat ? - _("Repeat is on") : - _("Repeat is off")); + _("Repeat mode is on") : + _("Repeat mode is off")); if (random_enabled != c->status->random) screen_status_printf(c->status->random ? - _("Random is on") : - _("Random is off")); + _("Random mode is on") : + _("Random mode is off")); if (single != c->status->single) screen_status_printf(c->status->single ? - _("Single is on") : - _("Single is off")); + _("Single mode is on") : + _("Single mode is off")); if (consume != c->status->consume) screen_status_printf(c->status->consume ? - _("Consume is on") : - _("Consume is off")); + _("Consume mode is on") : + _("Consume mode is off")); if (crossfade != c->status->crossfade) screen_status_printf(_("Crossfade %d seconds"), c->status->crossfade); -- 2.30.2