if (!get_nr_sects(pe->part_table) &&
(partitions > 5 || ptes[4].part_table->sys_ind)) {
- printf("omitting empty partition (%d)\n", i+1);
+ printf(_("omitting empty partition (%d)\n"), i+1);
delete_partition(i);
goto remove; /* numbering changed */
}
if (i)
fix_chain_of_logicals();
- printf("Done.\n");
+ printf(_("Done.\n"));
}
if (verbose)
printf(_("One Partition (#11) should cover the entire disk.\n"));
if (debug>2)
- printf("sysid=%d\tpartition=%d\n",
+ printf(_("sysid=%d\tpartition=%d\n"),
sgi_get_sysid(Index[0]), Index[0]+1);
}
for (i=1, start=0; i<sortcount; i++) {
first += cs - x;
}
if (n == 2 && first != 0)
- printf ("\
+ printf (_("\
It is highly recommended that the third partition covers the whole disk\n\
-and is of type `Whole disk'\n");
+and is of type `Whole disk'\n"));
/* ewt asks to add: "don't start a partition at cyl 0"
However, edmundo@rano.demon.co.uk writes:
"In addition to having a Sun partition table, to be able to
out_partition_header(char *dev, int format, struct geometry G) {
if (dump) {
printf(_("# partition table of %s\n"), dev);
- printf("unit: sectors\n\n");
+ printf(_("unit: sectors\n\n"));
return;
}
size = p->size;
if (dump) {
- printf(" start=%9lu", start);
- printf(", size=%9lu", size);
+ printf(_(" start=%9lu"), start);
+ printf(_(", size=%9lu"), size);
if (p->ptype == DOS_TYPE) {
printf(", Id=%2x", p->p.sys_type);
if (p->p.bootable == 0x80)
- printf(", bootable");
+ printf(_(", bootable"));
}
printf("\n");
return;