Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java	(revision 32981)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryLayer.java	(revision 32982)
@@ -116,5 +116,5 @@
       }
       if (MapillaryDownloader.getMode() == DOWNLOAD_MODE.OSM_AREA) {
-        MapillaryDownloader.automaticDownload();
+        MapillaryDownloader.downloadOSMArea();
       }
       if (MapillaryDownloader.getMode() == DOWNLOAD_MODE.VISIBLE_AREA) {
@@ -583,5 +583,5 @@
         Main.error(e);
       }
-      MapillaryDownloader.automaticDownload();
+      MapillaryDownloader.downloadOSMArea();
     }
   }
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryDownloadViewAction.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryDownloadViewAction.java	(revision 32981)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryDownloadViewAction.java	(revision 32982)
@@ -36,5 +36,5 @@
   @Override
   public void actionPerformed(ActionEvent arg0) {
-    MapillaryDownloader.completeView();
+    MapillaryDownloader.downloadVisibleArea();
   }
 }
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/io/download/MapillaryDownloader.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/io/download/MapillaryDownloader.java	(revision 32981)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/io/download/MapillaryDownloader.java	(revision 32982)
@@ -122,5 +122,4 @@
 
   private static void run(Runnable t) {
-    //threads.add(t);
     executor.execute(t);
   }
@@ -129,5 +128,5 @@
    * If some part of the current view has not been downloaded, it is downloaded.
    */
-  public static void completeView() {
+  public static void downloadVisibleArea() {
     if (getMode() != DOWNLOAD_MODE.VISIBLE_AREA && getMode() != DOWNLOAD_MODE.MANUAL_ONLY) {
       throw new IllegalStateException("Download mode must be 'visible area' or 'manual only'");
@@ -179,13 +178,12 @@
 
   /**
-   * Downloads all images of the area covered by the OSM data. This is only just
-   * for automatic download.
-   */
-  public static void automaticDownload() {
+   * Downloads all images of the area covered by the OSM data.
+   */
+  public static void downloadOSMArea() {
     if (Main.getLayerManager().getEditLayer() == null) {
       return;
     }
-    if (isAreaTooBig()) {
-      tooBigErrorDialog();
+    if (isOSMAreaTooBig()) {
+      showOSMAreaTooBigErrorDialog();
       return;
     }
@@ -205,10 +203,10 @@
    * and you will have to download areas manually.
    */
-  private static boolean isAreaTooBig() {
+  private static boolean isOSMAreaTooBig() {
     double area = Main.getLayerManager().getEditLayer().data.getDataSourceBounds().parallelStream().map(Bounds::getArea).reduce(0.0, Double::sum);
     return area > MAX_AREA;
   }
 
-  private static void tooBigErrorDialog() {
+  private static void showOSMAreaTooBigErrorDialog() {
     if (SwingUtilities.isEventDispatchThread()) {
       MapillaryLayer.getInstance().tempSemiautomatic = true;
@@ -217,7 +215,7 @@
         .showMessageDialog(
           Main.parent,
-          I18n.tr("The downloaded OSM area is too big. Download mode has been changed to semiautomatic until the layer is restarted."));
+          I18n.tr("The downloaded OSM area is too big. Download mode has been changed to OSM area until the layer is restarted."));
     } else {
-      SwingUtilities.invokeLater(MapillaryDownloader::tooBigErrorDialog);
+      SwingUtilities.invokeLater(MapillaryDownloader::showOSMAreaTooBigErrorDialog);
     }
   }
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/mode/AbstractMode.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/mode/AbstractMode.java	(revision 32981)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/mode/AbstractMode.java	(revision 32982)
@@ -92,5 +92,5 @@
           && Calendar.getInstance().getTimeInMillis() - this.lastDownload >= DOWNLOAD_COOLDOWN) {
           this.lastDownload = Calendar.getInstance().getTimeInMillis();
-          MapillaryDownloader.completeView();
+          MapillaryDownloader.downloadVisibleArea();
           this.moved = false;
           MapillaryData.dataUpdated();
