-
Notifications
You must be signed in to change notification settings - Fork 966
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
Added Farsi support to DateTime resource files and NumberToWords. #121
Conversation
Great effort. Thanks for this. Just a few things:
|
[InlineData(123456789, "صد و بیست و سه میلیون و چهارصد و پنجاه و شش هزار و هفتصد و هشتاد و نه")] | ||
[InlineData(1234567890, "یک میلیارد و دویست و سی و چهار میلیون و پانصد و شصت و هفت هزار و هشتصد و نود")] | ||
[Theory] | ||
public void ToWordsFarsi(int number, string expected) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love this :)
Alright. Sorry about the mistakes. |
No need for apology. This is just a coding standard which I have to enforce to make sure the codebase stays clean and consistent considering all the PRs that's coming through :) Thanks for the great work. Looking forward to merging this in. |
I've fixed my mistakes. I sense that the way I use git is a little messy. If so, any guidance will be greatly appreciated as this is my first encounter with git. |
@@ -1,3 +1,9 @@ | |||
###v1.16.1 - 2014-04-03 | |||
- [#121] (https://github.com/MehdiK/Humanizer/pull/121) : Added Farsi support to DateTime and NumberToWords |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We still don't know what version this is going to or when this is going to be released. So new features should be added under 'In Development'
This is great stuff; but a bit too involved as it touches many things. So the first guidance: always keep your PRs as minimal and focused as possible. Please create two separate PRs: one for adding Farsi to existing localisable code and another for I am glad you made small commits. You should be able to cherrypick the needed commits out of your current working folder. To do this you can:
Your |
Alright. Thanks. |
No description provided.