From: lhauch Date: Wed, 23 Aug 2006 16:39:35 +0000 (+0000) Subject: Fixed grammar in messages. X-Git-Tag: edk2-stable201903~24507 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=af6afe483dee82a3e4f07087da261a6d67a0058f Fixed grammar in messages. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1366 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/DataType.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/DataType.java index 9170c9c336..80af3239b3 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/DataType.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/DataType.java @@ -214,7 +214,7 @@ public class DataType { // First defined here // Will be replaced by resource file later // - public static final String SUP_ARCH_LIST_HELP_TEXT = "Selecting a checkbox means supporting the selected architectures;
None of boxes are checked means supporting all architectures"; + public static final String SUP_ARCH_LIST_HELP_TEXT = "Selecting a checkbox is a restriction of only the selected architectures;
If none of boxes are selected, all architectures are supported."; // // Project name and version diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/GlobalData.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/GlobalData.java index 2d4fbe4699..4c179929a5 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/GlobalData.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/GlobalData.java @@ -182,11 +182,11 @@ public class GlobalData { } } } catch (IOException e) { - Log.err("Get all mdoules of a package " + path, e.getMessage()); + Log.err("Get all modules from a package " + path, e.getMessage()); } catch (XmlException e) { - Log.err("Get all mdoules of a package " + path, e.getMessage()); + Log.err("Get all modules from a package " + path, e.getMessage()); } catch (Exception e) { - Log.err("Get all mdoules of a package " + path, e.getMessage()); + Log.err("Get all modules from a package " + path, e.getMessage()); } return modulePath; } diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Tools.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Tools.java index 983201f5a0..7a98afdb7b 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Tools.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Tools.java @@ -408,7 +408,7 @@ public class Tools { if (s.length() == 6 && s.indexOf(DataType.HEX_STRING_HEADER) == 0) { s = s.substring(DataType.HEX_STRING_HEADER.length()); } else { - Log.err("convertUnicodeHexStringToString", "Wrong input string: " + str); + Log.err("convertUnicodeHexStringToString", "Incorrect input string: " + str); continue; } // diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ExitConfirm.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ExitConfirm.java index d5298df38b..836ed7b386 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ExitConfirm.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ExitConfirm.java @@ -177,7 +177,7 @@ public class ExitConfirm extends JDialog implements ActionListener, WindowListen String strTitle = "Exit"; String strMessage = "Do you really want to quit now?"; String strResume = "All unsaved module information will be lost."; - String strExit = "To continue editing module, click Resume. To quit the program, click Exit."; + String strExit = "To continue editing the module, click Resume. To quit the program, click Exit."; setWarningMessage(strTitle, strMessage, strResume, strExit); } diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/IComboBox.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/IComboBox.java index bba08664bb..68c368e29b 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/IComboBox.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/IComboBox.java @@ -92,8 +92,8 @@ public class IComboBox extends JComboBox implements KeyListener, MouseListener, this.addKeyListener(this); this.getEditor().getEditorComponent().addKeyListener(this); this.getEditor().getEditorComponent().addFocusListener(this); - this.setToolTipText("Double Click to add an entry and finished by press ENTER.
" - + "Press DELETE can remove selected entry."); + this.setToolTipText("Double Click to add an entry, then finish by press ENTER.
" + + "Selecting DELETE will remove selected entry."); } public void keyPressed(KeyEvent arg0) {