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
Everything seems to be en-US in my blog but dates are displayed in fr-FR. I added in the Web.config to force en-US but it doesn't work.
Something seems to be forcing the culture to a calculated value (but which?).
It would be nice to have an option to set the blog culture or just to support the system.web/globalization.
The text was updated successfully, but these errors were encountered:
Jeff Jin
While going through the source code, I found FunnelWeb is not using any resource file or other localization mechanism to support different cultures. Setting cultures is config file will only change some formats .Net supports, but it won't translate any contents. In order to fully support multi-cultures, We need to
Add all static contents from view file, cs file into resource file, including html control contents, messages.
Remove all predefined formats such as Date format, currency and other culture specific formats and resolve them in the runtime.
FunnelWeb system should have a way to detect browser culture settings as well as setting culture in Admin page and store it in the database for each admin.
In order to dynamically support any cultures, FunnelWeb should have Resource related database tables to store resources and support dynamic translation. In this case, we only need to have one default resource file and all other satellite resource contents can be saved into database.
Everything seems to be en-US in my blog but dates are displayed in fr-FR. I added in the Web.config to force en-US but it doesn't work.
Something seems to be forcing the culture to a calculated value (but which?).
It would be nice to have an option to set the blog culture or just to support the system.web/globalization.
The text was updated successfully, but these errors were encountered: