Index: trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 11571)
+++ trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 11572)
@@ -442,4 +442,6 @@
     public ImageryInfo(ImageryInfo i) {
         super(i.name, i.url, i.id);
+        this.origName = i.origName;
+        this.langName = i.langName;
         this.defaultEntry = i.defaultEntry;
         this.cookies = i.cookies;
@@ -1197,8 +1199,12 @@
                if (num > 1) {
                    n.name = tr("{0} mirror server {1}", n.name, num);
-                   n.origName += " mirror server " + num;
+                   if(n.origName != null) {
+                       n.origName += " mirror server " + num;
+                   }
                } else {
                    n.name = tr("{0} mirror server", n.name);
-                   n.origName += " mirror server";
+                   if(n.origName != null) {
+                       n.origName += " mirror server";
+                   }
                }
                l.add(n);
