L2ACP-Web icon indicating copy to clipboard operation
L2ACP-Web copied to clipboard

ru-RU

Open gvbits opened this issue 7 years ago • 1 comments

        `services.Configure<RequestLocalizationOptions>(
            opts =>
            {
                var supportedCultures = new List<CultureInfo>
                {
                    new CultureInfo("en-GB"),
                    new CultureInfo("pt-BR"),
                    new CultureInfo("ru-RU")
                };

                opts.DefaultRequestCulture = new RequestCulture("en-GB");
                // Formatting numbers, dates, etc.
                opts.SupportedCultures = supportedCultures;
                // UI strings that we have localized.
                opts.SupportedUICultures = supportedCultures;
            });`

Resources.zip

gvbits avatar May 07 '18 21:05 gvbits

Can you create a pull request?

Elfocrash avatar May 07 '18 21:05 Elfocrash