Skip to content

Commit

Permalink
#19 add hungarian localization (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
kukac7 authored and hustcc committed Sep 12, 2016
1 parent f3b1621 commit d751287
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions locales/hu.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = function(number, index) {
return [
['néhány másodperc', 'néhány másodperce'],
['%s másodperc', '%s másodperce'],
['1 perc', '1 perce'],
['%s perc', '%s perce'],
['1 óra', '1 órája'],
['%s óra', '%s órája'],
['1 nap', '1 napja'],
['%s nap', '%s napja'],
['1 hét', '1 hete'],
['%s hét', '%s hete'],
['1 hónap', '1 hónapja'],
['%s hónap', '%s hónapja'],
['1 év', '1 éve'],
['%s év', '%s éve']
][index];
}

0 comments on commit d751287

Please sign in to comment.