diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2012-01-10 20:26:55 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2012-01-10 20:27:25 +0200 |
commit | d8d52e0bc70f763dcec7b2799b777aed0a83fc02 (patch) | |
tree | 45e1dd5d785d3e788495e19eaad18f4cb0bd0feb | |
parent | 9ddcc23d2b7ecaf5336530dbe37195b0057d0396 (diff) | |
download | librpm-tizen-d8d52e0bc70f763dcec7b2799b777aed0a83fc02.tar.gz librpm-tizen-d8d52e0bc70f763dcec7b2799b777aed0a83fc02.tar.bz2 librpm-tizen-d8d52e0bc70f763dcec7b2799b777aed0a83fc02.zip |
Oops, forgot to mark our new progress messages for translation
-rw-r--r-- | lib/rpminstall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rpminstall.c b/lib/rpminstall.c index f7c7fc826..d3cf449d8 100644 --- a/lib/rpminstall.c +++ b/lib/rpminstall.c @@ -138,9 +138,9 @@ void * rpmShowProgress(const void * arg, state = what; if (flags & INSTALL_HASH) { if (what == RPMCALLBACK_INST_START) { - fprintf(stdout, "Updating / installing...\n"); + fprintf(stdout, _("Updating / installing...\n")); } else { - fprintf(stdout, "Cleaning up / removing...\n"); + fprintf(stdout, _("Cleaning up / removing...\n")); } fflush(stdout); } |