Skip to content

Merge branch dev with rel-9.2 #22965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/en/modules/language-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ This module follows the [Entity Best Practices & Conventions](../framework/archi
* `Language` (aggregate root): Represents a language in the system.
* `LanguageText` (aggregate root): Represents a language text in the system.

##### Dynamic Localization

* `LocalizationResourceRecord` (aggregate root): Represents a localization resource in the system.
* `LocalizationTextRecord` (aggregate root): Represents all texts of a localization resource in the system.

#### Repositories

This module follows the [Repository Best Practices & Conventions](../framework/architecture/best-practices/repositories.md) guide.
Expand All @@ -85,6 +90,8 @@ Following custom repositories are defined for this module:

* `ILanguageRepository`
* `ILanguageTextRepository`
* `ILocalizationResourceRecordRepository`
* `ILocalizationTextRecordRepository`

#### Domain Services

Expand Down Expand Up @@ -121,13 +128,17 @@ See the [connection strings](../framework/fundamentals/connection-strings.md) do

* **AbpLanguages**
* **AbpLanguageTexts**
* **AbpLocalizationResources**
* **AbpLocalizationTexts**

#### MongoDB

##### Collections

* **AbpLanguages**
* **AbpLanguageTexts**
* **AbpLocalizationResources**
* **AbpLocalizationTexts**

### Permissions

Expand Down
Loading