goto clean_data;
if (!data || !*data)
continue;
- fdisk_info(cxt, _("%15s: %s"), fdisk_field_get_name(fd), data);
+ fdisk_info(cxt, "%15s: %s", fdisk_field_get_name(fd), data);
free(data);
}
if (ctl->header_hint || ctl->header_year) {
for (i = month; i; i = i->next) {
- sprintf(out, _("%s"), ctl->full_month[i->month - 1]);
+ sprintf(out, "%s", ctl->full_month[i->month - 1]);
center(out, ctl->week_width - 1, i->next == NULL ? 0 : ctl->gutter_width);
}
if (!ctl->header_year) {
my_putstring("\n");
for (i = month; i; i = i->next) {
- sprintf(out, _("%04d"), i->year);
+ sprintf(out, "%04d", i->year);
center(out, ctl->week_width - 1, i->next == NULL ? 0 : ctl->gutter_width);
}
}
} else {
for (i = month; i; i = i->next) {
- sprintf(out, _("%s %04d"), ctl->full_month[i->month - 1], i->year);
+ sprintf(out, "%s %04d", ctl->full_month[i->month - 1], i->year);
center(out, ctl->week_width - 1, i->next == NULL ? 0 : ctl->gutter_width);
}
}
blanks += 1;
blanks += nm->level * 2;
printf("%*s ", blanks, "");
- printf(_("%s - %s\n"), nm->name, strerror(nm->noent));
+ printf("%s - %s\n", nm->name, strerror(nm->noent));
return -1;
}
spec = mnt_context_get_source(cxt);
if (!spec)
spec = "???";
- warnx(_("%s: %s."), spec, buf);
+ warnx("%s: %s.", spec, buf);
}
if (rc == MNT_EX_SUCCESS && mnt_context_get_status(cxt) == 1) {
spec = mnt_context_get_source(cxt);
if (!spec)
spec = "???";
- warnx(_("%s: %s."), spec, buf);
+ warnx("%s: %s.", spec, buf);
}
return rc;
}