summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d706239)
raw | patch | inline | side by side (parent: d706239)
author | Max Kellermann <max@duempel.org> | |
Thu, 25 Dec 2008 22:41:01 +0000 (23:41 +0100) | ||
committer | Max Kellermann <max@duempel.org> | |
Thu, 25 Dec 2008 22:41:01 +0000 (23:41 +0100) |
Removed colon and "Error: " / "Keys - " prefix.
src/command.c | patch | blob | history | |
src/screen_file.c | patch | blob | history | |
src/screen_help.c | patch | blob | history |
diff --git a/src/command.c b/src/command.c
index 663ab7ad221cbea80778faba0ecbe00889b57598..18394e1c7c991f30c31071fb40fd69730885d3fd 100644 (file)
--- a/src/command.c
+++ b/src/command.c
get_key_names(CMD_SCREEN_KEYDEF,0));
#else
g_snprintf(buf, bufsize,
- _("Error: Key %s assigned to %s and %s\n"),
+ _("Key %s assigned to %s and %s\n"),
key2str(cp[i].keys[j]),
get_key_command_name(cp[i].command),
get_key_command_name(cmd));
#endif
} else
fprintf(stderr,
- _("Error: Key %s assigned to %s and %s\n"),
+ _("Key %s assigned to %s and %s\n"),
key2str(cp[i].keys[j]),
get_key_command_name(cp[i].command),
get_key_command_name(cmd));
diff --git a/src/screen_file.c b/src/screen_file.c
index 1f39395c9d839e1c96d896609ccf054e6f3d25ac..d104341679d26093b7cdc4b1c69da9d64cc1e92d 100644 (file)
--- a/src/screen_file.c
+++ b/src/screen_file.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;
}
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;
}
diff --git a/src/screen_help.c b/src/screen_help.c
index ad70d8aead30cca37e6d0bd6c81cc4b45fb238b9..332873c18daa192a6b781df986d16c53d4d4088d 100644 (file)
--- a/src/screen_help.c
+++ b/src/screen_help.c
} help_text_row_t;
static help_text_row_t help_text[] = {
- { 1, CMD_NONE, N_("Keys - Movement") },
+ { 1, CMD_NONE, N_("Movement") },
{ 2, CMD_NONE, NULL },
{ 0, CMD_LIST_PREVIOUS, NULL },
{ 0, CMD_LIST_NEXT, NULL },
{ 0, CMD_NONE, NULL },
{ 0, CMD_NONE, NULL },
- { 1, CMD_NONE, N_("Keys - Global") },
+ { 1, CMD_NONE, N_("Global") },
{ 2, CMD_NONE, NULL },
{ 0, CMD_STOP, NULL },
{ 0, CMD_PAUSE, NULL },
{ 0, CMD_NONE, NULL },
{ 0, CMD_NONE, NULL },
- { 1, CMD_NONE, N_("Keys - Playlist screen") },
+ { 1, CMD_NONE, N_("Playlist screen") },
{ 2, CMD_NONE, NULL },
{ 0, CMD_PLAY, N_("Play") },
{ 0, CMD_DELETE, NULL },
{ 0, CMD_NONE, NULL },
{ 0, CMD_NONE, NULL },
- { 1, CMD_NONE, N_("Keys - Browse screen") },
+ { 1, CMD_NONE, N_("Browse screen") },
{ 2, CMD_NONE, NULL },
{ 0, CMD_PLAY, N_("Enter directory/Select and play song") },
{ 0, CMD_SELECT, NULL },
#ifdef ENABLE_SEARCH_SCREEN
{ 0, CMD_NONE, NULL },
{ 0, CMD_NONE, NULL },
- { 1, CMD_NONE, N_("Keys - Search screen") },
+ { 1, CMD_NONE, N_("Search screen") },
{ 2, CMD_NONE, NULL },
{ 0, CMD_SCREEN_SEARCH, N_("Search") },
{ 0, CMD_PLAY, N_("Select and play") },
#ifdef ENABLE_LYRICS_SCREEN
{ 0, CMD_NONE, NULL },
{ 0, CMD_NONE, NULL },
- { 1, CMD_NONE, N_("Keys - Lyrics screen") },
+ { 1, CMD_NONE, N_("Lyrics screen") },
{ 2, CMD_NONE, NULL },
{ 0, CMD_SCREEN_LYRICS, N_("View Lyrics") },
{ 0, CMD_SELECT, N_("(Re)load lyrics") },
#ifdef ENABLE_OUTPUTS_SCREEN
{ 0, CMD_NONE, NULL },
{ 0, CMD_NONE, NULL },
- { 1, CMD_NONE, N_("Keys - Outputs screen") },
+ { 1, CMD_NONE, N_("Outputs screen") },
{ 2, CMD_NONE, NULL },
{ 0, CMD_PLAY, N_("Enable/disable output") },
#endif