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/colors.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 '')
-rw-r--r-- | src/colors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/colors.c b/src/colors.c index 0bcf2782c..cc3ec5061 100644 --- a/src/colors.c +++ b/src/colors.c @@ -235,7 +235,7 @@ colors_start(void) list = list->next; } } else if (color_definition_list && !can_change_color()) - fprintf(stderr, _("Terminal lacks support for changing colors!\n")); + fprintf(stderr, _("Terminal lacks support for changing colors\n")); if (options.enable_colors) { enum color i; @@ -245,7 +245,7 @@ colors_start(void) colors_update_pair(i); } } else if (options.enable_colors) { - fprintf(stderr, _("Terminal lacks color capabilities!\n")); + fprintf(stderr, _("Terminal lacks color capabilities\n")); options.enable_colors = 0; } |