/* * eulogium_private, some common private helpers * * Copyright (c) 2015 Ultimaker B.V. * Author: Olliver Schinagl * * SPDX-License-Identifier: AGPL-3.0+ */ #ifndef _EULOGIUM_PRIVATE_H #define _EULOGIUM_PRIVATE_H #include #include "gettext.h" #if HAVE_GETTEXT && ENABLE_NLS #define _(string) gettext(string) #else #define _(string) (string) #endif #endif /* _EULOGIUM_PRIVATE_H */