Initial commit: Premier Gunner tracker + StartOS 0.4.0 s9pk package

This commit is contained in:
Keysat
2026-05-31 21:04:48 -05:00
commit 0265699504
67 changed files with 4578 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
export const DEFAULT_LANG = 'en_US'
const dict = {
// main.ts
'Starting Premier Gunner!': 0,
'Web Interface': 1,
'The web interface is ready': 2,
'The web interface is not ready': 3,
// interfaces.ts
'Premier Gunner': 4,
'The Premier Gunner training tracker web app': 5,
// actions
'Set Login Password': 6,
'Set the password Gunner uses to log in to Premier Gunner': 7,
'Password': 8,
'The password Gunner types on the login screen (at least 4 characters)': 9,
} as const
/**
* Plumbing. DO NOT EDIT.
*/
export type I18nKey = keyof typeof dict
export type LangDict = Record<(typeof dict)[I18nKey], string>
export default dict