Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions i18n/en.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"POT-Creation-Date: 2025-01-17T10:18:20.401Z\n"
"PO-Revision-Date: 2025-01-17T10:18:20.402Z\n"
"POT-Creation-Date: 2025-03-05T20:30:30.881Z\n"
"PO-Revision-Date: 2025-03-05T20:30:30.890Z\n"

msgid "Failed to load: {{error}}"
msgstr "Failed to load: {{error}}"
Expand Down Expand Up @@ -257,6 +257,16 @@ msgstr "This setting can be overridden by user settings"
msgid "No options"
msgstr "No options"

msgid "Settings must be configured to send emails to enforce verified emails"
msgstr "Settings must be configured to send emails to enforce verified emails"

msgid ""
"You cannot enable \"Enforce Verified Email\" until email settings are "
"configured."
msgstr ""
"You cannot enable \"Enforce Verified Email\" until email settings are "
"configured."

msgid "No settings matched the search term"
msgstr "No settings matched the search term"

Expand Down Expand Up @@ -665,6 +675,12 @@ msgstr "Custom"
msgid "Login page template"
msgstr "Login page template"

msgid "Enable Global Shell"
msgstr "Enable Global Shell"

msgid "Global Shell App"
msgstr "Global Shell App"

msgid "Custom login page logo"
msgstr "Custom login page logo"

Expand Down Expand Up @@ -722,6 +738,9 @@ msgstr "Enable user account recovery"
msgid "Lock user account temporarily after multiple failed login attempts"
msgstr "Lock user account temporarily after multiple failed login attempts"

msgid "Enable embedded dashboards"
msgstr "Enable embedded dashboards"

msgid "Enforce verified emails"
msgstr "Enforce verified emails"

Expand Down
8 changes: 8 additions & 0 deletions src/settingsCategories.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,14 @@ export const categories = {
{
setting: 'loginPageTemplate',
},
{
setting: 'globalShellEnabled',
maximumApiVersion: 42,
},
// {
// setting: 'globalShellAppName',
// maximumApiVersion: 42,
// },
],
},
email: {
Expand Down
9 changes: 9 additions & 0 deletions src/settingsKeyMapping.js
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,15 @@ const settingsKeyMapping = {
multiLine: true,
rowsMax: 10,
},
globalShellEnabled: {
label: i18n.t('Enable Global Shell'),
type: 'checkbox',
},
// globalShellAppName: {
// label: i18n.t('Global Shell App'),
// type: 'dropdown',
// source: 'startModules',
// },
keyUseCustomLogoFront: {
label: i18n.t('Custom login page logo'),
type: 'staticContent',
Expand Down
Loading