-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from EasyAbp/display-name-localization
Support for display names localization
- Loading branch information
Showing
26 changed files
with
4,836 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
host/EasyAbp.ProcessManagement.Web.Unified/Localization/Demo/en.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"culture": "en", | ||
"texts": { | ||
"Process:FakeExport": "Fake export", | ||
"State:Ready": "Ready", | ||
"State:FailedToStartExporting": "Failed", | ||
"State:Exporting": "Exporting", | ||
"State:ExportFailed": "Failed", | ||
"State:Succeeded": "Succeeded" | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
host/EasyAbp.ProcessManagement.Web.Unified/Localization/DemoResource.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using Volo.Abp.Localization; | ||
|
||
namespace EasyAbp.ProcessManagement.Localization; | ||
|
||
[LocalizationResourceName("Demo")] | ||
public class DemoResource | ||
{ | ||
} |
Oops, something went wrong.