25 lines
538 B
Plaintext
Executable File
25 lines
538 B
Plaintext
Executable File
/* @flow */
|
|
import type { L10nsStrings } from '../formatters/buildFormatter'
|
|
|
|
// English (Template)
|
|
const strings: L10nsStrings = {
|
|
prefixAgo: null,
|
|
prefixFromNow: null,
|
|
suffixAgo: 'ago',
|
|
suffixFromNow: 'from now',
|
|
seconds: 'less than a minute',
|
|
minute: 'about a minute',
|
|
minutes: '%d minutes',
|
|
hour: 'about an hour',
|
|
hours: 'about %d hours',
|
|
day: 'a day',
|
|
days: '%d days',
|
|
month: 'about a month',
|
|
months: '%d months',
|
|
year: 'about a year',
|
|
years: '%d years',
|
|
wordSeparator: ' ',
|
|
}
|
|
|
|
export default strings
|