1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 22:06:38 +02:00

typing: remove trailing space in translated message

This commit is contained in:
Sébastien Helleu
2021-07-04 19:41:52 +02:00
parent 6a1425d5ba
commit b0d4b9aaba
15 changed files with 34 additions and 33 deletions
+2 -1
View File
@@ -102,7 +102,8 @@ typing_bar_item_typing (const void *pointer, void *data,
str_typing = weechat_string_dyn_alloc (256);
/* TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible */
weechat_string_dyn_concat (str_typing, _("Typing: "), -1);
weechat_string_dyn_concat (str_typing, _("Typing:"), -1);
weechat_string_dyn_concat (str_typing, " ", -1);
weechat_string_dyn_concat (str_typing, *str_nicks_typing, -1);
weechat_string_dyn_free (str_nicks_typing, 1);