I'm making (porting really) a "relative time" module for human
readable date-and-time messages to GWT. The first (alpha-ish) version
is up on Github: http://github.com/PEZ/GWT-Relative-Time

Anyone who tries it will notice that it reports all times as plurals.
When it should say "an hour ago", it says "1 hours ago". My messages
interface looks like so:

public interface TimeMessages extends Messages {
...
    @DefaultMessage("{0} {1,number} hours {2}")
    @PluralText({"one", "an hour"})
    String hours(String prefix, @PluralCount int count, String
suffix);
...
}

>From what I can understand of the documentation, that is how you
should be able to deal with singular and plural forms, right? Well, it
doesn't work. Anyone who knows how this works? Or, if it's a bug in
GWT, can I work myself around it?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to