Blob Blame History Raw
From 676ab960d771568a4c4cf3c2db6e6a76b76bdbad Mon Sep 17 00:00:00 2001
From: mprahl <matt_prahl@live.com>
Date: Thu, 21 Sep 2017 20:05:50 -0400
Subject: [PATCH 2/2] Fix small grammar errors

---
 src/MainFrame.cpp | 2 +-
 src/woeusb        | 4 ++--
 src/woeusb.1      | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/MainFrame.cpp b/src/MainFrame.cpp
index 23d94bf..1bd0a9e 100755
--- a/src/MainFrame.cpp
+++ b/src/MainFrame.cpp
@@ -38,7 +38,7 @@ MainFrame::MainFrame(const wxString& title, const wxPoint& pos, const wxSize& si
 
         // File menu
     wxMenu *FileMenu = new wxMenu;
-    m_menuItemShowAll = new wxMenuItem(FileMenu, wxID_ANY, wxString(_("Show all drive")) + _T("\tCtrl+A"), _("Show all drives, even those not detected as USB stick."), wxITEM_CHECK);
+    m_menuItemShowAll = new wxMenuItem(FileMenu, wxID_ANY, wxString(_("Show all drives")) + _T("\tCtrl+A"), _("Show all drives, even those not detected as USB stick."), wxITEM_CHECK);
     FileMenu->Append(m_menuItemShowAll);
 
     FileMenu->AppendSeparator();
diff --git a/src/woeusb b/src/woeusb
index c311b3a..8760a09 100755
--- a/src/woeusb
+++ b/src/woeusb
@@ -225,13 +225,13 @@ print_help(){
 	echo -e "=========================="
 	echo -e "Create a bootable Windows USB device from a bootable Windows optical disk or an disk image"
 	echo -e
-	echo -e "Copy Windows files to an existing FAT partition of an USB storage and make it bootable"
+	echo -e "Copy Windows files to an existing FAT partition of a USB storage device and make it bootable"
 	echo -e "NOTE: All files that has the same name will be OVERWRITTEN!"
 	echo -e "\t""${RUNTIME_EXECUTABLE_NAME} --partition <source media path> <partition>"
 	echo -e "\t""Example: ${RUNTIME_EXECUTABLE_NAME} --partition win7_amd64.iso /dev/sdX1"
 	echo -e "\t""Example: ${RUNTIME_EXECUTABLE_NAME} --partition /dev/sr0 /dev/sdX1"
 	echo -e
-	echo -e "Completely DESTROY all previous data on an USB storage and recreate partition table and target partition, copy Windows files and make it bootable"
+	echo -e "Completely DESTROY all previous data on a USB storage device, recreate the partition table and the target partition, copy the Windows files, and make it bootable"
 	echo -e "\t""${RUNTIME_EXECUTABLE_NAME} --device <source media path> <device>"
 	echo -e "\t""Example: ${RUNTIME_EXECUTABLE_NAME} --device win7_amd64.iso /dev/sdX"
 	echo -e "\t""Example: ${RUNTIME_EXECUTABLE_NAME} --device /dev/sr0 /dev/sdX"
diff --git a/src/woeusb.1 b/src/woeusb.1
index dfd7732..533df4a 100644
--- a/src/woeusb.1
+++ b/src/woeusb.1
@@ -77,13 +77,13 @@ Note that the label is not verified for validity and may be illegal for the file
 .SH EXAMPLES
 We love examples!
 
-Completely DESTROY all previous data on an USB storage and recreate partition table and target partition, copy Windows files and make it bootable
+Completely DESTROY all previous data on a USB storage device, recreate the partition table and the target partition, copy the Windows files, and make it bootable
 .EX
 # woeusb --device win7_amd64.iso /dev/sdX
 # woeusb --device /dev/sr0 /dev/sdX
 .EE
 
-Copy Windows files to an existing FAT partition of an USB storage and make it bootable
+Copy Windows files to an existing FAT partition of a USB storage device and make it bootable
 .EX
 # woeusb --partition win7_amd64.iso /dev/sdX1
 # woeusb --partition /dev/sr0 /dev/sdX1
-- 
2.13.5