mirror of https://github.com/acidanthera/audk.git
Fixed grammar in messages.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1366 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ea7f8a9334
commit
af6afe483d
|
@ -214,7 +214,7 @@ public class DataType {
|
||||||
// First defined here
|
// First defined here
|
||||||
// Will be replaced by resource file later
|
// Will be replaced by resource file later
|
||||||
//
|
//
|
||||||
public static final String SUP_ARCH_LIST_HELP_TEXT = "<html>Selecting a checkbox means supporting the selected architectures;<br> None of boxes are checked means supporting all architectures<html>";
|
public static final String SUP_ARCH_LIST_HELP_TEXT = "<html>Selecting a checkbox is a restriction of only the selected architectures;<br>If none of boxes are selected, all architectures are supported.<html>";
|
||||||
|
|
||||||
//
|
//
|
||||||
// Project name and version
|
// Project name and version
|
||||||
|
|
|
@ -182,11 +182,11 @@ public class GlobalData {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} 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) {
|
} 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) {
|
} 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;
|
return modulePath;
|
||||||
}
|
}
|
||||||
|
|
|
@ -408,7 +408,7 @@ public class Tools {
|
||||||
if (s.length() == 6 && s.indexOf(DataType.HEX_STRING_HEADER) == 0) {
|
if (s.length() == 6 && s.indexOf(DataType.HEX_STRING_HEADER) == 0) {
|
||||||
s = s.substring(DataType.HEX_STRING_HEADER.length());
|
s = s.substring(DataType.HEX_STRING_HEADER.length());
|
||||||
} else {
|
} else {
|
||||||
Log.err("convertUnicodeHexStringToString", "Wrong input string: " + str);
|
Log.err("convertUnicodeHexStringToString", "Incorrect input string: " + str);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
|
|
@ -177,7 +177,7 @@ public class ExitConfirm extends JDialog implements ActionListener, WindowListen
|
||||||
String strTitle = "Exit";
|
String strTitle = "Exit";
|
||||||
String strMessage = "Do you really want to quit now?";
|
String strMessage = "Do you really want to quit now?";
|
||||||
String strResume = "All unsaved module information will be lost.";
|
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);
|
setWarningMessage(strTitle, strMessage, strResume, strExit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -92,8 +92,8 @@ public class IComboBox extends JComboBox implements KeyListener, MouseListener,
|
||||||
this.addKeyListener(this);
|
this.addKeyListener(this);
|
||||||
this.getEditor().getEditorComponent().addKeyListener(this);
|
this.getEditor().getEditorComponent().addKeyListener(this);
|
||||||
this.getEditor().getEditorComponent().addFocusListener(this);
|
this.getEditor().getEditorComponent().addFocusListener(this);
|
||||||
this.setToolTipText("<html>Double Click to add an entry and finished by press ENTER. <br>"
|
this.setToolTipText("<html>Double Click to add an entry, then finish by press ENTER.<br>"
|
||||||
+ "Press DELETE can remove selected entry.</html>");
|
+ "Selecting DELETE will remove selected entry.</html>");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void keyPressed(KeyEvent arg0) {
|
public void keyPressed(KeyEvent arg0) {
|
||||||
|
|
Loading…
Reference in New Issue