Skip to content

Commit b209375

Browse files
authored
Merge pull request #332 from datalatics10/master
Added urdu locale jquery.timeago.ur.js
2 parents 304676d + fed0cea commit b209375

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

locales/jquery.timeago.ur.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+
// Urdu
11+
jQuery.timeago.settings.strings = {
12+
prefixAgo: null,
13+
prefixFromNow: null,
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)