"No internet connection" copy change. Closes #3007

This commit is contained in:
Federico Fissore 2015-04-22 09:59:28 +02:00
parent 5af390b5e2
commit 269a8b1199
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ public class LibraryManagerUI extends InstallerJDialog<ContributedLibrary> {
}
public LibraryManagerUI(Frame parent) {
super(parent, "Library Manager", Dialog.ModalityType.APPLICATION_MODAL, _("No internet connection available, the list of available libraries is not complete. You will be able to manage only the libraries you've already installed."));
super(parent, "Library Manager", Dialog.ModalityType.APPLICATION_MODAL, _("Unable to reach Arduino.cc due to possible network issues."));
filtersContainer.add(new JLabel(_("Topic")), 1);
filtersContainer.remove(2);

View File

@ -87,7 +87,7 @@ public class ContributionManagerUI extends InstallerJDialog {
}
public ContributionManagerUI(Frame parent) {
super(parent, _("Boards Manager"), Dialog.ModalityType.APPLICATION_MODAL, _("No internet connection available, the list of available boards is not complete. You will be able to manage only the boards you've already installed."));
super(parent, _("Boards Manager"), Dialog.ModalityType.APPLICATION_MODAL, _("Unable to reach Arduino.cc due to possible network issues."));
}
public void setIndexer(ContributionsIndexer indexer) {