@ -132,15 +132,15 @@ Open the `en.json` (*the English translations*) file and change the content as s
"CreationTime": "Creation time",
"AreYouSure": "Are you sure?",
"AreYouSureToDelete": "Are you sure you want to delete this item?",
"Enum:BookType.Undefined ": "Undefined",
"Enum:BookType.Adventure ": "Adventure",
"Enum:BookType.Biography ": "Biography",
"Enum:BookType.Dystopia ": "Dystopia",
"Enum:BookType.Fantastic ": "Fantastic",
"Enum:BookType.Horror ": "Horror",
"Enum:BookType.Science ": "Science",
"Enum:BookType.ScienceFiction ": "Science fiction",
"Enum:BookType.Poetry ": "Poetry"
"Enum:BookType.0 ": "Undefined",
"Enum:BookType.1 ": "Adventure",
"Enum:BookType.2 ": "Biography",
"Enum:BookType.3 ": "Dystopia",
"Enum:BookType.4 ": "Fantastic",
"Enum:BookType.5 ": "Horror",
"Enum:BookType.6 ": "Science",
"Enum:BookType.7 ": "Science fiction",
"Enum:BookType.8 ": "Poetry"
}
}
````
@ -581,7 +581,7 @@ context.Menu.AddItem(
Run the project, login to the application with the username `admin` and the password `1q2w3E*` and see that the new menu item has been added to the main menu:


When you click on the Books menu item under the Book Store parent, you will be redirected to the new empty Books Page.
@ -621,7 +621,7 @@ Open the `Books.razor` and replace the content as the following:
Field="@nameof(BookDto.Type)"
Caption="@L["Type"]">
< DisplayTemplate >
@L [$"Enum:BookType.{Enum.GetName( context.Type) }"]
@L [$"Enum:BookType.{context.Type}"]
< / DisplayTemplate >
< / DataGridColumn >
< DataGridColumn TItem = "BookDto"
@ -664,7 +664,7 @@ We will continue benefitting from `AbpCrudPageBase` for the books page. You cou
You can run the application! The final UI of this part is shown below:


This is a fully working, server side paged, sorted and localized table of books.