Index: applications/editors/josm/plugins/github
===================================================================
--- applications/editors/josm/plugins/github	(revision 36366)
+++ applications/editors/josm/plugins/github	(revision 36367)
@@ -39,4 +39,23 @@
   }
 }
+elsif(($ARGV[0]||'') eq 'i18nupdate')
+{
+  my $dir = cwd();
+  for my $plugin (<$file>)
+  {
+    print($plugin);
+    chomp($plugin);
+    chdir($plugin);
+    for my $file (glob "data/*.lang")
+    {
+      system('git','add',$file);
+    }
+    system('git','commit','-m','I18n update');
+    system('git','remote','set-url','origin',"git\@github.com:JOSM/$plugin.git");
+    system('git','push');
+    chdir($dir);
+  }
+
+}
 else
 {
