Exemplo n.º 1
0
 public static bool Run(Plugin plugin, ICore core)
 {
     if (core.ActiveGeocache == null)
     {
         System.Windows.Forms.MessageBox.Show(LanguageSupport.Instance.GetTranslation("No active geocache"));
     }
     else
     {
         core.ActiveGeocache.City = Geocoder.GetCityName(core.ActiveGeocache.Lat, core.ActiveGeocache.Lon);
     }
     return(true);
 }