Skip to content
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 Ukrainian Language #411

Closed
wants to merge 25 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4989e1b
Add Ukrainian resources. Proposed new values for NoTime to be 'just now'
dmytro-i Apr 30, 2015
41cf772
Add Unit Tests
dmytro-i Apr 30, 2015
9c19bd1
Just now back to 'no time' (russian)
dmytro-i Apr 30, 2015
9c88cca
Just now back to 'no time' (Ukrainian)
dmytro-i Apr 30, 2015
03d351d
Just now back to 'no time'
dmytro-i Apr 30, 2015
5f69372
Update TimeSpanHumanizeTests.cs
dmytro-i Apr 30, 2015
05c1699
Update TimeSpanHumanizeTests.cs
dmytro-i Apr 30, 2015
a3722a7
Update TimeSpanHumanizeTests.cs
dmytro-i Apr 30, 2015
960a074
Update TimeSpanHumanizeTests.cs
dmytro-i Apr 30, 2015
3701614
Change locale from uk-UA to uk. Rename resource respectively
dmytro-i May 3, 2015
053ab63
Making InflectorExtension methods to add rules public as per https://…
dmytro-i May 7, 2015
ca96ffa
Add XML comments
dmytro-i May 7, 2015
2a89ec6
Update approved public API to include new public methods
dmytro-i May 7, 2015
cc170fa
Update InflectorExtensions approved API
dmytro-i May 7, 2015
cdc0dbd
Reorder methods in approved API to match the order in the calss
dmytro-i May 7, 2015
4583664
Finally fixed approved API
dmytro-i May 7, 2015
8b20c3c
Revert "Add XML comments"
dmytro-i May 8, 2015
fa18686
Revert "Making InflectorExtension methods to add rules public as per …
dmytro-i May 8, 2015
d01a6ec
Revert API Approver changes
dmytro-i May 8, 2015
4f66d89
Remove new line at the end of file
dmytro-i May 13, 2015
ff3ab90
Merge branch 'master' of https://github.com/dmytro-ielkin/Humanizer.git
dmytro-i May 13, 2015
a5330bb
Revert "Add XML comments"
dmytro-i May 8, 2015
17189fd
Revert "Making InflectorExtension methods to add rules public as per …
dmytro-i May 8, 2015
26edc0d
Revert API Approver changes
dmytro-i May 8, 2015
f9dbae9
Merge branch 'master' of https://github.com/dmytro-ielkin/Humanizer.git
dmytro-i May 13, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reorder methods in approved API to match the order in the calss
dmytro-i committed May 7, 2015
commit cdc0dbd7d5f22e84b59b7dc4d12520b474329628
Original file line number Diff line number Diff line change
@@ -245,12 +245,12 @@ public class In

public class InflectorExtensions
{
public void AddIrregular(string singular, string plural) { }
public void AddPlural(string rule, string replacement) { }
public void AddSingular(string rule, string replacement) { }
public void AddIrregular(string singular, string plural) { }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think something gone wrong with the rebase, as this methods are part of another PR.

public void AddUncountable(string word) { }
public void AddPlural(string rule, string replacement) { }
public void AddSingular(string rule, string replacement) { }
public string Camelize(string input) { }
public string Dasherize(string underscoredWord) { }
public string Dasherize(string underscoredWord) { }
public string Hyphenate(string underscoredWord) { }
public string Pascalize(string input) { }
public string Pluralize(string word, Humanizer.Plurality plurality) { }