passbolt-browser-extension 3.0.6 → 4.6.2
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/.eslintrc.json +34 -18
- package/.github/workflows/release.yaml +17 -0
- package/.github/workflows/release_candidate.yaml +17 -0
- package/.gitlab-ci/jobs/build.yml +42 -0
- package/.gitlab-ci/jobs/publish.yml +38 -0
- package/.gitlab-ci/jobs/release.yml +21 -0
- package/.gitlab-ci/jobs/review.yml +25 -0
- package/.gitlab-ci/jobs/test.yml +32 -0
- package/.gitlab-ci/scripts/bin/publish.sh +63 -0
- package/.gitlab-ci/scripts/bin/review.sh +52 -0
- package/.gitlab-ci/scripts/bin/slack-status-messages.sh +33 -0
- package/.gitlab-ci/scripts/lib/git-helpers.sh +29 -0
- package/.gitlab-ci/scripts/lib/set-env.sh +25 -0
- package/.gitlab-ci/scripts/lib/version-check.sh +25 -0
- package/.gitlab-ci.yml +15 -16
- package/.jpmignore +5 -1
- package/CHANGELOG.md +993 -6
- package/Gruntfile.js +239 -149
- package/README.md +18 -1
- package/RELEASE_NOTES.md +23 -0
- package/crowdin.yml +21 -0
- package/i18next-parser.config.js +22 -0
- package/jest.config.json +29 -0
- package/package.json +95 -55
- package/src/all/_locales/de/messages.json +10 -0
- package/src/all/_locales/en/messages.json +10 -0
- package/src/all/_locales/es/messages.json +10 -0
- package/src/all/_locales/fr/messages.json +10 -0
- package/src/all/_locales/it/messages.json +10 -0
- package/src/all/_locales/ja/messages.json +10 -0
- package/src/all/_locales/ko/messages.json +10 -0
- package/src/all/_locales/locales.test.js +43 -0
- package/src/all/_locales/lt/messages.json +10 -0
- package/src/all/_locales/nl/messages.json +10 -0
- package/src/all/_locales/pl/messages.json +10 -0
- package/src/all/_locales/pt/messages.json +10 -0
- package/src/all/_locales/ro/messages.json +10 -0
- package/src/all/_locales/ru/messages.json +10 -0
- package/src/all/_locales/sv/messages.json +10 -0
- package/src/all/background_page/controller/InformMenuController/InformMenuController.js +147 -0
- package/src/all/background_page/controller/account/getAccountController.js +55 -0
- package/src/all/background_page/controller/account/getAccountController.test.js +91 -0
- package/src/all/background_page/controller/account/getAndInitializeAccountLocaleController.js +70 -0
- package/src/all/background_page/controller/account/getAndInitializeAccountLocaleController.test.js +75 -0
- package/src/all/background_page/controller/account/updatePrivateKeyController.js +127 -0
- package/src/all/background_page/controller/account/updatePrivateKeyController.test.js +317 -0
- package/src/all/background_page/controller/account/verifyAccountPassphraseController.js +68 -0
- package/src/all/background_page/controller/account/verifyAccountPassphraseController.test.js +59 -0
- package/src/all/background_page/controller/accountRecovery/abortAndInitiateNewAccountRecoveryController.js +61 -0
- package/src/all/background_page/controller/accountRecovery/abortAndInitiateNewAccountRecoveryControllerr.test.js +46 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryGenerateOrganizationKeyController.js +73 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryGenerateOrganizationKeyController.test.js +48 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryGetRequestController.js +69 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryGetRequestController.test.js +57 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryGetUserRequestsController.js +64 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryGetUserRequestsController.test.js +78 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoverySaveOrganizationPolicyController.js +210 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoverySaveOrganizationPolicyController.test.js +304 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoverySaveUserSettingController.js +104 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoverySaveUserSettingController.test.js +110 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryValidateOrganizationPrivateKeyController.js +64 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryValidateOrganizationPrivateKeyController.test.js +113 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryValidatePublicKeyController.js +53 -0
- package/src/all/background_page/controller/accountRecovery/accountRecoveryValidatePublicKeyController.test.js +89 -0
- package/src/all/background_page/controller/accountRecovery/continueAccountRecoveryController.js +68 -0
- package/src/all/background_page/controller/accountRecovery/continueAccountRecoveryController.test.js +66 -0
- package/src/all/background_page/controller/accountRecovery/getOrganizationPolicyController.js +56 -0
- package/src/all/background_page/controller/accountRecovery/getOrganizationPolicyController.test.js +41 -0
- package/src/all/background_page/controller/accountRecovery/hasUserPostponedUserSettingInvitationController.js +50 -0
- package/src/all/background_page/controller/accountRecovery/hasUserPostponedUserSettingInvitationController.test.js +32 -0
- package/src/all/background_page/controller/accountRecovery/isLostPassphraseCaseController.js +53 -0
- package/src/all/background_page/controller/accountRecovery/isLostPassphraseCaseController.test.js +58 -0
- package/src/all/background_page/controller/accountRecovery/postponeUserSettingInvitationController.js +50 -0
- package/src/all/background_page/controller/accountRecovery/postponeUserSettingInvitationController.test.js +28 -0
- package/src/all/background_page/controller/accountRecovery/recoverAccountController.js +199 -0
- package/src/all/background_page/controller/accountRecovery/recoverAccountController.test.js +204 -0
- package/src/all/background_page/controller/accountRecovery/reviewRequestController.js +236 -0
- package/src/all/background_page/controller/accountRecovery/reviewRequestController.test.js +306 -0
- package/src/all/background_page/controller/app/appInitController.js +39 -10
- package/src/all/background_page/controller/app/appInitController.test.js +98 -0
- package/src/all/background_page/controller/auth/authCheckStatusController.js +3 -4
- package/src/all/background_page/controller/auth/authIsAuthenticatedController.js +2 -3
- package/src/all/background_page/controller/auth/authIsMfaRequiredController.js +2 -4
- package/src/all/background_page/controller/auth/authLoginController.js +130 -0
- package/src/all/background_page/controller/auth/authLoginController.test.js +164 -0
- package/src/all/background_page/controller/auth/authLogoutController.js +62 -0
- package/src/all/background_page/controller/auth/authLogoutController.test.js +55 -0
- package/src/all/background_page/controller/auth/authVerifyServerKeyController.js +120 -0
- package/src/all/background_page/controller/auth/authVerifyServerKeyController.test.js +61 -0
- package/src/all/background_page/controller/auth/authenticationEventController.js +67 -0
- package/src/all/background_page/controller/auth/generateSsoKitController.js +80 -0
- package/src/all/background_page/controller/auth/generateSsoKitController.test.js +100 -0
- package/src/all/background_page/controller/auth/requestHelpCredentialsLostController.js +54 -0
- package/src/all/background_page/controller/auth/requestHelpCredentialsLostController.test.js +42 -0
- package/src/all/background_page/controller/autofill/AutofillController.js +134 -0
- package/src/all/background_page/controller/autofill/AutofillController.test.js +149 -0
- package/src/all/background_page/controller/clipboard/clipboardController.js +53 -0
- package/src/all/background_page/controller/clipboard/clipboardController.test.js +68 -0
- package/src/all/background_page/controller/comment/createCommentController.js +57 -0
- package/src/all/background_page/controller/comment/createCommentController.test.js +105 -0
- package/src/all/background_page/controller/comment/deleteCommentController.js +66 -0
- package/src/all/background_page/controller/comment/deleteCommentController.test.js +105 -0
- package/src/all/background_page/controller/comment/getCommentsByRessourceIdController.js +68 -0
- package/src/all/background_page/controller/comment/getCommentsByRessourceidController.test.js +99 -0
- package/src/all/background_page/controller/crypto/checkPassphraseController.js +61 -0
- package/src/all/background_page/controller/crypto/checkPassphraseController.test.js +47 -0
- package/src/all/background_page/controller/crypto/downloadUserPrivateKeyController.js +70 -0
- package/src/all/background_page/controller/crypto/downloadUserPrivateKeyController.test.js +70 -0
- package/src/all/background_page/controller/crypto/downloadUserPublicKeyController.js +67 -0
- package/src/all/background_page/controller/crypto/downloadUserPublicKeyController.test.js +64 -0
- package/src/all/background_page/controller/crypto/getKeyInfoController.js +63 -0
- package/src/all/background_page/controller/crypto/getKeyInfoController.test.js +39 -0
- package/src/all/background_page/controller/crypto/getUserKeyInfoController.js +71 -0
- package/src/all/background_page/controller/crypto/getUserKeyInfoController.test.js +61 -0
- package/src/all/background_page/controller/crypto/getUserPrivateKeyController.js +63 -0
- package/src/all/background_page/controller/crypto/getUserPrivateKeyController.test.js +64 -0
- package/src/all/background_page/controller/crypto/validatePrivateGpgKeyRecoverController.js +74 -0
- package/src/all/background_page/controller/crypto/validatePrivateGpgKeyRecoverController.test.js +70 -0
- package/src/all/background_page/controller/crypto/validatePrivateGpgKeySetupController.js +114 -0
- package/src/all/background_page/controller/crypto/validatePrivateGpgKeySetupController.test.js +142 -0
- package/src/all/background_page/controller/export/exportResourcesFileController.js +50 -70
- package/src/all/background_page/controller/exportAccount/exportDesktopAccountController.js +75 -0
- package/src/all/background_page/controller/exportAccount/exportDesktopAccountController.test.data.js +25 -0
- package/src/all/background_page/controller/exportAccount/exportDesktopAccountController.test.js +104 -0
- package/src/all/background_page/controller/extension/getExtensionVersionController.js +51 -0
- package/src/all/background_page/controller/extension/getExtensionVersionController.test.js +28 -0
- package/src/all/background_page/controller/extension/isExtensionFirstInstallController.js +51 -0
- package/src/all/background_page/controller/extension/isExtensionFirstInstallController.test.js +45 -0
- package/src/all/background_page/controller/extension/onExtensionInstalledController.js +107 -0
- package/src/all/background_page/controller/extension/onExtensionInstalledController.test.js +109 -0
- package/src/all/background_page/controller/extension/onExtensionUpdateAvailableController.js +56 -0
- package/src/all/background_page/controller/extension/onExtensionUpdateAvailableController.test.js +76 -0
- package/src/all/background_page/controller/folder/folderCreateController.js +24 -21
- package/src/all/background_page/controller/group/groupUpdateController.js +53 -43
- package/src/all/background_page/controller/group/groupUpdateController.test.data.js +70 -0
- package/src/all/background_page/controller/group/groupUpdateController.test.js +169 -0
- package/src/all/background_page/controller/import/importResourcesFileController.js +75 -76
- package/src/all/background_page/controller/informCallToActionController/informCallToActionController.js +99 -0
- package/src/all/background_page/controller/locale/getLocaleController.js +58 -0
- package/src/all/background_page/controller/mfaPolicy/hasUserPostponedUserSettingInvitationController.js +50 -0
- package/src/all/background_page/controller/mfaPolicy/hasUserPostponedUserSettingInvitationController.test.js +32 -0
- package/src/all/background_page/controller/mfaPolicy/mfaGetMfaSettingsController.js +51 -0
- package/src/all/background_page/controller/mfaPolicy/mfaGetMfaSettingsController.test.data.js +21 -0
- package/src/all/background_page/controller/mfaPolicy/mfaGetMfaSettingsController.test.js +37 -0
- package/src/all/background_page/controller/mfaPolicy/mfaGetPolicyController.js +51 -0
- package/src/all/background_page/controller/mfaPolicy/mfaGetPolicyController.test.js +38 -0
- package/src/all/background_page/controller/mfaPolicy/postponeUserSettingMfaInvitationController.js +49 -0
- package/src/all/background_page/controller/mfaPolicy/postponeUserSettingMfaInvitationController.test.js +28 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupGetTotpCodeController.js +54 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupGetTotpCodeController.test.js +44 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupRemoveProviderController.js +58 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupRemoveProviderController.test.js +56 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupVerifyOtpCodeController.js +56 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupVerifyOtpCodeController.test.js +57 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupVerifyProviderController.js +58 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupVerifyProviderController.test.js +59 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupVerifyTotpCodeController.js +56 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupVerifyTotpCodeController.test.js +57 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupVerifyYubikeyCodeController.js +59 -0
- package/src/all/background_page/controller/mfaSetup/MfaSetupVerifyYubikeyCodeController.test.js +56 -0
- package/src/all/background_page/controller/move/moveController.js +17 -15
- package/src/all/background_page/controller/move/moveFolderController.js +80 -71
- package/src/all/background_page/controller/move/moveResourcesController.js +83 -62
- package/src/all/background_page/controller/move/moveResourcesController.test.js +117 -0
- package/src/all/background_page/controller/organizationSettings/getOrganizationSettingsController.js +55 -0
- package/src/all/background_page/controller/organizationSettings/getOrganizationSettingsController.test.js +45 -0
- package/src/all/background_page/controller/passwordExpiry/deletePasswordExpirySettingsController.js +55 -0
- package/src/all/background_page/controller/passwordExpiry/deletePasswordExpirySettingsController.test.js +66 -0
- package/src/all/background_page/controller/passwordExpiry/getOrFindPasswordExpirySettingsController.js +56 -0
- package/src/all/background_page/controller/passwordExpiry/getOrFindPasswordExpirySettingsController.test.js +113 -0
- package/src/all/background_page/controller/passwordExpiry/savePasswordExpirySettingsController.js +62 -0
- package/src/all/background_page/controller/passwordExpiry/savePasswordExpirySettingsController.test.js +108 -0
- package/src/all/background_page/controller/passwordPolicies/findPasswordPoliciesController.js +58 -0
- package/src/all/background_page/controller/passwordPolicies/findPasswordPoliciesController.test.js +90 -0
- package/src/all/background_page/controller/passwordPolicies/getOrFindPasswordPoliciesController.js +88 -0
- package/src/all/background_page/controller/passwordPolicies/getOrFindPasswordPoliciesController.test.js +177 -0
- package/src/all/background_page/controller/passwordPolicies/savePasswordPoliciesController.js +54 -0
- package/src/all/background_page/controller/passwordPolicies/savePasswordPoliciesController.test.js +87 -0
- package/src/all/background_page/controller/port/generatePortIdController.js +91 -0
- package/src/all/background_page/controller/port/generatePortIdController.test.js +123 -0
- package/src/all/background_page/controller/port/removePortController.js +105 -0
- package/src/all/background_page/controller/port/removePortController.test.js +162 -0
- package/src/all/background_page/controller/publicWebsiteSignIn/publicWebsiteSignInController.js +50 -0
- package/src/all/background_page/controller/publicWebsiteSignIn/publicWebsiteSignInController.test.js +45 -0
- package/src/all/background_page/controller/rbac/findMeController.js +55 -0
- package/src/all/background_page/controller/rbac/findMeController.test.js +49 -0
- package/src/all/background_page/controller/recover/abortAndRequestHelpController.js +55 -0
- package/src/all/background_page/controller/recover/abortAndRequestHelpController.test.js +42 -0
- package/src/all/background_page/controller/recover/completeRecoverController.js +64 -0
- package/src/all/background_page/controller/recover/completeRecoverController.test.js +77 -0
- package/src/all/background_page/controller/recover/generateRecoverAccountRecoveryRequestKeyController.js +74 -0
- package/src/all/background_page/controller/recover/generateRecoverAccountRecoveryRequestKeyController.test.js +52 -0
- package/src/all/background_page/controller/recover/hasRecoverUserEnabledAccountRecoveryController.js +51 -0
- package/src/all/background_page/controller/recover/hasRecoverUserEnabledAccountRecoveryController.test.js +42 -0
- package/src/all/background_page/controller/recover/importRecoverPrivateKeyController.js +86 -0
- package/src/all/background_page/controller/recover/importRecoverPrivateKeyController.test.js +148 -0
- package/src/all/background_page/controller/recover/requestAccountRecoveryController.js +74 -0
- package/src/all/background_page/controller/recover/requestAccountRecoveryController.test.js +66 -0
- package/src/all/background_page/controller/recover/startRecoverController.js +114 -0
- package/src/all/background_page/controller/recover/startRecoverController.test.js +137 -0
- package/src/all/background_page/controller/rememberMe/getUserRememberMeLatestChoiceController.js +55 -0
- package/src/all/background_page/controller/rememberMe/getUserRememberMeLatestChoiceController.test.js +50 -0
- package/src/all/background_page/controller/resource/resourceCreateController.js +53 -47
- package/src/all/background_page/controller/resource/resourceUpdateController.js +44 -39
- package/src/all/background_page/controller/resource/setResourcesExpiryDateController.js +74 -0
- package/src/all/background_page/controller/resource/setResourcesExpiryDateController.test.js +94 -0
- package/src/all/background_page/controller/resourceGridSetting/getResourceGridUserSettingController.js +53 -0
- package/src/all/background_page/controller/resourceGridSetting/getResourceGridUserSettingController.test.js +60 -0
- package/src/all/background_page/controller/resourceGridSetting/setResourceGridUserSettingController.js +56 -0
- package/src/all/background_page/controller/resourceGridSetting/setResourceGridUserSettingController.test.js +51 -0
- package/src/all/background_page/controller/secret/pownedPasswordController.js +54 -0
- package/src/all/background_page/controller/secret/pownedPasswordController.test.js +61 -0
- package/src/all/background_page/controller/secret/secretDecryptController.js +39 -46
- package/src/all/background_page/controller/secret/secretDecryptController.test.js +180 -0
- package/src/all/background_page/controller/setup/completeSetupController.js +63 -0
- package/src/all/background_page/controller/setup/completeSetupController.test.js +77 -0
- package/src/all/background_page/controller/setup/downloadRecoverKitController.js +59 -0
- package/src/all/background_page/controller/setup/downloadRecoverKitController.test.js +57 -0
- package/src/all/background_page/controller/setup/generateSetupKeyPairController.js +93 -0
- package/src/all/background_page/controller/setup/generateSetupKeyPairController.test.js +98 -0
- package/src/all/background_page/controller/setup/getAccountRecoveryOrganizationPolicyController.js +51 -0
- package/src/all/background_page/controller/setup/getAccountRecoveryOrganizationPolicyController.test.js +41 -0
- package/src/all/background_page/controller/setup/getAndInitSetupLocaleController.js +76 -0
- package/src/all/background_page/controller/setup/getAndInitSetupLocaleController.test.js +107 -0
- package/src/all/background_page/controller/setup/getUserPassphrasePoliciesController.js +54 -0
- package/src/all/background_page/controller/setup/getUserPassphrasePoliciesController.test.js +40 -0
- package/src/all/background_page/controller/setup/importSetupPrivateKeyController.js +94 -0
- package/src/all/background_page/controller/setup/importSetupPrivateKeyController.test.js +153 -0
- package/src/all/background_page/controller/setup/setSetupAccountRecoveryUserSettingController.js +98 -0
- package/src/all/background_page/controller/setup/setSetupAccountRecoveryUserSettingController.test.js +71 -0
- package/src/all/background_page/controller/setup/setSetupLocaleController.js +63 -0
- package/src/all/background_page/controller/setup/setSetupLocaleController.test.js +57 -0
- package/src/all/background_page/controller/setup/setSetupSecurityTokenController.js +55 -0
- package/src/all/background_page/controller/setup/setSetupSecurityTokenController.test.js +32 -0
- package/src/all/background_page/controller/setup/signInSetupController.js +85 -0
- package/src/all/background_page/controller/setup/signInSetupController.test.js +104 -0
- package/src/all/background_page/controller/setup/startSetupController.js +120 -0
- package/src/all/background_page/controller/setup/startSetupController.test.js +168 -0
- package/src/all/background_page/controller/setup/verifyImportedKeyPassphraseController.js +72 -0
- package/src/all/background_page/controller/setup/verifyImportedKeyPassphraseController.test.js +63 -0
- package/src/all/background_page/controller/share/shareFoldersController.js +62 -53
- package/src/all/background_page/controller/share/shareFoldersController.test.data.js +113 -0
- package/src/all/background_page/controller/share/shareFoldersController.test.js +242 -0
- package/src/all/background_page/controller/share/shareResourcesController.js +32 -32
- package/src/all/background_page/controller/share/shareResourcesController.test.data.js +129 -0
- package/src/all/background_page/controller/share/shareResourcesController.test.js +255 -0
- package/src/all/background_page/controller/sso/activateSsoSettingsController.js +61 -0
- package/src/all/background_page/controller/sso/activateSsoSettingsController.test.js +72 -0
- package/src/all/background_page/controller/sso/deleteLocalSsoKitController.js +52 -0
- package/src/all/background_page/controller/sso/deleteLocalSsoKitController.test.js +29 -0
- package/src/all/background_page/controller/sso/deleteSsoSettingsController.js +59 -0
- package/src/all/background_page/controller/sso/deleteSsoSettingsController.test.js +52 -0
- package/src/all/background_page/controller/sso/getCurrentSsoSettingsController.js +56 -0
- package/src/all/background_page/controller/sso/getCurrentSsoSettingsController.test.data.js +51 -0
- package/src/all/background_page/controller/sso/getCurrentSsoSettingsController.test.js +38 -0
- package/src/all/background_page/controller/sso/getLocalSsoProviderConfiguredController.js +62 -0
- package/src/all/background_page/controller/sso/getLocalSsoProviderConfiguredController.test.js +51 -0
- package/src/all/background_page/controller/sso/getQualifiedSsoLoginErrorController.js +56 -0
- package/src/all/background_page/controller/sso/getQualifiedSsoLoginErrorController.test.js +75 -0
- package/src/all/background_page/controller/sso/hasSsoLoginErrorController.js +53 -0
- package/src/all/background_page/controller/sso/hasSsoLoginErrorController.test.js +46 -0
- package/src/all/background_page/controller/sso/saveSsoSettingsAsDraftController.js +58 -0
- package/src/all/background_page/controller/sso/saveSsoSettingsAsDraftController.test.data.js +35 -0
- package/src/all/background_page/controller/sso/saveSsoSettingsAsDraftController.test.js +67 -0
- package/src/all/background_page/controller/sso/ssoAuthenticationController.js +159 -0
- package/src/all/background_page/controller/sso/ssoAuthenticationController.test.js +342 -0
- package/src/all/background_page/controller/sso/testSsoAuthenticationController.js +72 -0
- package/src/all/background_page/controller/sso/testSsoAuthenticationController.test.js +109 -0
- package/src/all/background_page/controller/sso/updateLocalSsoProviderController.js +56 -0
- package/src/all/background_page/controller/sso/updateLocalSsoProviderController.test.js +53 -0
- package/src/all/background_page/controller/subscription/subscriptionController.js +53 -0
- package/src/all/background_page/controller/tabsController.js +15 -14
- package/src/all/background_page/controller/tag/tagController.js +115 -0
- package/src/all/background_page/controller/toolbarController.js +228 -39
- package/src/all/background_page/controller/toolbarController.test.js +210 -0
- package/src/all/background_page/controller/user/getOrFindLoggedInUserController.js +56 -0
- package/src/all/background_page/controller/user/getOrFindLoggedInUserController.test.js +92 -0
- package/src/all/background_page/controller/user/updateUserController.js +57 -0
- package/src/all/background_page/controller/user/updateUserController.test.js +88 -0
- package/src/all/background_page/controller/user/updateUserLocalStorageController.js +56 -0
- package/src/all/background_page/controller/user/updateUserLocalStorageController.test.js +62 -0
- package/src/all/background_page/controller/userPassphrasePolicies/findUserPassphrasePoliciesController.js +52 -0
- package/src/all/background_page/controller/userPassphrasePolicies/findUserPassphrasePoliciesController.test.js +70 -0
- package/src/all/background_page/controller/userPassphrasePolicies/saveUserPassphrasePoliciesController.js +55 -0
- package/src/all/background_page/controller/userPassphrasePolicies/saveUserPassphrasePoliciesController.test.js +76 -0
- package/src/all/background_page/controller/webIntegration/webIntegrationController.js +54 -0
- package/src/all/background_page/error/GpgKeyError.js +1 -1
- package/src/all/background_page/error/badSignatureMessageGpgKeyError.js +22 -0
- package/src/all/background_page/error/deleteDryRunError.js +10 -8
- package/src/all/background_page/error/error.js +14 -6
- package/src/all/background_page/error/externalServiceError.js +17 -0
- package/src/all/background_page/error/externalServiceUnavailableError.js +17 -0
- package/src/all/background_page/error/fileFormatError.js +1 -1
- package/src/all/background_page/error/fileTypeError.js +1 -1
- package/src/all/background_page/error/importError.js +2 -2
- package/src/all/background_page/error/invalidMasterPasswordError.js +4 -4
- package/src/all/background_page/error/keyIsExpiredError.js +1 -1
- package/src/all/background_page/error/mfaAuthenticationRequiredError.js +10 -4
- package/src/all/background_page/error/notFoundError.js +3 -4
- package/src/all/background_page/error/outdatedSsoKitError.js +22 -0
- package/src/all/background_page/error/passboltBadResponseError.js +7 -3
- package/src/all/background_page/error/passboltServiceUnavailableError.js +4 -3
- package/src/all/background_page/error/passboltSubscriptionError.js +19 -0
- package/src/all/background_page/error/serverKeyChangedError.js +1 -1
- package/src/all/background_page/error/ssoDisabledError.js +21 -0
- package/src/all/background_page/error/ssoProviderMismatchError.js +22 -0
- package/src/all/background_page/error/ssoSettingsChangedError.js +21 -0
- package/src/all/background_page/error/userAbortsOperationError.js +2 -2
- package/src/all/background_page/error/userAlreadyLoggedInError.js +21 -0
- package/src/all/background_page/error/wrongOrganizationRecoveryKeyError.js +23 -0
- package/src/all/background_page/event/accountRecoveryEvents.js +89 -0
- package/src/all/background_page/event/actionLogEvents.js +11 -8
- package/src/all/background_page/event/appBootstrapEvents.js +6 -6
- package/src/all/background_page/event/appEvents.js +250 -5
- package/src/all/background_page/event/authEvents.js +125 -74
- package/src/all/background_page/event/clipboardEvents.js +21 -17
- package/src/all/background_page/event/commentEvents.js +25 -38
- package/src/all/background_page/event/configEvents.js +31 -24
- package/src/all/background_page/event/exportResourcesEvents.js +13 -30
- package/src/all/background_page/event/favoriteEvents.js +8 -12
- package/src/all/background_page/event/folderEvents.js +25 -25
- package/src/all/background_page/event/groupEvents.js +32 -31
- package/src/all/background_page/event/importResourcesEvents.js +12 -7
- package/src/all/background_page/event/informCallToActionEvents.js +60 -0
- package/src/all/background_page/event/informMenuEvents.js +99 -0
- package/src/all/background_page/event/keyringEvents.js +56 -95
- package/src/all/background_page/event/localeEvents.js +61 -0
- package/src/all/background_page/event/mfaEvents.js +77 -0
- package/src/all/background_page/event/mobileEvents.js +77 -0
- package/src/all/background_page/event/multiFactorAuthenticationEvents.js +11 -8
- package/src/all/background_page/event/organizationSettingsEvents.js +38 -0
- package/src/all/background_page/event/passwordPoliciesEvents.js +41 -0
- package/src/all/background_page/event/portEvents.js +30 -0
- package/src/all/background_page/event/pownedPasswordEvents.js +30 -0
- package/src/all/background_page/event/publicWebsiteSignInEvents.js +30 -0
- package/src/all/background_page/event/quickAccessEvents.js +110 -30
- package/src/all/background_page/event/recoverEvents.js +114 -102
- package/src/all/background_page/event/rememberMeEvents.js +29 -0
- package/src/all/background_page/event/resourceEvents.js +59 -27
- package/src/all/background_page/event/resourceTypeEvents.js +10 -7
- package/src/all/background_page/event/roleEvents.js +15 -13
- package/src/all/background_page/event/secretEvents.js +25 -17
- package/src/all/background_page/event/setupEvents.js +98 -131
- package/src/all/background_page/event/shareEvents.js +23 -46
- package/src/all/background_page/event/subscriptionEvents.js +57 -0
- package/src/all/background_page/event/tabEvents.js +13 -29
- package/src/all/background_page/event/tagEvents.js +32 -18
- package/src/all/background_page/event/themeEvents.js +15 -13
- package/src/all/background_page/event/userEvents.js +95 -74
- package/src/all/background_page/event/webIntegrationEvents.js +38 -0
- package/src/all/background_page/index.html +0 -1
- package/src/all/background_page/index.js +68 -88
- package/src/all/background_page/model/account/accountModel.js +46 -10
- package/src/all/background_page/model/accountRecovery/accountRecoveryModel.js +181 -0
- package/src/all/background_page/model/actionLog/actionLogModel.js +9 -7
- package/src/all/background_page/model/auth/authModel.js +33 -29
- package/src/all/background_page/model/auth/authModel.test.js +40 -0
- package/src/all/background_page/model/comment/commentModel.js +4 -4
- package/src/all/background_page/model/config.js +33 -28
- package/src/all/background_page/model/desktopTransfer/desktopTransferModel.js +34 -0
- package/src/all/background_page/model/desktopTransfer/desktopTransferModel.test.js +50 -0
- package/src/all/background_page/model/entity/account/abstractAccountEntity.js +312 -0
- package/src/all/background_page/model/entity/account/accountAccountRecoveryEntity.js +268 -0
- package/src/all/background_page/model/entity/account/accountAccountRecoveryEntity.test.data.js +51 -0
- package/src/all/background_page/model/entity/account/accountAccountRecoveryEntity.test.js +123 -0
- package/src/all/background_page/model/entity/account/accountEntity.js +112 -112
- package/src/all/background_page/model/entity/account/accountEntity.test.data.js +60 -0
- package/src/all/background_page/model/entity/account/accountEntity.test.js +126 -0
- package/src/all/background_page/model/entity/account/accountKitEntity.js +118 -0
- package/src/all/background_page/model/entity/account/accountKitEntity.test.data.js +25 -0
- package/src/all/background_page/model/entity/account/accountKitEntity.test.js +101 -0
- package/src/all/background_page/model/entity/account/accountRecoverEntity.js +260 -0
- package/src/all/background_page/model/entity/account/accountRecoverEntity.test.data.js +72 -0
- package/src/all/background_page/model/entity/account/accountSetupEntity.js +242 -0
- package/src/all/background_page/model/entity/account/accountSetupEntity.test.data.js +65 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPolicyChangeEntity.js +159 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPolicyChangeEntity.test.data.js +50 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPolicyChangeEntity.test.js +62 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPolicyEntity.js +375 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPolicyEntity.test.data.js +170 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPolicyEntity.test.js +179 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPublicKeyEntity.js +175 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPublicKeyEntity.test.data.js +85 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryOrganizationPublicKeyEntity.test.js +117 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyEntity.js +177 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyEntity.test.data.js +76 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyEntity.test.js +41 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyPasswordDecryptedDataEntity.js +166 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyPasswordDecryptedDataEntity.test.data.js +29 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyPasswordEntity.js +172 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyPasswordEntity.test.data.js +75 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyPasswordEntity.test.js +87 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyPasswordsCollection.js +205 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryPrivateKeyPasswordsCollection.test.js +160 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryRequestCreateEntity.js +126 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryRequestEntity.js +232 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryRequestEntity.test.data.js +102 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryRequestEntity.test.fixtures.js +38 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryRequestEntity.test.js +101 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryRequestsCollection.js +196 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryRequestsCollection.test.js +165 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryResponseEntity.js +189 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryResponseEntity.test.data.js +92 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryResponseEntity.test.js +65 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryResponsesCollection.js +196 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryUserSettingEntity.js +193 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryUserSettingEntity.test.data.js +45 -0
- package/src/all/background_page/model/entity/accountRecovery/accountRecoveryUserSettingEntity.test.js +125 -0
- package/src/all/background_page/model/entity/accountRecovery/pendingAccountRecoveryRequestEntity.js +106 -0
- package/src/all/background_page/model/entity/accountRecovery/pendingAccountRecoveryRequestEntity.test.js +72 -0
- package/src/all/background_page/model/entity/actionLog/abstractActionLogEntity.js +31 -24
- package/src/all/background_page/model/entity/actionLog/actionLogsCollection.js +39 -32
- package/src/all/background_page/model/entity/actionLog/defaultActionLog.test.js +9 -16
- package/src/all/background_page/model/entity/actionLog/defaultActionLogEntity.js +11 -13
- package/src/all/background_page/model/entity/actionLog/permissionsUpdatedActionLogEntity.js +28 -26
- package/src/all/background_page/model/entity/auth/auth.test.data.js +23 -0
- package/src/all/background_page/model/entity/authenticationToken/authenticationTokenEntity.js +94 -20
- package/src/all/background_page/model/entity/authenticationToken/authenticationTokenEntity.test.js +99 -0
- package/src/all/background_page/model/entity/avatar/avatarEntity.js +17 -44
- package/src/all/background_page/model/entity/avatar/avatarEntity.test.js +126 -49
- package/src/all/background_page/model/entity/avatar/update/avatarUpdateEntity.js +22 -18
- package/src/all/background_page/model/entity/comment/commentEntity.js +32 -27
- package/src/all/background_page/model/entity/comment/commentEntity.test.js +18 -25
- package/src/all/background_page/model/entity/comment/comments.test.data.js +45 -0
- package/src/all/background_page/model/entity/comment/commentsCollection.js +34 -27
- package/src/all/background_page/model/entity/comment/commentsCollection.test.js +5 -12
- package/src/all/background_page/model/entity/export/exportResourcesFileEntity.js +130 -42
- package/src/all/background_page/model/entity/favorite/favoriteEntity.js +18 -42
- package/src/all/background_page/model/entity/favorite/favoriteEntity.test.js +113 -59
- package/src/all/background_page/model/entity/folder/external/externalFolderEntity.js +87 -41
- package/src/all/background_page/model/entity/folder/external/externalFolderEntity.test.js +85 -20
- package/src/all/background_page/model/entity/folder/external/externalFoldersCollection.js +73 -31
- package/src/all/background_page/model/entity/folder/external/externalFoldersCollection.test.js +16 -15
- package/src/all/background_page/model/entity/folder/folderEntity.js +55 -46
- package/src/all/background_page/model/entity/folder/folderEntity.test.js +364 -205
- package/src/all/background_page/model/entity/folder/foldersCollection.js +53 -41
- package/src/all/background_page/model/entity/folder/foldersCollection.test.js +21 -26
- package/src/all/background_page/model/entity/gpgkey/external/externalGpgKeyCollection.js +88 -0
- package/src/all/background_page/model/entity/gpgkey/external/externalGpgKeyCollection.test.js +40 -0
- package/src/all/background_page/model/entity/gpgkey/external/externalGpgKeyEntity.js +309 -0
- package/src/all/background_page/model/entity/gpgkey/external/externalGpgKeyEntity.test.data.js +33 -0
- package/src/all/background_page/model/entity/gpgkey/external/externalGpgKeyEntity.test.fixtures.js +111 -0
- package/src/all/background_page/model/entity/gpgkey/external/externalGpgKeyEntity.test.js +89 -0
- package/src/all/background_page/model/entity/gpgkey/external/externalGpgKeyPairEntity.js +140 -0
- package/src/all/background_page/model/entity/gpgkey/external/externalGpgKeyPairEntity.test.js +57 -0
- package/src/all/background_page/model/entity/gpgkey/generate/generateGpgKeyPairOptionsEntity.js +215 -0
- package/src/all/background_page/model/entity/gpgkey/generate/generateGpgKeyPairOptionsEntity.test.data.js +33 -0
- package/src/all/background_page/model/entity/gpgkey/generate/generateGpgKeyPairOptionsEntity.test.js +87 -0
- package/src/all/background_page/model/entity/gpgkey/gpgkeyEntity.js +22 -20
- package/src/all/background_page/model/entity/gpgkey/gpgkeyEntity.test.fixtures.js +17 -2
- package/src/all/background_page/model/entity/gpgkey/gpgkeyEntity.test.js +4 -12
- package/src/all/background_page/model/entity/gpgkey/privateGpgkeyEntity.js +83 -0
- package/src/all/background_page/model/entity/gpgkey/privateGpgkeyEntity.test.js +49 -0
- package/src/all/background_page/model/entity/group/groupEntity.js +37 -31
- package/src/all/background_page/model/entity/group/groupEntity.test.data.js +42 -0
- package/src/all/background_page/model/entity/group/groupEntity.test.fixtures.js +1 -1
- package/src/all/background_page/model/entity/group/groupEntity.test.js +2 -9
- package/src/all/background_page/model/entity/group/groupsCollection.js +44 -34
- package/src/all/background_page/model/entity/group/groupsCollection.test.js +5 -12
- package/src/all/background_page/model/entity/group/transfer/groupDeleteTransfer.js +29 -24
- package/src/all/background_page/model/entity/group/transfer/groupDeleteTransfer.test.js +6 -15
- package/src/all/background_page/model/entity/group/update/groupUpdateDryRunResultEntity.js +27 -24
- package/src/all/background_page/model/entity/group/update/groupUpdateDryRunResultEntity.test.data.js +24 -0
- package/src/all/background_page/model/entity/group/update/groupUpdateDryRunResultEntity.test.js +1 -8
- package/src/all/background_page/model/entity/group/update/groupUpdateEntity.js +35 -30
- package/src/all/background_page/model/entity/group/update/groupUpdateEntity.test.js +6 -13
- package/src/all/background_page/model/entity/groupUser/change/groupUserChangeEntity.js +19 -18
- package/src/all/background_page/model/entity/groupUser/change/groupUserChangeEntity.test.js +2 -9
- package/src/all/background_page/model/entity/groupUser/change/groupUserChangesCollection.js +25 -22
- package/src/all/background_page/model/entity/groupUser/groupUserEntity.js +28 -22
- package/src/all/background_page/model/entity/groupUser/groupUserEntity.test.fixtures.js +1 -1
- package/src/all/background_page/model/entity/groupUser/groupUserEntity.test.js +2 -9
- package/src/all/background_page/model/entity/groupUser/groupUsersEntity.test.data.js +38 -0
- package/src/all/background_page/model/entity/groupUser/groupsUsersCollection.js +36 -28
- package/src/all/background_page/model/entity/groupUser/groupsUsersCollection.test.fixtures.js +1 -1
- package/src/all/background_page/model/entity/groupUser/groupsUsersCollection.test.js +2 -9
- package/src/all/background_page/model/entity/groupUser/transfer/groupUserTransfer.test.js +9 -16
- package/src/all/background_page/model/entity/groupUser/transfer/groupUserTransferEntity.js +17 -17
- package/src/all/background_page/model/entity/groupUser/transfer/groupUserTransfersCollection.js +19 -17
- package/src/all/background_page/model/entity/groupUser/transfer/groupUserTransfersCollection.test.js +3 -10
- package/src/all/background_page/model/entity/import/importResourcesFileEntity.js +39 -32
- package/src/all/background_page/model/entity/import/importResourcesFileEntity.test.js +10 -15
- package/src/all/background_page/model/entity/locale/localeEntity.js +91 -0
- package/src/all/background_page/model/entity/locale/localeEntity.test.js +55 -0
- package/src/all/background_page/model/entity/locale/localesCollection.js +96 -0
- package/src/all/background_page/model/entity/mfa/mfaCombinedEnabledProvidersEntity.data.js +42 -0
- package/src/all/background_page/model/entity/mfa/mfaCombinedEnabledProvidersEntity.js +142 -0
- package/src/all/background_page/model/entity/mfa/mfaCombinedEnabledProvidersEntity.test.js +66 -0
- package/src/all/background_page/model/entity/mfa/mfaEnabledProviderEntity.js +104 -0
- package/src/all/background_page/model/entity/mfa/mfaEnabledProviderEntity.test.js +45 -0
- package/src/all/background_page/model/entity/mfa/mfaPolicyEntity.data.js +24 -0
- package/src/all/background_page/model/entity/mfa/mfaPolicyEntity.js +120 -0
- package/src/all/background_page/model/entity/mfa/mfaProviderEntity.js +86 -0
- package/src/all/background_page/model/entity/mfa/mfaProviderEntity.test.data.js +21 -0
- package/src/all/background_page/model/entity/mfa/mfaProviderEntity.test.js +49 -0
- package/src/all/background_page/model/entity/mfa/mfaSetupTotpEntity.js +70 -0
- package/src/all/background_page/model/entity/mfa/mfaSetupTotpEntity.test.data.js +29 -0
- package/src/all/background_page/model/entity/mfa/mfaSetupTotpEntity.test.js +51 -0
- package/src/all/background_page/model/entity/mfa/mfaSetupYubikeyEntity.js +66 -0
- package/src/all/background_page/model/entity/mfa/mfaSetupYubikeyEntity.test.data.js +21 -0
- package/src/all/background_page/model/entity/mfa/mfaSetupYubikeyEntity.test.js +54 -0
- package/src/all/background_page/model/entity/mfa/mfaTotpSetupInfoEntity.js +67 -0
- package/src/all/background_page/model/entity/mfa/mfaTotpSetupInfoEntity.test.data.js +20 -0
- package/src/all/background_page/model/entity/mfa/mfaTotpSetupInfoEntity.test.js +67 -0
- package/src/all/background_page/model/entity/mfa/mfaVerifyProviderEntity.js +66 -0
- package/src/all/background_page/model/entity/mfa/mfaVerifyProviderEntity.test.data.js +21 -0
- package/src/all/background_page/model/entity/mfa/mfaVerifyProviderEntity.test.js +49 -0
- package/src/all/background_page/model/entity/organizationSettings/organizationSettingsEntity.js +256 -0
- package/src/all/background_page/model/entity/organizationSettings/organizationSettingsEntity.test.data.js +254 -0
- package/src/all/background_page/model/entity/organizationSettings/organizationSettingsEntity.test.js +53 -0
- package/src/all/background_page/model/entity/passwordExpiry/passwordExpiryResourceCollection.test.data.js +22 -0
- package/src/all/background_page/model/entity/passwordExpiry/passwordExpiryResourceCollection.test.js +46 -0
- package/src/all/background_page/model/entity/passwordExpiry/passwordExpiryResourceEntity.js +110 -0
- package/src/all/background_page/model/entity/passwordExpiry/passwordExpiryResourceEntity.test.data.js +36 -0
- package/src/all/background_page/model/entity/passwordExpiry/passwordExpiryResourceEntity.test.js +104 -0
- package/src/all/background_page/model/entity/passwordExpiry/passwordExpiryResourcesCollection.js +147 -0
- package/src/all/background_page/model/entity/passwordExpiry/passwordExpiryResourcesCollection.test.js +69 -0
- package/src/all/background_page/model/entity/passwordPolicies/passphraseGeneratorSettingsEntity.js +110 -0
- package/src/all/background_page/model/entity/passwordPolicies/passphraseGeneratorSettingsEntity.test.data.js +24 -0
- package/src/all/background_page/model/entity/passwordPolicies/passphraseGeneratorSettingsEntity.test.js +80 -0
- package/src/all/background_page/model/entity/passwordPolicies/passwordGeneratorSettingsEntity.js +145 -0
- package/src/all/background_page/model/entity/passwordPolicies/passwordGeneratorSettingsEntity.test.data.js +33 -0
- package/src/all/background_page/model/entity/passwordPolicies/passwordGeneratorSettingsEntity.test.js +88 -0
- package/src/all/background_page/model/entity/passwordPolicies/passwordPoliciesEntity.js +204 -0
- package/src/all/background_page/model/entity/passwordPolicies/passwordPoliciesEntity.test.data.js +26 -0
- package/src/all/background_page/model/entity/passwordPolicies/passwordPoliciesEntity.test.js +106 -0
- package/src/all/background_page/model/entity/permission/actionLog/updatedPermissionEntity.js +28 -26
- package/src/all/background_page/model/entity/permission/actionLog/updatedPermissionEntity.test.js +6 -13
- package/src/all/background_page/model/entity/permission/actionLog/updatedPermissionsCollection.js +33 -27
- package/src/all/background_page/model/entity/permission/change/permissionChangeEntity.js +26 -22
- package/src/all/background_page/model/entity/permission/change/permissionChangesCollection.js +37 -32
- package/src/all/background_page/model/entity/permission/change/permissionChangesCollection.test.js +88 -105
- package/src/all/background_page/model/entity/permission/permissionEntity.js +53 -39
- package/src/all/background_page/model/entity/permission/permissionEntity.test.js +9 -16
- package/src/all/background_page/model/entity/permission/permissionsCollection.js +89 -70
- package/src/all/background_page/model/entity/permission/permissionsCollection.test.js +49 -55
- package/src/all/background_page/model/entity/permission/transfer/permissionTransfer.test.js +9 -16
- package/src/all/background_page/model/entity/permission/transfer/permissionTransferEntity.js +17 -17
- package/src/all/background_page/model/entity/permission/transfer/permissionTransfersCollection.js +19 -17
- package/src/all/background_page/model/entity/permission/transfer/permissionTransfersCollection.test.js +3 -10
- package/src/all/background_page/model/entity/plaintext/plaintextEntity.js +50 -8
- package/src/all/background_page/model/entity/profile/profileEntity.js +36 -30
- package/src/all/background_page/model/entity/profile/profileEntity.test.js +198 -114
- package/src/all/background_page/model/entity/rememberMe/userRememberMeLatestChoiceEntity.js +81 -0
- package/src/all/background_page/model/entity/rememberMe/userRememberMeLatestChoiceEntity.test.data.js +20 -0
- package/src/all/background_page/model/entity/rememberMe/userRememberMeLatestChoiceEntity.test.js +44 -0
- package/src/all/background_page/model/entity/resource/external/externalResourceEntity.js +70 -36
- package/src/all/background_page/model/entity/resource/external/externalResourceEntity.test.js +50 -16
- package/src/all/background_page/model/entity/resource/external/externalResourcesCollection.js +32 -28
- package/src/all/background_page/model/entity/resource/external/externalResourcesCollection.test.js +4 -11
- package/src/all/background_page/model/entity/resource/resourceEntity.js +115 -57
- package/src/all/background_page/model/entity/resource/resourceEntity.test.js +8 -15
- package/src/all/background_page/model/entity/resource/resourcesCollection.js +148 -39
- package/src/all/background_page/model/entity/resource/resourcesCollection.test.data.js +66 -0
- package/src/all/background_page/model/entity/resource/resourcesCollection.test.js +135 -26
- package/src/all/background_page/model/entity/resourceType/resourceTypeEntity.js +23 -17
- package/src/all/background_page/model/entity/resourceType/resourceTypeEntity.test.js +9 -16
- package/src/all/background_page/model/entity/resourceType/resourceTypesCollection.js +95 -30
- package/src/all/background_page/model/entity/resourceType/resourceTypesCollection.test.js +158 -0
- package/src/all/background_page/model/entity/secret/needed/neededSecretEntity.js +20 -18
- package/src/all/background_page/model/entity/secret/needed/neededSecretsCollection.js +23 -20
- package/src/all/background_page/model/entity/secret/resource/resourceSecretsCollection.js +37 -28
- package/src/all/background_page/model/entity/secret/secretEntity.js +20 -19
- package/src/all/background_page/model/entity/secret/secretEntity.test.data.js +27 -0
- package/src/all/background_page/model/entity/secret/secretEntity.test.js +13 -20
- package/src/all/background_page/model/entity/secret/secretsCollection.js +37 -28
- package/src/all/background_page/model/entity/securityToken/SecurityTokenEntity.test.data.js +23 -0
- package/src/all/background_page/model/entity/securityToken/securityTokenEntity.js +17 -16
- package/src/all/background_page/model/entity/securityToken/securityTokenEntity.test.js +7 -14
- package/src/all/background_page/model/entity/sso/ssoKitClientPart.test.data.js +31 -0
- package/src/all/background_page/model/entity/sso/ssoKitClientPartEntity.js +274 -0
- package/src/all/background_page/model/entity/sso/ssoKitClientPartEntity.test.js +131 -0
- package/src/all/background_page/model/entity/sso/ssoKitServerPart.test.data.js +18 -0
- package/src/all/background_page/model/entity/sso/ssoKitServerPartEntity.js +169 -0
- package/src/all/background_page/model/entity/sso/ssoKitServerPartEntity.test.js +87 -0
- package/src/all/background_page/model/entity/sso/ssoLoginUrlEntity.js +127 -0
- package/src/all/background_page/model/entity/sso/ssoLoginUrlEntity.test.js +89 -0
- package/src/all/background_page/model/entity/subscription/subscriptionEntity.js +113 -0
- package/src/all/background_page/model/entity/subscription/subscriptionEntity.test.js +75 -0
- package/src/all/background_page/model/entity/subscription/update/updateSubscriptionEntity.js +108 -0
- package/src/all/background_page/model/entity/subscription/update/updateSubscriptionEntity.test.js +55 -0
- package/src/all/background_page/model/entity/tag/tagEntity.js +20 -17
- package/src/all/background_page/model/entity/tag/tagEntity.test.data.js +31 -0
- package/src/all/background_page/model/entity/tag/tagEntity.test.js +16 -23
- package/src/all/background_page/model/entity/tag/tagsCollection.js +87 -46
- package/src/all/background_page/model/entity/tag/tagsCollection.test.js +199 -133
- package/src/all/background_page/model/entity/theme/change/ChangeThemeEntity.js +18 -18
- package/src/all/background_page/model/entity/theme/themeEntity.js +18 -17
- package/src/all/background_page/model/entity/theme/themeEntity.test.js +18 -17
- package/src/all/background_page/model/entity/theme/themesCollection.js +37 -28
- package/src/all/background_page/model/entity/totp/totpDto.test.data.js +29 -0
- package/src/all/background_page/model/entity/totp/totpEntity.js +202 -0
- package/src/all/background_page/model/entity/totp/totpEntity.test.js +111 -0
- package/src/all/background_page/model/entity/transfer/transferEntity.js +218 -0
- package/src/all/background_page/model/entity/transfer/transferEntity.test.js +111 -0
- package/src/all/background_page/model/entity/user/actionLog/loggedUserEntity.js +27 -24
- package/src/all/background_page/model/entity/user/actionLog/loggedUserEntity.test.js +6 -13
- package/src/all/background_page/model/entity/user/transfer/userDeleteTransfer.js +28 -25
- package/src/all/background_page/model/entity/user/transfer/userDeleteTransfer.test.js +9 -18
- package/src/all/background_page/model/entity/user/userEntity.js +113 -40
- package/src/all/background_page/model/entity/user/userEntity.test.fixtures.js +40 -5
- package/src/all/background_page/model/entity/user/userEntity.test.js +49 -20
- package/src/all/background_page/model/entity/user/usersCollection.js +41 -34
- package/src/all/background_page/model/entity/user/usersCollection.test.fixtures.js +18 -2
- package/src/all/background_page/model/entity/user/usersCollection.test.js +7 -14
- package/src/all/background_page/model/entity/worker/workerEntity.js +194 -0
- package/src/all/background_page/model/entity/worker/workerEntity.test.data.js +26 -0
- package/src/all/background_page/model/entity/worker/workerEntity.test.js +97 -0
- package/src/all/background_page/model/export/resources/argon2.test-lib.js +50 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/abstractRowComposer.js +3 -1
- package/src/all/background_page/model/export/resources/csvRowComposer/csv1PasswordRowComposer.test.js +3 -10
- package/src/all/background_page/model/export/resources/csvRowComposer/csv1passwordRowComposer.js +4 -5
- package/src/all/background_page/model/export/resources/csvRowComposer/csvBitWardenRowComposer.js +52 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvBitWardenRowComposer.test.js +36 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvChromiumRowComposer.js +52 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvChromiumRowComposer.test.js +34 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvDashlaneRowComposer.js +52 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvDashlaneRowComposer.test.js +35 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvKdbxRowComposer.js +12 -6
- package/src/all/background_page/model/export/resources/csvRowComposer/csvKdbxRowComposer.test.js +30 -10
- package/src/all/background_page/model/export/resources/csvRowComposer/csvLastPassRowComposer.js +4 -5
- package/src/all/background_page/model/export/resources/csvRowComposer/csvLastPassRowComposer.test.js +2 -9
- package/src/all/background_page/model/export/resources/csvRowComposer/csvLogMeOnceRowComposer.js +52 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvLogMeOnceRowComposer.test.js +36 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvMozillaPlatformRowComposer.js +61 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvMozillaPlatformRowComposer.test.js +39 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvNordpassRowComposer.js +52 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvNordpassRowComposer.test.js +36 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvSafariRowComposer.js +52 -0
- package/src/all/background_page/model/export/resources/csvRowComposer/csvSafariRowComposer.test.js +35 -0
- package/src/all/background_page/model/export/resources/resourcesCsvExporter.js +22 -7
- package/src/all/background_page/model/export/resources/resourcesCsvExporter.test.js +24 -21
- package/src/all/background_page/model/export/resources/resourcesKdbxExporter.js +55 -11
- package/src/all/background_page/model/export/resources/resourcesKdbxExporter.test.js +127 -29
- package/src/all/background_page/model/export/resourcesExporter.js +4 -4
- package/src/all/background_page/model/favorite/favoriteModel.js +8 -6
- package/src/all/background_page/model/folder/folderModel.js +73 -55
- package/src/all/background_page/model/folder/folderModel.test.js +25 -29
- package/src/all/background_page/model/gpgAuthHeader.js +31 -34
- package/src/all/background_page/model/gpgAuthToken.js +13 -12
- package/src/all/background_page/model/gpgauth.js +72 -133
- package/src/all/background_page/model/group/groupModel.js +11 -13
- package/src/all/background_page/model/import/resources/csvRowParser/abstractCsvRowParser.js +4 -2
- package/src/all/background_page/model/import/resources/csvRowParser/csv1PasswordRowParser.js +6 -6
- package/src/all/background_page/model/import/resources/csvRowParser/csv1PasswordRowParser.test.js +7 -14
- package/src/all/background_page/model/import/resources/csvRowParser/csvBitWardenRowParser.js +65 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvBitWardenRowParser.test.js +74 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvChromiumRowParser.js +63 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvChromiumRowParser.test.js +69 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvDashlaneRowParser.js +68 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvDashlaneRowParser.test.js +71 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvKdbxRowParser.js +39 -15
- package/src/all/background_page/model/import/resources/csvRowParser/csvKdbxRowParser.test.js +53 -10
- package/src/all/background_page/model/import/resources/csvRowParser/csvLastPassRowParser.js +10 -8
- package/src/all/background_page/model/import/resources/csvRowParser/csvLastPassRowParser.test.js +2 -9
- package/src/all/background_page/model/import/resources/csvRowParser/csvLogMeOnceRowParser.js +66 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvLogMeOnceRowParser.test.js +74 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvMozillaPlatformRowParser.js +63 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvMozillaPlatformRowParser.test.js +67 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvNordpassRowParser.js +79 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvNordpassRowParser.test.js +74 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvSafariRowParser.js +65 -0
- package/src/all/background_page/model/import/resources/csvRowParser/csvSafariRowParser.test.js +71 -0
- package/src/all/background_page/model/import/resources/kdbx/kdbx-content-error-not-protected.kdbx +0 -0
- package/src/all/background_page/model/import/resources/kdbx/kdbx-protected-password.kdbx +0 -0
- package/src/all/background_page/model/import/resources/kdbx/kdbx-windows-with-totp-protected-password.kdbx +0 -0
- package/src/all/background_page/model/import/resources/kdbx/kdbx-with-totp-protected-password.kdbx +0 -0
- package/src/all/background_page/model/import/resources/resourcesCsvImportParser.js +36 -20
- package/src/all/background_page/model/import/resources/resourcesCsvImportParser.test.js +46 -40
- package/src/all/background_page/model/import/resources/resourcesKdbxImportParser.js +64 -35
- package/src/all/background_page/model/import/resources/resourcesKdbxImportParser.test.js +125 -35
- package/src/all/background_page/model/import/resourcesImportParser.js +6 -6
- package/src/all/background_page/model/import/resourcesImportParser.test.js +6 -16
- package/src/all/background_page/model/keyring.js +90 -214
- package/src/all/background_page/model/locale/localeModel.js +137 -0
- package/src/all/background_page/model/log.js +14 -35
- package/src/all/background_page/model/mobileTransfer/mobileTransferModel.js +63 -0
- package/src/all/background_page/model/multiFactorAuthentication/multiFactorAuthenticationModel.js +84 -4
- package/src/all/background_page/model/multiFactorAuthentication/multiFactorAuthenticationModel.test.js +84 -0
- package/src/all/background_page/model/organizationSettings/organizationSettingsModel.js +94 -0
- package/src/all/background_page/model/passwordExpiry/passwordExpiryResourceModel.js +49 -0
- package/src/all/background_page/model/passwordExpiry/passwordExpiryResourceModel.test.js +62 -0
- package/src/all/background_page/model/passwordExpiry/passwordExpirySettingsModel.js +110 -0
- package/src/all/background_page/model/passwordExpiry/passwordExpirySettingsModel.test.js +243 -0
- package/src/all/background_page/model/passwordPolicies/passwordPoliciesModel.js +86 -0
- package/src/all/background_page/model/passwordPolicies/passwordPoliciesModel.test.js +231 -0
- package/src/all/background_page/model/rbac/RbacModel.js +75 -0
- package/src/all/background_page/model/request.js +3 -3
- package/src/all/background_page/model/resource/resourceModel.js +186 -138
- package/src/all/background_page/model/resourceType/resourceTypeModel.js +20 -9
- package/src/all/background_page/model/role/roleModel.js +6 -6
- package/src/all/background_page/model/setup/setupModel.js +94 -41
- package/src/all/background_page/model/share/shareModel.js +165 -0
- package/src/all/background_page/model/sso/ssoDryRunModel.js +53 -0
- package/src/all/background_page/model/sso/ssoKitServerPartModel.js +71 -0
- package/src/all/background_page/model/sso/ssoLoginModel.js +46 -0
- package/src/all/background_page/model/sso/ssoSettingsModel.js +88 -0
- package/src/all/background_page/model/subscription/subscriptionModel.js +81 -0
- package/src/all/background_page/model/tag/tagModel.js +21 -17
- package/src/all/background_page/model/theme/themeModel.js +16 -11
- package/src/all/background_page/model/toolbar.js +8 -16
- package/src/all/background_page/model/user/userModel.js +88 -29
- package/src/all/background_page/model/user.js +78 -191
- package/src/all/background_page/model/userPassphrasePolicies/userPassphrasePoliciesModel.js +57 -0
- package/src/all/background_page/model/userPassphrasePolicies/userPassphrasePoliciesModel.test.js +136 -0
- package/src/all/background_page/model/userSettings/userSettings.js +80 -34
- package/src/all/background_page/model/userSettings/userSettings.test.js +26 -25
- package/src/all/background_page/pagemod/accountRecoveryBootstrapPagemod.js +79 -0
- package/src/all/background_page/pagemod/accountRecoveryBootstrapPagemod.test.js +96 -0
- package/src/all/background_page/pagemod/accountRecoveryPagemod.js +61 -0
- package/src/all/background_page/pagemod/accountRecoveryPagemod.test.js +87 -0
- package/src/all/background_page/pagemod/appBootstrapPagemod.js +104 -0
- package/src/all/background_page/pagemod/appBootstrapPagemod.test.js +124 -0
- package/src/all/background_page/pagemod/appPagemod.js +111 -56
- package/src/all/background_page/pagemod/appPagemod.test.js +184 -0
- package/src/all/background_page/pagemod/authBootstrapPagemod.js +77 -51
- package/src/all/background_page/pagemod/authBootstrapPagemod.test.js +110 -0
- package/src/all/background_page/pagemod/authPagemod.js +61 -35
- package/src/all/background_page/pagemod/authPagemod.test.js +86 -0
- package/src/all/background_page/pagemod/filePagemod.js +24 -31
- package/src/all/background_page/pagemod/filePagemod.test.js +53 -0
- package/src/all/background_page/pagemod/informCallToActionPagemod.js +59 -0
- package/src/all/background_page/pagemod/informCallToActionPagemod.test.js +67 -0
- package/src/all/background_page/pagemod/informMenuPagemod.js +59 -0
- package/src/all/background_page/pagemod/informMenuPagemod.test.js +69 -0
- package/src/all/background_page/pagemod/pagemod.js +127 -0
- package/src/all/background_page/pagemod/pagemod.test.js +58 -0
- package/src/all/background_page/pagemod/pagemodManager.js +110 -0
- package/src/all/background_page/pagemod/pagemodManager.test.js +197 -0
- package/src/all/background_page/pagemod/publicWebsiteSignInPagemod.js +100 -0
- package/src/all/background_page/pagemod/publicWebsiteSignInPagemod.test.js +111 -0
- package/src/all/background_page/pagemod/quickAccessPagemod.js +74 -38
- package/src/all/background_page/pagemod/quickAccessPagemod.test.js +104 -0
- package/src/all/background_page/pagemod/recoverBootstrapPagemod.js +75 -41
- package/src/all/background_page/pagemod/recoverBootstrapPagemod.test.js +98 -0
- package/src/all/background_page/pagemod/recoverPagemod.js +48 -35
- package/src/all/background_page/pagemod/recoverPagemod.test.js +73 -0
- package/src/all/background_page/pagemod/setupBootstrapPagemod.js +75 -41
- package/src/all/background_page/pagemod/setupBootstrapPagemod.test.js +98 -0
- package/src/all/background_page/pagemod/setupPagemod.js +46 -35
- package/src/all/background_page/pagemod/setupPagemod.test.js +73 -0
- package/src/all/background_page/pagemod/webIntegrationPagemod.js +82 -35
- package/src/all/background_page/pagemod/webIntegrationPagemod.test.js +119 -0
- package/src/all/background_page/sdk/i18n.js +68 -0
- package/src/all/background_page/sdk/port/portManager.js +187 -0
- package/src/all/background_page/sdk/port/portManager.test.data.js +32 -0
- package/src/all/background_page/sdk/port/portManager.test.js +160 -0
- package/src/all/background_page/sdk/port.js +154 -74
- package/src/all/background_page/sdk/port.test.js +158 -0
- package/src/all/background_page/sdk/scriptExecution.js +125 -94
- package/src/all/background_page/sdk/scriptExecution.test.js +143 -0
- package/src/all/background_page/sdk/storage.js +16 -16
- package/src/all/background_page/service/account/buildApiClientOptionsService.js +37 -0
- package/src/all/background_page/service/account/buildApiClientOptionsService.test.js +83 -0
- package/src/all/background_page/service/account/getDecryptedUserPrivateKeyService.js +38 -0
- package/src/all/background_page/service/account/getDecryptedUserPrivateKeyService.test.js +44 -0
- package/src/all/background_page/service/account/getLegacyAccountService.js +67 -0
- package/src/all/background_page/service/account/updateSsoCredentialsService.js +88 -0
- package/src/all/background_page/service/accountRecovery/buildApprovedAccountRecoveryUserSettingEntityService.js +115 -0
- package/src/all/background_page/service/accountRecovery/buildApprovedAccountRecoveryUserSettingEntityService.service.test.js +83 -0
- package/src/all/background_page/service/accountRecovery/decryptPrivateKeyPasswordDataService.js +74 -0
- package/src/all/background_page/service/accountRecovery/decryptPrivateKeyPasswordDataService.test.js +125 -0
- package/src/all/background_page/service/accountRecovery/decryptResponseDataService.js +66 -0
- package/src/all/background_page/service/accountRecovery/decryptResponseDataService.test.js +112 -0
- package/src/all/background_page/service/accountRecovery/getRequestLocalAccountService.js +52 -0
- package/src/all/background_page/service/accountRecovery/getRequestLocalAccountService.test.js +77 -0
- package/src/all/background_page/service/accountRecovery/parseAccountRecoveryUrlService.js +61 -0
- package/src/all/background_page/service/accountRecovery/parseAccountRecoveryUrlService.test.js +60 -0
- package/src/all/background_page/service/api/abstract/abstractService.js +13 -10
- package/src/all/background_page/service/api/abstract/abstractService.test.js +8 -16
- package/src/all/background_page/service/api/accountRecovery/accountRecoveryContinueService.js +52 -0
- package/src/all/background_page/service/api/accountRecovery/accountRecoveryOrganizationPolicyService.js +155 -0
- package/src/all/background_page/service/api/accountRecovery/accountRecoveryOrganizationPolicyService.test.data.js +25 -0
- package/src/all/background_page/service/api/accountRecovery/accountRecoveryOrganizationPolicyService.test.js +59 -0
- package/src/all/background_page/service/api/accountRecovery/accountRecoveryPrivateKeyPasswordService.js +52 -0
- package/src/all/background_page/service/api/accountRecovery/accountRecoveryRequestService.js +122 -0
- package/src/all/background_page/service/api/accountRecovery/accountRecoveryResponseService.js +50 -0
- package/src/all/background_page/service/api/accountRecovery/accountRecoveryUserService.js +54 -0
- package/src/all/background_page/service/api/accountRecovery/validateAccountRecoveryOrganizationPrivateKeyService.js +47 -0
- package/src/all/background_page/service/api/accountRecovery/validateAccountRecoveryOrganizationPrivateKeyService.test.data.js +69 -0
- package/src/all/background_page/service/api/accountRecovery/validateAccountRecoveryOrganizationPrivateKeyService.test.js +52 -0
- package/src/all/background_page/service/api/accountSettings/accountSettingsService.js +31 -4
- package/src/all/background_page/service/api/actionLog/actionLogService.js +3 -3
- package/src/all/background_page/service/api/auth/authService.js +47 -13
- package/src/all/background_page/service/api/auth/authService.test.js +103 -0
- package/src/all/background_page/service/api/comment/commentService.js +4 -3
- package/src/all/background_page/service/api/favorite/favoriteService.js +4 -4
- package/src/all/background_page/service/api/folder/folderService.js +8 -9
- package/src/all/background_page/service/api/group/groupService.js +16 -12
- package/src/all/background_page/service/api/group/groupService.test.js +6 -11
- package/src/all/background_page/service/api/mobileTransferService/mobileTransferService.js +84 -0
- package/src/all/background_page/service/api/move/moveService.js +5 -5
- package/src/all/background_page/service/api/multiFactorAuthentication/multiFactorAuthenticationPolicyService.js +53 -0
- package/src/all/background_page/service/api/multiFactorAuthentication/multiFactorAuthenticationService.js +82 -2
- package/src/all/background_page/service/api/organizationSettings/organizationSettingsService.js +58 -0
- package/src/all/background_page/service/api/passwordExpiry/passwordExpiryResourceService.js +52 -0
- package/src/all/background_page/service/api/passwordExpiry/passwordExpiryResourceService.test.js +82 -0
- package/src/all/background_page/service/api/passwordExpiry/passwordExpirySettingsService.js +72 -0
- package/src/all/background_page/service/api/passwordExpiry/passwordExpirySettingsService.test.js +157 -0
- package/src/all/background_page/service/api/passwordPolicies/passwordPoliciesService.js +92 -0
- package/src/all/background_page/service/api/passwordPolicies/passwordPoliciesService.test.js +127 -0
- package/src/all/background_page/service/api/resource/resourceLocalStorageUpdateService.js +112 -0
- package/src/all/background_page/service/api/resource/resourceLocalStorageUpdateService.test.js +109 -0
- package/src/all/background_page/service/api/resource/resourceService.js +6 -6
- package/src/all/background_page/service/api/resourceType/resourceTypeService.js +2 -2
- package/src/all/background_page/service/api/role/roleService.js +2 -2
- package/src/all/background_page/service/api/setup/setupService.js +51 -22
- package/src/all/background_page/service/api/share/shareService.js +35 -3
- package/src/all/background_page/service/api/sso/ssoDryRunService.js +68 -0
- package/src/all/background_page/service/api/sso/ssoKitServerPartService.js +81 -0
- package/src/all/background_page/service/api/sso/ssoLoginService.js +67 -0
- package/src/all/background_page/service/api/sso/ssoSettingsService.js +105 -0
- package/src/all/background_page/service/api/subscription/subscriptionService.js +63 -0
- package/src/all/background_page/service/api/tag/tagService.js +3 -3
- package/src/all/background_page/service/api/user/userService.js +21 -58
- package/src/all/background_page/service/api/userPassphrasePolicies/userPassphrasePoliciesService.js +63 -0
- package/src/all/background_page/service/api/userPassphrasePolicies/userPassphrasePoliciesService.test.js +121 -0
- package/src/all/background_page/service/app/parseAppUrlService.js +66 -0
- package/src/all/background_page/service/app/parseAppUrlService.test.js +155 -0
- package/src/all/background_page/service/auth/parseAuthUrlService.js +37 -0
- package/src/all/background_page/service/auth/parseAuthUrlService.test.js +56 -0
- package/src/all/background_page/service/auth/startLoopAuthSessionCheckService.js +76 -0
- package/src/all/background_page/service/auth/startLoopAuthSessionCheckService.test.js +91 -0
- package/src/all/background_page/service/auth.js +20 -106
- package/src/all/background_page/service/cache/resourceInProgressCache.service.js +117 -0
- package/src/all/background_page/service/cache/resourceInProgressCache.service.test.js +102 -0
- package/src/all/background_page/service/crypto/checkPassphraseService.js +52 -0
- package/src/all/background_page/service/crypto/compareGpgKeyService.js +40 -0
- package/src/all/background_page/service/crypto/compareGpgKeyService.test.js +51 -0
- package/src/all/background_page/service/crypto/cryptoRandomValuesService.js +30 -0
- package/src/all/background_page/service/crypto/cryptoRandomValuesService.test.js +26 -0
- package/src/all/background_page/service/crypto/decryptMessageService.js +97 -0
- package/src/all/background_page/service/crypto/decryptMessageService.test.js +189 -0
- package/src/all/background_page/service/crypto/decryptPrivateKeyService.js +45 -0
- package/src/all/background_page/service/crypto/decryptPrivateKeyService.test.js +41 -0
- package/src/all/background_page/service/crypto/decryptSsoPassphraseService.js +77 -0
- package/src/all/background_page/service/crypto/decryptSsoPassphraseService.test.js +105 -0
- package/src/all/background_page/service/crypto/encryptMessageService.js +63 -0
- package/src/all/background_page/service/crypto/encryptMessageService.test.js +149 -0
- package/src/all/background_page/service/crypto/encryptPrivateKeyService.js +40 -0
- package/src/all/background_page/service/crypto/encryptPrivateKeyService.test.js +61 -0
- package/src/all/background_page/service/crypto/encryptSsoPassphraseService.js +52 -0
- package/src/all/background_page/service/crypto/encryptSsoPassphraseService.test.js +63 -0
- package/src/all/background_page/service/crypto/generateGpgKeyPairService.js +85 -0
- package/src/all/background_page/service/crypto/generateGpgKeyPairService.test.js +112 -0
- package/src/all/background_page/service/crypto/generateSsoIvService.js +27 -0
- package/src/all/background_page/service/crypto/generateSsoIvService.test.js +41 -0
- package/src/all/background_page/service/crypto/generateSsoKeyService.js +32 -0
- package/src/all/background_page/service/crypto/generateSsoKeyService.test.js +43 -0
- package/src/all/background_page/service/crypto/getGpgKeyCreationDateService.js +41 -0
- package/src/all/background_page/service/crypto/getGpgKeyCreationDateService.test.js +59 -0
- package/src/all/background_page/service/crypto/getGpgKeyInfoService.js +152 -0
- package/src/all/background_page/service/crypto/getGpgKeyInfoService.test.data.js +100 -0
- package/src/all/background_page/service/crypto/getGpgKeyInfoService.test.js +155 -0
- package/src/all/background_page/service/crypto/revokeGpgKeyService.js +35 -0
- package/src/all/background_page/service/crypto/revokeGpgKeyService.test.js +35 -0
- package/src/all/background_page/service/crypto/signGpgKeyService.js +31 -0
- package/src/all/background_page/service/crypto/signGpgKeyService.test.js +41 -0
- package/src/all/background_page/service/crypto/signMessageService.js +55 -0
- package/src/all/background_page/service/crypto/signMessageService.test.js +94 -0
- package/src/all/background_page/service/crypto/verifyGpgKeyService.js +34 -0
- package/src/all/background_page/service/crypto/verifyGpgKeyService.test.js +99 -0
- package/src/all/background_page/service/crypto/verifyMessageSign.js +56 -0
- package/src/all/background_page/service/crypto/verifyMessageSign.test.data.js +44 -0
- package/src/all/background_page/service/crypto/verifyMessageSign.test.js +116 -0
- package/src/all/background_page/service/file/fileService.js +67 -0
- package/src/all/background_page/service/file/fileService.test.js +66 -0
- package/src/all/background_page/service/indexedDB_storage/ssoDataStorage.js +290 -0
- package/src/all/background_page/service/invitation/postponeUserSettingInvitationService.js +60 -0
- package/src/all/background_page/service/invitation/postponeUserSettingInvitationService.test.js +52 -0
- package/src/all/background_page/service/localStorage/localStorageService.js +73 -0
- package/src/all/background_page/service/localStorage/localStorageService.test.js +102 -0
- package/src/all/background_page/service/local_storage/AccountLocalStorage.test.js +216 -0
- package/src/all/background_page/service/local_storage/accountLocalStorage.js +118 -0
- package/src/all/background_page/service/local_storage/authStatusLocalStorage.js +8 -21
- package/src/all/background_page/service/local_storage/folderLocalStorage.js +20 -34
- package/src/all/background_page/service/local_storage/groupLocalStorage.js +17 -31
- package/src/all/background_page/service/local_storage/passwordExpirySettingsLocalStorage.js +73 -0
- package/src/all/background_page/service/local_storage/passwordExpirySettingsLocalStorage.test.js +72 -0
- package/src/all/background_page/service/local_storage/passwordGeneratorLocalStorage.js +36 -0
- package/src/all/background_page/service/local_storage/passwordPoliciesLocalStorage.js +98 -0
- package/src/all/background_page/service/local_storage/rbacLocalStorage.js +109 -0
- package/src/all/background_page/service/local_storage/rbacLocalStorage.test.js +68 -0
- package/src/all/background_page/service/local_storage/resourceLocalStorage.js +89 -44
- package/src/all/background_page/service/local_storage/resourceTypeLocalStorage.js +17 -29
- package/src/all/background_page/service/local_storage/ressourceGridSettingLocalStorage.js +70 -0
- package/src/all/background_page/service/local_storage/rolesLocalStorage.js +17 -29
- package/src/all/background_page/service/local_storage/userLocalStorage.js +25 -36
- package/src/all/background_page/service/local_storage/userRememberMeLatestChoiceLocalStorage.js +82 -0
- package/src/all/background_page/service/local_storage/userRememberMeLatestChoiceLocalStorage.test.js +74 -0
- package/src/all/background_page/service/passphrase/getPassphraseService.js +152 -0
- package/src/all/background_page/service/passphrase/getPassphraseService.test.js +258 -0
- package/src/all/background_page/service/passwordExpirySettings/passwordExpirySettingsGetOrFindService.js +49 -0
- package/src/all/background_page/service/passwordExpirySettings/passwordExpirySettingsGetOrFindService.test.js +45 -0
- package/src/all/background_page/service/progress/progressService.js +120 -0
- package/src/all/background_page/service/progress/progressService.test.js +69 -0
- package/src/all/background_page/service/publicWebsite/parsePublicWebsiteUrlService.js +35 -0
- package/src/all/background_page/service/publicWebsite/parsePublicWebsiteUrlService.test.js +48 -0
- package/src/all/background_page/service/recover/buildAccountRecoverService.js +33 -0
- package/src/all/background_page/service/recover/buildAccountRecoverService.test.js +43 -0
- package/src/all/background_page/service/recover/parseRecoverUrlService.js +69 -0
- package/src/all/background_page/service/recover/parseRecoverUrlService.test.js +94 -0
- package/src/all/background_page/service/secret/decryptAndParseResourceSecretService.js +60 -0
- package/src/all/background_page/service/secret/decryptAndParseResourceSecretService.test.js +83 -0
- package/src/all/background_page/service/secret/pownedService.js +63 -0
- package/src/all/background_page/service/secret/pownedService.test.js +77 -0
- package/src/all/background_page/service/sessionStorage/userMeSessionStorageService.js +94 -0
- package/src/all/background_page/service/sessionStorage/userMeSessionStorageService.test.js +146 -0
- package/src/all/background_page/service/sessionStorage/workersSessionStorage.js +205 -0
- package/src/all/background_page/service/sessionStorage/workersSessionStorage.test.js +138 -0
- package/src/all/background_page/service/session_storage/passphraseStorageService.js +176 -0
- package/src/all/background_page/service/session_storage/passphraseStorageService.test.js +252 -0
- package/src/all/background_page/service/session_storage/ssoKitTemporaryStorageService.js +82 -0
- package/src/all/background_page/service/setup/buildAccountSetupService.js +32 -0
- package/src/all/background_page/service/setup/buildAccountSetupService.test.js +43 -0
- package/src/all/background_page/service/setup/parseSetupUrlService.js +62 -0
- package/src/all/background_page/service/setup/parseSetupUrlService.test.js +61 -0
- package/src/all/background_page/service/sso/generateSsoKitService.js +73 -0
- package/src/all/background_page/service/sso/generateSsoKitService.test.js +72 -0
- package/src/all/background_page/service/sso/popupHandlerService.js +164 -0
- package/src/all/background_page/service/sso/popupHandlerService.test.js +230 -0
- package/src/all/background_page/service/sso/qualifySsoLoginErrorService.js +49 -0
- package/src/all/background_page/service/systemRequirementService/systemRequirementService.js +30 -0
- package/src/all/background_page/service/systemRequirementService/systemRequirementService.test.js +37 -0
- package/src/all/background_page/service/tab/tabService.js +99 -0
- package/src/all/background_page/service/tab/tabService.test.js +239 -0
- package/src/all/background_page/service/ui/browserExtensionIcon.service.js +66 -0
- package/src/all/background_page/service/ui/browserTab.service.js +46 -0
- package/src/all/background_page/service/ui/browserTab.service.test.js +81 -0
- package/src/all/background_page/service/ui/quickAccess.service.js +94 -0
- package/src/all/background_page/service/validator/appEmailValidatorService.js +67 -0
- package/src/all/background_page/service/validator/appEmailValidatorService.test.js +61 -0
- package/src/all/background_page/service/webIntegration/parseWebIntegrationUrlService.js +44 -0
- package/src/all/background_page/service/webIntegration/parseWebIntegrationUrlService.test.js +56 -0
- package/src/all/background_page/service/webNavigation/webNavigationService.js +33 -0
- package/src/all/background_page/service/webNavigation/webNavigationService.test.js +58 -0
- package/src/all/background_page/service/worker/workerService.js +146 -0
- package/src/all/background_page/service/worker/workerService.test.js +191 -0
- package/src/all/background_page/utils/array/deduplicateObjects.js +8 -8
- package/src/all/background_page/utils/array/deduplicateObjects.test.js +13 -13
- package/src/all/background_page/utils/array/splitBySize.js +2 -2
- package/src/all/background_page/utils/assertions.js +161 -0
- package/src/all/background_page/utils/assertions.test.data.js +19 -0
- package/src/all/background_page/utils/assertions.test.js +238 -0
- package/src/all/background_page/utils/format/base64.js +10 -9
- package/src/all/background_page/utils/format/binaryConvert.js +47 -0
- package/src/all/background_page/utils/format/emailaddress.js +61 -50
- package/src/all/background_page/utils/format/string.js +202 -158
- package/src/all/background_page/utils/lock.js +33 -28
- package/src/all/background_page/utils/openpgp/openpgpAssertions.js +314 -0
- package/src/all/background_page/utils/openpgp/openpgpAssertions.test.js +576 -0
- package/src/all/background_page/utils/promise/promiseTimeoutService.js +71 -0
- package/src/all/background_page/utils/promise/promiseTimeoutService.test.js +105 -0
- package/src/all/{data/js/quickaccess/popup/components/HomePage → background_page/utils/url}/canSuggestUrl.js +57 -24
- package/src/all/{data/js/quickaccess/popup/components/HomePage → background_page/utils/url}/canSuggestUrl.test.js +14 -3
- package/src/all/background_page/utils/url/hasSameOriginUrl.js +27 -0
- package/src/all/background_page/utils/uuid.js +12 -11
- package/src/all/background_page/utils/validatorRules.js +4 -4
- package/src/all/common/polyfill/browserPolyfill.js +31 -0
- package/src/all/common/polyfill/scriptingPolyfill.js +115 -0
- package/src/all/common/polyfill/scriptingPolyfill.test.js +125 -0
- package/src/all/common/polyfill/sessionStoragePolyfill.js +78 -0
- package/src/all/common/polyfill/sessionStoragePolyfill.test.js +203 -0
- package/src/all/contentScripts/js/app/AccountRecovery.js +40 -0
- package/src/all/{content_scripts → contentScripts}/js/app/App.js +14 -23
- package/src/all/contentScripts/js/app/BrowserIntegration.js +26 -0
- package/src/all/{content_scripts → contentScripts}/js/app/Login.js +14 -22
- package/src/all/contentScripts/js/app/PublicWebsiteSignIn.js +26 -0
- package/src/all/{content_scripts → contentScripts}/js/app/Recover.js +14 -22
- package/src/all/{content_scripts → contentScripts}/js/app/Setup.js +15 -23
- package/src/all/contentScripts/js/controller/connectPortController.js +37 -0
- package/src/all/contentScripts/js/controller/connectPortController.test.js +51 -0
- package/src/all/contentScripts/js/message/messageEventHandler.js +63 -0
- package/src/all/contentScripts/js/message/messageEventHandler.test.data.js +30 -0
- package/src/all/contentScripts/js/message/messageEventHandler.test.js +154 -0
- package/src/all/contentScripts/js/message/messageEventHandlerConstructorMock.test.data.js +18 -0
- package/src/all/contentScripts/js/service/messageService.js +76 -0
- package/src/all/contentScripts/js/service/messageService.test.js +54 -0
- package/src/all/locales/de-DE/common.json +94 -0
- package/src/all/locales/en-UK/common.json +94 -0
- package/src/all/locales/es-ES/common.json +94 -0
- package/src/all/locales/fr-FR/common.json +94 -0
- package/src/all/locales/it-IT/common.json +94 -0
- package/src/all/locales/ja-JP/common.json +94 -0
- package/src/all/locales/ko-KR/common.json +94 -0
- package/src/all/locales/lt-LT/common.json +94 -0
- package/src/all/locales/nl-NL/common.json +94 -0
- package/src/all/locales/pl-PL/common.json +94 -0
- package/src/all/locales/pt-BR/common.json +94 -0
- package/src/all/locales/ro-RO/common.json +94 -0
- package/src/all/locales/ru-RU/common.json +94 -0
- package/src/all/locales/sv-SE/common.json +94 -0
- package/src/all/webAccessibleResources/js/app/AccountRecovery.js +30 -0
- package/src/all/{data → webAccessibleResources}/js/app/App.js +5 -25
- package/src/all/webAccessibleResources/js/app/Download.js +33 -0
- package/src/all/webAccessibleResources/js/app/InFormCallToAction.js +29 -0
- package/src/all/webAccessibleResources/js/app/InFormMenu.js +29 -0
- package/src/all/{data → webAccessibleResources}/js/app/Login.js +5 -24
- package/src/all/webAccessibleResources/js/app/QuickAccess.js +37 -0
- package/src/all/{data → webAccessibleResources}/js/app/Recover.js +4 -21
- package/src/all/{data → webAccessibleResources}/js/app/Setup.js +4 -21
- package/src/all/webAccessibleResources/js/lib/port.js +187 -0
- package/src/all/webAccessibleResources/js/lib/port.test.js +152 -0
- package/src/all/{data → webAccessibleResources}/js/themes/stylesheet.js +49 -34
- package/src/all/webAccessibleResources/passbolt-iframe-account-recovery.html +24 -0
- package/src/all/webAccessibleResources/passbolt-iframe-app.html +67 -0
- package/src/all/webAccessibleResources/passbolt-iframe-file.html +10 -0
- package/src/all/webAccessibleResources/passbolt-iframe-in-form-call-to-action.html +12 -0
- package/src/all/webAccessibleResources/passbolt-iframe-in-form-menu.html +12 -0
- package/src/all/{data → webAccessibleResources}/passbolt-iframe-login.html +2 -2
- package/src/all/{data → webAccessibleResources}/passbolt-iframe-recover.html +2 -2
- package/src/all/{data → webAccessibleResources}/passbolt-iframe-setup.html +2 -2
- package/src/all/webAccessibleResources/quickaccess.html +16 -0
- package/src/chrome/manifest.json +18 -14
- package/src/chrome-mv3/index.js +60 -0
- package/src/chrome-mv3/manifest.json +60 -0
- package/src/chrome-mv3/serviceWorker.js +14 -0
- package/src/firefox/manifest.json +21 -16
- package/src/safari/manifest.json +50 -0
- package/test/fixtures/pgpKeys/keys.js +419 -0
- package/test/jest-webextension-force-runtime-id-setup-files.js +5 -0
- package/{.jest.custom-kdbx-environment.js → test/jest.custom-kdbx-environment.js} +3 -15
- package/test/jest.setup.js +60 -0
- package/test/matchers/extendExpect.js +31 -0
- package/test/matchers/toBeEqualToOpenpgpKey.js +46 -0
- package/test/matchers/toBeOpenpgpKeySignedBy.js +42 -0
- package/test/matchers/toBeOpenpgpPrivateKey.js +34 -0
- package/test/matchers/toBeOpenpgpPublicKey.js +34 -0
- package/test/matchers/toBeOpenpgpRevokedKey.js +34 -0
- package/test/matchers/toThrowEntityValidationErrorOnProperties.js +41 -0
- package/test/mocks/mockAlarms.js +101 -0
- package/test/mocks/mockApiResponse.js +31 -0
- package/test/mocks/mockCryptoKey.js +62 -0
- package/test/mocks/mockEventListener.js +40 -0
- package/test/mocks/mockExtension.js +60 -0
- package/test/mocks/mockNavigatorLocks.js +30 -0
- package/test/mocks/mockSsoDataStorage.js +86 -0
- package/test/mocks/mockStorage.js +74 -0
- package/test/mocks/mockTextEncoder.js +18 -0
- package/test/mocks/mockWebExtensionPolyfill.js +77 -0
- package/webpack-content-scripts.browser-integration.config.js +57 -0
- package/webpack-content-scripts.config.js +16 -5
- package/webpack-content-scripts.public-website-sign-in.config.js +57 -0
- package/webpack-data.config.js +24 -7
- package/webpack-data.download.config.js +59 -0
- package/webpack-data.in-form-call-to-action.config.js +63 -0
- package/webpack-data.in-form-menu.config.js +63 -0
- package/webpack.background-page.config.js +62 -0
- package/webpack.service-worker.config.js +62 -0
- package/.jest.config.json +0 -5
- package/.jest.transform.js +0 -7
- package/dist/chrome/empty +0 -0
- package/dist/chrome/passbolt-3.0.6-debug.crx +0 -0
- package/dist/chrome/passbolt-3.0.6.crx +0 -0
- package/dist/chrome/passbolt-3.0.6.zip +0 -0
- package/dist/firefox/empty +0 -0
- package/dist/firefox/passbolt-3.0.6-debug.zip +0 -0
- package/dist/firefox/passbolt-3.0.6.zip +0 -0
- package/src/all/background_page/app.js +0 -162
- package/src/all/background_page/controller/authController.js +0 -92
- package/src/all/background_page/controller/browserSettingsController.js +0 -47
- package/src/all/background_page/controller/fileController.js +0 -134
- package/src/all/background_page/controller/passphrase/passphraseController.js +0 -82
- package/src/all/background_page/controller/progress/progressController.js +0 -65
- package/src/all/background_page/controller/recover/recoverController.js +0 -167
- package/src/all/background_page/controller/setup/setupController.js +0 -199
- package/src/all/background_page/error/passboltApiFetchError.js +0 -16
- package/src/all/background_page/event/debugEvents.js +0 -169
- package/src/all/background_page/event/pagmodEvents.js +0 -23
- package/src/all/background_page/event/siteSettingsEvents.js +0 -61
- package/src/all/background_page/model/crypto.js +0 -179
- package/src/all/background_page/model/entity/abstract/entity.js +0 -99
- package/src/all/background_page/model/entity/abstract/entity.test.js +0 -86
- package/src/all/background_page/model/entity/abstract/entityCollection.js +0 -144
- package/src/all/background_page/model/entity/abstract/entityCollection.test.js +0 -107
- package/src/all/background_page/model/entity/abstract/entityCollectionError.js +0 -40
- package/src/all/background_page/model/entity/abstract/entityCollectionError.test.js +0 -55
- package/src/all/background_page/model/entity/abstract/entitySchema.js +0 -412
- package/src/all/background_page/model/entity/abstract/entitySchema.test.js +0 -266
- package/src/all/background_page/model/entity/abstract/entityValidationError.js +0 -81
- package/src/all/background_page/model/entity/abstract/entityValidationError.test.js +0 -64
- package/src/all/background_page/model/entity/gpgkey/generate/generateGpgkeyEntity.js +0 -128
- package/src/all/background_page/model/entity/role/roleEntity.js +0 -162
- package/src/all/background_page/model/entity/role/roleEntity.test.js +0 -84
- package/src/all/background_page/model/entity/role/rolesCollection.js +0 -140
- package/src/all/background_page/model/entity/setup/setupEntity.js +0 -360
- package/src/all/background_page/model/entity/setup/setupEntity.test.js +0 -87
- package/src/all/background_page/model/entity/user/account/userAcountEntity.js +0 -131
- package/src/all/background_page/model/group.js +0 -165
- package/src/all/background_page/model/groupForm.js +0 -331
- package/src/all/background_page/model/key.js +0 -337
- package/src/all/background_page/model/openpgp/OpenpgpModel.js +0 -73
- package/src/all/background_page/model/share.js +0 -171
- package/src/all/background_page/model/siteSettings.js +0 -80
- package/src/all/background_page/model/tabStorage.js +0 -82
- package/src/all/background_page/model/worker.js +0 -124
- package/src/all/background_page/pagemod/appBoostrapPagemod.js +0 -100
- package/src/all/background_page/pagemod/clipboardPagemod.js +0 -37
- package/src/all/background_page/pagemod/debugPagemod.js +0 -45
- package/src/all/background_page/sdk/jsonQ.js +0 -66
- package/src/all/background_page/sdk/l10n.js +0 -17
- package/src/all/background_page/sdk/page-mod.js +0 -337
- package/src/all/background_page/sdk/random.js +0 -11
- package/src/all/background_page/sdk/self.js +0 -10
- package/src/all/background_page/sdk/tab.js +0 -77
- package/src/all/background_page/sdk/worker.js +0 -84
- package/src/all/background_page/service/api/apiClient/apiClient.js +0 -351
- package/src/all/background_page/service/api/apiClient/apiClient.test.js +0 -92
- package/src/all/background_page/service/api/apiClient/apiClientOptions.js +0 -111
- package/src/all/background_page/service/api/apiClient/apiClientOptions.test.js +0 -48
- package/src/all/background_page/service/group.js +0 -72
- package/src/all/background_page/service/share.js +0 -216
- package/src/all/background_page/utils/csrfToken/csrfToken.js +0 -61
- package/src/all/background_page/vendors.js +0 -32
- package/src/all/content_scripts/js/bootstrap.js +0 -81
- package/src/all/data/config-debug.html +0 -308
- package/src/all/data/js/clipboard/clipboard.js +0 -29
- package/src/all/data/js/debug/common.js +0 -76
- package/src/all/data/js/debug/debug.js +0 -387
- package/src/all/data/js/debug/file.js +0 -82
- package/src/all/data/js/debug/profiles.js +0 -820
- package/src/all/data/js/file/fileIframe.js +0 -29
- package/src/all/data/js/include/config-debug.js +0 -20
- package/src/all/data/js/lib/loadscript.js +0 -38
- package/src/all/data/js/lib/message.js +0 -120
- package/src/all/data/js/lib/port.js +0 -231
- package/src/all/data/js/lib/pwnedpasswords.js +0 -34
- package/src/all/data/js/lib/request.js +0 -151
- package/src/all/data/js/lib/secretComplexity.js +0 -209
- package/src/all/data/js/quickaccess/popup/Popup.js +0 -215
- package/src/all/data/js/quickaccess/popup/components/AnimatedSwitch/AnimatedSwitch.js +0 -189
- package/src/all/data/js/quickaccess/popup/components/FilterResourcesByFavoritePage/FilterResourcesByFavoritePage.js +0 -210
- package/src/all/data/js/quickaccess/popup/components/FilterResourcesByGroupPage/FilterResourcesByGroupPage.js +0 -329
- package/src/all/data/js/quickaccess/popup/components/FilterResourcesByItemsIOwnPage/FilterResourcesByItemsIOwnPage.js +0 -210
- package/src/all/data/js/quickaccess/popup/components/FilterResourcesByRecentlyModifiedPage/FilterResourcesByRecentlyModifiedPage.js +0 -204
- package/src/all/data/js/quickaccess/popup/components/FilterResourcesBySharedWithMePage/FilterResourcesBySharedWithMePage.js +0 -210
- package/src/all/data/js/quickaccess/popup/components/FilterResourcesByTagPage/FilterResourcesByTagPage.js +0 -329
- package/src/all/data/js/quickaccess/popup/components/Header/Header.js +0 -50
- package/src/all/data/js/quickaccess/popup/components/HomePage/HomePage.js +0 -296
- package/src/all/data/js/quickaccess/popup/components/LoginPage/LoginPage.js +0 -142
- package/src/all/data/js/quickaccess/popup/components/MoreFiltersPage/MoreFiltersPage.js +0 -84
- package/src/all/data/js/quickaccess/popup/components/PassphraseDialog/PassphraseDialog.js +0 -181
- package/src/all/data/js/quickaccess/popup/components/PassphraseDialog/PassphraseDialog.test.js +0 -49
- package/src/all/data/js/quickaccess/popup/components/PrivateRoute/PrivateRoute.js +0 -37
- package/src/all/data/js/quickaccess/popup/components/ResourceCreatePage/ResourceCreatePage.js +0 -274
- package/src/all/data/js/quickaccess/popup/components/ResourceCreatePage/ResourceCreatePage.test.js +0 -186
- package/src/all/data/js/quickaccess/popup/components/ResourceViewPage/ResourceViewPage.js +0 -296
- package/src/all/data/js/quickaccess/popup/components/Search/Search.js +0 -41
- package/src/all/data/js/quickaccess/popup/components/Search/Search.test.js +0 -44
- package/src/all/data/js/quickaccess/popup/components/SimpleBar/SimpleBar.js +0 -35
- package/src/all/data/js/quickaccess/popup/contexts/AppContext.js +0 -6
- package/src/all/data/js/quickaccess/quickaccess.js +0 -335
- package/src/all/data/js/themes/stylesheet_legacy.js +0 -86
- package/src/all/data/passbolt-iframe-app.html +0 -52
- package/src/all/data/passbolt-iframe-clipboard.html +0 -14
- package/src/all/data/passbolt-iframe-file.html +0 -14
- package/src/all/data/quickaccess.html +0 -15
- package/src/all/data/vendors/browser-polyfill.js +0 -1187
- package/src/all/data/vendors/dom-testing-library-event.js +0 -363
- package/src/all/data/vendors/download.js +0 -167
- package/src/all/data/vendors/farbtastic.js +0 -345
- package/src/all/data/vendors/jquery-filestyle.js +0 -387
- package/src/all/data/vendors/jquery.js +0 -10872
- package/src/all/data/vendors/react-dom.production.min.js +0 -239
- package/src/all/data/vendors/react.production.min.js +0 -32
- package/src/all/data/vendors/sha.js +0 -45
- package/src/all/data/vendors/validator.js +0 -817
- package/src/all/data/vendors/xregexp-all.js +0 -4487
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Adding tag...": "Adding tag...",
|
|
3
|
+
"An ECC key should be based on a supported curve.": "An ECC key should be based on a supported curve.",
|
|
4
|
+
"An internal error occurred. The server response could not be parsed. Please contact your administrator.": "An internal error occurred. The server response could not be parsed. Please contact your administrator.",
|
|
5
|
+
"An RSA key should have a length of {{size}} bits minimum.": "An RSA key should have a length of {{size}} bits minimum.",
|
|
6
|
+
"Autofill failed. Could not find the active tab.": "Autofill failed. Could not find the active tab.",
|
|
7
|
+
"Calculate permissions": "Calculate permissions",
|
|
8
|
+
"Calculating changes ...": "Calculating changes ...",
|
|
9
|
+
"Calculating changes for {{name}}": "Calculating changes for {{name}}",
|
|
10
|
+
"Calculating changes...": "Calculating changes...",
|
|
11
|
+
"Could not move, expecting a folder to be provided.": "Could not move, expecting a folder to be provided.",
|
|
12
|
+
"Could not move, expecting at least a resource to be provided.": "Could not move, expecting at least a resource to be provided.",
|
|
13
|
+
"Could not verify the server key.": "Could not verify the server key.",
|
|
14
|
+
"Creating folder...": "Creating folder...",
|
|
15
|
+
"Creating password": "Creating password",
|
|
16
|
+
"Decrypting ...": "Decrypting ...",
|
|
17
|
+
"Decrypting {{counter}}/{{total}}": "Decrypting {{counter}}/{{total}}",
|
|
18
|
+
"Done": "Done",
|
|
19
|
+
"Done!": "Done!",
|
|
20
|
+
"Encrypting": "Encrypting",
|
|
21
|
+
"Encrypting {{counter}}/{{total}}": "Encrypting {{counter}}/{{total}}",
|
|
22
|
+
"Encrypting secret": "Encrypting secret",
|
|
23
|
+
"Expiry date will be updated on {{count}} resource._one": "Expiry date will be updated on {{count}} resource.",
|
|
24
|
+
"Expiry date will be updated on {{count}} resource._other": "Expiry date will be updated on {{count}} resources.",
|
|
25
|
+
"Exporting ...": "Exporting ...",
|
|
26
|
+
"Fetching parent permissions": "Fetching parent permissions",
|
|
27
|
+
"Folder {{name}} can not be moved.": "Folder {{name}} can not be moved.",
|
|
28
|
+
"Folder {{name}} is already in folder {{destination}}.": "Folder {{name}} is already in folder {{destination}}.",
|
|
29
|
+
"Generate file": "Generate file",
|
|
30
|
+
"Importing ...": "Importing ...",
|
|
31
|
+
"Importing folders {{importedCount}}/{{total}}": "Importing folders {{importedCount}}/{{total}}",
|
|
32
|
+
"Importing passwords {{importedCount}}/{{total}}": "Importing passwords {{importedCount}}/{{total}}",
|
|
33
|
+
"Inactive worker on the page.": "Inactive worker on the page.",
|
|
34
|
+
"Initialize": "Initialize",
|
|
35
|
+
"Initializing": "Initializing",
|
|
36
|
+
"Initializing ...": "Initializing ...",
|
|
37
|
+
"Mark as expired ...": "Mark as expired ...",
|
|
38
|
+
"MFA authentication is required.": "MFA authentication is required.",
|
|
39
|
+
"Moving {{name}}": "Moving {{name}}",
|
|
40
|
+
"Moving {{total}} resources": "Moving {{total}} resources",
|
|
41
|
+
"Moving folder": "Moving folder",
|
|
42
|
+
"Moving one resource": "Moving one resource",
|
|
43
|
+
"Preparing...": "Preparing...",
|
|
44
|
+
"Private key not found.": "Private key not found.",
|
|
45
|
+
"Public key can't be found.": "Public key can't be found.",
|
|
46
|
+
"Rekeying users' key": "Rekeying users' key",
|
|
47
|
+
"Saving permissions...": "Saving permissions...",
|
|
48
|
+
"Saving resource": "Saving resource",
|
|
49
|
+
"Server internal error. Check with your administrator.": "Server internal error. Check with your administrator.",
|
|
50
|
+
"Share {{count}} password_one": "Share {{count}} password",
|
|
51
|
+
"Share {{count}} password_other": "Share {{count}} passwords",
|
|
52
|
+
"Sharing folder {{name}}": "Sharing folder {{name}}",
|
|
53
|
+
"Start sharing": "Start sharing",
|
|
54
|
+
"Synchronizing keyring": "Synchronizing keyring",
|
|
55
|
+
"Synchronizing keys": "Synchronizing keys",
|
|
56
|
+
"Tagging passwords {{taggedCount}}/{{total}}": "Tagging passwords {{taggedCount}}/{{total}}",
|
|
57
|
+
"The external service is unavailable": "The external service is unavailable",
|
|
58
|
+
"The external service raised an error": "The external service raised an error",
|
|
59
|
+
"The folder cannot be moved inside itself.": "The folder cannot be moved inside itself.",
|
|
60
|
+
"The folder cannot be shared. Insufficient rights.": "The folder cannot be shared. Insufficient rights.",
|
|
61
|
+
"The key should be a valid openpgp armored key string.": "The key should be a valid openpgp armored key string.",
|
|
62
|
+
"The key should be a valid openpgp key.": "The key should be a valid openpgp key.",
|
|
63
|
+
"The key should be a valid openpgp private key.": "The key should be a valid openpgp private key.",
|
|
64
|
+
"The key should be a valid openpgp public key.": "The key should be a valid openpgp public key.",
|
|
65
|
+
"The keys should be an array of valid decrypted openpgp private keys.": "The keys should be an array of valid decrypted openpgp private keys.",
|
|
66
|
+
"The keys should be an array of valid encrypted openpgp private keys.": "The keys should be an array of valid encrypted openpgp private keys.",
|
|
67
|
+
"The keys should be an array of valid openpgp armored key strings.": "The keys should be an array of valid openpgp armored key strings.",
|
|
68
|
+
"The keys should be an array of valid openpgp private keys.": "The keys should be an array of valid openpgp private keys.",
|
|
69
|
+
"The keys should be an array of valid openpgp public keys.": "The keys should be an array of valid openpgp public keys.",
|
|
70
|
+
"The keys should be an array.": "The keys should be an array.",
|
|
71
|
+
"The message should be a valid openpgp clear text message.": "The message should be a valid openpgp clear text message.",
|
|
72
|
+
"The message should be a valid openpgp message.": "The message should be a valid openpgp message.",
|
|
73
|
+
"The message should be of type string.": "The message should be of type string.",
|
|
74
|
+
"The private key should be a valid openpgp key.": "The private key should be a valid openpgp key.",
|
|
75
|
+
"The private key should be decrypted.": "The private key should be decrypted.",
|
|
76
|
+
"The private key should be encrypted.": "The private key should be encrypted.",
|
|
77
|
+
"The private key should not be expired.": "The private key should not be expired.",
|
|
78
|
+
"The private key should not be revoked.": "The private key should not be revoked.",
|
|
79
|
+
"The private key should not have an expiry date.": "The private key should not have an expiry date.",
|
|
80
|
+
"The private key should use a supported algorithm: RSA, ECDSA OR EDDSA.": "The private key should use a supported algorithm: RSA, ECDSA OR EDDSA.",
|
|
81
|
+
"The server key cannot be parsed.": "The server key cannot be parsed.",
|
|
82
|
+
"The server key has changed.": "The server key has changed.",
|
|
83
|
+
"The server key is expired.": "The server key is expired.",
|
|
84
|
+
"The service is unavailable": "The service is unavailable",
|
|
85
|
+
"This is not a valid passphrase": "This is not a valid passphrase",
|
|
86
|
+
"This key does not match any account.": "This key does not match any account.",
|
|
87
|
+
"This key is already used by another user.": "This key is already used by another user.",
|
|
88
|
+
"Unable to retrieve the active tab info.": "Unable to retrieve the active tab info.",
|
|
89
|
+
"Updating group": "Updating group",
|
|
90
|
+
"Updating group ...": "Updating group ...",
|
|
91
|
+
"Updating password": "Updating password",
|
|
92
|
+
"Updating resource": "Updating resource",
|
|
93
|
+
"Updating users' key...": "Updating users' key..."
|
|
94
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Adding tag...": "Añadiendo etiqueta...",
|
|
3
|
+
"An ECC key should be based on a supported curve.": "Una clave ECC debería basarse en una curva soportada.",
|
|
4
|
+
"An internal error occurred. The server response could not be parsed. Please contact your administrator.": "Se ha producido un error interno. La respuesta del servidor no se ha podido analizar. Por favor, póngase en contacto con su administrador.",
|
|
5
|
+
"An RSA key should have a length of {{size}} bits minimum.": "Una clave RSA debería tener una longitud mínima de {{size}} bits.",
|
|
6
|
+
"Autofill failed. Could not find the active tab.": "Error al autorrellenar. No se pudo encontrar la pestaña activa.",
|
|
7
|
+
"Calculate permissions": "Calcular permisos",
|
|
8
|
+
"Calculating changes ...": "Calculando cambios...",
|
|
9
|
+
"Calculating changes for {{name}}": "Calculando los cambios en {{name}}",
|
|
10
|
+
"Calculating changes...": "Calculando cambios...",
|
|
11
|
+
"Could not move, expecting a folder to be provided.": "No se pudo mover, se esperaba que se proporcionara una carpeta.",
|
|
12
|
+
"Could not move, expecting at least a resource to be provided.": "No se pudo mover, se esperaba que se proporcionara al menos un recurso.",
|
|
13
|
+
"Could not verify the server key.": "No se ha podido verificar la clave del servidor.",
|
|
14
|
+
"Creating folder...": "Creando carpeta...",
|
|
15
|
+
"Creating password": "Creando contraseña",
|
|
16
|
+
"Decrypting ...": "Desencriptando...",
|
|
17
|
+
"Decrypting {{counter}}/{{total}}": "Desencriptando {{counter}}/{{total}}",
|
|
18
|
+
"Done": "Hecho",
|
|
19
|
+
"Done!": "Hecho!",
|
|
20
|
+
"Encrypting": "Encriptando",
|
|
21
|
+
"Encrypting {{counter}}/{{total}}": "Encriptando {{counter}}/{{total}}",
|
|
22
|
+
"Encrypting secret": "Encriptando secreto",
|
|
23
|
+
"Expiry date will be updated on {{count}} resource._one": "La fecha de caducidad se actualizará en {{count}} recursos.",
|
|
24
|
+
"Expiry date will be updated on {{count}} resource._other": "La fecha de caducidad se actualizará en {{count}} recurso.",
|
|
25
|
+
"Exporting ...": "Exportando...",
|
|
26
|
+
"Fetching parent permissions": "Obteniendo permisos heredados",
|
|
27
|
+
"Folder {{name}} can not be moved.": "La carpeta {{name}} no puede ser movida.",
|
|
28
|
+
"Folder {{name}} is already in folder {{destination}}.": "La carpeta {{name}} ya se encuentra en la carpeta {{destination}}.",
|
|
29
|
+
"Generate file": "Generar fichero",
|
|
30
|
+
"Importing ...": "Importando...",
|
|
31
|
+
"Importing folders {{importedCount}}/{{total}}": "Importando carpetas {{importedCount}}/{{total}}",
|
|
32
|
+
"Importing passwords {{importedCount}}/{{total}}": "Importando contraseñas {{importedCount}}/{{total}}",
|
|
33
|
+
"Inactive worker on the page.": "Operador inactivo en la página.",
|
|
34
|
+
"Initialize": "Inicializar",
|
|
35
|
+
"Initializing": "Inicializando",
|
|
36
|
+
"Initializing ...": "Inicializando ...",
|
|
37
|
+
"Mark as expired ...": "Marcar como caducado...",
|
|
38
|
+
"MFA authentication is required.": "Se requiere autenticación MFA.",
|
|
39
|
+
"Moving {{name}}": "Moviendo {{name}}",
|
|
40
|
+
"Moving {{total}} resources": "Moviendo {{total}} recursos",
|
|
41
|
+
"Moving folder": "Moviendo carpeta",
|
|
42
|
+
"Moving one resource": "Moviendo un recurso",
|
|
43
|
+
"Preparing...": "Preparando...",
|
|
44
|
+
"Private key not found.": "Clave privada no encontrada.",
|
|
45
|
+
"Public key can't be found.": "Clave pública no encontrada.",
|
|
46
|
+
"Rekeying users' key": "Recuperando la clave de usuario",
|
|
47
|
+
"Saving permissions...": "Guardando permisos...",
|
|
48
|
+
"Saving resource": "Guardando recurso",
|
|
49
|
+
"Server internal error. Check with your administrator.": "Error interno del servidor. Compruebe con su administrador.",
|
|
50
|
+
"Share {{count}} password_one": "Compartir {{count}} contraseña",
|
|
51
|
+
"Share {{count}} password_other": "Compartir {{count}} contraseñas",
|
|
52
|
+
"Sharing folder {{name}}": "Compartiendo carpeta {{name}}",
|
|
53
|
+
"Start sharing": "Comenzar a compartir",
|
|
54
|
+
"Synchronizing keyring": "Sincronizando llavero",
|
|
55
|
+
"Synchronizing keys": "Sincronizando claves",
|
|
56
|
+
"Tagging passwords {{taggedCount}}/{{total}}": "Etiquetando contraseñas {{taggedCount}}/{{total}}",
|
|
57
|
+
"The external service is unavailable": "El servicio externo no está disponible",
|
|
58
|
+
"The external service raised an error": "El servicio externo ha producido un error",
|
|
59
|
+
"The folder cannot be moved inside itself.": "No se puede mover la carpeta dentro de sí misma.",
|
|
60
|
+
"The folder cannot be shared. Insufficient rights.": "La carpeta no puede ser compartida. Permisos insuficientes.",
|
|
61
|
+
"The key should be a valid openpgp armored key string.": "La clave debe ser una cadena de llave openpgp blindada válida.",
|
|
62
|
+
"The key should be a valid openpgp key.": "La clave debe ser una clave openpgp válida.",
|
|
63
|
+
"The key should be a valid openpgp private key.": "La clave debe ser una clave openpgp privada válida.",
|
|
64
|
+
"The key should be a valid openpgp public key.": "La clave debe ser una clave openpgp pública válida.",
|
|
65
|
+
"The keys should be an array of valid decrypted openpgp private keys.": "Las claves deben ser una lista de claves privadas descifradas de openpgp válidas.",
|
|
66
|
+
"The keys should be an array of valid encrypted openpgp private keys.": "Las claves deben ser una lista de claves privadas cifradas de openpgp válidas.",
|
|
67
|
+
"The keys should be an array of valid openpgp armored key strings.": "Las claves deben ser una lista de claves blindadas de openpgp válidas.",
|
|
68
|
+
"The keys should be an array of valid openpgp private keys.": "Las claves deben ser una lista de claves privadas de openpgp válidas.",
|
|
69
|
+
"The keys should be an array of valid openpgp public keys.": "Las claves deben ser una lista de claves públicas de openpgp válidas.",
|
|
70
|
+
"The keys should be an array.": "Las claves deben ser una lista.",
|
|
71
|
+
"The message should be a valid openpgp clear text message.": "El mensaje debe ser un mensaje de texto claro de OpenPGP válido.",
|
|
72
|
+
"The message should be a valid openpgp message.": "El mensaje debe ser un mensaje válido de openpgp.",
|
|
73
|
+
"The message should be of type string.": "El mensaje debe ser de tipo cadena.",
|
|
74
|
+
"The private key should be a valid openpgp key.": "La clave privada debe ser una clave openpgp válida.",
|
|
75
|
+
"The private key should be decrypted.": "La clave privada debe estar descifrada.",
|
|
76
|
+
"The private key should be encrypted.": "La clave privada debe estar cifrada.",
|
|
77
|
+
"The private key should not be expired.": "La clave privada no debería estar caducada.",
|
|
78
|
+
"The private key should not be revoked.": "La clave privada no debería estar revocada.",
|
|
79
|
+
"The private key should not have an expiry date.": "La clave privada no debería tener una fecha de caducidad.",
|
|
80
|
+
"The private key should use a supported algorithm: RSA, ECDSA OR EDDSA.": "La clave privada debe usar un algoritmo soportado: RSA, ECDSA O EDDSA.",
|
|
81
|
+
"The server key cannot be parsed.": "La clave del servidor no se puede procesar.",
|
|
82
|
+
"The server key has changed.": "La clave del servidor ha cambiado.",
|
|
83
|
+
"The server key is expired.": "La clave del servidor ha caducado.",
|
|
84
|
+
"The service is unavailable": "El servicio no está disponible",
|
|
85
|
+
"This is not a valid passphrase": "Esta no es una contraseña válida",
|
|
86
|
+
"This key does not match any account.": "Esta clave no coincide con ninguna cuenta.",
|
|
87
|
+
"This key is already used by another user.": "Esta clave ya está siendo usada por otro usuario.",
|
|
88
|
+
"Unable to retrieve the active tab info.": "No se puede recuperar la información de la pestaña activa.",
|
|
89
|
+
"Updating group": "Actualizando grupo",
|
|
90
|
+
"Updating group ...": "Actualizando grupo ...",
|
|
91
|
+
"Updating password": "Actualizando contraseña",
|
|
92
|
+
"Updating resource": "Actualizando recurso",
|
|
93
|
+
"Updating users' key...": "Actualizando la clave de usuarios..."
|
|
94
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Adding tag...": "Ajout d'une étiquette...",
|
|
3
|
+
"An ECC key should be based on a supported curve.": "Une clé ECC doit être basée sur une courbe supportée.",
|
|
4
|
+
"An internal error occurred. The server response could not be parsed. Please contact your administrator.": "Une erreur s'est produite. La réponse du serveur n'a pas pu être analysée. Merci de contacter votre administrateur.",
|
|
5
|
+
"An RSA key should have a length of {{size}} bits minimum.": "Une clé RSA doit avoir une longueur minimale de {{size}} bits.",
|
|
6
|
+
"Autofill failed. Could not find the active tab.": "La saisie automatique a échoué. Impossible de trouver l'onglet actif.",
|
|
7
|
+
"Calculate permissions": "Calcul des permissions",
|
|
8
|
+
"Calculating changes ...": "Calcul des changements...",
|
|
9
|
+
"Calculating changes for {{name}}": "Calcul des changements pour {{name}}",
|
|
10
|
+
"Calculating changes...": "Calcul des changements...",
|
|
11
|
+
"Could not move, expecting a folder to be provided.": "Impossible de déplacer, un dossier doit être fourni.",
|
|
12
|
+
"Could not move, expecting at least a resource to be provided.": "Impossible de déplacer, au moins une ressource doit être fournie.",
|
|
13
|
+
"Could not verify the server key.": "Impossible de vérifier la clé du serveur.",
|
|
14
|
+
"Creating folder...": "Création du dossier...",
|
|
15
|
+
"Creating password": "Création du mot de passe",
|
|
16
|
+
"Decrypting ...": "Déchiffrement ...",
|
|
17
|
+
"Decrypting {{counter}}/{{total}}": "Déchiffrement {{counter}}/{{total}}",
|
|
18
|
+
"Done": "Terminé",
|
|
19
|
+
"Done!": "Terminé!",
|
|
20
|
+
"Encrypting": "Chiffrement",
|
|
21
|
+
"Encrypting {{counter}}/{{total}}": "Chiffrement {{counter}}/{{total}}",
|
|
22
|
+
"Encrypting secret": "Chiffrement du secret",
|
|
23
|
+
"Expiry date will be updated on {{count}} resource._one": "Expiry date will be updated on {{count}} resource.",
|
|
24
|
+
"Expiry date will be updated on {{count}} resource._other": "Expiry date will be updated on {{count}} resources.",
|
|
25
|
+
"Exporting ...": "Exportation ...",
|
|
26
|
+
"Fetching parent permissions": "Récupération des permissions parentes",
|
|
27
|
+
"Folder {{name}} can not be moved.": "Le dossier {{name}} ne peut pas être déplacé.",
|
|
28
|
+
"Folder {{name}} is already in folder {{destination}}.": "Le dossier {{name}} est déjà dans le dossier {{destination}}.",
|
|
29
|
+
"Generate file": "Génération du fichier en cours",
|
|
30
|
+
"Importing ...": "Import ...",
|
|
31
|
+
"Importing folders {{importedCount}}/{{total}}": "Import des dossiers {{importedCount}}/{{total}}",
|
|
32
|
+
"Importing passwords {{importedCount}}/{{total}}": "Import des mots de passe {{importedCount}}/{{total}}",
|
|
33
|
+
"Inactive worker on the page.": "Tâche inactive sur la page.",
|
|
34
|
+
"Initialize": "Initialisation",
|
|
35
|
+
"Initializing": "Initialisation en cours",
|
|
36
|
+
"Initializing ...": "Initialisation en cours ...",
|
|
37
|
+
"Mark as expired ...": "Mark as expired ...",
|
|
38
|
+
"MFA authentication is required.": "L'authentification MFA est requise.",
|
|
39
|
+
"Moving {{name}}": "Déplace {{name}}",
|
|
40
|
+
"Moving {{total}} resources": "Déplacement de {{total}} ressources",
|
|
41
|
+
"Moving folder": "Déplacer le dossier",
|
|
42
|
+
"Moving one resource": "Déplace une ressource",
|
|
43
|
+
"Preparing...": "Préparation en cours...",
|
|
44
|
+
"Private key not found.": "La clé privée est introuvable.",
|
|
45
|
+
"Public key can't be found.": "Clé publique introuvable.",
|
|
46
|
+
"Rekeying users' key": "Mise à jour de la clé de l'utilisateur",
|
|
47
|
+
"Saving permissions...": "Enregistrement des permissions...",
|
|
48
|
+
"Saving resource": "Enregistrement de la ressource",
|
|
49
|
+
"Server internal error. Check with your administrator.": "Erreur interne du serveur. Contactez votre administrateur.",
|
|
50
|
+
"Share {{count}} password_one": "Partager {{count}} mot de passe",
|
|
51
|
+
"Share {{count}} password_other": "Partager {{count}} mot de passes",
|
|
52
|
+
"Sharing folder {{name}}": "Partage du dossier {{name}}",
|
|
53
|
+
"Start sharing": "Commencer le partage",
|
|
54
|
+
"Synchronizing keyring": "Synchronisation du porte-clés",
|
|
55
|
+
"Synchronizing keys": "Synchronisation des clés en cours",
|
|
56
|
+
"Tagging passwords {{taggedCount}}/{{total}}": "Étiquetage des mots de passe {{taggedCount}}/{{total}}",
|
|
57
|
+
"The external service is unavailable": "Le service externe est indisponible",
|
|
58
|
+
"The external service raised an error": "Le service externe a généré une erreur",
|
|
59
|
+
"The folder cannot be moved inside itself.": "Le dossier ne peut pas être déplacé à l'intérieur de lui-même.",
|
|
60
|
+
"The folder cannot be shared. Insufficient rights.": "Le dossier ne peut pas être partagé. Droits insuffisants.",
|
|
61
|
+
"The key should be a valid openpgp armored key string.": "La clé doit être une chaîne de caractères valides OpenPGP blindée.",
|
|
62
|
+
"The key should be a valid openpgp key.": "La clé doit être une clé OpenPGP valide.",
|
|
63
|
+
"The key should be a valid openpgp private key.": "La clé doit être une clé privée OpenPGP valide.",
|
|
64
|
+
"The key should be a valid openpgp public key.": "La clé doit être une clé publique OpenPGP valide.",
|
|
65
|
+
"The keys should be an array of valid decrypted openpgp private keys.": "Les clés doivent être un tableau de clés privées OpenPGP déchiffrées valides.",
|
|
66
|
+
"The keys should be an array of valid encrypted openpgp private keys.": "Les clés doivent être un tableau de clés privées OpenPGP chiffrées valides.",
|
|
67
|
+
"The keys should be an array of valid openpgp armored key strings.": "Les clés doivent être un tableau de chaînes de clés blindées OpenPGP valides.",
|
|
68
|
+
"The keys should be an array of valid openpgp private keys.": "Les clés doivent être un tableau de clés privées OpenPGP valides.",
|
|
69
|
+
"The keys should be an array of valid openpgp public keys.": "Les clés doivent être un tableau de clés publiques OpenPGP valides.",
|
|
70
|
+
"The keys should be an array.": "Les clés doivent être un tableau.",
|
|
71
|
+
"The message should be a valid openpgp clear text message.": "The message should be a valid openpgp clear text message.",
|
|
72
|
+
"The message should be a valid openpgp message.": "Le message doit être un message OpenPGP valide.",
|
|
73
|
+
"The message should be of type string.": "Le message doit être de type string.",
|
|
74
|
+
"The private key should be a valid openpgp key.": "La clé privée doit être une clé OpenPGP valide.",
|
|
75
|
+
"The private key should be decrypted.": "La clé privée doit être déchiffrée.",
|
|
76
|
+
"The private key should be encrypted.": "La clé privée doit être chiffrée.",
|
|
77
|
+
"The private key should not be expired.": "La clé privée ne doit pas être expirée.",
|
|
78
|
+
"The private key should not be revoked.": "La clé privée ne doit pas être révoquée.",
|
|
79
|
+
"The private key should not have an expiry date.": "La clé privée ne doit pas avoir une date d'expiration.",
|
|
80
|
+
"The private key should use a supported algorithm: RSA, ECDSA OR EDDSA.": "La clé privée doit utiliser un algorithme supporté : RSA, ECDSA ou EDDSA.",
|
|
81
|
+
"The server key cannot be parsed.": "La clé du serveur ne peut pas être analysée.",
|
|
82
|
+
"The server key has changed.": "La clé du serveur a été modifiée.",
|
|
83
|
+
"The server key is expired.": "La clé du serveur est expirée.",
|
|
84
|
+
"The service is unavailable": "Le service est indisponible",
|
|
85
|
+
"This is not a valid passphrase": "Ce n'est pas une phrase de passe valide",
|
|
86
|
+
"This key does not match any account.": "Cette clé ne correspond à aucun compte.",
|
|
87
|
+
"This key is already used by another user.": "Cette clé est déjà utilisée par un autre utilisateur.",
|
|
88
|
+
"Unable to retrieve the active tab info.": "Impossible de récupérer les informations de l'onglet actif.",
|
|
89
|
+
"Updating group": "Mise à jour du groupe",
|
|
90
|
+
"Updating group ...": "Mise à jour du groupe ...",
|
|
91
|
+
"Updating password": "Mise à jour du mot de passe",
|
|
92
|
+
"Updating resource": "Mise à jour de la ressource",
|
|
93
|
+
"Updating users' key...": "Mise à jour de la clé d'utilisateurs..."
|
|
94
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Adding tag...": "Aggiunta tag...",
|
|
3
|
+
"An ECC key should be based on a supported curve.": "Una chiave ECC dovrebbe essere basata su una curva supportata.",
|
|
4
|
+
"An internal error occurred. The server response could not be parsed. Please contact your administrator.": "Si è verificato un errore interno. Impossibile analizzare la risposta del server. Si prega di contattare l'amministratore.",
|
|
5
|
+
"An RSA key should have a length of {{size}} bits minimum.": "Una chiave RSA dovrebbe avere una lunghezza minima di {{size}} bit.",
|
|
6
|
+
"Autofill failed. Could not find the active tab.": "Compilazione automatica non riuscita. Impossibile trovare la scheda attiva.",
|
|
7
|
+
"Calculate permissions": "Calcolo dei permessi",
|
|
8
|
+
"Calculating changes ...": "Calcolo delle modifiche...",
|
|
9
|
+
"Calculating changes for {{name}}": "Calcolo delle modifiche per {{name}}",
|
|
10
|
+
"Calculating changes...": "Calcolo delle modifiche...",
|
|
11
|
+
"Could not move, expecting a folder to be provided.": "Impossibile spostare, è necessario che venga fornita una cartella.",
|
|
12
|
+
"Could not move, expecting at least a resource to be provided.": "Impossibile spostare, è necessario che venga fornita almeno una risorsa.",
|
|
13
|
+
"Could not verify the server key.": "Impossibile verificare la chiave del server.",
|
|
14
|
+
"Creating folder...": "Creazione cartella...",
|
|
15
|
+
"Creating password": "Creazione password",
|
|
16
|
+
"Decrypting ...": "Decriptaggio...",
|
|
17
|
+
"Decrypting {{counter}}/{{total}}": "Decriptazione {{counter}}/{{total}}",
|
|
18
|
+
"Done": "Completato",
|
|
19
|
+
"Done!": "Completato!",
|
|
20
|
+
"Encrypting": "Criptazione",
|
|
21
|
+
"Encrypting {{counter}}/{{total}}": "Criptazione {{counter}}/{{total}}",
|
|
22
|
+
"Encrypting secret": "Criptazione del segreto",
|
|
23
|
+
"Expiry date will be updated on {{count}} resource._one": "Expiry date will be updated on {{count}} resource.",
|
|
24
|
+
"Expiry date will be updated on {{count}} resource._other": "Expiry date will be updated on {{count}} resources.",
|
|
25
|
+
"Exporting ...": "Esportazione...",
|
|
26
|
+
"Fetching parent permissions": "Recupero dei permessi genitore",
|
|
27
|
+
"Folder {{name}} can not be moved.": "La cartella {{name}} non può essere spostata.",
|
|
28
|
+
"Folder {{name}} is already in folder {{destination}}.": "La cartella {{name}} è già presente nella cartella di destinazione {{destination}}.",
|
|
29
|
+
"Generate file": "Genera il file",
|
|
30
|
+
"Importing ...": "Importazione...",
|
|
31
|
+
"Importing folders {{importedCount}}/{{total}}": "Importazione delle cartelle {{importedCount}}/{{total}}",
|
|
32
|
+
"Importing passwords {{importedCount}}/{{total}}": "Importazione delle password {{importedCount}}/{{total}}",
|
|
33
|
+
"Inactive worker on the page.": "Operatore inattivo sulla pagina.",
|
|
34
|
+
"Initialize": "Inizializza",
|
|
35
|
+
"Initializing": "Inizializzazione",
|
|
36
|
+
"Initializing ...": "Inizializzazione...",
|
|
37
|
+
"Mark as expired ...": "Mark as expired ...",
|
|
38
|
+
"MFA authentication is required.": "È richiesta l'autenticazione MFA.",
|
|
39
|
+
"Moving {{name}}": "Spostamento di {{name}}",
|
|
40
|
+
"Moving {{total}} resources": "Spostamento di {{total}} risorse",
|
|
41
|
+
"Moving folder": "Spostamento della cartella",
|
|
42
|
+
"Moving one resource": "Spostamento di una risorsa",
|
|
43
|
+
"Preparing...": "In preparazione...",
|
|
44
|
+
"Private key not found.": "Chiave privata non trovata.",
|
|
45
|
+
"Public key can't be found.": "Impossibile trovare la chiave pubblica.",
|
|
46
|
+
"Rekeying users' key": "Rekey della chiave utente",
|
|
47
|
+
"Saving permissions...": "Salvataggio delle autorizzazioni...",
|
|
48
|
+
"Saving resource": "Salvataggio risorse",
|
|
49
|
+
"Server internal error. Check with your administrator.": "Errore interno del server. Controllare con l'amministratore.",
|
|
50
|
+
"Share {{count}} password_one": "Condividi {{count}} password",
|
|
51
|
+
"Share {{count}} password_other": "Condividi {{count}} password",
|
|
52
|
+
"Sharing folder {{name}}": "Condivisione della cartella {{name}}",
|
|
53
|
+
"Start sharing": "Avvia la condivisione",
|
|
54
|
+
"Synchronizing keyring": "Sincronizzazione portachiavi",
|
|
55
|
+
"Synchronizing keys": "Sincronizzazione delle chiavi",
|
|
56
|
+
"Tagging passwords {{taggedCount}}/{{total}}": "Passwords taggate: {{taggedCount}}/{{total}}",
|
|
57
|
+
"The external service is unavailable": "Il servizio esterno non è disponibile",
|
|
58
|
+
"The external service raised an error": "Il servizio esterno ha segnalato un errore",
|
|
59
|
+
"The folder cannot be moved inside itself.": "La cartella non può essere spostata dentro se stessa.",
|
|
60
|
+
"The folder cannot be shared. Insufficient rights.": "La cartella non può essere condivisa. Diritti insufficienti.",
|
|
61
|
+
"The key should be a valid openpgp armored key string.": "La chiave dovrebbe essere una stringa di chiave blindata openpgp valida.",
|
|
62
|
+
"The key should be a valid openpgp key.": "La chiave dovrebbe essere una chiave openpgp valida.",
|
|
63
|
+
"The key should be a valid openpgp private key.": "La chiave dovrebbe essere una chiave openpgp privata valida.",
|
|
64
|
+
"The key should be a valid openpgp public key.": "La chiave dovrebbe essere chiave openpgp pubblica valida.",
|
|
65
|
+
"The keys should be an array of valid decrypted openpgp private keys.": "Le chiavi devono essere un vettore di chiavi openpgp private decriptate valide.",
|
|
66
|
+
"The keys should be an array of valid encrypted openpgp private keys.": "Le chiavi devono essere un vettore di chiavi openpgp private criptate valide.",
|
|
67
|
+
"The keys should be an array of valid openpgp armored key strings.": "Le chiavi dovrebbero essere un vettore di stringhe di chiavi blindate opengpg valide.",
|
|
68
|
+
"The keys should be an array of valid openpgp private keys.": "Le chiavi devono essere un vettore di chiavi private openpgp valide.",
|
|
69
|
+
"The keys should be an array of valid openpgp public keys.": "Le chiavi devono essere un vettore di chiavi pubbliche openpgp valide.",
|
|
70
|
+
"The keys should be an array.": "Le chiavi dovrebbero essere un vettore.",
|
|
71
|
+
"The message should be a valid openpgp clear text message.": "The message should be a valid openpgp clear text message.",
|
|
72
|
+
"The message should be a valid openpgp message.": "Il messaggio dovrebbe essere un messaggio openpgp valido.",
|
|
73
|
+
"The message should be of type string.": "Il messaggio dovrebbe essere di tipo stringa.",
|
|
74
|
+
"The private key should be a valid openpgp key.": "La chiave privata dovrebbe essere una chiave openpgp valida.",
|
|
75
|
+
"The private key should be decrypted.": "La chiave privata dovrebbe essere decifrata.",
|
|
76
|
+
"The private key should be encrypted.": "La chiave privata dovrebbe essere crittografata.",
|
|
77
|
+
"The private key should not be expired.": "La chiave privata non dovrebbe essere scaduta.",
|
|
78
|
+
"The private key should not be revoked.": "La chiave privata non dovrebbe essere revocata.",
|
|
79
|
+
"The private key should not have an expiry date.": "La chiave privata non dovrebbe avere una data di scadenza.",
|
|
80
|
+
"The private key should use a supported algorithm: RSA, ECDSA OR EDDSA.": "La chiave privata dovrebbe utilizzare un algoritmo supportato: RSA, ECDSA O EDDSA.",
|
|
81
|
+
"The server key cannot be parsed.": "La chiave server non può essere analizzata.",
|
|
82
|
+
"The server key has changed.": "La chiave del server è cambiata.",
|
|
83
|
+
"The server key is expired.": "La chiave del server è scaduta.",
|
|
84
|
+
"The service is unavailable": "Il servizio non è disponibile",
|
|
85
|
+
"This is not a valid passphrase": "Questa non è una frase segreta valida",
|
|
86
|
+
"This key does not match any account.": "Questa chiave non corrisponde a nessun account.",
|
|
87
|
+
"This key is already used by another user.": "Questa chiave è già utilizzata da un altro utente.",
|
|
88
|
+
"Unable to retrieve the active tab info.": "Impossibile recuperare le informazioni sulla scheda attiva.",
|
|
89
|
+
"Updating group": "Aggiornamento del gruppo",
|
|
90
|
+
"Updating group ...": "Aggiornamento del gruppo...",
|
|
91
|
+
"Updating password": "Aggiornamento password",
|
|
92
|
+
"Updating resource": "Aggiornamento risorse",
|
|
93
|
+
"Updating users' key...": "Aggiornamento della chiave degli utenti..."
|
|
94
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Adding tag...": "タグを追加中...",
|
|
3
|
+
"An ECC key should be based on a supported curve.": "An ECC key should be based on a supported curve.",
|
|
4
|
+
"An internal error occurred. The server response could not be parsed. Please contact your administrator.": "内部エラーが発生しました。サーバーの応答を解析できませんでした。管理者に問い合わせてください。",
|
|
5
|
+
"An RSA key should have a length of {{size}} bits minimum.": "An RSA key should have a length of {{size}} bits minimum.",
|
|
6
|
+
"Autofill failed. Could not find the active tab.": "自動入力に失敗しました。アクティブなタブが見つかりませんでした。",
|
|
7
|
+
"Calculate permissions": "パーミッションの算出",
|
|
8
|
+
"Calculating changes ...": "変更を計算中...",
|
|
9
|
+
"Calculating changes for {{name}}": "{{name}} の変更を計算中",
|
|
10
|
+
"Calculating changes...": "変更を計算中...",
|
|
11
|
+
"Could not move, expecting a folder to be provided.": "移動できませんでした。移動先のフォルダを指定してください。",
|
|
12
|
+
"Could not move, expecting at least a resource to be provided.": "移動できませんでした。リソースを割り当ててください。",
|
|
13
|
+
"Could not verify the server key.": "サーバーキーを検証できませんでした。",
|
|
14
|
+
"Creating folder...": "フォルダを作成中...",
|
|
15
|
+
"Creating password": "パスワードを作成中",
|
|
16
|
+
"Decrypting ...": "復号化中...",
|
|
17
|
+
"Decrypting {{counter}}/{{total}}": "{{counter}}/{{total}} を復号中",
|
|
18
|
+
"Done": "完了",
|
|
19
|
+
"Done!": "完了!",
|
|
20
|
+
"Encrypting": "暗号化",
|
|
21
|
+
"Encrypting {{counter}}/{{total}}": "{{counter}}/{{total}} を暗号化中",
|
|
22
|
+
"Encrypting secret": "秘密の暗号化",
|
|
23
|
+
"Expiry date will be updated on {{count}} resource._one": "Expiry date will be updated on {{count}} resource.",
|
|
24
|
+
"Expiry date will be updated on {{count}} resource._other": "Expiry date will be updated on {{count}} resources.",
|
|
25
|
+
"Exporting ...": "エクスポート中...",
|
|
26
|
+
"Fetching parent permissions": "親パーミッションの取得",
|
|
27
|
+
"Folder {{name}} can not be moved.": "フォルダ {{name}} は移動できません。",
|
|
28
|
+
"Folder {{name}} is already in folder {{destination}}.": "フォルダ {{name}} は既にフォルダ {{destination}} にあります。",
|
|
29
|
+
"Generate file": "ファイルを生成",
|
|
30
|
+
"Importing ...": "インポート中...",
|
|
31
|
+
"Importing folders {{importedCount}}/{{total}}": "{{importedCount}}/{{total}} フォルダをインポート中",
|
|
32
|
+
"Importing passwords {{importedCount}}/{{total}}": "{{importedCount}}/{{total}} パスワードをインポート中",
|
|
33
|
+
"Inactive worker on the page.": "ページ上の非アクティブなワーカー。",
|
|
34
|
+
"Initialize": "初期化",
|
|
35
|
+
"Initializing": "初期化",
|
|
36
|
+
"Initializing ...": "初期化中 ...",
|
|
37
|
+
"Mark as expired ...": "Mark as expired ...",
|
|
38
|
+
"MFA authentication is required.": "MFA認証が必要です。",
|
|
39
|
+
"Moving {{name}}": "{{name}} の移動",
|
|
40
|
+
"Moving {{total}} resources": "{{total}}個のリソースを移動",
|
|
41
|
+
"Moving folder": "フォルダの移動",
|
|
42
|
+
"Moving one resource": "一つのリソースを移動中",
|
|
43
|
+
"Preparing...": "準備中...",
|
|
44
|
+
"Private key not found.": "秘密鍵が見つかりません。",
|
|
45
|
+
"Public key can't be found.": "Public key can't be found.",
|
|
46
|
+
"Rekeying users' key": "Rekeying users' key",
|
|
47
|
+
"Saving permissions...": "パーミッションを保存中...",
|
|
48
|
+
"Saving resource": "リソースの保存",
|
|
49
|
+
"Server internal error. Check with your administrator.": "サーバー内部エラーです。管理者に確認してください。",
|
|
50
|
+
"Share {{count}} password_one": "Share {{count}} password",
|
|
51
|
+
"Share {{count}} password_other": "Share {{count}} passwords",
|
|
52
|
+
"Sharing folder {{name}}": "フォルダ {{name}} の共有",
|
|
53
|
+
"Start sharing": "共有を開始",
|
|
54
|
+
"Synchronizing keyring": "キーリングの同期",
|
|
55
|
+
"Synchronizing keys": "キーの同期",
|
|
56
|
+
"Tagging passwords {{taggedCount}}/{{total}}": "{{taggedCount}}/{{total}} 個のパスワードをタグ付け中",
|
|
57
|
+
"The external service is unavailable": "The external service is unavailable",
|
|
58
|
+
"The external service raised an error": "The external service raised an error",
|
|
59
|
+
"The folder cannot be moved inside itself.": "同一フォルダには移動できません。",
|
|
60
|
+
"The folder cannot be shared. Insufficient rights.": "フォルダを共有できません。権限が足りません。",
|
|
61
|
+
"The key should be a valid openpgp armored key string.": "The key should be a valid openpgp armored key string.",
|
|
62
|
+
"The key should be a valid openpgp key.": "The key should be a valid openpgp key.",
|
|
63
|
+
"The key should be a valid openpgp private key.": "The key should be a valid openpgp private key.",
|
|
64
|
+
"The key should be a valid openpgp public key.": "The key should be a valid openpgp public key.",
|
|
65
|
+
"The keys should be an array of valid decrypted openpgp private keys.": "The keys should be an array of valid decrypted openpgp private keys.",
|
|
66
|
+
"The keys should be an array of valid encrypted openpgp private keys.": "The keys should be an array of valid encrypted openpgp private keys.",
|
|
67
|
+
"The keys should be an array of valid openpgp armored key strings.": "The keys should be an array of valid openpgp armored key strings.",
|
|
68
|
+
"The keys should be an array of valid openpgp private keys.": "The keys should be an array of valid openpgp private keys.",
|
|
69
|
+
"The keys should be an array of valid openpgp public keys.": "The keys should be an array of valid openpgp public keys.",
|
|
70
|
+
"The keys should be an array.": "The keys should be an array.",
|
|
71
|
+
"The message should be a valid openpgp clear text message.": "The message should be a valid openpgp clear text message.",
|
|
72
|
+
"The message should be a valid openpgp message.": "The message should be a valid openpgp message.",
|
|
73
|
+
"The message should be of type string.": "The message should be of type string.",
|
|
74
|
+
"The private key should be a valid openpgp key.": "The private key should be a valid openpgp key.",
|
|
75
|
+
"The private key should be decrypted.": "The private key should be decrypted.",
|
|
76
|
+
"The private key should be encrypted.": "The private key should be encrypted.",
|
|
77
|
+
"The private key should not be expired.": "The private key should not be expired.",
|
|
78
|
+
"The private key should not be revoked.": "The private key should not be revoked.",
|
|
79
|
+
"The private key should not have an expiry date.": "The private key should not have an expiry date.",
|
|
80
|
+
"The private key should use a supported algorithm: RSA, ECDSA OR EDDSA.": "The private key should use a supported algorithm: RSA, ECDSA OR EDDSA.",
|
|
81
|
+
"The server key cannot be parsed.": "サーバーキーは解析できません。",
|
|
82
|
+
"The server key has changed.": "サーバーキーが変更されました。",
|
|
83
|
+
"The server key is expired.": "サーバーキーの有効期限が切れています。",
|
|
84
|
+
"The service is unavailable": "サービスはご利用いただけません",
|
|
85
|
+
"This is not a valid passphrase": "これは有効なパスフレーズではありません",
|
|
86
|
+
"This key does not match any account.": "この鍵はどのアカウントとも一致しません。",
|
|
87
|
+
"This key is already used by another user.": "この鍵はすでに他のユーザーが使用しています。",
|
|
88
|
+
"Unable to retrieve the active tab info.": "アクティブなタブ情報を取得できません。",
|
|
89
|
+
"Updating group": "グループの更新",
|
|
90
|
+
"Updating group ...": "グループを更新中...",
|
|
91
|
+
"Updating password": "パスワードを更新中",
|
|
92
|
+
"Updating resource": "リソースの更新",
|
|
93
|
+
"Updating users' key...": "Updating users' key..."
|
|
94
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Adding tag...": "태그 추가 중...",
|
|
3
|
+
"An ECC key should be based on a supported curve.": "타원곡선암호(ECC) 키는 지원하는 곡선을 기반으로 되어야 합니다.",
|
|
4
|
+
"An internal error occurred. The server response could not be parsed. Please contact your administrator.": "내부 오류가 발생하였습니다. 해석되지 않아 서버가 응답할 수 없습니다. 관리자에게 문의하세요.",
|
|
5
|
+
"An RSA key should have a length of {{size}} bits minimum.": "RSA 키는 최소 {{size}} 비트의 길이가 되어야 합니다.",
|
|
6
|
+
"Autofill failed. Could not find the active tab.": "자동 채우기가 실패했습니다. 활성화된 탭을 찾을 수 없습니다.",
|
|
7
|
+
"Calculate permissions": "권한 계산",
|
|
8
|
+
"Calculating changes ...": "변경사항 계산 중...",
|
|
9
|
+
"Calculating changes for {{name}}": "{{name}} 변경 사항 계산 중",
|
|
10
|
+
"Calculating changes...": "변경사항 계산 중...",
|
|
11
|
+
"Could not move, expecting a folder to be provided.": "폴더가 있어야 하므로 이동할 수 없습니다.",
|
|
12
|
+
"Could not move, expecting at least a resource to be provided.": "하나 이상의 자원이 있지 않아 이동할 수 없습니다.",
|
|
13
|
+
"Could not verify the server key.": "서버키를 확인할 수 없습니다.",
|
|
14
|
+
"Creating folder...": "폴더 생성 중...",
|
|
15
|
+
"Creating password": "암호 생성 중",
|
|
16
|
+
"Decrypting ...": "복호화 중...",
|
|
17
|
+
"Decrypting {{counter}}/{{total}}": "복호화 중 {{counter}}/{{total}}",
|
|
18
|
+
"Done": "완료",
|
|
19
|
+
"Done!": "완료!",
|
|
20
|
+
"Encrypting": "암호화 중",
|
|
21
|
+
"Encrypting {{counter}}/{{total}}": "암호화 중 {{counter}}/{{total}}",
|
|
22
|
+
"Encrypting secret": "비밀번호 암호화 중",
|
|
23
|
+
"Expiry date will be updated on {{count}} resource._one": "만료일이 {{count}} 개의 리소스에 업데이트됩니다.",
|
|
24
|
+
"Expiry date will be updated on {{count}} resource._other": "만료일이 {{count}} 개의 리소스에 업데이트됩니다.",
|
|
25
|
+
"Exporting ...": "내보기 중...",
|
|
26
|
+
"Fetching parent permissions": "상위 권한 가져오는 중",
|
|
27
|
+
"Folder {{name}} can not be moved.": "{{name}} 폴더를 이동할 수 없습니다.",
|
|
28
|
+
"Folder {{name}} is already in folder {{destination}}.": "{{name}} 폴더가 {{destination}} 폴더에 존재합니다.",
|
|
29
|
+
"Generate file": "파일생성",
|
|
30
|
+
"Importing ...": "가져오기 중...",
|
|
31
|
+
"Importing folders {{importedCount}}/{{total}}": "폴더 가져오기 중 {{importedCount}}/{{total}}",
|
|
32
|
+
"Importing passwords {{importedCount}}/{{total}}": "암호 내보내기 중 {{importedCount}}/{{total}}",
|
|
33
|
+
"Inactive worker on the page.": "페이지에서 비활성화 된 작업자",
|
|
34
|
+
"Initialize": "초기화",
|
|
35
|
+
"Initializing": "초기화 중",
|
|
36
|
+
"Initializing ...": "초기화 중...",
|
|
37
|
+
"Mark as expired ...": "만료로 표시 ...",
|
|
38
|
+
"MFA authentication is required.": "다단계인증이 필요합니다.",
|
|
39
|
+
"Moving {{name}}": "이동 중 {{name}}",
|
|
40
|
+
"Moving {{total}} resources": "리소스 {{total}} 이동 중",
|
|
41
|
+
"Moving folder": "폴더 이동 중",
|
|
42
|
+
"Moving one resource": "리소스 이동 중",
|
|
43
|
+
"Preparing...": "준비 중...",
|
|
44
|
+
"Private key not found.": "개인키가 없습니다.",
|
|
45
|
+
"Public key can't be found.": "공개키가 없습니다.",
|
|
46
|
+
"Rekeying users' key": "사용자 키 재생성 중",
|
|
47
|
+
"Saving permissions...": "권한 저장 중...",
|
|
48
|
+
"Saving resource": "리소스 저장 중",
|
|
49
|
+
"Server internal error. Check with your administrator.": "서버 내부 에러. 관리자와 체크하세요.",
|
|
50
|
+
"Share {{count}} password_one": "{{count}} 암호가 공유됨.",
|
|
51
|
+
"Share {{count}} password_other": "{{count}} 암호가 공유됨.",
|
|
52
|
+
"Sharing folder {{name}}": "{{name}} 폴더 공유 중",
|
|
53
|
+
"Start sharing": "공유 시작 중",
|
|
54
|
+
"Synchronizing keyring": "키링 동기화 중",
|
|
55
|
+
"Synchronizing keys": "키 동기화 중",
|
|
56
|
+
"Tagging passwords {{taggedCount}}/{{total}}": "비밀번호 태깅 중 {{taggedCount}}/{{total}}",
|
|
57
|
+
"The external service is unavailable": "외부 서비스를 사용할 수 없습니다.",
|
|
58
|
+
"The external service raised an error": "외부 서비스에서 오류가 발생했습니다",
|
|
59
|
+
"The folder cannot be moved inside itself.": "폴더는 자신의 폴더로 이동할 수 없습니다.",
|
|
60
|
+
"The folder cannot be shared. Insufficient rights.": "이 폴더는 공유할수 없습니다. 권한이 부족합니다.",
|
|
61
|
+
"The key should be a valid openpgp armored key string.": "키는 유효한 openpgp 무장된 키 문자열이어야 합니다.",
|
|
62
|
+
"The key should be a valid openpgp key.": "키는 유효한 openpgp 키여야 합니다.",
|
|
63
|
+
"The key should be a valid openpgp private key.": "키는 유효한 openpgp 개인키여야 합니다.",
|
|
64
|
+
"The key should be a valid openpgp public key.": "키는 유효한 openpgp 공개키여야 합니다.",
|
|
65
|
+
"The keys should be an array of valid decrypted openpgp private keys.": "키는 유효한 복호화된 openpgp 개인키 배열이어야 합니다.",
|
|
66
|
+
"The keys should be an array of valid encrypted openpgp private keys.": "키는 유효한 암호화된 openpgp 개인키 배열이어야 합니다.",
|
|
67
|
+
"The keys should be an array of valid openpgp armored key strings.": "키는 유효한 암호화된 openpgp 무장키 배열이어야 합니다.",
|
|
68
|
+
"The keys should be an array of valid openpgp private keys.": "키는 유효한 openpgp 개인키 배열이어야 합니다.",
|
|
69
|
+
"The keys should be an array of valid openpgp public keys.": "키는 유효한 openpgp 공개키 배열이어야 합니다.",
|
|
70
|
+
"The keys should be an array.": "키는 배열이어야 합니다.",
|
|
71
|
+
"The message should be a valid openpgp clear text message.": "메시지는 유효한 openpgp 일반 텍스트 메시지여야 합니다.",
|
|
72
|
+
"The message should be a valid openpgp message.": "메시지는 유효한 openpgp 메시지여야 합니다.",
|
|
73
|
+
"The message should be of type string.": "메시지는 문자열 형식이어야 합니다",
|
|
74
|
+
"The private key should be a valid openpgp key.": "개인키는 유효한 openpgp 키여야 합니다.",
|
|
75
|
+
"The private key should be decrypted.": "개인키는 복호화 되어야합니다.",
|
|
76
|
+
"The private key should be encrypted.": "개인키는 암호화 되어야합니다.",
|
|
77
|
+
"The private key should not be expired.": "개인키에는 만료되지 않아야 합니다.",
|
|
78
|
+
"The private key should not be revoked.": "개인키는 해지하면 안 됩니다.",
|
|
79
|
+
"The private key should not have an expiry date.": "개인키에는 만료 날짜가 없어야 합니다.",
|
|
80
|
+
"The private key should use a supported algorithm: RSA, ECDSA OR EDDSA.": "개인키는 지원되는 알고리즘을 사용해야 합니다: RSA, ECDSA 또는 EDDSA",
|
|
81
|
+
"The server key cannot be parsed.": "서버키는 구문분석할 수 없습니다.",
|
|
82
|
+
"The server key has changed.": "서버키가 변경되었습니다.",
|
|
83
|
+
"The server key is expired.": "서버키가 만료되었습니다.",
|
|
84
|
+
"The service is unavailable": "서버키를 사용할 수 없습니다.",
|
|
85
|
+
"This is not a valid passphrase": "유효하지 않은 비빌번호입니다.",
|
|
86
|
+
"This key does not match any account.": "키가 맞는 계정이 없습니다.",
|
|
87
|
+
"This key is already used by another user.": "키를 다른 사용자가 이미 사용 중입니다.",
|
|
88
|
+
"Unable to retrieve the active tab info.": "활성화된 탭에서 정보를 가져올 수 없습니다.",
|
|
89
|
+
"Updating group": "그룹 업데이트 중",
|
|
90
|
+
"Updating group ...": "그룹 업데이트 중 ...",
|
|
91
|
+
"Updating password": "암호 업데이트중",
|
|
92
|
+
"Updating resource": "리소스 업데이트 중",
|
|
93
|
+
"Updating users' key...": "사용자 키를 업데이트하는 중..."
|
|
94
|
+
}
|