Click here to Skip to main content
15,886,110 members
Articles / Programming Languages / XML

Bernie’s Trackviewer

Rate me:
Please Sign up or sign in to vote.
4.84/5 (27 votes)
12 Jun 2016CPOL7 min read 61.6K   4.2K   70  
View and edit your GPS track records on a nice GUI with online maps and aerial views.

namespace GMap.NET
{
   using System.ComponentModel;

   /// <summary>
   /// This enum contains all possible languages for the Google maps. 
   /// You can find latest information about supported languages in the:
   /// http://spreadsheets.google.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&gid=1
   /// </summary>
   public enum LanguageType
   {
      [Description("ar")]
      Arabic,

      [Description("bg")]
      Bulgarian,

      [Description("bn")]
      Bengali,

      [Description("ca")]
      Catalan,

      [Description("cs")]
      Czech,

      [Description("da")]
      Danish,

      [Description("de")]
      German,

      [Description("el")]
      Greek,

      [Description("en")]
      English,

      [Description("en-AU")]
      EnglishAustralian,

      [Description("en-GB")]
      EnglishGreatBritain,

      [Description("es")]
      Spanish,

      [Description("eu")]
      Basque,

      [Description("fi")]
      Finnish,

      [Description("fil")]
      Filipino,

      [Description("fr")]
      French,

      [Description("gl")]
      Galician,

      [Description("gu")]
      Gujarati,
      [Description("hi")]
      Hindi,

      [Description("hr")]
      Croatian,

      [Description("hu")]
      Hungarian,

      [Description("id")]
      Indonesian,

      [Description("it")]
      Italian,

      [Description("iw")]
      Hebrew,

      [Description("ja")]
      Japanese,

      [Description("kn")]
      Kannada,

      [Description("ko")]
      Korean,

      [Description("lt")]
      Lithuanian,

      [Description("lv")]
      Latvian,

      [Description("ml")]
      Malayalam,

      [Description("mr")]
      Marathi,

      [Description("nl")]
      Dutch,

      [Description("nn")]
      NorwegianNynorsk,

      [Description("no")]
      Norwegian,

      [Description("or")]
      Oriya,

      [Description("pl")]
      Polish,

      [Description("pt")]
      Portuguese,

      [Description("pt-BR")]
      PortugueseBrazil,

      [Description("pt-PT")]
      PortuguesePortugal,

      [Description("rm")]
      Romansch,
      [Description("ro")]
      Romanian,

      [Description("ru")]
      Russian,

      [Description("sk")]
      Slovak,

      [Description("sl")]
      Slovenian,

      [Description("sr")]
      Serbian,

      [Description("sv")]
      Swedish,

      [Description("ta")]
      Tamil,

      [Description("te")]
      Telugu,

      [Description("th")]
      Thai,

      [Description("tr")]
      Turkish,

      [Description("uk")]
      Ukrainian,

      [Description("vi")]
      Vietnamese,

      [Description("zh-CN")]
      ChineseSimplified,

      [Description("zh-TW")]
      ChineseTraditional,
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions