From e463eecef852bafb4cc8c08efa6c137599ce158d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 25 Dec 2008 23:41:01 +0100 Subject: simplified translation strings Removed colon and "Error: " / "Keys - " prefix. --- src/screen_file.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/screen_file.c') diff --git a/src/screen_file.c b/src/screen_file.c index 1f39395c9..d10434167 100644 --- a/src/screen_file.c +++ b/src/screen_file.c @@ -121,7 +121,7 @@ handle_delete(mpdclient_t *c) entity = entry->entity; if( entity->type!=MPD_INFO_ENTITY_TYPE_PLAYLISTFILE ) { - screen_status_printf(_("You can only delete playlists")); + screen_status_printf(_("Deleting this item is not possible")); screen_bell(); return -1; } @@ -194,7 +194,9 @@ browse_title(char *str, size_t size) path = browser.filelist->path; path_locale = utf8_to_locale(path); - g_snprintf(str, size, _("Browse: %s"), path_locale); + g_snprintf(str, size, "%s: %s", + /* translators: caption of the browser screen */ + _("Browse"), path_locale); g_free(path_locale); return str; } -- cgit v1.2.3