Esempio n. 1
0
 public static ILocalization Create(String path, ConfigType type, ConfigOptions options, ILocalizationBehaviour behaviour)
 {
     CurrentLocalization.ThrowIfAlreadyInitialized();
     CurrentLocalization.Current = new InternalLocalization(path, type, options, behaviour);
     return(Current);
 }
Esempio n. 2
0
 public static ILocalization Create(ConfigType type, ConfigOptions options, ILocalizationBehaviour behaviour)
 {
     return(Create(null, type, options, behaviour));
 }
Esempio n. 3
0
 public static ILocalization Create(String path, ConfigOptions options, ILocalizationBehaviour behaviour)
 {
     return(Create(path, DefaultConfigType, options, behaviour));
 }
Esempio n. 4
0
 public static ILocalization Create(ConfigType type, ILocalizationBehaviour behaviour)
 {
     return(Create(type, Config.DefaultConfigOptions, behaviour));
 }