This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new a6436df2e6 Fixed: CommonEmptyHeader wrong value (OFBIZ-13342)
a6436df2e6 is described below

commit a6436df2e63c44b027912e2f193a25f3f78a2a94
Author: Jacques Le Roux <[email protected]>
AuthorDate: Wed Jan 21 15:58:44 2026 +0100

    Fixed: CommonEmptyHeader wrong value (OFBIZ-13342)
    
    CommonEmptyHeader used to hold the value of a simple space.
    
    In OFBiz-7345 UiLabels were alphabetical sorted but at the same time the 
value
    was changed from a space to nothing at all, leading to the Label key being
    displayed in forms that use this label, instead of it being 'empty'.
    This unintentional change needs to be reverted.
    
    jleroux: I have reverted to the initial (old) code and added and info in 
the comment
    
    Thanks: Lukas Finster
---
 framework/common/config/CommonUiLabels.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/framework/common/config/CommonUiLabels.xml 
b/framework/common/config/CommonUiLabels.xml
index 7e25b0a4da..894d90f247 100644
--- a/framework/common/config/CommonUiLabels.xml
+++ b/framework/common/config/CommonUiLabels.xml
@@ -3688,9 +3688,8 @@
         <value xml:lang="zh-TW">電子郵件</value>
     </property>
     <property key="CommonEmptyHeader">
-        <value xml:lang="en" xml:space="preserve" />
-        <value xml:lang="es" xml:space="preserve" />
-        <value xml:lang="es-MX" xml:space="preserve" />
+        <!-- do not  remove this! No need to be translated, "en" is the 
default for all labels -->
+        <value xml:lang="en" xml:space="preserve" > </value>
     </property>
     <property key="CommonEnable">
         <value xml:lang="ar">تفعيل</value>

Reply via email to