<div dir="ltr">Hi,<br><br>In order to resolve bug [1] and prep [2], the default English text for I18N Constants and Messages have been moved to their corresponding properties files.  Going forward, if a new constant or message needs to be added, please add the key method to the proper interface and then add the key plus English text to the interface&#39;s corresponding properties file.  Checks will be added, in the next few days, to fail the build process if the GWT annotations (@DefaultStringValue, @DefaultMessage) are used.<br><br>This change has been made to simplify the translation process [1] and to prepare for the replacement of the GWT i18n engine in 4.1 [2].<br><br>For example, in the webadmin project, the ApplicationConstants [3] interface previously looked like:<br>   package org.ovirt.engine.ui.webadmin;<br><br>   import org.ovirt.engine.ui.common.CommonApplicationConstants;<br><br>   public interface ApplicationConstants extends CommonApplicationConstants {<br><br>       @DefaultStringValue(&quot;oVirt Engine Web Administration&quot;)<br>       String applicationTitle();<br><br>       @DefaultStringValue(&quot;About&quot;)<br>       String aboutPopupCaption();<br><br>       @DefaultStringValue(&quot;oVirt Engine Version:&quot;)<br>       String ovirtVersionAbout();<br><br>Now, the interface looks like this [4]:<br>   package org.ovirt.engine.ui.webadmin;<br><br>   import org.ovirt.engine.ui.common.CommonApplicationConstants;<br><br>   public interface ApplicationConstants extends CommonApplicationConstants {<br>       String applicationTitle();<br><br>       String aboutPopupCaption();<br><br>       String ovirtVersionAbout();<br><br>With a new properties file created, ApplicationContants.properties [5], with this kind of content :<br>   #<br>   #<br>   # Bundle name: org.ovirt.engine.ui.webadmin.ApplicationConstants<br>   #<br>   #<br>   #Thu May 19 01:24:21 EDT 2016<br>   aboutPopupCaption=About<br>   applicationTitle=oVirt Engine Web Administration<br>   ovirtVersionAbout=oVirt Engine Version\:<br><br>Let me know if there are any questions.<br><br>Regards,<br>Scott<br><br>-- <br>Scott Dickerson<br>Senior Software Engineer<br>RHEV-M Engineering - UX Team<br>Red Hat, Inc<br><br><br>[1] - <a href="https://bugzilla.redhat.com/show_bug.cgi?id=1224423">https://bugzilla.redhat.com/show_bug.cgi?id=1224423</a><br>[2] - <a href="https://bugzilla.redhat.com/show_bug.cgi?id=1287408">https://bugzilla.redhat.com/show_bug.cgi?id=1287408</a><br>[3] - <a href="https://github.com/oVirt/ovirt-engine/blob/569695916d2325d0c1e1fdabb6f85cd9e97d7232/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java">https://github.com/oVirt/ovirt-engine/blob/569695916d2325d0c1e1fdabb6f85cd9e97d7232/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java</a> <br>[4] - <a href="https://github.com/oVirt/ovirt-engine/blob/master/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java">https://github.com/oVirt/ovirt-engine/blob/master/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/ApplicationConstants.java</a> <br>[5] - <a href="https://github.com/oVirt/ovirt-engine/blob/master/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/webadmin/ApplicationConstants.properties">https://github.com/oVirt/ovirt-engine/blob/master/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/webadmin/ApplicationConstants.properties</a><br></div>