-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
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
Add French Translations and fix genCalList()
#11
Conversation
There was a problem when `$start` != 1...
Added french messages definitions
The pull request includes the update of french messages definitions |
Yes you are right, but if you try to use your |
No the days will start from Monday if you set start to 2. Check the example again. |
Yes it starts by Monday, but after we have Sunday and next Saturday... which is reversed, no ? |
Check the example for |
Ok, but I've got an Error (#1) : An internal server error occurred. |
Refresh the page and retry. |
Result of your given test : print_r(Enum::dayList(false, 2));
Array ( [1] => Lundi [2] => Dimanche [3] => Samedi [4] => Vendredi [5] => Jeudi [6] => Mercredi [7] => Mardi ) I'm waiting for something like this : Array ( [1] => Lundi [2] => Mardi [3] => Mercredi [4] => Jeudi [5] => Vendredi [6] => Samedi [7] => Dimanche ) |
Let me recheck on this and get back. |
Thanks for the update. Merging this. |
Add French Translations and fix genCalList
$start
use problem on getCalList()
genCalList()
It would be good if you can complete all the French translations for benefit of others. |
You're welcome ! Thanks to give us usefull extensions ! |
There was a problem with
getCalList()
when$start != 1
...