diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2016-02-22 10:38:17 +0100 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2016-02-22 10:38:17 +0100 |
commit | b9dc788eb633fa9e5c1f274f2dce6d1f1dd8ac75 (patch) | |
tree | a92a03a13b0bb7281e61f70006203dcd3ff6d948 /src/godmode.c | |
parent | 3fbf22ea46345c2faec5cd9f193fd656b28a93be (diff) |
Improve English grammar, capitalization, and punctuation
Diffstat (limited to 'src/godmode.c')
-rw-r--r-- | src/godmode.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/godmode.c b/src/godmode.c index d18797d..b1ddd65 100644 --- a/src/godmode.c +++ b/src/godmode.c @@ -204,7 +204,7 @@ static int interface_part_bad_ncurses(disk_t *disk_car, list_part_t *list_part) buffer_disk_size, buffer_disk_size_found); } wmove(stdscr,7,0); - wprintw(stdscr,"Check the harddisk size: HD jumpers settings, BIOS detection..."); + wprintw(stdscr,"Check the harddisk size: HD jumper settings, BIOS detection..."); #if defined(__CYGWIN__) || defined(__MINGW32__) if(disk_car->disk_size<=((uint64_t)1<<(28-1)) && disk_size>=((uint64_t)1<<(28-1))) { @@ -323,7 +323,7 @@ static int interface_part_bad_log(disk_t *disk_car, list_part_t *list_part) } } log_warning("%s\n",disk_car->description(disk_car)); - log_warning("Check the harddisk size: HD jumpers settings, BIOS detection...\n"); + log_warning("Check the harddisk size: HD jumper settings, BIOS detection...\n"); #if defined(__CYGWIN__) || defined(__MINGW32__) if(disk_car->disk_size<=((uint64_t)1<<(28-1)) && disk_size>=((uint64_t)1<<(28-1))) { @@ -370,7 +370,7 @@ static void warning_geometry_ncurses(disk_t *disk_car, const unsigned int recomm wmove(stdscr,10,0); wprintw(stdscr,"- some partitions are not found by TestDisk"); wmove(stdscr,11,0); - wprintw(stdscr,"- or the partition table can not be written because partitions overlaps."); + wprintw(stdscr,"- or the partition table can not be written because partitions overlap."); wmove(stdscr,22,0); wattrset(stdscr, A_REVERSE); wprintw(stdscr,"[ Continue ]"); @@ -1012,7 +1012,7 @@ static void ask_mbr_order_i386(disk_t *disk_car,list_part_t *list_part) table[nbr_prim++]=element->part; } /* */ - log_info("\nSelect primaries partition\n"); + log_info("\nSelect primary partition\n"); for(i=0;i<nbr_prim;i++) log_partition(disk_car,table[i]); /* */ @@ -1395,7 +1395,7 @@ int interface_recovery(disk_t *disk_car, const list_part_t * list_part_org, cons log_partition(disk_car,element->part); #ifdef TARGET_LINUX if(list_part!=NULL) - log_info("\nHint for advanced users. dmsetup may be used if you prefer to avoid to rewrite the partition table for the moment:\n"); + log_info("\nHint for advanced users: dmsetup may be used if you prefer to avoid rewriting the partition table for the moment:\n"); for(element=list_part;element!=NULL;element=element->next) { const partition_t *partition=element->part; |