0
mahendra created
- What is your product type (Angular or MVC)?
- Angular
- What is product framework type (.net framework or .net core)?
- .net Core
Hi Team, I have following question
- How abp load the language text to support multi language. As we have many datasource for language like xml file , abplanguagetext. which function is called to load this. I want to know as i am inserting dynamic text in database. (Check how it is mainting the Language Cache (Reading From XML + Database )) As per my analysis some text is Read from XML and some is Read from DB.
1 Answer(s)
-
0
Hi @mahendra,
Localization cache is cleared when a
ApplicationLanguageText
entity is changed, see https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.Zero.Common/Localization/MultiTenantLocalizationDictionaryCacheCleaner.cs. So, the cache must be cleared when you insert a new ApplicationLanguageText to database.Do you insert those items to database from an external app ?