diff --git a/src/klocalizedstring.h b/src/klocalizedstring.h --- a/src/klocalizedstring.h +++ b/src/klocalizedstring.h @@ -53,12 +53,20 @@ #define I18NC_NOOP(context, text) context, text #endif +#ifndef I18NC_NOOP_STRIP +/** + * Wrap string with context for extraction, discarding context. + * @since 5.64 + */ +#define I18NC_NOOP_STRIP(context, text) text +#endif + #if KI18N_ENABLE_DEPRECATED_SINCE(5, 0) #ifndef I18N_NOOP2 /** * Wrap string with context for extraction, discarding context. * - * \deprecated Since 5.0, use \c I18NC_NOOP. + * \deprecated Since 5.0, use \c I18NC_NOOP_TRIP. */ #define I18N_NOOP2(context, text) text #endif