Changes between Version 58 and Version 59 of BluePrint/Internationalisation
- Timestamp:
- 04/30/13 14:34:28 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrint/Internationalisation
v58 v59 125 125 * Including database variables : We need to extract the strings in database variables so that they too can be translated. Currently, these variables are excluded from translation. Hence, one approach to extract these strings is as follows:- 126 126 127 1. Use the prepop csv files in privates/templates/<current-template> and mark them to be considered for translation. 128 129 2. Provide a “Select all templates” option on the module selection page (similar to select all modules) to specify if all prepop files are to be considered. This option will be helpful when introducing new variables and discarding deprecated strings using the overwrite option as mentioned earlier. 127 * Use the prepop csv files in privates/templates/<current-template> and mark them to be considered for translation. 128 *Provide a “Select all templates” option on the module selection page (similar to select all modules) to specify if all prepop files are to be considered. This option will be helpful when introducing new variables and discarding deprecated strings using the overwrite option as mentioned earlier. 130 129 131 130 … … 133 132 * Pootle Integration : We need to make sure that the translation in pootle is kept in sync with that in the “.py” languages file. Below are few points to help us achieve this :- 134 133 135 1. As and when we use the overwrite option to remove deprecated strings,(as explained earlier) reflect these changes in pootle too. This will ensure that pootle doesn’t have any old strings and that new strings are also added. 136 137 2. When merging from pootle, we might receive some conflicts ( just as through pull request). One possible solution is to create a script that identifies and stores all such conflicts in a file which can then be manually handled by translators. 138 139 3. Also, an option for uploading ".po" files will be provided (apart from the current ".csv" files). The conflicts arising when merging this can be handled as mentioned before. 134 * As and when we use the overwrite option to remove deprecated strings,(as explained earlier) reflect these changes in pootle too. This will ensure that pootle doesn’t have any old strings and that new strings are also added. 135 * When merging from pootle, we might receive some conflicts ( just as through pull request). One possible solution is to create a script that identifies and stores all such conflicts in a file which can then be manually handled by translators. 136 * Also, an option for uploading ".po" files will be provided (apart from the current ".csv" files). The conflicts arising when merging this can be handled as mentioned before. 140 137 141 138 Hence, the translations in pootle and web2py will be consistent.