/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef LABWC_TRANSLATE_H #define LABWC_TRANSLATE_H #include "config.h" #if HAVE_NLS #include #include #define _ gettext #else #define _(s) (s) #endif #endif /* LABWC_TRANSLATE_H */