diff options
author | Max Kellermann <max@duempel.org> | 2008-12-25 23:41:01 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-25 23:41:01 +0100 |
commit | e463eecef852bafb4cc8c08efa6c137599ce158d (patch) | |
tree | 3be5260cc67cfbeb4d9b0740ae730d253354f3e3 /src/screen_file.c | |
parent | d7062399cdcb30932535e62d4b72aaceae623111 (diff) | |
download | mpd-e463eecef852bafb4cc8c08efa6c137599ce158d.tar.gz mpd-e463eecef852bafb4cc8c08efa6c137599ce158d.tar.xz mpd-e463eecef852bafb4cc8c08efa6c137599ce158d.zip |
simplified translation strings
Removed colon and "Error: " / "Keys - " prefix.
Diffstat (limited to 'src/screen_file.c')
-rw-r--r-- | src/screen_file.c | 6 |
1 files changed, 4 insertions, 2 deletions
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; } |