UNPKG

@nteract/timeago

Version:

A simple Time-Ago component for React

24 lines (21 loc) 637 B
/* @flow */ import type { L10nsStrings } from "../formatters/buildFormatter"; // Greek const strings: L10nsStrings = { prefixAgo: "πριν", prefixFromNow: "σε", suffixAgo: "", suffixFromNow: "", seconds: "λιγότερο από ένα λεπτό", minute: "περίπου ένα λεπτό", minutes: "%d λεπτά", hour: "περίπου μία ώρα", hours: "περίπου %d ώρες", day: "μία μέρα", days: "%d μέρες", month: "περίπου ένα μήνα", months: "%d μήνες", year: "περίπου ένα χρόνο", years: "%d χρόνια" }; export default strings;