Index: applications/editors/josm/plugins/tag2link/resources/tag2link_sources.xml
===================================================================
--- applications/editors/josm/plugins/tag2link/resources/tag2link_sources.xml	(revision 28548)
+++ applications/editors/josm/plugins/tag2link/resources/tag2link_sources.xml	(revision 28549)
@@ -21,5 +21,5 @@
     <!-- Global --> 
 
-    <source name="Common">
+    <src name="Common">
         <rule>
             <condition k="(contact:)?website" />
@@ -34,30 +34,30 @@
             <link name="Send Email" href="mailto:%v%" />
         </rule>
-    </source>
+    </src>
     
-    <source name="Wikipedia">
+    <src name="Wikipedia">
         <rule>
             <condition k="wikipedia(?::(\p{Lower}{2,}))?" v="(?:(\p{Lower}{2,}):)?(.*)" />
             <link name="View %name% article" href="http://%k.1:v.1:en%.wikipedia.org/wiki/%v.2:v.1%" />
         </rule>
-    </source>
+    </src>
 
-    <source name="WHC">
+    <src name="WHC">
         <rule>
             <condition k="ref:whc" v="[0-9-]+" />
             <link name="View UNESCO sheet" href="http://whc.unesco.org/%lang(en,fr):en%/list/%v%" />
         </rule>
-    </source>
+    </src>
     
     <!-- Only for France --> 
     
-    <source name="SANDRE" country-code="FR">
+    <src name="SANDRE" country-code="FR">
         <rule>
             <condition k="ref:(FR:)?sandre" v="[A-Z0-9-]{8}" />
             <link name="View %name% sheet of river" href="http://services.sandre.eaufrance.fr/Courdo/Fiche/client/fiche_courdo.php?CdSandre=%v%" />
         </rule>
-    </source>
+    </src>
     
-    <source name="INSEE" country-code="FR">
+    <src name="INSEE" country-code="FR">
         <rule>
             <condition k="admin_level" v="8"/>
@@ -96,14 +96,14 @@
             <link name="View %name% list of regions" href="http://www.insee.fr/fr/methodes/nomenclatures/cog/region.asp" />
         </rule>
-    </source>
+    </src>
     
-    <source name="CEF" country-code="FR">
+    <src name="CEF" country-code="FR">
         <rule>
             <condition k="ref:(FR:)?CEF" v="[A-Z0-9_]{8}" />
             <link name="View %name% sheet of church" href="http://www.messesinfo.catholique.fr/public/fiche.php?valcode=%v%" />
         </rule>
-    </source>
+    </src>
 
-    <source name="MHS" country-code="FR">
+    <src name="MHS" country-code="FR">
         <rule>
             <condition k="ref:(FR:)?mhs" v="\p{Upper}{2}\p{Digit}{8}" />
@@ -114,7 +114,7 @@
             <link name="View Mérimée list for this municipality" href="http://www.culture.gouv.fr/public/mistral/merimee_fr?ACTION=CHERCHER&amp;FIELD_1=cmer1&amp;VALUE_1=%v%" />
         </rule>
-    </source>
+    </src>
 
-    <source name="IGN" country-code="FR">
+    <src name="IGN" country-code="FR">
 		<!-- 
 		http://geodesie.ign.fr/fiches/index.php?module=e&action=fichepdf&source=carte&sit_no=4509302&geo_cid=0&lambda=1.90024744&phi=48.03041621
@@ -137,20 +137,20 @@
             <link name="View %name% sheet of geodesic site" href="http://geodesie.ign.fr/fiches/index.php?module=e&amp;action=fichepdf&amp;source=carte&amp;sit_no=%ref.v.1%" />
         </rule>
-    </source>
+    </src>
 
-    <source name="Education Nationale" country-code="FR">
+    <src name="Education Nationale" country-code="FR">
         <rule>
             <condition k="ref:(FR:)?UAI" />
             <link name="View UAI sheet of school/college" href="http://www.education.gouv.fr/bce/avancee/fiche.php?NUMERO_UAI=%v%&amp;type_info=UAI_all" />
         </rule>
-    </source>
+    </src>
 
     <!-- social facility --> 
-    <source name="FINESS" country-code="FR">
+    <src name="FINESS" country-code="FR">
         <rule>
             <condition k="ref:(FR:)?FINESS" v="[A-Z0-9-]{9}" />
             <link name="View %name% sheet of hospital/home" href="http://finess.sante.gouv.fr/finess/jsp/actionDetailEtablissement.do?noFiness=%v%" />
         </rule>
-    </source>
+    </src>
     
 </tag2link>
Index: applications/editors/josm/plugins/tag2link/src/org/openstreetmap/josm/plugins/tag2link/io/SourcesReader.java
===================================================================
--- applications/editors/josm/plugins/tag2link/src/org/openstreetmap/josm/plugins/tag2link/io/SourcesReader.java	(revision 28548)
+++ applications/editors/josm/plugins/tag2link/src/org/openstreetmap/josm/plugins/tag2link/io/SourcesReader.java	(revision 28549)
@@ -144,5 +144,5 @@
             int event = parser.next();
             if (event == XMLStreamConstants.START_ELEMENT) {
-                if (parser.getLocalName().equals("source")) {
+                if (parser.getLocalName().equals("src")) {
                     result.add(parseSource());
                 } else {
