diff options
author | Max Kellermann <max@duempel.org> | 2008-11-25 21:03:28 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-25 21:03:28 +0100 |
commit | 01388b0ea33e583358562d864cd0e481b2465308 (patch) | |
tree | c4e4e20e493ee9546b01a835bff4ea094343363c /src/main.c | |
parent | 00098d8e42ffd4fb86c521a216460bcd2c921a29 (diff) | |
download | mpd-01388b0ea33e583358562d864cd0e481b2465308.tar.gz mpd-01388b0ea33e583358562d864cd0e481b2465308.tar.xz mpd-01388b0ea33e583358562d864cd0e481b2465308.zip |
po: improved translatable strings for easier translation
Remove exclamation marks and other markup from the strings.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c index ed76181f6..11f16acb8 100644 --- a/src/main.c +++ b/src/main.c @@ -225,10 +225,11 @@ timer_reconnect(G_GNUC_UNUSED gpointer data) #ifndef NCMPC_MINI /* quit if mpd is pre 0.11.0 - song id not supported by mpd */ if (MPD_VERSION_LT(mpd, 0, 11, 0)) { - screen_status_printf(_("Error: MPD version %d.%d.%d is to old (0.11.0 needed).\n"), + screen_status_printf(_("Error: MPD version %d.%d.%d is to old (%s needed)"), mpd->connection->version[0], mpd->connection->version[1], - mpd->connection->version[2]); + mpd->connection->version[2], + "0.11.0"); mpdclient_disconnect(mpd); doupdate(); @@ -238,7 +239,7 @@ timer_reconnect(G_GNUC_UNUSED gpointer data) } #endif - screen_status_printf(_("Connected to %s!"), options.host); + screen_status_printf(_("Connected to %s"), options.host); doupdate(); connected = TRUE; |