passbolt-styleguide 3.8.4 → 3.9.0-alpha2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/css/help.min.css +3 -3
- package/build/css/public.min.css +3 -3
- package/build/css/themes/default/api_authentication.min.css +3 -3
- package/build/css/themes/default/api_cloud.min.css +3 -3
- package/build/css/themes/default/api_main.min.css +3 -3
- package/build/css/themes/default/api_reports.min.css +3 -3
- package/build/css/themes/default/api_webinstaller.min.css +3 -3
- package/build/css/themes/default/ext_app.min.css +3 -3
- package/build/css/themes/default/ext_authentication.min.css +3 -3
- package/build/css/themes/default/ext_external.min.css +2 -2
- package/build/css/themes/default/ext_in_form_cta.min.css +3 -3
- package/build/css/themes/default/ext_in_form_menu.min.css +3 -3
- package/build/css/themes/default/ext_quickaccess.min.css +3 -3
- package/build/css/themes/midgar/api_authentication.min.css +3 -3
- package/build/css/themes/midgar/api_main.min.css +3 -3
- package/build/css/themes/midgar/api_reports.min.css +3 -3
- package/build/css/themes/midgar/ext_app.min.css +3 -3
- package/build/css/themes/midgar/ext_authentication.min.css +3 -3
- package/build/css/themes/midgar/ext_in_form_cta.min.css +3 -3
- package/build/css/themes/midgar/ext_in_form_menu.min.css +3 -3
- package/build/css/themes/midgar/ext_quickaccess.min.css +3 -3
- package/build/css/themes/solarized_dark/api_authentication.min.css +1 -1
- package/build/css/themes/solarized_dark/api_main.min.css +1 -1
- package/build/css/themes/solarized_dark/api_reports.min.css +1 -1
- package/build/css/themes/solarized_dark/ext_app.min.css +1 -1
- package/build/css/themes/solarized_dark/ext_authentication.min.css +1 -1
- package/build/css/themes/solarized_dark/ext_in_form_cta.min.css +1 -1
- package/build/css/themes/solarized_dark/ext_in_form_menu.min.css +1 -1
- package/build/css/themes/solarized_dark/ext_quickaccess.min.css +1 -1
- package/build/css/themes/solarized_light/api_authentication.min.css +1 -1
- package/build/css/themes/solarized_light/api_main.min.css +1 -1
- package/build/css/themes/solarized_light/api_reports.min.css +1 -1
- package/build/css/themes/solarized_light/ext_app.min.css +1 -1
- package/build/css/themes/solarized_light/ext_authentication.min.css +1 -1
- package/build/css/themes/solarized_light/ext_in_form_cta.min.css +1 -1
- package/build/css/themes/solarized_light/ext_in_form_menu.min.css +1 -1
- package/build/css/themes/solarized_light/ext_quickaccess.min.css +1 -1
- package/build/js/dist/api-account-recovery.js +1 -1
- package/build/js/dist/api-app.js +1 -1
- package/build/js/dist/api-app.js.LICENSE.txt +75 -5
- package/build/js/dist/api-feedback.js +2 -0
- package/build/js/dist/api-feedback.js.LICENSE.txt +45 -0
- package/build/js/dist/api-recover.js +1 -1
- package/build/js/dist/api-setup.js +1 -1
- package/build/js/dist/api-triage.js +1 -1
- package/build/js/dist/api-vendors.js +1 -1
- package/build/js/dist/api-vendors.js.LICENSE.txt +19 -9
- package/build/js/dist/src/locales/de-DE/common.json +995 -0
- package/build/js/dist/src/locales/en-UK/common.json +1061 -0
- package/build/js/dist/src/locales/es-ES/common.json +995 -0
- package/build/js/dist/src/locales/fr-FR/common.json +995 -0
- package/build/js/dist/src/locales/ja-JP/common.json +980 -0
- package/build/js/dist/src/locales/lt-LT/common.json +1025 -0
- package/build/js/dist/src/locales/nl-NL/common.json +995 -0
- package/build/js/dist/src/locales/pl-PL/common.json +1025 -0
- package/build/js/dist/src/locales/sv-SE/common.json +995 -0
- package/package.json +18 -1
- package/src/img/controls/attention.svg +1 -0
- package/src/locales/en-UK/common.json +80 -16
- package/src/react-extension/ApiApp.js +17 -5
- package/src/react-extension/ApiFeedback.entry.js +24 -0
- package/src/react-extension/ExtApp.js +12 -5
- package/src/react-extension/ExtAuthenticationLogin.js +17 -15
- package/src/react-extension/ExtAuthenticationLogin.test.stories.js +59 -0
- package/src/react-extension/ExtBootstrapApp.js +1 -0
- package/src/react-extension/components/Administration/AdministrationWorkspace.js +24 -0
- package/src/react-extension/components/Administration/AdministrationWorkspace.test.data.js +3 -3
- package/src/react-extension/components/Administration/AdministrationWorkspace.test.js +13 -1
- package/src/react-extension/components/Administration/AdministrationWorkspace.test.page.js +7 -0
- package/src/react-extension/components/Administration/ConfirmDeleteSsoSettingsDialog/ConfirmDeleteSsoSettingsDialog.js +101 -0
- package/src/react-extension/components/Administration/ConfirmDeleteSsoSettingsDialog/ConfirmDeleteSsoSettingsDialog.test.data.js +23 -0
- package/src/react-extension/components/Administration/ConfirmDeleteSsoSettingsDialog/ConfirmDeleteSsoSettingsDialog.test.stories.js +27 -0
- package/src/react-extension/components/Administration/ConfirmSaveAccountRecoverySettings/ConfirmSaveAccountRecoverySettings.js +1 -1
- package/src/react-extension/components/Administration/DisplayAdministrationMenu/DisplayAdministrationMenu.js +78 -2
- package/src/react-extension/components/Administration/DisplayAdministrationMenu/DisplayAdministrationMenu.test.data.js +3 -1
- package/src/react-extension/components/Administration/DisplayAdministrationMenu/DisplayAdministrationMenu.test.js +60 -0
- package/src/react-extension/components/Administration/DisplayAdministrationMenu/DisplayAdministrationMenu.test.page.js +23 -4
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationInternationalisationActions/DisplayAdministrationInternationalisationActions.js +125 -0
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationMfaActions/DisplayAdministrationMfaActions.js +131 -0
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationSelfRegistrationActions/DisplayAdministrationSelfRegistrationActions.js +103 -0
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationSsoActions/DisplayAdministrationSsoActions.js +91 -0
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationSubscriptionActions/DisplayAdministrationSubscriptionActions.js +85 -0
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationUserDirectoryActions/DisplayAdministrationUserDirectoryActions.js +228 -0
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceBreadcrumb/DisplayAdministrationWorkspaceBreadcrumb.js +4 -0
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceBreadcrumb/DisplayAdministrationWorkspaceBreadcrumb.test.js +9 -0
- package/src/react-extension/components/Administration/DisplayEmailNotificationsAdministration/DisplayEmailNotificationsAdministration.js +3 -3
- package/src/react-extension/components/Administration/DisplayEmailNotificationsAdministration/DisplayEmailNotificationsAdministration.test.data.js +14 -0
- package/src/react-extension/components/Administration/DisplayEmailNotificationsAdministration/DisplayEmailNotificationsAdministration.test.page.js +0 -17
- package/src/react-extension/components/Administration/DisplayInternationalizationAdministration/DisplayInternationalizationAdministration.js +18 -115
- package/src/react-extension/components/Administration/DisplayInternationalizationAdministration/DisplayInternationalizationAdministration.test.data.js +11 -13
- package/src/react-extension/components/Administration/DisplayInternationalizationAdministration/DisplayInternationalizationAdministration.test.js +38 -43
- package/src/react-extension/components/Administration/DisplayInternationalizationAdministration/DisplayInternationalizationAdministration.test.page.js +47 -10
- package/src/react-extension/components/Administration/DisplayInternationalizationAdministration/DisplayInternationalizationAdministration.test.stories.js +10 -43
- package/src/react-extension/components/Administration/DisplayMfaAdministration/DisplayMfaAdministration.js +82 -367
- package/src/react-extension/components/Administration/DisplayMfaAdministration/DisplayMfaAdministration.test.data.js +128 -42
- package/src/react-extension/components/Administration/DisplayMfaAdministration/DisplayMfaAdministration.test.js +75 -121
- package/src/react-extension/components/Administration/DisplayMfaAdministration/DisplayMfaAdministration.test.page.js +46 -16
- package/src/react-extension/components/Administration/DisplayMfaAdministration/DisplayMfaAdministration.test.stories.js +18 -14
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmDeletionSelfRegistrationSettings/ConfirmDeletionSelfRegistrationSettings.js +103 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmDeletionSelfRegistrationSettings/ConfirmDeletionSelfRegistrationSettings.test.js +53 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmDeletionSelfRegistrationSettings/ConfirmDeletionSelfRegistrationSettings.test.page.js +81 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmDeletionSelfRegistrationSettings/ConfirmDeletionSelfRegistrationSettings.test.stories.js +34 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmSaveSelfRegistrationSettings/ConfirmSaveSelfRegistrationSettings.js +125 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmSaveSelfRegistrationSettings/ConfirmSaveSelfRegistrationSettings.test.data.js +63 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmSaveSelfRegistrationSettings/ConfirmSaveSelfRegistrationSettings.test.js +54 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmSaveSelfRegistrationSettings/ConfirmSaveSelfRegistrationSettings.test.page.js +88 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/ConfirmSaveSelfRegistrationSettings/ConfirmSaveSelfRegistrationSettings.test.stories.js +35 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/DisplaySelfRegistrationAdministration.js +381 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/DisplaySelfRegistrationAdministration.test.data.js +69 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/DisplaySelfRegistrationAdministration.test.js +332 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/DisplaySelfRegistrationAdministration.test.page.js +247 -0
- package/src/react-extension/components/Administration/DisplaySelfRegistrationAdministration/DisplaySelfRegistrationAdministration.test.stories.js +72 -0
- package/src/react-extension/components/Administration/DisplaySimulateSynchronizeUserDirectoryAdministration/DisplaySimulateSynchronizeUserDirectoryAdministration.js +19 -19
- package/src/react-extension/components/Administration/DisplaySimulateSynchronizeUserDirectoryAdministration/DisplaySimulateSynchronizeUserDirectoryAdministration.test.data.js +1717 -1729
- package/src/react-extension/components/Administration/DisplaySimulateSynchronizeUserDirectoryAdministration/DisplaySimulateSynchronizeUserDirectoryAdministration.test.js +11 -3
- package/src/react-extension/components/Administration/DisplaySimulateSynchronizeUserDirectoryAdministration/DisplaySimulateSynchronizeUserDirectoryAdministration.test.page.js +4 -1
- package/src/react-extension/components/Administration/DisplaySimulateSynchronizeUserDirectoryAdministration/DisplaySimulateSynchronizeUserDirectoryAdministration.test.stories.js +11 -1784
- package/src/react-extension/components/Administration/DisplaySubscriptionKey/DisplaySubscriptionKey.js +41 -140
- package/src/react-extension/components/Administration/DisplaySubscriptionKey/DisplaySubscriptionKey.test.data.js +15 -3
- package/src/react-extension/components/Administration/DisplaySubscriptionKey/DisplaySubscriptionKey.test.js +22 -49
- package/src/react-extension/components/Administration/DisplaySubscriptionKey/DisplaySubscriptionKey.test.page.js +19 -11
- package/src/react-extension/components/Administration/DisplaySubscriptionKey/DisplaySubscriptionKey.test.stories.js +9 -3
- package/src/react-extension/components/Administration/DisplaySynchronizeUserDirectoryAdministration/DisplaySynchronizeUserDirectoryAdministration.js +5 -6
- package/src/react-extension/components/Administration/DisplaySynchronizeUserDirectoryAdministration/DisplaySynchronizeUserDirectoryAdministration.test.data.js +1717 -1728
- package/src/react-extension/components/Administration/DisplaySynchronizeUserDirectoryAdministration/DisplaySynchronizeUserDirectoryAdministration.test.js +11 -3
- package/src/react-extension/components/Administration/DisplaySynchronizeUserDirectoryAdministration/DisplaySynchronizeUserDirectoryAdministration.test.page.js +4 -1
- package/src/react-extension/components/Administration/DisplaySynchronizeUserDirectoryAdministration/DisplaySynchronizeUserDirectoryAdministration.test.stories.js +11 -1784
- package/src/react-extension/components/Administration/DisplayUserDirectoryAdministration/DisplayUserDirectoryAdministration.js +362 -835
- package/src/react-extension/components/Administration/DisplayUserDirectoryAdministration/DisplayUserDirectoryAdministration.test.data.js +427 -418
- package/src/react-extension/components/Administration/DisplayUserDirectoryAdministration/DisplayUserDirectoryAdministration.test.js +134 -175
- package/src/react-extension/components/Administration/DisplayUserDirectoryAdministration/DisplayUserDirectoryAdministration.test.page.js +108 -11
- package/src/react-extension/components/Administration/DisplayUserDirectoryAdministration/DisplayUserDirectoryAdministration.test.stories.js +17 -25
- package/src/react-extension/components/Administration/EditSubscriptionKey/EditSubscriptionKey.js +4 -2
- package/src/react-extension/components/Administration/ManageAccountRecoveryAdministrationSettings/ManageAccountRecoveryAdministrationSettings.js +3 -3
- package/src/react-extension/components/Administration/ManageAccountRecoveryAdministrationSettings/ManageAccountRecoveryAdministrationSettings.test.js +1 -1
- package/src/react-extension/components/Administration/ManageSmtpAdministrationSettings/ManageSmtpAdministrationSettings.js +32 -7
- package/src/react-extension/components/Administration/ManageSmtpAdministrationSettings/ManageSmtpAdministrationSettings.test.data.js +0 -3
- package/src/react-extension/components/Administration/ManageSmtpAdministrationSettings/ManageSmtpAdministrationSettings.test.js +145 -1
- package/src/react-extension/components/Administration/ManageSmtpAdministrationSettings/ManageSmtpAdministrationSettings.test.page.js +52 -1
- package/src/react-extension/components/Administration/ManageSmtpAdministrationSettings/ManageSmtpAdministrationSettings.test.stories.js +15 -0
- package/src/react-extension/components/Administration/ManageSsoSettings/ManageSsoSettings.js +340 -0
- package/src/react-extension/components/Administration/ManageSsoSettings/ManageSsoSettings.test.data.js +56 -0
- package/src/react-extension/components/Administration/ManageSsoSettings/ManageSsoSettings.test.js +223 -0
- package/src/react-extension/components/Administration/ManageSsoSettings/ManageSsoSettings.test.page.js +235 -0
- package/src/react-extension/components/Administration/ManageSsoSettings/ManageSsoSettings.test.stories.js +55 -0
- package/src/react-extension/components/Administration/ManageSsoSettings/SsoProviders.data.js +34 -0
- package/src/react-extension/components/Administration/SelectAccountRecoveryOrganizationKey/GenerateOrganizationKey.js +12 -3
- package/src/react-extension/components/Administration/SelectAccountRecoveryOrganizationKey/GenerateOrganizationKey.test.js +27 -0
- package/src/react-extension/components/Administration/SelectAccountRecoveryOrganizationKey/SelectAccountRecoveryOrganizationKey.test.page.js +8 -0
- package/src/react-extension/components/Administration/TestSsoSettingsDialog/TestSsoSettingsDialog.js +197 -0
- package/src/react-extension/components/Administration/TestSsoSettingsDialog/TestSsoSettingsDialog.test.data.js +37 -0
- package/src/react-extension/components/Administration/TestSsoSettingsDialog/TestSsoSettingsDialog.test.js +187 -0
- package/src/react-extension/components/Administration/TestSsoSettingsDialog/TestSsoSettingsDialog.test.page.js +120 -0
- package/src/react-extension/components/Administration/TestSsoSettingsDialog/TestSsoSettingsDialog.test.stories.js +31 -0
- package/src/react-extension/components/Authentication/CheckPassphrase/CheckPassphrase.js +9 -5
- package/src/react-extension/components/Authentication/CheckPassphrase/CheckPassphrase.test.data.js +4 -0
- package/src/react-extension/components/Authentication/CheckPassphrase/CheckPassphrase.test.js +11 -42
- package/src/react-extension/components/Authentication/CheckPassphrase/CheckPassphrase.test.page.js +1 -0
- package/src/react-extension/components/Authentication/CreateGpgKey/CreateGpgKey.js +9 -5
- package/src/react-extension/components/Authentication/CreateGpgKey/CreateGpgKey.test.data.js +4 -0
- package/src/react-extension/components/Authentication/CreateGpgKey/CreateGpgKey.test.js +16 -2
- package/src/react-extension/components/Authentication/CreateGpgKey/CreateGpgKey.test.page.js +17 -1
- package/src/react-extension/components/AuthenticationLogin/Login/Login.js +159 -61
- package/src/react-extension/components/AuthenticationLogin/Login/Login.test.data.js +14 -11
- package/src/react-extension/components/AuthenticationLogin/Login/Login.test.js +79 -0
- package/src/react-extension/components/AuthenticationLogin/Login/Login.test.page.js +16 -0
- package/src/react-extension/components/AuthenticationLogin/OrchestrateLogin/OrchestrateLoginBoxMain.js +2 -0
- package/src/react-extension/components/AuthenticationSetup/SetupAuthentication/SetupAuthentication.js +4 -0
- package/src/react-extension/components/Common/Error/ApiError/ApiError.js +119 -0
- package/src/react-extension/components/Common/Error/ApiError/ApiError.test.js +43 -0
- package/src/react-extension/components/Common/Error/ApiError/ApiError.test.page.js +108 -0
- package/src/react-extension/components/Common/Error/ApiError/ApiError.test.stories.js +39 -0
- package/src/react-extension/components/Common/Inputs/Autocomplete/Autocomplete.test.js +12 -0
- package/src/react-extension/components/Common/Inputs/Autocomplete/AutocompleteItem.js +2 -2
- package/src/react-extension/components/Common/Legacy/HandleLegacyAppjs.js +1 -1
- package/src/react-extension/components/Common/Navigation/Header/Logo.js +13 -1
- package/src/react-extension/components/Resource/CreateResource/CreateResource.js +103 -30
- package/src/react-extension/components/Resource/CreateResource/CreateResource.test.js +44 -10
- package/src/react-extension/components/Resource/CreateResource/CreateResource.test.page.js +35 -7
- package/src/react-extension/components/Resource/DisplayResourcesList/DisplayResourcesList.js +3 -3
- package/src/react-extension/components/Resource/DisplayResourcesList/DisplayResourcesListContextualMenu.js +6 -5
- package/src/react-extension/components/Resource/DisplayResourcesWorkspace/DisplayResourcesWorkspaceMenu.js +5 -4
- package/src/react-extension/components/Resource/EditResource/EditResource.js +95 -23
- package/src/react-extension/components/Resource/EditResource/EditResource.test.js +45 -13
- package/src/react-extension/components/Resource/EditResource/EditResource.test.page.js +35 -2
- package/src/react-extension/components/ResourceDetails/DisplayResourceDetails/DisplayResourceDetails.js +2 -1
- package/src/react-extension/components/ResourceDetails/DisplayResourceDetails/DisplayResourceDetailsInformation.js +3 -2
- package/src/react-extension/components/ResourceFolder/CreateResourceFolder/CreateResourceFolder.js +23 -2
- package/src/react-extension/components/ResourceFolder/CreateResourceFolder/CreateResourceFolder.test.js +8 -0
- package/src/react-extension/components/ResourceFolder/CreateResourceFolder/CreateResourceFolder.test.page.js +26 -2
- package/src/react-extension/components/ResourceFolder/RenameResourceFolder/RenameResourceFolder.js +22 -1
- package/src/react-extension/components/ResourceFolder/RenameResourceFolder/RenameResourceFolder.test.js +8 -0
- package/src/react-extension/components/ResourceFolder/RenameResourceFolder/RenameResourceFolder.test.page.js +25 -2
- package/src/react-extension/components/ResourceFolderDetails/DisplayResourceFolderDetails/DisplayResourceFolderDetails.js +2 -1
- package/src/react-extension/components/ResourcePassword/GenerateResourcePassword/GenerateResourcePassword.js +2 -1
- package/src/react-extension/components/ResourceTag/EditResourceTag/EditResourceTag.js +14 -1
- package/src/react-extension/components/ResourceTag/EditResourceTag/EditResourceTag.test.js +8 -0
- package/src/react-extension/components/ResourceTag/EditResourceTag/EditResourceTag.test.page.js +12 -0
- package/src/react-extension/components/User/CreateUser/CreateUser.js +42 -3
- package/src/react-extension/components/User/CreateUser/CreateUser.test.js +16 -0
- package/src/react-extension/components/User/CreateUser/CreateUser.test.page.js +26 -0
- package/src/react-extension/components/User/DisplayUserWorkspaceActions/DisplayUserWorkspaceActions.js +2 -1
- package/src/react-extension/components/User/DisplayUsersContextualMenu/DisplayUsersContextualMenu.js +5 -5
- package/src/react-extension/components/User/EditUser/EditUser.js +29 -2
- package/src/react-extension/components/User/EditUser/EditUser.test.js +12 -0
- package/src/react-extension/components/User/EditUser/EditUser.test.page.js +26 -0
- package/src/react-extension/components/UserDetails/DisplayUserDetails/DisplayUserDetails.js +2 -1
- package/src/react-extension/components/UserDetails/DisplayUserDetails/DisplayUserDetails.test.data.js +1332 -1331
- package/src/react-extension/components/UserDetails/DisplayUserDetailsPublicKey/DisplayUserDetailsPublicKey.js +2 -1
- package/src/react-extension/components/UserGroup/CreateUserGroup/CreateUserGroup.js +19 -1
- package/src/react-extension/components/UserGroup/CreateUserGroup/CreateUserGroup.test.js +9 -0
- package/src/react-extension/components/UserGroup/CreateUserGroup/CreateUserGroup.test.page.js +12 -0
- package/src/react-extension/components/UserGroup/DisplayUserGroupDetails/DisplayUserGroupDetails.js +2 -1
- package/src/react-extension/components/UserGroup/EditUserGroup/EditUserGroup.js +16 -1
- package/src/react-extension/components/UserGroup/EditUserGroup/EditUserGroup.test.js +8 -0
- package/src/react-extension/components/UserGroup/EditUserGroup/EditUserGroup.test.page.js +26 -1
- package/src/react-extension/components/UserSetting/ChangeUserPassphrase/ConfirmPassphrase.js +1 -1
- package/src/react-extension/components/UserSetting/ChangeUserPassphrase/EnterNewPassphrase.js +6 -4
- package/src/react-extension/components/UserSetting/ChangeUserPassphrase/EnterNewPassphrase.test.data.js +4 -1
- package/src/react-extension/components/UserSetting/ChangeUserPassphrase/EnterNewPassphrase.test.js +21 -11
- package/src/react-extension/components/UserSetting/ChangeUserPassphrase/EnterNewPassphrase.test.page.js +10 -1
- package/src/react-extension/contexts/AdminSmtpSettingsContext.js +2 -0
- package/src/react-extension/contexts/AdminSmtpSettingsContext.test.data.js +13 -0
- package/src/react-extension/contexts/AdminSmtpSettingsContext.test.js +3 -1
- package/src/react-extension/contexts/AdminSsoContext.js +558 -0
- package/src/react-extension/contexts/AdminSsoContext.test.data.js +51 -0
- package/src/react-extension/contexts/Administration/AdministrationInternationalizationContext/AdministrationInternationalizationContext.js +194 -0
- package/src/react-extension/contexts/Administration/AdministrationInternationalizationContext/AdministrationInternationalizationContext.test.js +111 -0
- package/src/react-extension/contexts/Administration/AdministrationMfa/AdministrationMfaContext.js +265 -0
- package/src/react-extension/contexts/Administration/AdministrationMfa/AdministrationMfaContext.test.js +178 -0
- package/src/react-extension/contexts/Administration/AdministrationSelfRegistration/AdministrationSelfRegistrationContext.js +453 -0
- package/src/react-extension/contexts/Administration/AdministrationSelfRegistration/AdministrationSelfRegistrationContext.test.js +218 -0
- package/src/react-extension/contexts/Administration/AdministrationSubscription/AdministrationSubscription.js +168 -0
- package/src/react-extension/contexts/Administration/AdministrationSubscription/AdministrationSubscription.test.js +73 -0
- package/src/react-extension/contexts/Administration/AdministrationUserDirectory/AdministrationUserDirectoryContext.js +353 -0
- package/src/react-extension/contexts/Administration/AdministrationUserDirectory/AdministrationUserDirectoryContext.test.js +220 -0
- package/src/react-extension/contexts/AdministrationWorkspaceContext.js +17 -178
- package/src/react-extension/contexts/AdministrationWorkspaceContext.test.js +0 -26
- package/src/react-extension/contexts/ApiAppContext.test.data.js +4 -2
- package/src/react-extension/contexts/Authentication/AuthenticationLoginContext.js +54 -4
- package/src/react-extension/contexts/Authentication/AuthenticationLoginContext.test.data.js +10 -1
- package/src/react-extension/contexts/Authentication/AuthenticationLoginContext.test.js +92 -14
- package/src/react-extension/contexts/Authentication/AuthenticationSetupContext.js +1 -0
- package/src/react-extension/contexts/NavigationContext.js +34 -0
- package/src/react-extension/contexts/SsoContext.js +151 -0
- package/src/react-extension/contexts/SsoContext.test.data.js +36 -0
- package/src/react-extension/contexts/SsoContext.test.js +104 -0
- package/src/react-extension/lib/Domain/DomainUtil.js +70 -0
- package/src/react-extension/lib/Domain/DomainUtil.test.js +129 -0
- package/src/react-extension/lib/Domain/Domains.js +6113 -0
- package/src/react-extension/lib/Error/InputValidator.js +24 -0
- package/src/react-extension/lib/Map/DynamicRef.js +49 -0
- package/src/react-extension/lib/Map/DynamicRef.test.js +56 -0
- package/src/react-extension/lib/Map/MapObject.js +48 -0
- package/src/react-extension/lib/Map/MapObject.test.js +43 -0
- package/src/react-quickaccess/ExtQuickAccess.js +7 -4
- package/src/react-quickaccess/components/GeneratePasswordPage/GeneratePasswordPage.js +3 -1
- package/src/react-quickaccess/components/GeneratePasswordPage/GeneratePasswordPage.test.data.js +4 -0
- package/src/react-quickaccess/components/LoginPage/LoginPage.js +115 -4
- package/src/react-quickaccess/components/LoginPage/LoginPage.test.data.js +10 -0
- package/src/react-quickaccess/components/LoginPage/LoginPage.test.stories.js +30 -3
- package/src/react-quickaccess/components/ResourceAutoSave/SaveResource.js +33 -1
- package/src/react-quickaccess/components/ResourceAutoSave/SaveResource.test.data.js +25 -0
- package/src/react-quickaccess/components/ResourceAutoSave/SaveResource.test.js +60 -0
- package/src/react-quickaccess/components/ResourceAutoSave/SaveResource.test.page.js +60 -0
- package/src/react-quickaccess/components/ResourceCreatePage/ResourceCreatePage.js +33 -1
- package/src/react-quickaccess/components/ResourceCreatePage/ResourceCreatePage.test.js +36 -7
- package/src/react-quickaccess/components/ResourceViewPage/ResourceViewPage.js +3 -2
- package/src/react-quickaccess/contexts/SsoContext.js +150 -0
- package/src/react-web-integration/lib/InForm/InFormFieldSelector.js +5 -0
- package/src/shared/constants/inputs.const.js +30 -0
- package/src/shared/lib/Browser/clipBoard.js +45 -0
- package/src/shared/lib/Browser/clipBoard.test.js +59 -0
- package/src/shared/models/Mfa/Duo.js +36 -0
- package/src/shared/models/Mfa/Duo.test.js +59 -0
- package/src/shared/models/Mfa/MfaDTO.js +51 -0
- package/src/shared/models/Mfa/MfaDTO.test.js +48 -0
- package/src/shared/models/Mfa/MfaEnumeration.js +17 -0
- package/src/shared/models/Mfa/MfaModel.js +48 -0
- package/src/shared/models/Mfa/MfaModel.test.js +37 -0
- package/src/shared/models/Mfa/Yubikey.js +35 -0
- package/src/shared/models/Mfa/Yubikey.test.js +47 -0
- package/src/shared/models/selfRegistration/SelfRegistrationDomainsViewModel.js +55 -0
- package/src/shared/models/selfRegistration/SelfRegistrationDomainsViewModel.test.js +37 -0
- package/src/shared/models/selfRegistration/SelfRegistrationDto.js +42 -0
- package/src/shared/models/selfRegistration/SelfRegistrationDto.test.js +48 -0
- package/src/shared/models/selfRegistration/SelfRegistrationEnumeration.js +17 -0
- package/src/shared/models/subscription/SubscriptionDto.js +34 -0
- package/src/shared/models/subscription/SubscriptionDto.test.js +31 -0
- package/src/shared/models/subscription/SubscriptionModel.js +33 -0
- package/src/shared/models/subscription/SubscriptionModel.test.js +48 -0
- package/src/shared/models/user/UserModel.js +37 -0
- package/src/shared/models/userDirectory/UserDirectoryDTO.js +57 -0
- package/src/shared/models/userDirectory/UserDirectoryDTO.test.js +40 -0
- package/src/shared/models/userDirectory/UserDirectoryEnum.js +22 -0
- package/src/shared/models/userDirectory/UserDirectoryModel.js +64 -0
- package/src/shared/models/userDirectory/UserDirectoryModel.test.js +37 -0
- package/src/shared/services/actions/subscription/SubscriptionActionService.js +69 -0
- package/src/shared/services/actions/subscription/SubscriptionActionService.test.js +73 -0
- package/src/shared/services/api/Internationalisation/InternationalisationService.js +46 -0
- package/src/shared/services/api/Mfa/MfaService.js +54 -0
- package/src/shared/services/{accountRecovery → api/accountRecovery}/ApiAppAccountRecoveryUserService.js +2 -2
- package/src/shared/services/{accountRecovery → api/accountRecovery}/ExtAppAccountRecoveryUserService.js +0 -0
- package/src/shared/services/api/secrets/pownedService.js +64 -0
- package/src/shared/services/api/secrets/pownedService.test.js +63 -0
- package/src/shared/services/api/selfRegistration/selfRegistrationService.js +64 -0
- package/src/shared/services/api/user/UserService.js +45 -0
- package/src/shared/services/api/userDirectory/UserDirectoryService.js +108 -0
- package/src/shared/services/forms/Mfa/MfaFormService.js +195 -0
- package/src/shared/services/forms/Mfa/MfaFormService.test.js +341 -0
- package/src/shared/services/forms/selfRegistration/SelfRegistrationFormService.js +92 -0
- package/src/shared/services/forms/selfRegistration/SelfRegistrationFormService.test.js +101 -0
- package/src/shared/services/forms/userDirectory/UserDirectoryFormService.js +118 -0
- package/src/shared/services/forms/userDirectory/UserDirectoryFormService.test.js +128 -0
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationWorkspaceActions.js +0 -205
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationWorkspaceActions.test.data.js +0 -37
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationWorkspaceActions.test.js +0 -197
- package/src/react-extension/components/Administration/DisplayAdministrationWorkspaceActions/DisplayAdministrationWorkspaceActions.test.page.js +0 -133
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "passbolt-styleguide",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0-alpha2",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"copyright": "Copyright 2022 Passbolt SA",
|
|
6
6
|
"description": "Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.",
|
|
@@ -76,6 +76,23 @@
|
|
|
76
76
|
"overrides": {
|
|
77
77
|
"glob-stream": {
|
|
78
78
|
"glob-parent": "5.1.2"
|
|
79
|
+
},
|
|
80
|
+
"eslint-plugin-import": {
|
|
81
|
+
"debug": "3.2.7"
|
|
82
|
+
},
|
|
83
|
+
"webpack-dev-server": {
|
|
84
|
+
"compression": {
|
|
85
|
+
"debug": "3.2.7"
|
|
86
|
+
},
|
|
87
|
+
"express": {
|
|
88
|
+
"debug": "3.2.7"
|
|
89
|
+
},
|
|
90
|
+
"serve-index": {
|
|
91
|
+
"debug": "3.2.7"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"i18next-parser": {
|
|
95
|
+
"debug": "3.2.7"
|
|
79
96
|
}
|
|
80
97
|
},
|
|
81
98
|
"scripts": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="attention" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 170 170" shape-rendering="geometricPrecision" text-rendering="geometricPrecision"><style><![CDATA[#attention-u-bar {animation-name:attention-u-bar_c_o, attention-u-bar_s_do;animation-duration:1000ms;animation-fill-mode:forwards;animation-timing-function:linear;animation-direction:normal;animation-iteration-count:1;}@keyframes attention-u-bar_c_o {0%{opacity:0}30%{opacity:0}40%{opacity:1}100%{opacity:1}}@keyframes attention-u-bar_s_do{0%{stroke-dashoffset: 31.0938}40%{troke-dashoffset: 31.0938;animation-timing-function: cubic-bezier(0.23,1,0.32,1)}90%{stroke-dashoffset: 62.19}100%{stroke-dashoffset: 62.19}}#attention-u-dot{animation: attention-u-dot_c_o 1000ms linear 1 normal forwards}@keyframes attention-u-dot_c_o{0%{opacity: 0}90%{opacity: 0}100%{opacity: 1}}#attention-s-ellipse1{animation: attention-s-ellipse1_s_do 1000ms linear 1 normal forwards}@keyframes attention-s-ellipse1_s_do{0%{stroke-dashoffset: 521.5;animation-timing-function: cubic-bezier(0.23,1,0.32,1)}80%{stroke-dashoffset: 1043}100%{stroke-dashoffset: 1043}}]]></style><path id="attention-u-bar" d="M85.0508,62.1046v31.0938" transform="matrix(-1.192422 0 0-1.192423 186.467239 160.725772)" opacity="0" fill="none" stroke="#d40101" stroke-width="6.7" stroke-linecap="round" stroke-linejoin="round" stroke-dashoffset="31.0938" stroke-dasharray="31.0938"/><path id="attention-u-dot" d="M85.0508,124.292h.1166" transform="translate(.000001-9.519165)" opacity="0" fill="none" stroke="#d40101" stroke-width="6.7" stroke-linecap="round" stroke-linejoin="round" stroke-dashoffset="0.23" stroke-dasharray="0.1166"/><circle id="attention-s-ellipse1" r="83" transform="translate(85 85)" fill="none" stroke="#d40101" stroke-width="4" stroke-linecap="round" stroke-dashoffset="521.5" stroke-dasharray="521.5"/></svg>
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"(folder)": "(folder)",
|
|
3
3
|
"(Folder) new owner:": "(Folder) new owner:",
|
|
4
4
|
"(group)": "(group)",
|
|
5
|
+
"(not yet available)": "(not yet available)",
|
|
5
6
|
"(tag)": "(tag)",
|
|
6
7
|
"{{count}} entry had errors and will be ignored during synchronization._one": "{{count}} entry had errors and will be ignored during synchronization.",
|
|
7
8
|
"{{count}} entry had errors and will be ignored during synchronization._other": "{{count}} entries had errors and will be ignored during synchronization.",
|
|
@@ -26,6 +27,8 @@
|
|
|
26
27
|
"{{count}} user will be synchronized._one": "{{count}} user will be synchronized.",
|
|
27
28
|
"{{count}} user will be synchronized._other": "{{count}} users will be synchronized.",
|
|
28
29
|
"{{requesterFirstname}} did not initiate this request.": "{{requesterFirstname}} did not initiate this request.",
|
|
30
|
+
"{errors.get(key)}": "{errors.get(key)}",
|
|
31
|
+
"{this.state.warnings.get(key)}": "{this.state.warnings.get(key)}",
|
|
29
32
|
"@your-domain.com": "@your-domain.com",
|
|
30
33
|
"<0>{{activityCreatorName}}</0> accepted the account recovery policy": "<0>{{activityCreatorName}}</0> accepted the account recovery policy",
|
|
31
34
|
"<0>{{activityCreatorName}}</0> accessed secret of item <2>{{resourceName}}</2>": "<0>{{activityCreatorName}}</0> accessed secret of item <2>{{resourceName}}</2>",
|
|
@@ -48,30 +51,29 @@
|
|
|
48
51
|
"<0>4. Scan the QR codes with your phone.</0>": "<0>4. Scan the QR codes with your phone.</0>",
|
|
49
52
|
"<0>5. And you are done!</0>": "<0>5. And you are done!</0>",
|
|
50
53
|
"<0>Warning:</0> These are the settings provided by a configuration file. If you save it, will ignore the settings on file and use the ones from the database.": "<0>Warning:</0> These are the settings provided by a configuration file. If you save it, will ignore the settings on file and use the ones from the database.",
|
|
54
|
+
"<0>Warning</0>: This secret will expire after some time (typically a few months). Make sure you save the expiry date and rotate it on time.": "<0>Warning</0>: This secret will expire after some time (typically a few months). Make sure you save the expiry date and rotate it on time.",
|
|
55
|
+
"<0>Where to find it?</0>": "<0>Where to find it?</0>",
|
|
51
56
|
"1. Install the application from the store.": "1. Install the application from the store.",
|
|
52
57
|
"2. Open the application on your phone.": "2. Open the application on your phone.",
|
|
53
58
|
"3. Click start, here, in your browser.": "3. Click start, here, in your browser.",
|
|
54
59
|
"4. Scan the QR codes with your phone.": "4. Scan the QR codes with your phone.",
|
|
55
60
|
"5. And you are done!": "5. And you are done!",
|
|
56
|
-
"A client identifier is required.": "A client identifier is required.",
|
|
57
61
|
"A comment is required.": "A comment is required.",
|
|
58
62
|
"A comment must be less than 256 characters": "A comment must be less than 256 characters",
|
|
59
63
|
"A connection could be established. Well done!": "A connection could be established. Well done!",
|
|
64
|
+
"A domain is required.": "A domain is required.",
|
|
60
65
|
"A domain name is required.": "A domain name is required.",
|
|
61
66
|
"A download of the organization private key has automatically started.": "A download of the organization private key has automatically started.",
|
|
62
67
|
"A download of your recovery kit, containing your secret key, has automatically started.": "A download of your recovery kit, containing your secret key, has automatically started.",
|
|
63
68
|
"A file is required.": "A file is required.",
|
|
64
69
|
"A first name is required.": "A first name is required.",
|
|
65
70
|
"A host is required.": "A host is required.",
|
|
66
|
-
"A hostname is required.": "A hostname is required.",
|
|
67
71
|
"A last name is required.": "A last name is required.",
|
|
68
72
|
"A name can not be more than 256 char in length.": "A name can not be more than 256 char in length.",
|
|
69
73
|
"A name is required.": "A name is required.",
|
|
70
74
|
"A passphrase is required.": "A passphrase is required.",
|
|
71
75
|
"A password is required.": "A password is required.",
|
|
72
76
|
"A port is required.": "A port is required.",
|
|
73
|
-
"A salt is required.": "A salt is required.",
|
|
74
|
-
"A secret key is required.": "A secret key is required.",
|
|
75
77
|
"A strong passphrase is required. The minimum complexity must be 'fair'": "A strong passphrase is required. The minimum complexity must be 'fair'",
|
|
76
78
|
"A subscription key is required.": "A subscription key is required.",
|
|
77
79
|
"A tag name is required.": "A tag name is required.",
|
|
@@ -89,6 +91,7 @@
|
|
|
89
91
|
"Activation pending": "Activation pending",
|
|
90
92
|
"Active Directory": "Active Directory",
|
|
91
93
|
"Activity": "Activity",
|
|
94
|
+
"Add": "Add",
|
|
92
95
|
"Add a comment": "Add a comment",
|
|
93
96
|
"Add a description": "Add a description",
|
|
94
97
|
"Add a unique import tag to passwords": "Add a unique import tag to passwords",
|
|
@@ -108,21 +111,27 @@
|
|
|
108
111
|
"All groups": "All groups",
|
|
109
112
|
"All items": "All items",
|
|
110
113
|
"All tags": "All tags",
|
|
114
|
+
"All the users with an email address ending with the domain in the safe list are allowed to register on passbolt.": "All the users with an email address ending with the domain in the safe list are allowed to register on passbolt.",
|
|
111
115
|
"All users": "All users",
|
|
116
|
+
"Allowed domains": "Allowed domains",
|
|
117
|
+
"Allows Azure and Passbolt API to securely share information.": "Allows Azure and Passbolt API to securely share information.",
|
|
112
118
|
"Also delete items inside this folder.": "Also delete items inside this folder.",
|
|
113
119
|
"Alternatively you can also get in touch with support on community forum or via the paid support channels.": "Alternatively you can also get in touch with support on community forum or via the paid support channels.",
|
|
114
120
|
"An email is required.": "An email is required.",
|
|
115
|
-
"An
|
|
121
|
+
"An error occured during the sign-in via SSO.": "An error occured during the sign-in via SSO.",
|
|
116
122
|
"An organization key is required.": "An organization key is required.",
|
|
123
|
+
"Application (client) ID": "Application (client) ID",
|
|
117
124
|
"Apply": "Apply",
|
|
118
125
|
"Approve": "Approve",
|
|
119
126
|
"Approved": "Approved",
|
|
127
|
+
"Are you sure to disable the self registration for the organization ?": "Are you sure to disable the self registration for the organization ?",
|
|
120
128
|
"Are you sure you want to delete <1>{{user}}</1>?": "Are you sure you want to delete <1>{{user}}</1>?",
|
|
121
129
|
"Are you sure you want to delete the comment?": "Are you sure you want to delete the comment?",
|
|
122
130
|
"Are you sure you want to delete the folder <1>{{folderName}}</1>?": "Are you sure you want to delete the folder <1>{{folderName}}</1>?",
|
|
123
131
|
"Are you sure you want to delete the group <1>{{groupName}}</1>?": "Are you sure you want to delete the group <1>{{groupName}}</1>?",
|
|
124
132
|
"Are you sure you want to delete the password <1>{{resourceName}}</1>?": "Are you sure you want to delete the password <1>{{resourceName}}</1>?",
|
|
125
133
|
"Are you sure you want to delete the tag <1>{{tagName}}</1>?": "Are you sure you want to delete the tag <1>{{tagName}}</1>?",
|
|
134
|
+
"Are you sure you want to disable the current Single Sign-On settings?": "Are you sure you want to disable the current Single Sign-On settings?",
|
|
126
135
|
"Are you sure?": "Are you sure?",
|
|
127
136
|
"As soon as an administrator validates your request you will receive an email link to complete the process.": "As soon as an administrator validates your request you will receive an email link to complete the process.",
|
|
128
137
|
"Authentication method": "Authentication method",
|
|
@@ -131,6 +140,8 @@
|
|
|
131
140
|
"Backup of the private key and passphrase will not be stored. This is the safest option.": "Backup of the private key and passphrase will not be stored. This is the safest option.",
|
|
132
141
|
"Base DN": "Base DN",
|
|
133
142
|
"Before getting started...": "Before getting started...",
|
|
143
|
+
"Before saving the settings, we need to test if the configuration is working.": "Before saving the settings, we need to test if the configuration is working.",
|
|
144
|
+
"Beta": "Beta",
|
|
134
145
|
"Both the private key and passphrase are required to recover your account.": "Both the private key and passphrase are required to recover your account.",
|
|
135
146
|
"Browse": "Browse",
|
|
136
147
|
"Browse credentials": "Browse credentials",
|
|
@@ -164,6 +175,7 @@
|
|
|
164
175
|
"Completing recover. Please wait...": "Completing recover. Please wait...",
|
|
165
176
|
"Completing setup, please wait...": "Completing setup, please wait...",
|
|
166
177
|
"Configure another phone": "Configure another phone",
|
|
178
|
+
"Configuring SSO access, please wait...": "Configuring SSO access, please wait...",
|
|
167
179
|
"Confirm Organization Recovery Key download": "Confirm Organization Recovery Key download",
|
|
168
180
|
"Congratulation! Passbolt extension has been installed.": "Congratulation! Passbolt extension has been installed.",
|
|
169
181
|
"Contact Sales": "Contact Sales",
|
|
@@ -226,15 +238,22 @@
|
|
|
226
238
|
"Delete users": "Delete users",
|
|
227
239
|
"deleted": "deleted",
|
|
228
240
|
"Description": "Description",
|
|
241
|
+
"Directory (tenant) ID": "Directory (tenant) ID",
|
|
229
242
|
"Directory configuration": "Directory configuration",
|
|
243
|
+
"Directory ID": "Directory ID",
|
|
230
244
|
"Directory type": "Directory type",
|
|
231
245
|
"Disable": "Disable",
|
|
232
246
|
"Disable (Default)": "Disable (Default)",
|
|
233
247
|
"Disable MFA": "Disable MFA",
|
|
248
|
+
"Disable self registration": "Disable self registration",
|
|
249
|
+
"Disable Single Sign-On settings?": "Disable Single Sign-On settings?",
|
|
234
250
|
"Disabled": "Disabled",
|
|
235
251
|
"Do not store sensitive data or click here to enable encryption for the description field.": "Do not store sensitive data or click here to enable encryption for the description field.",
|
|
236
252
|
"Do not store sensitive data. Unlike the password, this data is not encrypted. Upgrade to version 3 to encrypt this information.": "Do not store sensitive data. Unlike the password, this data is not encrypted. Upgrade to version 3 to encrypt this information.",
|
|
253
|
+
"Do you need help?": "Do you need help?",
|
|
254
|
+
"domain": "domain",
|
|
237
255
|
"Domain": "Domain",
|
|
256
|
+
"Don't forget to save your settings to apply your modification.": "Don't forget to save your settings to apply your modification.",
|
|
238
257
|
"Download {{browserName}}": "Download {{browserName}}",
|
|
239
258
|
"Download again": "Download again",
|
|
240
259
|
"Download backup": "Download backup",
|
|
@@ -254,6 +273,7 @@
|
|
|
254
273
|
"Email Address": "Email Address",
|
|
255
274
|
"Email content visibility": "Email content visibility",
|
|
256
275
|
"Email delivery": "Email delivery",
|
|
276
|
+
"Email domain safe list": "Email domain safe list",
|
|
257
277
|
"Email Notification": "Email Notification",
|
|
258
278
|
"Email Notifications": "Email Notifications",
|
|
259
279
|
"Email prefix": "Email prefix",
|
|
@@ -303,6 +323,7 @@
|
|
|
303
323
|
"For any change or question related to your passbolt subscription, kindly contact our sales team.": "For any change or question related to your passbolt subscription, kindly contact our sales team.",
|
|
304
324
|
"For more information about account recovery, checkout the dedicated page on the help website.": "For more information about account recovery, checkout the dedicated page on the help website.",
|
|
305
325
|
"For more information about email notification, checkout the dedicated page on the help website.": "For more information about email notification, checkout the dedicated page on the help website.",
|
|
326
|
+
"For more information about SSO, checkout the dedicated page on the help website.": "For more information about SSO, checkout the dedicated page on the help website.",
|
|
306
327
|
"For Openldap only. Defines which group object to use.": "For Openldap only. Defines which group object to use.",
|
|
307
328
|
"For Openldap only. Defines which user object to use.": "For Openldap only. Defines which user object to use.",
|
|
308
329
|
"For security reasons please check with your administrator that this is a change that they initiated. The new fingerprint:": "For security reasons please check with your administrator that this is a change that they initiated. The new fingerprint:",
|
|
@@ -334,6 +355,7 @@
|
|
|
334
355
|
"host": "host",
|
|
335
356
|
"Hostname": "Hostname",
|
|
336
357
|
"How do I configure a {settings.provider.name} SMTP server?": "How do I configure a {settings.provider.name} SMTP server?",
|
|
358
|
+
"How do I configure a AzureAD SSO?": "How do I configure a AzureAD SSO?",
|
|
337
359
|
"How do you want to proceed?": "How do you want to proceed?",
|
|
338
360
|
"I accept the <1>privacy policy</1>": "I accept the <1>privacy policy</1>",
|
|
339
361
|
"I accept the <1>terms</1>": "I accept the <1>terms</1>",
|
|
@@ -349,6 +371,7 @@
|
|
|
349
371
|
"If there was an issue during the transfer, either the operation was cancelled on the mobile side, or the authentication token expired.": "If there was an issue during the transfer, either the operation was cancelled on the mobile side, or the authentication token expired.",
|
|
350
372
|
"If this does not work get in touch with support.": "If this does not work get in touch with support.",
|
|
351
373
|
"If this is empty then it will be queried from the RootDSE.": "If this is empty then it will be queried from the RootDSE.",
|
|
374
|
+
"If users lose their private key and passphrase they will not be able to recover their account.": "If users lose their private key and passphrase they will not be able to recover their account.",
|
|
352
375
|
"If you changed systems, or reinstalled passbolt web extension in the meantime, you will need to start the account recovery process from scratch.": "If you changed systems, or reinstalled passbolt web extension in the meantime, you will need to start the account recovery process from scratch.",
|
|
353
376
|
"If you do not have access, you can request a new account recovery to an administrator.": "If you do not have access, you can request a new account recovery to an administrator.",
|
|
354
377
|
"If you do not have access, you can request an account recovery to an administrator.": "If you do not have access, you can request an account recovery to an administrator.",
|
|
@@ -410,6 +433,7 @@
|
|
|
410
433
|
"Loading...": "Loading...",
|
|
411
434
|
"Location": "Location",
|
|
412
435
|
"login": "login",
|
|
436
|
+
"Login URL": "Login URL",
|
|
413
437
|
"Logs": "Logs",
|
|
414
438
|
"Lower case": "Lower case",
|
|
415
439
|
"Make sure you store it in a safe place. You may need it later.": "Make sure you store it in a safe place. You may need it later.",
|
|
@@ -465,6 +489,7 @@
|
|
|
465
489
|
"No resources will be synchronized.": "No resources will be synchronized.",
|
|
466
490
|
"No result match your search. Try with another search term.": "No result match your search. Try with another search term.",
|
|
467
491
|
"No results match": "No results match",
|
|
492
|
+
"No SSO provider available": "No SSO provider available",
|
|
468
493
|
"no url provided": "no url provided",
|
|
469
494
|
"no username provided": "no username provided",
|
|
470
495
|
"No Users Directory is configured. Enable it to synchronise your users and groups with passbolt.": "No Users Directory is configured. Enable it to synchronise your users and groups with passbolt.",
|
|
@@ -485,6 +510,8 @@
|
|
|
485
510
|
"Once the comment is deleted, it’ll be removed permanently and will not be recoverable.": "Once the comment is deleted, it’ll be removed permanently and will not be recoverable.",
|
|
486
511
|
"Once the password is deleted, it’ll be removed permanently and will not be recoverable.": "Once the password is deleted, it’ll be removed permanently and will not be recoverable.",
|
|
487
512
|
"Once the tag is deleted, it’ll be removed permanently and will not be recoverable.": "Once the tag is deleted, it’ll be removed permanently and will not be recoverable.",
|
|
513
|
+
"Only administrators can invite users to register.": "Only administrators can invite users to register.",
|
|
514
|
+
"Only administrators would be able to invite users to register. ": "Only administrators would be able to invite users to register. ",
|
|
488
515
|
"Only numeric characters allowed.": "Only numeric characters allowed.",
|
|
489
516
|
"Only synchronize enabled users (AD)": "Only synchronize enabled users (AD)",
|
|
490
517
|
"Only the group manager can add new people to a group.": "Only the group manager can add new people to a group.",
|
|
@@ -537,10 +564,11 @@
|
|
|
537
564
|
"Please install the browser extension.": "Please install the browser extension.",
|
|
538
565
|
"Please make sure there is at least one group manager.": "Please make sure there is at least one group manager.",
|
|
539
566
|
"Please make sure there is at least one owner.": "Please make sure there is at least one owner.",
|
|
567
|
+
"Please review carefully this configuration as it will not be trivial to change this later.": "Please review carefully this configuration as it will not be trivial to change this later.",
|
|
568
|
+
"Please review carefully this configuration.": "Please review carefully this configuration.",
|
|
540
569
|
"Please try again later or contact your administrator.": "Please try again later or contact your administrator.",
|
|
541
570
|
"Please wait, while your request is processed.": "Please wait, while your request is processed.",
|
|
542
571
|
"Please wait...": "Please wait...",
|
|
543
|
-
"port": "port",
|
|
544
572
|
"Port": "Port",
|
|
545
573
|
"Port must be a number between 1 and 65535": "Port must be a number between 1 and 65535",
|
|
546
574
|
"Port must be a valid number": "Port must be a valid number",
|
|
@@ -563,6 +591,7 @@
|
|
|
563
591
|
"Recommended": "Recommended",
|
|
564
592
|
"Recovering your account, please wait.": "Recovering your account, please wait.",
|
|
565
593
|
"Recovery": "Recovery",
|
|
594
|
+
"Redirect URL": "Redirect URL",
|
|
566
595
|
"Refresh to detect extension": "Refresh to detect extension",
|
|
567
596
|
"Registration & Recovery": "Registration & Recovery",
|
|
568
597
|
"Reject": "Reject",
|
|
@@ -611,14 +640,18 @@
|
|
|
611
640
|
"Salt": "Salt",
|
|
612
641
|
"Save": "Save",
|
|
613
642
|
"Save as new credential": "Save as new credential",
|
|
643
|
+
"Save self registration settings": "Save self registration settings",
|
|
614
644
|
"Save settings": "Save settings",
|
|
615
645
|
"Save Settings Summary": "Save Settings Summary",
|
|
646
|
+
"Save Single Sign-On configuration": "Save Single Sign-On configuration",
|
|
616
647
|
"Save the data entered as a new credential": "Save the data entered as a new credential",
|
|
617
648
|
"Search": "Search",
|
|
618
649
|
"Search among available credentials": "Search among available credentials",
|
|
619
650
|
"Search passwords": "Search passwords",
|
|
620
651
|
"Search users": "Search users",
|
|
621
652
|
"Search:": "Search:",
|
|
653
|
+
"Secret": "Secret",
|
|
654
|
+
"Secret expiry": "Secret expiry",
|
|
622
655
|
"Secret key": "Secret key",
|
|
623
656
|
"Security token": "Security token",
|
|
624
657
|
"See error details": "See error details",
|
|
@@ -630,6 +663,7 @@
|
|
|
630
663
|
"Select all": "Select all",
|
|
631
664
|
"Select resource": "Select resource",
|
|
632
665
|
"Select user": "Select user",
|
|
666
|
+
"Self Registration": "Self Registration",
|
|
633
667
|
"Send": "Send",
|
|
634
668
|
"Send test email": "Send test email",
|
|
635
669
|
"Sender configuration": "Sender configuration",
|
|
@@ -657,12 +691,17 @@
|
|
|
657
691
|
"Shared with": "Shared with",
|
|
658
692
|
"Shared with me": "Shared with me",
|
|
659
693
|
"Sign in": "Sign in",
|
|
694
|
+
"Sign in with {{providerName}}": "Sign in with {{providerName}}",
|
|
695
|
+
"Sign in with my passphrase.": "Sign in with my passphrase.",
|
|
696
|
+
"Sign in with Single Sign-On.": "Sign in with Single Sign-On.",
|
|
660
697
|
"sign out": "sign out",
|
|
661
698
|
"Sign out": "Sign out",
|
|
662
699
|
"Sign up": "Sign up",
|
|
663
700
|
"Signing in, please wait.": "Signing in, please wait.",
|
|
664
701
|
"Signing in, please wait...": "Signing in, please wait...",
|
|
665
702
|
"Simulate synchronize": "Simulate synchronize",
|
|
703
|
+
"Single Sign-On": "Single Sign-On",
|
|
704
|
+
"Single Sign-On provider": "Single Sign-On provider",
|
|
666
705
|
"SMTP host": "SMTP host",
|
|
667
706
|
"SMTP Host is required": "SMTP Host is required",
|
|
668
707
|
"SMTP Host must be a valid string": "SMTP Host must be a valid string",
|
|
@@ -682,6 +721,7 @@
|
|
|
682
721
|
"Sorry, you have not been signed in.": "Sorry, you have not been signed in.",
|
|
683
722
|
"Sorry, your browser is not supported.": "Sorry, your browser is not supported.",
|
|
684
723
|
"Sorry... maybe an administrator can help?": "Sorry... maybe an administrator can help?",
|
|
724
|
+
"SSO settings have been registered successfully": "SSO settings have been registered successfully",
|
|
685
725
|
"Start": "Start",
|
|
686
726
|
"Start typing a person name": "Start typing a person name",
|
|
687
727
|
"Start typing a user or group name": "Start typing a user or group name",
|
|
@@ -711,12 +751,16 @@
|
|
|
711
751
|
"Terms": "Terms",
|
|
712
752
|
"Test settings": "Test settings",
|
|
713
753
|
"Test settings report": "Test settings report",
|
|
754
|
+
"Test Single Sign-On configuration": "Test Single Sign-On configuration",
|
|
714
755
|
"The account recovery request does not exist.": "The account recovery request does not exist.",
|
|
715
756
|
"The account recovery review has been saved successfully": "The account recovery review has been saved successfully",
|
|
716
757
|
"The account recovery subscription setting has been updated.": "The account recovery subscription setting has been updated.",
|
|
758
|
+
"The Application (client) ID is required": "The Application (client) ID is required",
|
|
759
|
+
"The Application (client) ID must be a valid UUID": "The Application (client) ID must be a valid UUID",
|
|
717
760
|
"The attribute you would like to use for the first part of the email (usually username).": "The attribute you would like to use for the first part of the email (usually username).",
|
|
761
|
+
"The Azure Active Directory tenant ID, in UUID format.": "The Azure Active Directory tenant ID, in UUID format.",
|
|
762
|
+
"The Azure AD authentication endpoint. See <1>alternatives</1>.": "The Azure AD authentication endpoint. See <1>alternatives</1>.",
|
|
718
763
|
"The base DN (default naming context) for the domain.": "The base DN (default naming context) for the domain.",
|
|
719
|
-
"The client identifier should be an integer.": "The client identifier should be an integer.",
|
|
720
764
|
"The comment has been added successfully": "The comment has been added successfully",
|
|
721
765
|
"The comment has been deleted successfully": "The comment has been deleted successfully",
|
|
722
766
|
"The default admin user is the user that will perform the operations for the the directory.": "The default admin user is the user that will perform the operations for the the directory.",
|
|
@@ -725,6 +769,8 @@
|
|
|
725
769
|
"The description content will be encrypted.": "The description content will be encrypted.",
|
|
726
770
|
"The description has been updated successfully": "The description has been updated successfully",
|
|
727
771
|
"The dialog has been closed.": "The dialog has been closed.",
|
|
772
|
+
"The Directory (tenant) ID is required": "The Directory (tenant) ID is required",
|
|
773
|
+
"The Directory (tenant) ID must be a valid UUID": "The Directory (tenant) ID must be a valid UUID",
|
|
728
774
|
"The domain name part of the email (@your-domain-name).": "The domain name part of the email (@your-domain-name).",
|
|
729
775
|
"The Duo provider is disabled for all users.": "The Duo provider is disabled for all users.",
|
|
730
776
|
"The Duo provider is enabled for all users. They can setup this provider in their profile and use it as second factor authentication.": "The Duo provider is enabled for all users. They can setup this provider in their profile and use it as second factor authentication.",
|
|
@@ -744,6 +790,8 @@
|
|
|
744
790
|
"The invitation is expired.": "The invitation is expired.",
|
|
745
791
|
"The invite has been resent successfully": "The invite has been resent successfully",
|
|
746
792
|
"The key can't be empty.": "The key can't be empty.",
|
|
793
|
+
"The Login URL is required": "The Login URL is required",
|
|
794
|
+
"The Login URL must be a valid URL": "The Login URL must be a valid URL",
|
|
747
795
|
"The multi factor authentication settings for the organization were updated.": "The multi factor authentication settings for the organization were updated.",
|
|
748
796
|
"The new organization recovery key should not be a formerly used organization recovery key.": "The new organization recovery key should not be a formerly used organization recovery key.",
|
|
749
797
|
"The operation failed with the following error:": "The operation failed with the following error:",
|
|
@@ -752,6 +800,7 @@
|
|
|
752
800
|
"The operation was successful.": "The operation was successful.",
|
|
753
801
|
"The organization private recovery key should not be stored in passbolt.": "The organization private recovery key should not be stored in passbolt.",
|
|
754
802
|
"The organization recovery policy has been updated successfully": "The organization recovery policy has been updated successfully",
|
|
803
|
+
"The passphrase from the SSO kit doesn't match your private key: {{error}}": "The passphrase from the SSO kit doesn't match your private key: {{error}}",
|
|
755
804
|
"The passphrase is invalid.": "The passphrase is invalid.",
|
|
756
805
|
"The passphrase is part of an exposed data breach.": "The passphrase is part of an exposed data breach.",
|
|
757
806
|
"The passphrase is stored on your device and never sent server side.": "The passphrase is stored on your device and never sent server side.",
|
|
@@ -769,6 +818,7 @@
|
|
|
769
818
|
"The password has been removed from favorites": "The password has been removed from favorites",
|
|
770
819
|
"The password has been updated successfully": "The password has been updated successfully",
|
|
771
820
|
"The password is empty.": "The password is empty.",
|
|
821
|
+
"The password is part of an exposed data breach.": "The password is part of an exposed data breach.",
|
|
772
822
|
"The passwords have been exported successfully": "The passwords have been exported successfully",
|
|
773
823
|
"The permalink has been copied to clipboard": "The permalink has been copied to clipboard",
|
|
774
824
|
"The permissions do not match the destination folder permissions.": "The permissions do not match the destination folder permissions.",
|
|
@@ -776,17 +826,25 @@
|
|
|
776
826
|
"The private key is invalid.": "The private key is invalid.",
|
|
777
827
|
"The private key should not be empty.": "The private key should not be empty.",
|
|
778
828
|
"The private key should not have an expiry date.": "The private key should not have an expiry date.",
|
|
829
|
+
"The public identifier for the app in Azure in UUID format.": "The public identifier for the app in Azure in UUID format.",
|
|
779
830
|
"The public key has been copied to clipboard": "The public key has been copied to clipboard",
|
|
780
831
|
"The pwnedpasswords service is unavailable, your passphrase might be part of an exposed data breach": "The pwnedpasswords service is unavailable, your passphrase might be part of an exposed data breach",
|
|
832
|
+
"The pwnedpasswords service is unavailable, your password might be part of an exposed data breach": "The pwnedpasswords service is unavailable, your password might be part of an exposed data breach",
|
|
833
|
+
"The redirection URL has been copied to the clipboard.": "The redirection URL has been copied to the clipboard.",
|
|
781
834
|
"The request is expired.": "The request is expired.",
|
|
782
|
-
"The
|
|
835
|
+
"The Secret expiry is required": "The Secret expiry is required",
|
|
783
836
|
"The secret has been copied to clipboard": "The secret has been copied to clipboard",
|
|
837
|
+
"The Secret is required": "The Secret is required",
|
|
784
838
|
"The secret plaintext is empty.": "The secret plaintext is empty.",
|
|
785
839
|
"The security token code should be 3 characters long.": "The security token code should be 3 characters long.",
|
|
786
840
|
"The security token code should not be empty.": "The security token code should not be empty.",
|
|
787
841
|
"The security token has been updated successfully": "The security token has been updated successfully",
|
|
842
|
+
"The self registration settings for the organization were updated.": "The self registration settings for the organization were updated.",
|
|
788
843
|
"The settings displayed in the form below are the one stored in your database and have precedence over others.": "The settings displayed in the form below are the one stored in your database and have precedence over others.",
|
|
844
|
+
"The Single Sign-On provider must be a supported provider.": "The Single Sign-On provider must be a supported provider.",
|
|
789
845
|
"The SMTP settings have been saved successfully": "The SMTP settings have been saved successfully",
|
|
846
|
+
"The SSO kit is outdated and can't be used to decrypt your passphrase: {{error}}": "The SSO kit is outdated and can't be used to decrypt your passphrase: {{error}}",
|
|
847
|
+
"The SSO settings has been deleted successfully": "The SSO settings has been deleted successfully",
|
|
790
848
|
"The subscription key has been updated successfully.": "The subscription key has been updated successfully.",
|
|
791
849
|
"The subscription key is invalid.": "The subscription key is invalid.",
|
|
792
850
|
"The tag has been deleted successfully": "The tag has been deleted successfully",
|
|
@@ -799,6 +857,7 @@
|
|
|
799
857
|
"The Time-based One Time Password provider is enabled for all users. They can setup this provider in their profile and use it as second factor authentication.": "The Time-based One Time Password provider is enabled for all users. They can setup this provider in their profile and use it as second factor authentication.",
|
|
800
858
|
"The transfer was cancelled because the other client returned an error.": "The transfer was cancelled because the other client returned an error.",
|
|
801
859
|
"The uri has been copied to clipboard": "The uri has been copied to clipboard",
|
|
860
|
+
"The URL to provide to Azure when registering the application.": "The URL to provide to Azure when registering the application.",
|
|
802
861
|
"The user directory settings for the organization were updated.": "The user directory settings for the organization were updated.",
|
|
803
862
|
"The user has been added successfully": "The user has been added successfully",
|
|
804
863
|
"The user has been deleted successfully": "The user has been deleted successfully",
|
|
@@ -821,21 +880,20 @@
|
|
|
821
880
|
"This action can’t be undone. All the data associated with this user will be permanently deleted.": "This action can’t be undone. All the data associated with this user will be permanently deleted.",
|
|
822
881
|
"This action can’t be undone. Other users may lose access.": "This action can’t be undone. Other users may lose access.",
|
|
823
882
|
"This action can’t be undone. Users in this group may lose access to the content shared with it.": "This action can’t be undone. Users in this group may lose access to the content shared with it.",
|
|
883
|
+
"This action cannot be undone. All the data associated with SSO will be permanently deleted.": "This action cannot be undone. All the data associated with SSO will be permanently deleted.",
|
|
884
|
+
"This domain already exist": "This domain already exist",
|
|
824
885
|
"This email is not associated with any approved users on this domain.": "This email is not associated with any approved users on this domain.",
|
|
825
886
|
"This group is the sole owner of some content. You need to transfer the ownership to others to continue.": "This group is the sole owner of some content. You need to transfer the ownership to others to continue.",
|
|
826
|
-
"This is not a valid hostname.": "This is not a valid hostname.",
|
|
827
|
-
"This is not a valid integration key.": "This is not a valid integration key.",
|
|
828
887
|
"This is not a valid passphrase.": "This is not a valid passphrase.",
|
|
829
|
-
"This is not a valid secret key.": "This is not a valid secret key.",
|
|
830
888
|
"This is the email address users will see in their mail box when passbolt sends a notification.<1></1>It's a good practice to provide a working email address that users can reply to.": "This is the email address users will see in their mail box when passbolt sends a notification.<1></1>It's a good practice to provide a working email address that users can reply to.",
|
|
831
889
|
"this is the maximum size for this field, make sure your data was not truncated": "this is the maximum size for this field, make sure your data was not truncated.",
|
|
832
890
|
"This is the name users will see in their mailbox when passbolt sends a notification.": "This is the name users will see in their mailbox when passbolt sends a notification.",
|
|
833
891
|
"This passphrase is the only passphrase you will need to remember from now on, choose wisely!": "This passphrase is the only passphrase you will need to remember from now on, choose wisely!",
|
|
834
|
-
"This secret key is not valid.": "This secret key is not valid.",
|
|
835
892
|
"This security token will be displayed when your passphrase is requested, so you can quickly verify the form is coming from passbolt.": "This security token will be displayed when your passphrase is requested, so you can quickly verify the form is coming from passbolt.",
|
|
836
893
|
"This security token will be displayed when your passphrase is requested, so you can verify quickly the form is coming from passbolt.": "This security token will be displayed when your passphrase is requested, so you can verify quickly the form is coming from passbolt.",
|
|
837
894
|
"This shared tag can't be added, you are not the owner": "This shared tag can't be added, you are not the owner",
|
|
838
895
|
"This shared tag can't be deleted, you are not the owner": "This shared tag can't be deleted, you are not the owner",
|
|
896
|
+
"This should be a valid domain": "This should be a valid domain",
|
|
839
897
|
"This tag can't be added, the length cannot exceed {{tagMaxLength}}": "This tag can't be added, the length cannot exceed {{tagMaxLength}}",
|
|
840
898
|
"This tag is already present": "This tag is already present",
|
|
841
899
|
"This user is an administrator": "This user is an administrator",
|
|
@@ -882,6 +940,8 @@
|
|
|
882
940
|
"User object class": "User object class",
|
|
883
941
|
"User path": "User path",
|
|
884
942
|
"User path is used in addition to base DN while searching users.": "User path is used in addition to base DN while searching users.",
|
|
943
|
+
"User self registration enables users with an email from a whitelisted domain to create their passbolt account without prior admin invitation.": "User self registration enables users with an email from a whitelisted domain to create their passbolt account without prior admin invitation.",
|
|
944
|
+
"User self registration is disabled.": "User self registration is disabled.",
|
|
885
945
|
"Username": "Username",
|
|
886
946
|
"Username / Email": "Username / Email",
|
|
887
947
|
"Username & password": "Username & password",
|
|
@@ -892,6 +952,7 @@
|
|
|
892
952
|
"Users Directory": "Users Directory",
|
|
893
953
|
"Users limit:": "Users limit:",
|
|
894
954
|
"Users parent group": "Users parent group",
|
|
955
|
+
"Users will not be able to self register anymore.": "Users will not be able to self register anymore.",
|
|
895
956
|
"Valid from:": "Valid from:",
|
|
896
957
|
"varies": "varies",
|
|
897
958
|
"Verify": "Verify",
|
|
@@ -904,7 +965,6 @@
|
|
|
904
965
|
"Want to contribute?": "Want to contribute?",
|
|
905
966
|
"Warning, Don't forget to add an organization recovery key.": "Warning, Don't forget to add an organization recovery key.",
|
|
906
967
|
"Warning, Don't forget to save your settings to apply your modification.": "Warning, Don't forget to save your settings to apply your modification.",
|
|
907
|
-
"Warning, Please review carefully this configuration as it will not be trivial to change this later.": "Warning, Please review carefully this configuration as it will not be trivial to change this later.",
|
|
908
968
|
"Warning, we encourage you to generate your OpenPGP Organization Recovery Key separately. Make sure you keep a backup in a safe place.": "Warning, we encourage you to generate your OpenPGP Organization Recovery Key separately. Make sure you keep a backup in a safe place.",
|
|
909
969
|
"Warning:": "Warning:",
|
|
910
970
|
"Warning: If users lose their private key and passphrase they will not be able to recover their account.": "Warning: If users lose their private key and passphrase they will not be able to recover their account.",
|
|
@@ -917,6 +977,7 @@
|
|
|
917
977
|
"Welcome to the mobile app setup": "Welcome to the mobile app setup",
|
|
918
978
|
"What if I forgot my passphrase?": "What if I forgot my passphrase?",
|
|
919
979
|
"What is the role of the passphrase?": "What is the role of the passphrase?",
|
|
980
|
+
"What is user self registration?": "What is user self registration?",
|
|
920
981
|
"When a comment is posted on a password, notify the users who have access to this password.": "When a comment is posted on a password, notify the users who have access to this password.",
|
|
921
982
|
"When a folder is created, notify its creator.": "When a folder is created, notify its creator.",
|
|
922
983
|
"When a folder is deleted, notify the users who had access to it.": "When a folder is deleted, notify the users who had access to it.",
|
|
@@ -932,11 +993,11 @@
|
|
|
932
993
|
"When a user completed a setup, notify all the administrators.": "When a user completed a setup, notify all the administrators.",
|
|
933
994
|
"When an account recovery is approved, notify the user.": "When an account recovery is approved, notify the user.",
|
|
934
995
|
"When an account recovery is rejected, notify the user.": "When an account recovery is rejected, notify the user.",
|
|
935
|
-
"When an account recovery is requested, notify the administrators.": "When an account recovery is requested, notify the administrators.",
|
|
996
|
+
"When an account recovery is requested, notify all the administrators.": "When an account recovery is requested, notify all the administrators.",
|
|
936
997
|
"When an account recovery is requested, notify the user.": "When an account recovery is requested, notify the user.",
|
|
937
|
-
"When an account recovery policy is updated, notify the administrators.": "When an account recovery policy is updated, notify the administrators.",
|
|
998
|
+
"When an account recovery policy is updated, notify all the administrators.": "When an account recovery policy is updated, notify all the administrators.",
|
|
938
999
|
"When an administrator answered to an account recovery request, notify all the administrators.": "When an administrator answered to an account recovery request, notify all the administrators.",
|
|
939
|
-
"When an administrator answered to an account recovery request, notify the administrator.": "When an administrator answered to an account recovery request, notify the administrator.",
|
|
1000
|
+
"When an administrator answered to an account recovery request, notify the administrator at the origin of the action.": "When an administrator answered to an account recovery request, notify the administrator at the origin of the action.",
|
|
940
1001
|
"When members of a group change, notify the group manager(s).": "When members of a group change, notify the group manager(s).",
|
|
941
1002
|
"When new users are invited to passbolt, notify them.": "When new users are invited to passbolt, notify them.",
|
|
942
1003
|
"When user roles change in a group, notify the corresponding users.": "When user roles change in a group, notify the corresponding users.",
|
|
@@ -974,11 +1035,14 @@
|
|
|
974
1035
|
"You cannot delete this user!": "You cannot delete this user!",
|
|
975
1036
|
"You do not own any passwords yet. It does feel a bit empty here, create your first password.": "You do not own any passwords yet. It does feel a bit empty here, create your first password.",
|
|
976
1037
|
"You need to click save for the changes to take place.": "You need to click save for the changes to take place.",
|
|
1038
|
+
"You need to enter your current passphrase.": "You need to enter your current passphrase.",
|
|
977
1039
|
"You need to finalize the account recovery process with the same computer you used for the account recovery request.": "You need to finalize the account recovery process with the same computer you used for the account recovery request.",
|
|
978
1040
|
"You need use the same computer and browser to finalize the process.": "You need use the same computer and browser to finalize the process.",
|
|
979
1041
|
"You need your passphrase to continue.": "You need your passphrase to continue.",
|
|
980
1042
|
"You seem to have Email Notification Settings defined in your passbolt.php (or via environment variables).": "You seem to have Email Notification Settings defined in your passbolt.php (or via environment variables).",
|
|
1043
|
+
"You should inform your users not to store personal passwords.": "You should inform your users not to store personal passwords.",
|
|
981
1044
|
"You should keep it offline in a safe place.": "You should keep it offline in a safe place.",
|
|
1045
|
+
"You susccessfully signed in with your {{providerName}} account. You can safely save your configuration.": "You susccessfully signed in with your {{providerName}} account. You can safely save your configuration.",
|
|
982
1046
|
"You will be able to save it after submitting": "You will be able to save it after submitting",
|
|
983
1047
|
"you@organization.com": "you@organization.com",
|
|
984
1048
|
"Your language is missing or you discovered an error in the translation, help us to improve passbolt.": "Your language is missing or you discovered an error in the translation, help us to improve passbolt.",
|
|
@@ -34,9 +34,13 @@ import ApiAppContextProvider from "./contexts/ApiAppContext";
|
|
|
34
34
|
import TranslationProvider from "./components/Common/Internationalisation/TranslationProvider";
|
|
35
35
|
import AppContext from "./contexts/AppContext";
|
|
36
36
|
import AccountRecoveryUserContextProvider from "./contexts/AccountRecoveryUserContext";
|
|
37
|
-
import ApiAppAccountRecoveryUserService from "../shared/services/accountRecovery/ApiAppAccountRecoveryUserService";
|
|
37
|
+
import ApiAppAccountRecoveryUserService from "../shared/services/api/accountRecovery/ApiAppAccountRecoveryUserService";
|
|
38
38
|
import AdminSmtpSettingsContextProvider from "./contexts/AdminSmtpSettingsContext";
|
|
39
39
|
import AdminEmailNotificationContextProvider from "./contexts/Administration/AdministrationEmailNotification/AdministrationEmailNotificationContext";
|
|
40
|
+
import AdminMfaContextProvider from "./contexts/Administration/AdministrationMfa/AdministrationMfaContext";
|
|
41
|
+
import AdminUserDirectoryContextProvider from './contexts/Administration/AdministrationUserDirectory/AdministrationUserDirectoryContext';
|
|
42
|
+
import AdminInternationalizationContextProvider from "./contexts/Administration/AdministrationInternationalizationContext/AdministrationInternationalizationContext";
|
|
43
|
+
import AdminSelfRegistrationContextProvider from "./contexts/Administration/AdministrationSelfRegistration/AdministrationSelfRegistrationContext";
|
|
40
44
|
|
|
41
45
|
/**
|
|
42
46
|
* The passbolt application served by the API.
|
|
@@ -79,12 +83,20 @@ class ApiApp extends Component {
|
|
|
79
83
|
<Route path="/app/administration">
|
|
80
84
|
<AdministrationWorkspaceContextProvider>
|
|
81
85
|
<AdminSmtpSettingsContextProvider>
|
|
82
|
-
<ManageDialogs/>
|
|
83
86
|
<ManageContextualMenu/>
|
|
84
87
|
<ManageAnnouncements/>
|
|
85
|
-
<
|
|
86
|
-
<
|
|
87
|
-
|
|
88
|
+
<AdminUserDirectoryContextProvider>
|
|
89
|
+
<AdminSelfRegistrationContextProvider>
|
|
90
|
+
<ManageDialogs/>
|
|
91
|
+
<AdminMfaContextProvider>
|
|
92
|
+
<AdminEmailNotificationContextProvider>
|
|
93
|
+
<AdminInternationalizationContextProvider>
|
|
94
|
+
<AdministrationWorkspace/>
|
|
95
|
+
</AdminInternationalizationContextProvider>
|
|
96
|
+
</AdminEmailNotificationContextProvider>
|
|
97
|
+
</AdminMfaContextProvider>
|
|
98
|
+
</AdminSelfRegistrationContextProvider>
|
|
99
|
+
</AdminUserDirectoryContextProvider>
|
|
88
100
|
</AdminSmtpSettingsContextProvider>
|
|
89
101
|
</AdministrationWorkspaceContextProvider>
|
|
90
102
|
</Route>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Passbolt ~ Open source password manager for teams
|
|
3
|
+
* Copyright (c) 2020 Passbolt SA (https://www.passbolt.com)
|
|
4
|
+
*
|
|
5
|
+
* Licensed under GNU Affero General Public License version 3 of the or any later version.
|
|
6
|
+
* For full copyright and license information, please see the LICENSE.txt
|
|
7
|
+
* Redistributions of files must retain the above copyright notice.
|
|
8
|
+
*
|
|
9
|
+
* @copyright Copyright (c) 2020 Passbolt SA (https://www.passbolt.com)
|
|
10
|
+
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
|
|
11
|
+
* @link https://www.passbolt.com Passbolt(tm)
|
|
12
|
+
*/
|
|
13
|
+
import React from "react";
|
|
14
|
+
import ReactDOM from "react-dom";
|
|
15
|
+
import ApiError from "./components/Common/Error/ApiError/ApiError";
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Entry point - Passbolt application served by the API.
|
|
19
|
+
* This entry point will be used to compile the production code see webpack-api.config.js
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
const appDomElement = document.createElement("div");
|
|
23
|
+
document.body.appendChild(appDomElement);
|
|
24
|
+
ReactDOM.render(<ApiError/>, appDomElement);
|
|
@@ -55,12 +55,14 @@ import HandleErrorEvents from "./components/Common/Error/HandleErrorEvents/Handl
|
|
|
55
55
|
import DisplayResourcesWorkspace from "./components/Resource/DisplayResourcesWorkspace/DisplayResourcesWorkspace";
|
|
56
56
|
import DragContextProvider from "./contexts/DragContext";
|
|
57
57
|
import AccountRecoveryUserContextProvider from "./contexts/AccountRecoveryUserContext";
|
|
58
|
-
import ExtAppAccountRecoveryUserService from "../shared/services/accountRecovery/ExtAppAccountRecoveryUserService";
|
|
58
|
+
import ExtAppAccountRecoveryUserService from "../shared/services/api/accountRecovery/ExtAppAccountRecoveryUserService";
|
|
59
59
|
import HandleAccountRecoveryStatusCheck from "./components/AccountRecovery/HandleAccountRecoveryStatusCheck/HandleAccountRecoveryStatusCheck";
|
|
60
60
|
import WorkflowContextProvider from "./contexts/WorkflowContext";
|
|
61
61
|
import ManageWorkflows from "./components/Common/Workflow/ManageWorkflows/ManageWorkflows";
|
|
62
62
|
import AdminAccountRecoveryContextProvider from "./contexts/AdminAccountRecoveryContext";
|
|
63
63
|
import HandleApplicationFirstLoadRoute from "./components/Common/Route/HandleApplicationFirstLoadRoute";
|
|
64
|
+
import AdminSubscriptionContextProvider from "./contexts/Administration/AdministrationSubscription/AdministrationSubscription";
|
|
65
|
+
import AdminSsoContextProvider from "./contexts/AdminSsoContext";
|
|
64
66
|
|
|
65
67
|
/**
|
|
66
68
|
* The passbolt application served by the browser extension.
|
|
@@ -186,16 +188,21 @@ class ExtApp extends Component {
|
|
|
186
188
|
</div>
|
|
187
189
|
</UserSettingsContextProvider>
|
|
188
190
|
</Route>
|
|
189
|
-
{/* Subscription and Account Recovery settings */}
|
|
191
|
+
{/* SSO, Subscription and Account Recovery settings */}
|
|
190
192
|
<Route exact path={[
|
|
191
193
|
"/app/administration/subscription",
|
|
192
194
|
"/app/administration/account-recovery",
|
|
195
|
+
"/app/administration/sso",
|
|
193
196
|
]}>
|
|
194
197
|
<AdministrationWorkspaceContextProvider>
|
|
195
198
|
<AdminAccountRecoveryContextProvider>
|
|
196
|
-
<
|
|
197
|
-
|
|
198
|
-
|
|
199
|
+
<AdminSubscriptionContextProvider>
|
|
200
|
+
<AdminSsoContextProvider>
|
|
201
|
+
<ManageDialogs/>
|
|
202
|
+
<ManageWorkflows/>
|
|
203
|
+
<AdministrationWorkspace/>
|
|
204
|
+
</AdminSsoContextProvider>
|
|
205
|
+
</AdminSubscriptionContextProvider>
|
|
199
206
|
</AdminAccountRecoveryContextProvider>
|
|
200
207
|
</AdministrationWorkspaceContextProvider>
|
|
201
208
|
</Route>
|