You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dates displayed on a package detail view (last update for instance) are displayed in US format whereas the machine date format is French.
Dates times and numbers, should be displayed using the machine locale format.
(Surprisingly package size is in the machine locale already, probably because it is formatted to string through a windows API.)
Localization can be done using a WPF localized binding like this (for instance):
public class LocalizedBinding : Binding
{
public LocalizedBinding()
: base()
{
this.ConverterCulture = System.Globalization.CultureInfo.CurrentCulture;
}
public LocalizedBinding(string path)
: base(path)
{
this.ConverterCulture = System.Globalization.CultureInfo.CurrentCulture;
}
}
The text was updated successfully, but these errors were encountered:
@laperouse Could you verify this is still an issue with the latest prerelease? I believe some work we're doing with localization might have incidentally fixed this.
Dates displayed on a package detail view (last update for instance) are displayed in US format whereas the machine date format is French.
Dates times and numbers, should be displayed using the machine locale format.
(Surprisingly package size is in the machine locale already, probably because it is formatted to string through a windows API.)
Localization can be done using a WPF localized binding like this (for instance):
}
The text was updated successfully, but these errors were encountered: