public TranslationBundle AsDefaultBundle()
 {
     DefaultBundle = this;
     return (this);
 }
 public static TranslationBundle Create(CultureInfo cultureInfo = null, bool isDefaultBundle = true)
 {
     var bundle = new TranslationBundle(cultureInfo);
     if (isDefaultBundle || DefaultBundle == null) bundle.AsDefaultBundle();
     return (bundle);
 }