diff options
author | Alessio Vanni <vannilla@firemail.cc> | 2021-08-31 15:21:20 +0200 |
---|---|---|
committer | Alessio Vanni <vannilla@firemail.cc> | 2021-08-31 15:21:20 +0200 |
commit | a2b5de8e03aea9d8664817ba51720ccf27517f4f (patch) | |
tree | ce918809618e29ae3cebd8e8c09027068189d99e /src/include | |
parent | c66295e27c44c3ad4453f0d7ba9ccd905a6decb8 (diff) |
-More _ → dgettext changes
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/gnunet_common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_common.h b/src/include/gnunet_common.h index 758a5133d..3cff9f482 100644 --- a/src/include/gnunet_common.h +++ b/src/include/gnunet_common.h @@ -884,7 +884,7 @@ GNUNET_error_type_to_string (enum GNUNET_ErrorType kind); if (! (cond)) \ { \ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, \ - _ ("Assertion failed at %s:%d. Aborting.\n"), \ + dgettext ("gnunet", "Assertion failed at %s:%d. Aborting.\n"), \ __FILE__, \ __LINE__); \ GNUNET_abort_ (); \ @@ -899,7 +899,7 @@ GNUNET_error_type_to_string (enum GNUNET_ErrorType kind); if (! (cond)) \ { \ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, \ - _ ("Assertion failed at %s:%d. Aborting.\n"), \ + dgettext ("gnunet", "Assertion failed at %s:%d. Aborting.\n"), \ __FILE__, \ __LINE__); \ GNUNET_abort_ (); \ @@ -917,7 +917,7 @@ GNUNET_error_type_to_string (enum GNUNET_ErrorType kind); if (! (cond)) \ { \ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, \ - _ ("Assertion failed at %s:%d. Aborting.\n"), \ + dgettext ("gnunet", "Assertion failed at %s:%d. Aborting.\n"), \ f, \ l); \ GNUNET_abort_ (); \ @@ -939,7 +939,7 @@ GNUNET_error_type_to_string (enum GNUNET_ErrorType kind); { \ GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, \ comp, \ - _ ("Assertion failed at %s:%d. Aborting.\n"), \ + dgettext ("gnunet", "Assertion failed at %s:%d. Aborting.\n"), \ __FILE__, \ __LINE__); \ GNUNET_abort_ (); \ |