Add startos/i18n/dictionaries/default.ts
Add Munin Bitcoin default translations
This commit is contained in:
@@ -0,0 +1,20 @@
|
|||||||
|
export const DEFAULT_LANG = 'en_US'
|
||||||
|
|
||||||
|
const dict = {
|
||||||
|
// main.ts
|
||||||
|
'Starting Munin Bitcoin!': 0,
|
||||||
|
'Web Interface': 1,
|
||||||
|
'The web interface is ready': 2,
|
||||||
|
'The web interface is not ready': 3,
|
||||||
|
|
||||||
|
// interfaces.ts
|
||||||
|
'Web UI': 4,
|
||||||
|
'The web interface of Munin Bitcoin': 5,
|
||||||
|
} as const
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plumbing. DO NOT EDIT.
|
||||||
|
*/
|
||||||
|
export type I18nKey = keyof typeof dict
|
||||||
|
export type LangDict = Record<(typeof dict)[I18nKey], string>
|
||||||
|
export default dict
|
||||||
Reference in New Issue
Block a user