diff options
Diffstat (limited to 'code/app/src/lib/i18n')
| -rw-r--r-- | code/app/src/lib/i18n/en/index.ts | 6 | ||||
| -rw-r--r-- | code/app/src/lib/i18n/i18n-types.ts | 37 |
2 files changed, 43 insertions, 0 deletions
diff --git a/code/app/src/lib/i18n/en/index.ts b/code/app/src/lib/i18n/en/index.ts index 1d6ff26..b9cdae7 100644 --- a/code/app/src/lib/i18n/en/index.ts +++ b/code/app/src/lib/i18n/en/index.ts @@ -20,6 +20,12 @@ const en: BaseTranslation = { tos: "Terms of service", privacyPolicy: "Privacy policy", signIntoYourAccount: "Sign into your account", + combobox: { + search: "Search", + noRecordsFound: "No records found", + createRecordHelpText: "Create a record by typing the name in the search bar and pressing enter", + createRecordButtonText: "Press enter or click here to create {0}" + }, signInPage: { notMyComputer: "This is not my computer", resetPassword: "Reset password", diff --git a/code/app/src/lib/i18n/i18n-types.ts b/code/app/src/lib/i18n/i18n-types.ts index 2c564c4..63387e8 100644 --- a/code/app/src/lib/i18n/i18n-types.ts +++ b/code/app/src/lib/i18n/i18n-types.ts @@ -96,6 +96,25 @@ type RootTranslation = { * Sign into your account */ signIntoYourAccount: string + combobox: { + /** + * Search + */ + search: string + /** + * No records found + */ + noRecordsFound: string + /** + * Create a record by typing the name in the search bar and pressing enter + */ + createRecordHelpText: string + /** + * Press enter or click here to create {0} + * @param {unknown} 0 + */ + createRecordButtonText: RequiredParams<'0'> + } signInPage: { /** * This is not my computer @@ -274,6 +293,24 @@ export type TranslationFunctions = { * Sign into your account */ signIntoYourAccount: () => LocalizedString + combobox: { + /** + * Search + */ + search: () => LocalizedString + /** + * No records found + */ + noRecordsFound: () => LocalizedString + /** + * Create a record by typing the name in the search bar and pressing enter + */ + createRecordHelpText: () => LocalizedString + /** + * Press enter or click here to create {0} + */ + createRecordButtonText: (arg0: unknown) => LocalizedString + } signInPage: { /** * This is not my computer |
