summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/fil/_lib/formatDistance/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/locale/fil/_lib/formatDistance/index.js')
-rw-r--r--date-fns/src/locale/fil/_lib/formatDistance/index.js101
1 files changed, 101 insertions, 0 deletions
diff --git a/date-fns/src/locale/fil/_lib/formatDistance/index.js b/date-fns/src/locale/fil/_lib/formatDistance/index.js
new file mode 100644
index 0000000..4da5dfa
--- /dev/null
+++ b/date-fns/src/locale/fil/_lib/formatDistance/index.js
@@ -0,0 +1,101 @@
+var formatDistanceLocale = {
+ lessThanXSeconds: {
+ one: 'mas maliit sa isang segundo',
+ other: 'mas maliit sa {{count}} segundo'
+ },
+
+ xSeconds: {
+ one: '1 segundo',
+ other: '{{count}} segundo'
+ },
+
+ halfAMinute: 'kalahating minuto',
+
+ lessThanXMinutes: {
+ one: 'mas maliit sa isang minuto',
+ other: 'mas maliit sa {{count}} minuto'
+ },
+
+ xMinutes: {
+ one: '1 minuto',
+ other: '{{count}} minuto'
+ },
+
+ aboutXHours: {
+ one: 'mga 1 oras',
+ other: 'mga {{count}} oras'
+ },
+
+ xHours: {
+ one: '1 oras',
+ other: '{{count}} oras'
+ },
+
+ xDays: {
+ one: '1 araw',
+ other: '{{count}} araw'
+ },
+
+ aboutXWeeks: {
+ one: 'mga 1 buwan', // TODO
+ other: 'mga {{count}} buwan' // TODO
+ },
+
+ xWeeks: {
+ one: '1 buwan', // TODO
+ other: '{{count}} buwan' // TODO
+ },
+
+ aboutXMonths: {
+ one: 'mga 1 buwan',
+ other: 'mga {{count}} buwan'
+ },
+
+ xMonths: {
+ one: '1 buwan',
+ other: '{{count}} buwan'
+ },
+
+ aboutXYears: {
+ one: 'mga 1 taon',
+ other: 'mga {{count}} taon'
+ },
+
+ xYears: {
+ one: '1 taon',
+ other: '{{count}} taon'
+ },
+
+ overXYears: {
+ one: 'higit sa 1 taon',
+ other: 'higit sa {{count}} taon'
+ },
+
+ almostXYears: {
+ one: 'halos 1 taon',
+ other: 'halos {{count}} taon'
+ }
+}
+
+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 'sa loob ng ' + result
+ } else {
+ return result + ' ang nakalipas'
+ }
+ }
+
+ return result
+}