/// <summary>
 /// Fluent helper for adding translations for the route components of a controller.
 /// </summary>
 /// <param name="builder">The translation builder that will add translations to the <see cref="FluentTranslationProvider"/></param>
 public ControllerTranslationBuilder(TranslationBuilder builder)
 {
     _builder      = builder;
     _keyGenerator = new TranslationKeyGenerator();
 }
 protected TranslationProviderBase()
 {
     _keyGenerator = new TranslationKeyGenerator();
 }