Skip to content

Commit f635f15

Browse files
authored
Merge pull request #375 from pandeydip/master
Add Support to Nepali Language, locale added
2 parents 030a88f + e9224e6 commit f635f15

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

locales/jquery.timeago.ne.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
(function (factory) {
2+
if (typeof define === 'function' && define.amd) {
3+
define(['jquery'], factory);
4+
} else if (typeof module === 'object' && typeof module.exports === 'object') {
5+
factory(require('jquery'));
6+
} else {
7+
factory(jQuery);
8+
}
9+
}(function (jQuery) {
10+
// Nepali
11+
jQuery.timeago.settings.strings = {
12+
suffixAgo: "पहिले",
13+
suffixFromNow: "अहिले देखि",
14+
suffixAgo: "पहिले",
15+
suffixFromNow: "पछि",
16+
seconds: "लगभग एक मिनेट",
17+
minute: "एक मिनेट",
18+
minutes: "%d मिनेट",
19+
hour: "एक घण्टा",
20+
hours: "%d घण्टा",
21+
day: "एक दिन",
22+
days: "%d दिन",
23+
month: "एक महिना",
24+
months: "%d महिना",
25+
year: "एक वर्ष",
26+
years: "%d वर्ष",
27+
wordSeparator: " ",
28+
numbers: ["०", "१", "२", "३", "४", "५", "६", "७", "८", "९"]
29+
};
30+
}));

0 commit comments

Comments
 (0)