1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

core: add missing context in English message when a key is added with /key missing

This commit is contained in:
Sébastien Helleu
2026-01-21 20:53:25 +01:00
parent 7d51a1331b
commit f0160bf5ab
15 changed files with 58 additions and 57 deletions
+3 -2
View File
@@ -4474,8 +4474,9 @@ COMMAND_CALLBACK(key)
keys_added = (gui_keys_count[context] > old_keys_count) ?
gui_keys_count[context] - old_keys_count : 0;
gui_chat_printf (NULL,
NG_("%d new key added", "%d new keys added "
"(context: \"%s\")", keys_added),
NG_("%d new key added (context: \"%s\")",
"%d new keys added (context: \"%s\")",
keys_added),
keys_added,
gui_key_context_string[context]);
}