Skip to content

Commit 6675dee

Browse files
committed
Merge branch 'dev' of https://github.com/abpframework/abp into dev
2 parents 3cc0014 + 1a27dcb commit 6675dee

2 files changed

Lines changed: 10 additions & 17 deletions

File tree

docs/en/Community-Articles/2026-04-17-Top-AI-Coding-Models-2026-Rankings/Post.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
# Top AI Coding Models in 2026: Which One Should Developers Actually Use?
2-
3-
Meta Description:
4-
Explore the top AI coding models in 2026, ranked by performance, real-world usage, and developer experience. Find the best model for your workflow.
5-
6-
Keywords:
7-
8-
* AI coding models 2026
9-
* best AI for programming
10-
* GPT-5 vs Claude vs Gemini
11-
* code generation AI tools
12-
* AI developer assistants
13-
* LLM coding benchmarks
14-
15-
---
16-
171
## Introduction
182

193
AI coding tools went from “cool autocomplete” to “basically your junior dev (who never sleeps)” in just a couple of years.

modules/feature-management/src/Volo.Abp.FeatureManagement.Web/AbpFeatureManagementWebModule.cs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
using Microsoft.AspNetCore.Mvc.RazorPages;
1+
using Localization.Resources.AbpUi;
2+
using Microsoft.AspNetCore.Mvc.RazorPages;
23
using Microsoft.Extensions.DependencyInjection;
34
using Volo.Abp.AspNetCore.Mvc.Localization;
45
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared;
56
using Volo.Abp.FeatureManagement.Localization;
67
using Volo.Abp.FeatureManagement.Settings;
78
using Volo.Abp.Http.ProxyScripting.Generators.JQuery;
9+
using Volo.Abp.Localization;
810
using Volo.Abp.Modularity;
911
using Volo.Abp.SettingManagement.Web;
1012
using Volo.Abp.SettingManagement.Web.Pages.SettingManagement;
@@ -38,6 +40,13 @@ public override void PreConfigureServices(ServiceConfigurationContext context)
3840

3941
public override void ConfigureServices(ServiceConfigurationContext context)
4042
{
43+
Configure<AbpLocalizationOptions>(options =>
44+
{
45+
options.Resources
46+
.Get<AbpFeatureManagementResource>()
47+
.AddBaseTypes(typeof(AbpUiResource));
48+
});
49+
4150
Configure<AbpVirtualFileSystemOptions>(options =>
4251
{
4352
options.FileSets.AddEmbedded<AbpFeatureManagementWebModule>();

0 commit comments

Comments
 (0)