diff --git a/src/pulsecore/core-util.h b/src/pulsecore/core-util.h index e6cb261bb..9596b9754 100644 --- a/src/pulsecore/core-util.h +++ b/src/pulsecore/core-util.h @@ -35,6 +35,8 @@ #include #include + +#include #include #include @@ -90,7 +92,7 @@ int pa_parse_boolean(const char *s) PA_GCC_PURE; int pa_parse_volume(const char *s, pa_volume_t *volume); static inline const char *pa_yes_no(bool b) { - return b ? "yes" : "no"; + return b ? _("yes") : _("no"); } static inline const char *pa_strnull(const char *x) {