-
Notifications
You must be signed in to change notification settings - Fork 79
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
Implement support for getting plural categories #167
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"day": { | ||
"one": "day", | ||
"other": "days" | ||
}, | ||
"hour": { | ||
"one": "hour", | ||
"other": "hours" | ||
}, | ||
"minute": { | ||
"one": "minute", | ||
"other": "minutes" | ||
}, | ||
"second": { | ||
"one": "second", | ||
"other": "seconds" | ||
}, | ||
"and": { | ||
"one": "and" | ||
}, | ||
"or": { | ||
"one": "or" | ||
} | ||
} |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"day": { | ||
"one": "dan", | ||
"two": "dneva", | ||
"few": "dnevi", | ||
"other": "dni" | ||
}, | ||
"hour": { | ||
"one": "ura", | ||
"two": "uri", | ||
"few": "ure", | ||
"other": "ur" | ||
}, | ||
"minute": { | ||
"one": "minuta", | ||
"two": "minuti", | ||
"few": "minute", | ||
"other": "minut" | ||
}, | ||
"second": { | ||
"one": "sekunda", | ||
"two": "sekundi", | ||
"few": "sekunde", | ||
"other": "sekund" | ||
}, | ||
"and": { | ||
"one": "in" | ||
}, | ||
"or": { | ||
"one": "ali" | ||
} | ||
} |
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.
It's not the end of the world, but if you store
amount % 10
andamount % 100
and use variables for these comparisons, it'll shave several operations off of the later cases.