interface Text {
	summaryTitle: string;
	summaryText: string;
	perspectiveSubTitle: string;
	financialReturnsSubText: string;
	toolsFirstPage: string;
	toolsFirstPageColored: string;
	list1: string;
	list2: string;
	list3: string;
}

const Wording: Text = {
	summaryTitle: '',
	summaryText: 'The impact of adjustments by 1% or 1 day on your cash flow and profit.',
	perspectiveSubTitle:
		'The metrics in bold are your Core Profitability ' +
		'Scorecard and should be monitored frequently.',
	financialReturnsSubText:
		'The metrics in bold are your Core Working Capital and should be monitored frequently.',
	toolsFirstPageColored: 'Money Multiplier for CEOs.',
	toolsFirstPage:
		'An automated tool for calculating the impact of any ' +
		'change or decision on your cash and profit. It first ' +
		'tells you the movement in your cash and profit triggered by ' +
		'change and then it gives you the adjusted cash and profit ' +
		'position you are likely to experience as a result of that change. ' +
		'Use this tool for: ',
	list1: 'Select figures to use with this tool...',
	list2: 'Making business decisions.',
	list3:
		'Working out the effect of business changes on your cash flow and profit (to prevent losses).'
};

export default Wording;
