[PATCH 3/6] Apply gettext translation to strings kept in format->{fmt, msg, type}.
Arkadiusz Miskiewicz
arekm at maven.pl
Mon Dec 15 13:29:43 CST 2008
Patch by Jakub Bogusz <qboosh at pld-linux.org>.
---
xfsprogs/repair/progress.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/xfsprogs/repair/progress.c b/xfsprogs/repair/progress.c
index ff42f82..c6630e5 100644
--- a/xfsprogs/repair/progress.c
+++ b/xfsprogs/repair/progress.c
@@ -339,16 +339,16 @@ print_final_rpt(void)
if (report_interval) {
switch(msgp->format->format) {
case FMT1:
- sprintf (msgbuf, *msgp->format->fmt,
+ sprintf (msgbuf, _(*msgp->format->fmt),
tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
- msgp->format->msg, sum,
- *msgp->total, *msgp->format->type);
+ _(msgp->format->msg), sum,
+ *msgp->total, _(*msgp->format->type));
break;
case FMT2:
- sprintf (msgbuf, *msgp->format->fmt,
+ sprintf (msgbuf, _(*msgp->format->fmt),
tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
- msgp->format->msg, sum,
- *msgp->format->type);
+ _(msgp->format->msg), sum,
+ _(*msgp->format->type));
break;
}
do_log(_("%s"), msgbuf);
--
1.6.0.5
More information about the xfs
mailing list