Make all debug/info level messages untranslatable

Debug and info messages are primarily meant for developers,
rather than end users. Let's save translators' time,
and leave them untranslated.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
David Henningsson 2014-09-02 12:09:44 +02:00
parent 5d20f571bc
commit 764da4260a
4 changed files with 38 additions and 38 deletions

View file

@ -415,8 +415,8 @@ int main(int argc, char *argv[]) {
pa_memchunk i, j;
pa_usec_t ts;
pa_log_debug(_("Compilation CFLAGS: %s"), PA_CFLAGS);
pa_log_debug(_("=== %d seconds: %d Hz %d ch (%s) -> %d Hz %d ch (%s)"), seconds,
pa_log_debug("Compilation CFLAGS: %s", PA_CFLAGS);
pa_log_debug("=== %d seconds: %d Hz %d ch (%s) -> %d Hz %d ch (%s)", seconds,
a.rate, a.channels, pa_sample_format_to_string(a.format),
b.rate, b.channels, pa_sample_format_to_string(b.format));