From: Patrick Hallen Date: Thu, 12 Feb 2009 17:44:31 +0000 (+0100) Subject: Removed colons to simplify translation. X-Git-Tag: release-0.14~95 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6f1f7f9ecc452a8080b61e0ea2b30d7647cc4093;p=ncmpc.git Removed colons to simplify translation. In wreadln() is a hard-coded colon, so there must not be colons at the end of the prompts. --- diff --git a/po/de.po b/po/de.po index c019fc0..1224bdc 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ncmpc 0.12\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-02-12 13:11+0100\n" -"PO-Revision-Date: 2009-02-12 16:00+0100\n" +"PO-Revision-Date: 2009-02-12 18:43+0100\n" "Last-Translator: Monika Brinkert \n" "Language-Team: de \n" "MIME-Version: 1.0\n" diff --git a/src/screen_play.c b/src/screen_play.c index 5917bf2..6984dfc 100644 --- a/src/screen_play.c +++ b/src/screen_play.c @@ -230,7 +230,7 @@ playlist_save(mpdclient_t *c, char *name, char *defaultname) /* query the user for a filename */ filename = screen_readln(screen.status_window.w, - _("Save playlist as: "), + _("Save playlist as"), defaultname, NULL, gcmp); @@ -368,7 +368,7 @@ handle_add_to_playlist(mpdclient_t *c) /* get path */ path = screen_readln(screen.status_window.w, - _("Add: "), + _("Add"), NULL, NULL, #ifdef NCMPC_MINI diff --git a/src/screen_search.c b/src/screen_search.c index 66e15e3..9c06f5a 100644 --- a/src/screen_search.c +++ b/src/screen_search.c @@ -306,7 +306,7 @@ search_new(mpdclient_t *c) g_free(pattern); pattern = screen_readln(screen.status_window.w, - _("Search: "), + _("Search"), NULL, &search_history, NULL); diff --git a/src/screen_utils.c b/src/screen_utils.c index e9534cc..b4bd971 100644 --- a/src/screen_utils.c +++ b/src/screen_utils.c @@ -115,7 +115,7 @@ screen_read_password(WINDOW *w, const char *prompt) colors_use(w, COLOR_STATUS_ALERT); if (prompt == NULL) - prompt = _("Password: "); + prompt = _("Password"); ret = wreadln_masked(w, prompt, NULL, COLS, NULL, NULL); curs_set(0);