diff options
Diffstat (limited to 'src/core/wee-input.c')
-rw-r--r-- | src/core/wee-input.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/wee-input.c b/src/core/wee-input.c index 3a8cd0113..9e5760220 100644 --- a/src/core/wee-input.c +++ b/src/core/wee-input.c @@ -177,7 +177,7 @@ input_exec_command (struct t_gui_buffer *buffer, else { gui_chat_printf_date_tags (NULL, 0, GUI_FILTER_TAG_NO_FILTER, - _("%sError: unknown command \"%s\" " + _("%sUnknown command \"%s\" " "(type /help for help)"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], command_name); @@ -187,7 +187,7 @@ input_exec_command (struct t_gui_buffer *buffer, case HOOK_COMMAND_EXEC_AMBIGUOUS_PLUGINS: /* command is ambiguous (exists for other plugins) */ gui_chat_printf_date_tags (NULL, 0, GUI_FILTER_TAG_NO_FILTER, - _("%sError: ambiguous command \"%s\": " + _("%sAmbiguous command \"%s\": " "it exists in many plugins and not in " "\"%s\" plugin"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], @@ -201,7 +201,7 @@ input_exec_command (struct t_gui_buffer *buffer, * start with this name) */ gui_chat_printf_date_tags (NULL, 0, GUI_FILTER_TAG_NO_FILTER, - _("%sError: incomplete command \"%s\" " + _("%sIncomplete command \"%s\" " "and multiple commands start with " "this name"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], @@ -211,7 +211,7 @@ input_exec_command (struct t_gui_buffer *buffer, case HOOK_COMMAND_EXEC_RUNNING: /* command is running */ gui_chat_printf_date_tags (NULL, 0, GUI_FILTER_TAG_NO_FILTER, - _("%sError: too many calls to command " + _("%sToo many calls to command " "\"%s\" (looping)"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], command_name); |