We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MMMM YYYY
Hello,
I encountered an issue with the following code:
\Carbon\Carbon::create('2024-01-01')->locale('cs')->isoFormat('MMMM YYYY')
Carbon version: 3.7.0
PHP version: 8.3.10
I expected to get:
leden 2024
But I actually get:
ledna 2024
I tried this with Polish (which has similar noun cases) and it works correctly. It should only be "ledna" when the month day is also provided.
This is correct:
\Carbon\Carbon::create('2024-01-01')->locale('cs')->isoFormat('Do MMMM YYYY')
"1 ledna 2024"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I encountered an issue with the following code:
Carbon version: 3.7.0
PHP version: 8.3.10
I expected to get:
But I actually get:
I tried this with Polish (which has similar noun cases) and it works correctly. It should only be "ledna" when the month day is also provided.
This is correct:
The text was updated successfully, but these errors were encountered: