UNPKG

@nteract/timeago

Version:

A simple Time-Ago component for React

30 lines (27 loc) 722 B
/* @flow */ import type { L10nsStrings } from "../formatters/buildFormatter"; // Hebrew const strings: L10nsStrings = { prefixAgo: "לפני", prefixFromNow: "עוד", seconds: "פחות מדקה", minute: "דקה", minutes: "%d דקות", hour: "שעה", hours: function(number) { return number === 2 ? "שעתיים" : "%d שעות"; }, day: "יום", days: function(number) { return number === 2 ? "יומיים" : "%d ימים"; }, month: "חודש", months: function(number) { return number === 2 ? "חודשיים" : "%d חודשים"; }, year: "שנה", years: function(number) { return number === 2 ? "שנתיים" : "%d שנים"; } }; export default strings;