Notes |
|
|
Updated to Major since it is a Platform related issue with Translation handling.
Please notice that if you make Project Status column as "searchable" in Application Dictionary and then click on the Search icon you get the Project Status also in English even if you are logged in Spanish.
Both Document and Project Status are correctly translated in the Spanish Localization Pack:
SELECT RE.NAME AS REFERENCE, REL.NAME AS EN, RELT.NAME AS ES
FROM AD_REFERENCE RE, AD_REF_LIST REL, AD_REF_LIST_TRL RELT
WHERE RE.AD_REFERENCE_ID = REL.AD_REFERENCE_ID
AND REL.AD_REF_LIST_ID = RELT.AD_REF_LIST_ID
AND RELT.AD_LANGUAGE = 'es_ES'
AND (UPPER(RE.NAME) LIKE '%PROJECTSTATUS%' OR UPPER(RE.NAME) LIKE '%ALL_DOCUMENT_STATUS%')
ORDER BY REFERENCE
|
|
|
|
|
|
(0020309)
|
hgbot
|
2009-09-23 12:19
|
|
Repository: erp/devel/pi
Changeset: 908a09f23ff5c5d9fd5a9f4cf7a3d074a606ea80
Author: Stefan Hühner <stefan.huehner <at> openbravo.com>
Date: Wed Sep 23 12:19:29 2009 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/908a09f23ff5c5d9fd5a9f4cf7a3d074a606ea80 [^]
Fixed 10319: Fix translation of combo fields in search popup
New search popup code does not use getContext to disable default values.
However #AD_LANGUAGE needs an exception to make translations work
---
M src/org/openbravo/erpCommon/utility/Utility.java
---
|
|
|
(0020504)
|
hgbot
|
2009-09-29 14:17
|
|
Repository: erp/devel/pi-pageddatagrid
Changeset: 908a09f23ff5c5d9fd5a9f4cf7a3d074a606ea80
Author: Stefan Hühner <stefan.huehner <at> openbravo.com>
Date: Wed Sep 23 12:19:29 2009 +0200
URL: http://code.openbravo.com/erp/devel/pi-pageddatagrid/rev/908a09f23ff5c5d9fd5a9f4cf7a3d074a606ea80 [^]
Fixed 10319: Fix translation of combo fields in search popup
New search popup code does not use getContext to disable default values.
However #AD_LANGUAGE needs an exception to make translations work
---
M src/org/openbravo/erpCommon/utility/Utility.java
---
|
|
|
|
When I retest in amazon PI postgres context I still see the list values are not translated in Spanish.Please refer the screenshot I added for this and also can you please tell me whether did I test properly? Since you have resolved it I would like to know how do I test to see this as resolved? |
|
|
|
Re-checked: If a value for the translation of the combobox-entry is present in i.e. spanish, then now after the fix this value is used.
However it seems that the values for the translation of this combo are not present at all in the spanish translation pack.
This can be verified by checking that the translation for this combo is present in edit mode which it was not in my tests.
Or this can be checked by examining the translation for the reference entry 'All_Document Status' or by using the sql provided in the first comment (by Rafa). However this info seems to contradict the claim by Rafa that the translation is present. |
|
|
|
Reassigned to localization. Technically the popup nows shows a translation if it exists. However the latest released spanish translation obx did not contain a translation for this part (ad_ref_list_trl).
This issue should be finally closed when the next/correct translation obx is released. |
|
|
|
|