diff options
author | Dan McGee <dan@archlinux.org> | 2007-07-10 20:24:58 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-07-10 20:24:58 +0200 |
commit | ea1fef69add040b9e5b1de6e9238eda4576ccd3f (patch) | |
tree | f1f99bdb3ca0dd5b0360c33bda4ea14d7ecb72e5 /lib/libalpm/alpm.c | |
parent | 9a9928f1b88f4fa08826aa83ff16e6ef38bd4e6c (diff) | |
download | pacman-ea1fef69add040b9e5b1de6e9238eda4576ccd3f.tar.gz pacman-ea1fef69add040b9e5b1de6e9238eda4576ccd3f.tar.xz |
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 <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.c')
-rw-r--r-- | lib/libalpm/alpm.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |