# HG changeset patch # User Richard Laager # Date 1133142233 0 # Node ID 4777c59120687644616e76537b793a52b5adc7e2 # Parent 1c0fd404e07ecf248dba04ee9dd988da9251ae76 [gaim-migrate @ 14543] We shouldn't translate the logger name twice. If we let the callers of gaim_log_logger_new() do it (the change that KingAnt just committed), then plugins can translate logger names. committer: Tailor Script diff -r 1c0fd404e07e -r 4777c5912068 src/log.c --- a/src/log.c Sun Nov 27 23:12:16 2005 +0000 +++ b/src/log.c Mon Nov 28 01:43:53 2005 +0000 @@ -353,7 +353,7 @@ data = n->data; if (!data->write) continue; - list = g_list_append(list, _(data->name)); + list = g_list_append(list, data->name); list = g_list_append(list, data->id); }