export interface TooltipInterface {
	[key: string]: string;
}

const TooltipWording: TooltipInterface = {
	month: 'This is the month and year from where your financials start',
	revenue: "Referenced as 'Revenue' or 'Turnover' in your Financial Statements",
	costOfSales: "Referenced as 'Cost of Sales' in your Financial Statements",
	grossProfit: "Referenced as 'Gross Profit' in your Financial Statements",
	directLabour: "Referenced as 'Direct Labour' in your Financial Statements",
	EBIT: "Referenced as 'Operating Profit' in your Financial Statements",
	NetProfit: "Referenced as 'Profit after Taxation' in your Financial Statements",
	deprecation: "Referenced as 'Depreciation' under 'Admin expenses'in your Financial Statements",
	interestPaid:
		"Referenced as 'Interest Paid/Received' in your Financial Statements. Interest Received should be entered as negative number.",
	otherIncome:
		"Referenced as 'Other Income' below 'Operating Profit' in your Financial Statements. Enter income as a positive number and Expenses as a negative number.",
	dividends: "Referenced as 'Dividends' in your Financial Statements",
	cashInBank:
		"Referenced as 'Cash in Bank and at Hand' in your Financial Statements as well as Deposits.",
	tradeDebtors:
		"Referenced as 'Accounts Receivable' or 'Trade Debtors' in your Financial Statements",
	stockWip: "Referenced as 'Stock' or 'Work in Progress' in your Financial Statements",
	totalCurrentAssets: "Referenced as 'Total Current Assets' in your Financial Statements",
	fixedAssets: "Referenced as 'Fixed Assets' in your Financial Statements",
	totalAssets: "This is the sum of your 'Current Assets' and 'Total Assets'.",
	tradeCreditors:
		"Referenced as 'Accounts Payable' or 'Trade Creditors' in your Financial Statements",
	deferredRevenue: "Referenced as 'Deferred Revenue' in your Financial Statements.",
	totalCurrentLiabilities: "Referenced as 'Total Current Liabilities' in your Financial Statements",
	totalLiabilities: "Referenced as 'Total Liabilities' in your Financial Statements",
	bankLoanCurrent:
		"Referenced as 'Bank Loans and Overdrafts', or 'Directors Loan' in your Financial Statements. This is every loan for up to 1 year plus the short-term part of a long-term debt.",
	bankLoanNonCurrent:
		"Referenced as 'Bank Loans and Overdrafts', or 'Directors Loan' in your Financial Statements. This is every loan for more than 1 year.",
	timePeriod: 'Sales forecast for the next 12 months'
};

export default TooltipWording;
