From 29997ef5fdc935fe5e292fea66ad7a602a997870 Mon Sep 17 00:00:00 2001 From: Valdis Iljuconoks Date: Tue, 22 Oct 2024 21:10:30 +0300 Subject: [PATCH] fixed some links --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8b3517a..cb5c1e2 100644 --- a/README.md +++ b/README.md @@ -49,20 +49,20 @@ public class Startup public void ConfigureServices(IServiceCollection services) { // add your authorization provider (asp.net identity, identity server, whichever..) - + services .AddControllersWithViews() .AddMvcLocalization(); - + services.AddRazorPages(); services.AddRouting(); - + services.AddDbLocalizationProvider(_ => { _.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")); ... }); - + services.AddDbLocalizationProviderAdminUI(_ => { ... @@ -85,11 +85,11 @@ public class Startup app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); - + app.UseDbLocalizationProvider(); app.UseDbLocalizationProviderAdminUI(); app.UseDbLocalizationClientsideProvider(); //assuming that you like also Javascript - + app.UseEndpoints(endpoints => { endpoints.MapRazorPages(); @@ -254,6 +254,6 @@ Please [refer to this post](https://tech-fellow.eu/2020/02/22/localization-provi # More Info * [Part 1: Resources and Models](https://tech-fellow.eu/2016/03/16/db-localization-provider-part-1-resources-and-models/) -* [Part 2: Configuration and Extensions](https://tech-fellow.eu/2016/04/21/db-localization-provider-part-2-configuration-and-extensions/) -* [Part 3: Import and Export](https://tech-fellow.eu/2017/02/22/localization-provider-import-and-export-merge/) +* [Part 2: Configuration and Extensions](https://tech-fellow.eu/2016/04/22/db-localization-provider-part-2-configuration-and-extensions/) +* [Part 3: Import and Export](https://tech-fellow.eu/2017/02/23/localization-provider-import-and-export-merge/) * [Part 4: Resource Refactoring and Migrations](https://tech-fellow.eu/2017/10/10/localizationprovider-tree-view-export-and-migrations/)