export const DEFAULT_LANG = 'en_US' const dict = { 'Starting Proof of Work': 0, 'Web Interface': 1, 'The web interface is ready': 2, 'The web interface is not ready': 3, 'Web UI': 4, 'The browser interface for Proof of Work': 5, } as const export type I18nKey = keyof typeof dict export type LangDict = Record<(typeof dict)[I18nKey], string> export default dict