54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
export const menstrual = {
|
|
dateFormatShort: 'MMM D',
|
|
dateFormats: {
|
|
monthTitle: 'MMM',
|
|
monthSubtitle: 'YYYY',
|
|
},
|
|
weekdays: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
|
|
today: 'Today',
|
|
legend: {
|
|
period: 'Period',
|
|
predictedPeriod: 'Predicted period',
|
|
fertile: 'Fertile window',
|
|
ovulation: 'Ovulation',
|
|
},
|
|
actions: {
|
|
markPeriod: 'Mark period',
|
|
cancelMark: 'Cancel',
|
|
},
|
|
card: {
|
|
title: 'Menstrual cycle',
|
|
syncingState: 'Syncing',
|
|
syncingDesc: 'Reading menstrual data…',
|
|
emptyState: 'Not logged',
|
|
emptyDesc: 'Tap to record this period',
|
|
periodState: 'Period',
|
|
predictedPeriodState: 'Predicted period',
|
|
periodEndToday: 'Expected to end today ({{date}})',
|
|
periodEndPrefix: 'Ends in ',
|
|
periodEndSuffix: ' days ({{date}})',
|
|
fertileState: 'Fertile window',
|
|
fertileToday: 'Fertile window starts today',
|
|
fertileCountdownPrefix: 'Enters fertile window in ',
|
|
fertileCountdownSuffix: ' days',
|
|
ovulationState: 'Ovulation',
|
|
ovulationToday: 'Today is ovulation day',
|
|
ovulationCountdownPrefix: 'Ovulation in ',
|
|
ovulationCountdownSuffix: ' days',
|
|
nextPeriodPrefix: 'Next period in ',
|
|
nextPeriodSuffix: ' days',
|
|
},
|
|
screen: {
|
|
header: 'Menstrual Cycle',
|
|
tabs: {
|
|
cycle: 'Cycle',
|
|
analysis: 'Analysis',
|
|
},
|
|
analysis: {
|
|
title: 'Analysis',
|
|
description:
|
|
'Based on the latest 6 cycles, we will calculate average period and cycle length. Trends and prediction accuracy will be shown here.',
|
|
},
|
|
},
|
|
};
|