summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/sq/_lib/formatDistance/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/locale/sq/_lib/formatDistance/index.js')
-rw-r--r--date-fns/src/locale/sq/_lib/formatDistance/index.js86
1 files changed, 86 insertions, 0 deletions
diff --git a/date-fns/src/locale/sq/_lib/formatDistance/index.js b/date-fns/src/locale/sq/_lib/formatDistance/index.js
new file mode 100644
index 0000000..ecd01ff
--- /dev/null
+++ b/date-fns/src/locale/sq/_lib/formatDistance/index.js
@@ -0,0 +1,86 @@
+var formatDistanceLocale = {
+ lessThanXSeconds: {
+ one: 'më pak se një sekondë',
+ other: 'më pak se {{count}} sekonda'
+ },
+ xSeconds: {
+ one: '1 sekondë',
+ other: '{{count}} sekonda'
+ },
+ halfAMinute: 'gjysëm minuti',
+ lessThanXMinutes: {
+ one: 'më pak se një minute',
+ other: 'më pak se {{count}} minuta'
+ },
+ xMinutes: {
+ one: '1 minutë',
+ other: '{{count}} minuta'
+ },
+ aboutXHours: {
+ one: 'rreth 1 orë',
+ other: 'rreth {{count}} orë'
+ },
+ xHours: {
+ one: '1 orë',
+ other: '{{count}} orë'
+ },
+ xDays: {
+ one: '1 ditë',
+ other: '{{count}} ditë'
+ },
+ aboutXWeeks: {
+ one: 'rreth 1 javë',
+ other: 'rreth {{count}} javë'
+ },
+ xWeeks: {
+ one: '1 javë',
+ other: '{{count}} javë'
+ },
+ aboutXMonths: {
+ one: 'rreth 1 muaj',
+ other: 'rreth {{count}} muaj'
+ },
+ xMonths: {
+ one: '1 muaj',
+ other: '{{count}} muaj'
+ },
+ aboutXYears: {
+ one: 'rreth 1 vit',
+ other: 'rreth {{count}} vite'
+ },
+ xYears: {
+ one: '1 vit',
+ other: '{{count}} vite'
+ },
+ overXYears: {
+ one: 'mbi 1 vit',
+ other: 'mbi {{count}} vite'
+ },
+ almostXYears: {
+ one: 'pothuajse 1 vit',
+ other: 'pothuajse {{count}} vite'
+ }
+}
+
+export default function formatDistance(token, count, options) {
+ options = options || {}
+
+ var result
+ if (typeof formatDistanceLocale[token] === 'string') {
+ result = formatDistanceLocale[token]
+ } else if (count === 1) {
+ result = formatDistanceLocale[token].one
+ } else {
+ result = formatDistanceLocale[token].other.replace('{{count}}', count)
+ }
+
+ if (options.addSuffix) {
+ if (options.comparison > 0) {
+ return 'në ' + result
+ } else {
+ return result + ' më parë'
+ }
+ }
+
+ return result
+}