the frontend datepicker control (for example for the DOB field) is not localized: month names, day names and week start date are all using en_US.
frontend store is set to use this language/locale
Admin > Settings > Configuration > Customer > Customer Configuration > "Show Date of Birth: Require"
in the frontend, edit your account and use the datepicker of the DoB control
the month names in the dropdown are translated
the week starts with monday
the month names are in english
Thanks for reporting, intrnal ticket MAGETWO-57733
@sevos1984
is there any update about this issue?
Our customers are not happy with the unknown date-formatting and I would need a solution quiet soon.
Thank you!
@sevos1984 any progress? it's been almost half a year now
@lfritsche @robinkanters Seem's like adding block Magento\Framework\View\Element\Html\Calendar
to the layout of required page resolves this problem (Magento 2.1.2 CE)
So I've added app/design/frontend/<Vendor>/<theme>/Magento_Customer/layout/customer_account_edit.xml
with next content:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<block class="Magento\Framework\View\Element\Html\Calendar" name="html_calendar" as="html_calendar" template="Magento_Theme::js/calendar.phtml" before="-"/>
</referenceContainer>
</body>
</page>
Working on this ticket.
Internal ticket to track issue progress: MAGETWO-80096
@heldchen, thank you for your report.
We've created internal ticket(s) MAGETWO-57733 to track progress on the issue.
Hi @heldchen the issue has been fixed in https://github.com/magento/magento2/pull/11067 by @joachimVT . The fix will be available in 2.2.1
This issue still exists in Magento 2.2.1 . I have checked Today.
@okorshenko please re-open this issue. I can confirm this issue still exists on 2.2.1.
Hi @heldchen. Thank you for your report.
The issue has been fixed in magento-engcom/magento2ce#1353 by @magento-engcom-team in 2.3-develop branch
Related commit(s):
The fix will be available with the upcoming 2.3.0 release.
As far as I can see this is the only relevant commit; https://github.com/magento/magento2/commit/72e9e0732b98ea5b8f47bddc781dc47c688c3c58
And that is already in (at least) 2.2.3. But it still does not work.
I can confirm that it still does not work in 2.2.3. Should we reopen the issue?
Calendar translation is not working for me yet.. I started with 2.1.7 and updates every releases now i have upgraded it to 2.2.3 but still issues is same.( almost an year) Calendar is not translated in any other locale other than English. Is there any chance it will fix anytime soon in future ..
@magento-engcom-team ?
@okorshenko I can confirm that it still does not work in 2.2.3. Should we reopen the issue?
@magento-engcom-team any update? any quick solution?
Not fixed in 2.2.6.
Waiting for the fix in the core, we made a module that temporarily fix this bug.
Most helpful comment
@lfritsche @robinkanters Seem's like adding block
Magento\Framework\View\Element\Html\Calendar
to the layout of required page resolves this problem (Magento 2.1.2 CE)So I've added
app/design/frontend/<Vendor>/<theme>/Magento_Customer/layout/customer_account_edit.xml
with next content: