isomorphic-software / smartgwt

Smart GWT is a GWT-based framework that allows you to not only utilize its comprehensive widget library for your application UI, but also tie these widgets in with your server-side for data management.
35 stars 22 forks source link

Picklist based time input isn't localized #734

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The picklist based time input seems not to be localized. When the locale is set 
to "de" (German), "Hour" is for example not translated with "Stunde" (see the 
attached screenshot).

Code:

        final TimeItem theTimeItem = new TimeItem();
        theTimeItem.setShowTitle(false);
        theTimeItem.setUseTextField(false);
        theTimeItem.setShowHourItem(true);
        theTimeItem.setShowMinuteItem(true);
        theTimeItem.setShowSecondItem(false);
        theTimeItem.setShowMillisecondItem(false);

Original issue reported on code.google.com by sven.strohschein@googlemail.com on 26 Jan 2014 at 11:14

Attachments:

GoogleCodeExporter commented 9 years ago
If translations are missing for your chosen locale, you can add them using the 
instructions in this thread:

    http://forums.smartclient.com/showthread.php?t=9987

Original comment by smartgwt...@gmail.com on 26 Jan 2014 at 7:57