| At line 50 changed 3 lines. |
| ** web/personForm.jsp (JSP file for viewing a single Person) |
| ** web/personList.jsp (JSP file for viewing a list of People) |
| * Copy the contents of Person.properties into web/WEB-INF/classes/ApplicationResources_en.properties. These are all the keys you will need for titles/headings and form properties. Here is an example of what you should add to ApplicationResources_en.properties: |
| ** web/pages/personForm.jsp (JSP file for viewing a single Person) |
| ** web/pages/personList.jsp (JSP file for viewing a list of People) |
| * Copy the contents of Person.properties into web/WEB-INF/classes/ApplicationResources.properties. These are all the keys you will need for titles/headings and form properties. Here is an example of what you should add to ApplicationResources.properties: |
| At line 60 changed 3 lines. |
| person.added=Information for <strong>{0}</strong> has been added successfully. |
| person.updated=Information for <strong>{0}</strong> has been updated successfully. |
| person.deleted=Information for <strong>{0}</strong> has been deleted successfully. |
| person.added=Person has been added successfully. |
| person.updated=Person has been updated successfully. |
| person.deleted=Person has been deleted successfully. |
| At line 82 changed 1 line. |
| * Add keys in ApplicationResources_en.properties the titles and headings in the JSPs |
| * Add keys in ApplicationResources.properties the titles and headings in the JSPs |
| At line 215 changed 3 lines. |
| new ActionMessage("person.deleted", |
| personForm.getFirstName() + ' ' + |
| personForm.getLastName())); |
| new ActionMessage("person.deleted")); |
| At line 271 changed 3 lines. |
| new ActionMessage("person.added", |
| personForm.getFirstName() + " " + |
| personForm.getLastName())); |
| new ActionMessage("person.added")); |
| At line 281 changed 3 lines. |
| new ActionMessage("person.updated", |
| personForm.getFirstName() + " " + |
| personForm.getLastName())); |
| new ActionMessage("person.updated")); |
| At line 413 added 1 line. |
| <verifytext description="verify success message" text="${person.updated}"/> |
| At line 438 changed 2 lines. |
| <verifytext description="verify success message" |
| text="Information for <strong>Abbie Raible</strong> has been added successfully."/> |
| <verifytext description="verify success message" text="${person.added}"/> |
| At line 454 changed 2 lines. |
| <verifytext description="verify success message" |
| text="Information for <strong>Matt Canoo</strong> has been deleted successfully."/> |
| <verifytext description="verify success message" text="${person.deleted}"/> |