This repository was archived by the owner on Jun 26, 2023. It is now read-only.

Description
While initializatng DynamicTraslater, computer HDDIdentifier, Cpu Identifier and other personal information is collected and send to Google Analytics
Perharps it should be a good idea to add the option to disable personal data gathering, or at least inform the user about that (neither in readme or in agreement dialog on startup)
IocManager.IocContainer.AddFacility<TypedFactoryFacility>();
IocManager.RegisterAssemblyByConvention(Assembly.GetExecutingAssembly());
IocManager.Register<IUniqueIdentifierProvider, HddBasedIdentifierProvider>();
IocManager.Register<IUniqueIdentifierProvider, CpuBasedIdentifierProvider>();
IocManager.Resolve<DynamicTranslatorConfiguration>().Initialize();
/* ... */
Configurations.GoogleAnalyticsConfiguration.Url = "http://www.google-analytics.com/collect";
Configurations.GoogleAnalyticsConfiguration.TrackingId = "UA-70082243-2";
Configuration.BackgroundJobs.IsJobExecutionEnabled = false;