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/screen_file.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/screen_file.c')
-rw-r--r-- | src/screen_file.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/screen_file.c b/src/screen_file.c index b073b8710..1f39395c9 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(_("You can only delete playlists")); screen_bell(); return -1; } @@ -133,14 +133,14 @@ handle_delete(mpdclient_t *c) key = tolower(screen_getch(screen.status_window.w, buf)); g_free(buf); if( key != YES[0] ) { - screen_status_printf(_("Aborted!")); + screen_status_printf(_("Aborted")); return 0; } if( mpdclient_cmd_delete_playlist(c, plf->path) ) return -1; - screen_status_printf(_("Playlist deleted!")); + screen_status_printf(_("Playlist deleted")); return 0; } @@ -239,8 +239,6 @@ browse_cmd(mpdclient_t *c, command_t cmd) list_window_check_selected(browser.lw, filelist_length(browser.filelist)); file_repaint(); - - screen_status_printf(_("Screen updated!")); return false; case CMD_DB_UPDATE: @@ -252,11 +250,11 @@ browse_cmd(mpdclient_t *c, command_t cmd) if (strcmp(browser.filelist->path, "")) { char *path_locale = utf8_to_locale(browser.filelist->path); - screen_status_printf(_("Database update of %s started!"), + screen_status_printf(_("Database update of %s started"), path_locale); g_free(path_locale); } else - screen_status_printf(_("Database update started!")); + screen_status_printf(_("Database update started")); /* set updatingDb to make shure the browse callback gets called * even if the updated has finished before status is updated */ |