On Friday, September 9, 2016 at 4:34:02 PM UTC+2, Василий Старцев wrote:
>
> Great! But there is a bug:
> *com.google.gwt.i18n.client.impl.cldr.DateTimeFormatInfoImpl_ru* still 
> have wrong weekdays order.
>
> @Override
> public String[] weekdaysFull() {
>   return new String[] {
>       "воскресенье",
>       "понедельник",
>       "вторник",
>       "среда",
>       "четверг",
>       "пятница",
>       "суббота"
>   };
> }
>
>
>
> should be 
>
>
>
> @Override
> public String[] weekdaysFull() {
>   return new String[] {
>       "понедельник",
>       "вторник",
>       "среда",
>       "четверг",
>       "пятница",
>       "суббота",
>
>       "воскресенье"
>   };
> }
>
>
>
> Please fix this.
>
>
weekdaysFull starts on 
Sunday: 
https://github.com/gwtproject/gwt/blob/caf2f6fa9a35a2602ea7b16426473dd9fcc92cea/user/src/com/google/gwt/i18n/shared/DefaultDateTimeFormatInfo.java#L333-L343
and Google Translate tells me воскресенье (which you switched from the 
first to the last position) is Sunday, and thus should be first here.
So I see no bug there.

BTW, you employed the word "still", but this had never been reported; and 
the proper way to report a bug is to file an issue on the issue tracker on 
GitHub: http://www.gwtproject.org/makinggwtbetter.html#issuetracking
 

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to