mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
- Fixed some text issues related to Bug 6675. Not closed because it keep growing...
This commit is contained in:
parent
1f98cc1f4a
commit
a20bc6c414
4 changed files with 14 additions and 10 deletions
|
|
@ -112,7 +112,10 @@ public abstract class TargetImpl implements Target {
|
|||
sb.append(suffix);
|
||||
return sb.toString();
|
||||
}
|
||||
if (targetName.startsWith("another") || targetName.startsWith("a ") || targetName.startsWith("an ")) {
|
||||
if (targetName.startsWith("another")
|
||||
|| targetName.startsWith("a ")
|
||||
|| targetName.startsWith("an ")
|
||||
|| targetName.startsWith("any ")) {
|
||||
return "Select " + targetName + suffix;
|
||||
} else if (targetName.startsWith("a") || targetName.startsWith("e") || targetName.startsWith("i") || targetName.startsWith("o") || targetName.startsWith("u")) {
|
||||
return "Select an " + targetName + suffix;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue