diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-11-17 21:54:24 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-11-17 21:54:24 +0100 |
commit | 5cbda03fca0dc2f5fbbd829f529987a65450fb32 (patch) | |
tree | 5c18dcc91a0a25713f790d22e1454de95ce40a5c /src/core/wee-config-file.c | |
parent | 21eadc9488dec5816f220aab16e6602b0bbe1440 (diff) | |
download | weechat-5cbda03fca0dc2f5fbbd829f529987a65450fb32.zip |
core: fix and normalize error messages
Diffstat (limited to 'src/core/wee-config-file.c')
-rw-r--r-- | src/core/wee-config-file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/wee-config-file.c b/src/core/wee-config-file.c index dd43126f4..70a310a41 100644 --- a/src/core/wee-config-file.c +++ b/src/core/wee-config-file.c @@ -589,7 +589,7 @@ config_file_new_option (struct t_config_file *config_file, } if (var_type < 0) { - gui_chat_printf (NULL, "%sError: unknown option type \"%s\"", + gui_chat_printf (NULL, "%sUnknown option type \"%s\"", gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], type); goto error; @@ -2411,7 +2411,7 @@ config_file_write_internal (struct t_config_file *config_file, if (!config_file->file) { gui_chat_printf (NULL, - _("%sError: cannot create file \"%s\""), + _("%sCannot create file \"%s\""), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], filename2); goto error; |