From: Max Kellermann Date: Tue, 31 Mar 2009 19:24:22 +0000 (+0200) Subject: screen: added "mode" in mode message X-Git-Tag: release-0.14~39 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e890592ebb073e63cb4f5a463c7518f77e332977;p=ncmpc.git 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. --- 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);