diff --git a/src/core/core-command.c b/src/core/core-command.c index 0a7aad1d3..061f698ad 100644 --- a/src/core/core-command.c +++ b/src/core/core-command.c @@ -6228,7 +6228,7 @@ COMMAND_CALLBACK(secure) gui_chat_printf ( NULL, _("%sFailed to decrypt data: hash algorithm \"%s\" is not " - "available (ligbcrypt version is too old?)"), + "available (libgcrypt version is too old?)"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], config_file_option_string (secure_config_crypt_hash_algo)); return WEECHAT_RC_ERROR; @@ -6238,7 +6238,7 @@ COMMAND_CALLBACK(secure) gui_chat_printf ( NULL, _("%sFailed to decrypt data: cipher \"%s\" is not " - "available (ligbcrypt version is too old?)"), + "available (libgcrypt version is too old?)"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], config_file_option_string (secure_config_crypt_cipher)); return WEECHAT_RC_ERROR; diff --git a/src/core/core-secure-config.c b/src/core/core-secure-config.c index 768e71d63..974bc5007 100644 --- a/src/core/core-secure-config.c +++ b/src/core/core-secure-config.c @@ -282,7 +282,7 @@ secure_config_data_read_cb (const void *pointer, void *data, gui_chat_printf ( NULL, _("%sFailed to decrypt data \"%s\": hash algorithm \"%s\" is not " - "available (ligbcrypt version is too old?)"), + "available (libgcrypt version is too old?)"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], option_name, config_file_option_string (secure_config_crypt_hash_algo)); @@ -298,7 +298,7 @@ secure_config_data_read_cb (const void *pointer, void *data, gui_chat_printf ( NULL, _("%sFailed to decrypt data \"%s\": cipher \"%s\" is not " - "available (ligbcrypt version is too old?)"), + "available (libgcrypt version is too old?)"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], option_name, config_file_option_string (secure_config_crypt_cipher)); @@ -393,7 +393,7 @@ secure_config_data_write_map_cb (void *data, gui_chat_printf ( NULL, _("%sFailed to encrypt data \"%s\": hash algorithm \"%s\" is not " - "available (ligbcrypt version is too old?)"), + "available (libgcrypt version is too old?)"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], key, config_file_option_string (secure_config_crypt_hash_algo)); @@ -407,7 +407,7 @@ secure_config_data_write_map_cb (void *data, gui_chat_printf ( NULL, _("%sFailed to encrypt data \"%s\": cipher \"%s\" is not " - "available (ligbcrypt version is too old?)"), + "available (libgcrypt version is too old?)"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], key, config_file_option_string (secure_config_crypt_cipher));