IDEA-114514 Grammar error in "Library already exists" dialog

This commit is contained in:
peter
2013-10-07 17:18:25 +02:00
parent 215044f328
commit 4af89f6548
@@ -158,7 +158,7 @@ public class AddSupportForSingleFrameworkDialog extends DialogWrapper {
if (!existingEntries.isEmpty()) {
String message;
if (existingEntries.size() > 1) {
message = "There are already " + existingEntries.size() + " " + myFrameworkType.getPresentableName() + " libraries.\n Do you want to replace they?";
message = "There are already " + existingEntries.size() + " " + myFrameworkType.getPresentableName() + " libraries.\n Do you want to replace them?";
}
else {
final String name = existingEntries.get(0).getPresentableName();