Wiki Spaces
Documentation
Projects
Resources
Get Help from Others
Q&A: Ask OpenMRS
Discussion: OpenMRS Talk
Real-Time: IRC Chat | Slack
This project was completed as part of GSoC 2011. You can see the final documentation of the module on our wiki: Database Messages Module
Primary mentor |
|
Backup mentor |
|
Assigned to |
Spring handles our internationalization of the web application. The files to do so are stored in .properties files. This is great for all the messages that we want to translate and that modules want to translate. However, what about instant translations that an openmrs installation might want to do? What about some temporary overrides of certain keys?
If the messages had the ability to be stored in the database, then the installation could easily change them. If the properties are left in the war file as they are now, then the installation will not want to edit them.
The MessageSourceService is already a registered service and calls are made through it. This module simply needs to hook into that and provide additional keys.
Currently all of our message properties translation files are stored in the messages.properties files in the webapp. Spring reads these and outputs for the user. The MessageSourceService has the ability to be overwritten and hence read the properties from the database.
Create a module that will register itself as a message provider and provide a set of management screens that will allow the user to add/edit/translate messages.
A module that will allow the user to add/modify message properties from within the database.
Admin screen to add/edit properties
Ability to compare message keys that are in the messages.properties file in openmrs war and not in a new locale in the db.
MessageSourceService, MessageSourceServiceImpl
April 25 – May 23
1.Set up development enviornment
2.Go through the existing implementation of MessageSourceService , MessageSourceServiceImlp
May 24 – June 13
1. Create a db for the module to hold the keys and the values in all possible values the application supports
2. Create a DAO/Hibernate classes to insert the values in the db
3. Create a service which would add/edit/delete and show all the values from the DB
4. Design the UI to add/edit the values from the DB
June 13 -- July 1
July 1 – July 18
July 18 – July 25
July 25 – August 1
August 1 – August 22
Make further improvements if required