diff -ur cvs-parted/parted/parted.c parted-fresh/parted/parted.c --- cvs-parted/parted/parted.c 2005-03-29 13:46:01.000000000 +0200 +++ parted-fresh/parted/parted.c 2005-04-04 16:23:25.000000000 +0200 @@ -81,7 +81,7 @@ static char* number_msg = N_( "NUMBER is the partition number used by Linux. On msdos disk labels, the " -"primary partitions number from 1-4, and logical partitions are 5 onwards.\n"); +"primary partitions number from 1 to 4, logical partitions from 5 onwards.\n"); static char* label_type_msg_start = N_("LABEL-TYPE is one of: "); static char* flag_msg_start = N_("FLAG is one of: "); @@ -389,7 +389,7 @@ goto error_destroy_disk; if (src->type == PED_PARTITION_EXTENDED) { ped_exception_throw (PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, - _("Can't copy extended partitions.")); + _("Can't copy an extended partition.")); goto error_destroy_disk; } if (!_partition_warn_busy (src)) @@ -637,7 +637,7 @@ if (part_type == PED_PARTITION_EXTENDED) { ped_exception_throw (PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, - _("Extended partitions can't have file systems. " + _("An extended partition cannot hold a file system. " "Did you want mkpart?")); goto error_destroy_disk; } @@ -713,7 +713,7 @@ goto error_destroy_disk; if (part->type == PED_PARTITION_EXTENDED) { ped_exception_throw (PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, - _("Can't move extended partitions.")); + _("Can't move an extended partition.")); goto error_destroy_disk; } old_geom = part->geom; @@ -931,7 +931,7 @@ chs->heads * chs->sectors, *dev, PED_UNIT_KILOBYTE); printf (_("BIOS cylinder,head,sector geometry: %d,%d,%d. " - "Each cylinder has %s.\n"), + "Each cylinder is %s.\n"), chs->cylinders, chs->heads, chs->sectors, cyl_size); ped_free (cyl_size); } @@ -1543,9 +1543,8 @@ _(mkpart_fs_type_msg), _(start_end_msg), "\n", -_( -"mkpart makes a partition without creating a new file system on the " -"partition. FS-TYPE may be specified to set an appropriate partition ID.\n"), +_("mkpart makes a partition without creating a new file system on the " + "partition. FS-TYPE may be specified to set an appropriate partition ID.\n"), NULL))); command_register (commands, command_create ( @@ -1633,18 +1632,16 @@ str_list_create ( _("set NUMBER FLAG STATE change a flag on partition NUMBER"), NULL), - str_list_create (_(number_msg), flag_msg, _(state_msg), - NULL))); + str_list_create (_(number_msg), flag_msg, _(state_msg), NULL))); - command_register (commands, command_create ( - str_list_create_unique ("unit", _("unit"), NULL), - do_unit, - str_list_create ( - _("unit UNIT set the default unit to UNIT"), - NULL), - str_list_create (unit_msg, - NULL))); - } + command_register (commands, command_create ( + str_list_create_unique ("unit", _("unit"), NULL), + do_unit, + str_list_create ( +_("unit UNIT set the default unit to UNIT"), +NULL), + str_list_create (unit_msg, NULL))); +} static void _done_commands ()