-
-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from nucreativa/add-locale-in_ID
Add locale in
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module.exports = function(number, index) { | ||
return [ | ||
['baru saja', 'sebentar'], | ||
['%s detik yang lalu', 'dalam %s detik'], | ||
['1 menit yang lalu', 'dalam 1 menit'], | ||
['%s menit yang lalu', 'dalam %s menit'], | ||
['1 jam yang lalu', 'dalam 1 jam'], | ||
['%s jam yang lalu', 'dalam %s jam'], | ||
['1 hari yang lalu', 'dalam 1 hari'], | ||
['%s hari yang lalu', 'dalam %s hari'], | ||
['1 minggu yang lalu', 'dalam 1 minggu'], | ||
['%s minggu yang lalu', 'dalam %s minggu'], | ||
['1 bulan yang lalu', 'dalam 1 bulan'], | ||
['%s bulan yang lalu', 'dalam %s bulan'], | ||
['1 tahun yang lalu', 'dalam 1 tahun'], | ||
['%s tahun yang lalu', 'dalam %s tahun'] | ||
][index]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters