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/command.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/command.c')
-rw-r--r-- | src/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.c b/src/command.c index 107167376..e04817fa1 100644 --- a/src/command.c +++ b/src/command.c @@ -468,14 +468,14 @@ check_key_bindings(command_definition_t *cp, char *buf, size_t bufsize) get_key_names(CMD_SCREEN_KEYDEF,0)); #else g_snprintf(buf, bufsize, - _("Error: Key %s assigned to %s and %s !!!\n"), + _("Error: 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"), + _("Error: 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)); |