Hello,
this Version does not work for the german VS2012 because of the following code:
Assembly asm = Assembly.GetExecutingAssembly(); // Fix me! ResourceManager resourceManager = new ResourceManager(VSAddin.CommandBarResourceName, asm);int localID = VSAddin.ApplicationObject.LocaleID; CultureInfo cultureInfo = new System.Globalization.CultureInfo(localID);string resourceName = String.Concat(cultureInfo.TwoLetterISOLanguageName, "Tools"); _toolsMenuName = resourceManager.GetString(resourceName);
this localization routine returns "Extras" for the menuname, but in german VS2012 the menu name remains "Tools". Please check for other language versions.