From ea1fef69add040b9e5b1de6e9238eda4576ccd3f Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 10 Jul 2007 14:24:58 -0400 Subject: Remove gettext calls from all PM_LOG_DEBUG messages There is no real reason to burden our translators with these messages, as anyone helping to debug these will probably want them in English. Signed-off-by: Dan McGee --- lib/libalpm/alpm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/libalpm/alpm.c') diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index 11d00d4d..e3ad211d 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -76,7 +76,8 @@ int SYMEXPORT alpm_release(void) /* and also sync ones */ while((dbs_left = alpm_list_count(handle->dbs_sync)) > 0) { pmdb_t *db = (pmdb_t *)handle->dbs_sync->data; - _alpm_log(PM_LOG_DEBUG, _("removing DB %s, %d remaining..."), db->treename, dbs_left); + _alpm_log(PM_LOG_DEBUG, "removing DB %s, %d remaining...", + db->treename, dbs_left); alpm_db_unregister(db); db = NULL; } -- cgit v1.2.3-54-g00ecf