Resolve review comments

This commit is contained in:
Hinton 2020-12-16 21:44:12 +01:00
parent 95d475a9d3
commit 72c6f52ae2
2 changed files with 4 additions and 4 deletions

View File

@ -1415,19 +1415,19 @@
"message": "Desktop application invalidated the secure communication channel. Please retry this operation" "message": "Desktop application invalidated the secure communication channel. Please retry this operation"
}, },
"nativeMessagingInvalidEncryptionTitle": { "nativeMessagingInvalidEncryptionTitle": {
"message": "Desktop communication interupted" "message": "Desktop communication interrupted"
}, },
"biometricsNotEnabledTitle": { "biometricsNotEnabledTitle": {
"message": "Biometrics not enabled" "message": "Biometrics not enabled"
}, },
"biometricsNotEnabledDesc": { "biometricsNotEnabledDesc": {
"message": "Browser biometric requires desktop biometric to be enabled in the settings first." "message": "Browser biometrics requires desktop biometric to be enabled in the settings first."
}, },
"biometricsNotSupportedTitle": { "biometricsNotSupportedTitle": {
"message": "Biometrics not supported" "message": "Biometrics not supported"
}, },
"biometricsNotSupportedDesc": { "biometricsNotSupportedDesc": {
"message": "Browser biometric is not supported on this device." "message": "Browser biometrics is not supported on this device."
}, },
"personalOwnershipSubmitError": { "personalOwnershipSubmitError": {
"message": "Due to an Enterprise Policy, you are restricted from saving items to your personal vault. Change the Ownership option to an organization and choose from available Collections." "message": "Due to an Enterprise Policy, you are restricted from saving items to your personal vault. Change the Ownership option to an organization and choose from available Collections."

View File

@ -1,4 +1,5 @@
import { ConstantsService } from 'jslib/services/constants.service'; import { ConstantsService } from 'jslib/services/constants.service';
import { AppIdService } from 'jslib/abstractions/appId.service';
import { CryptoFunctionService } from 'jslib/abstractions/cryptoFunction.service'; import { CryptoFunctionService } from 'jslib/abstractions/cryptoFunction.service';
import { CryptoService } from 'jslib/abstractions/crypto.service'; import { CryptoService } from 'jslib/abstractions/crypto.service';
import { I18nService } from 'jslib/abstractions/i18n.service'; import { I18nService } from 'jslib/abstractions/i18n.service';
@ -12,7 +13,6 @@ import { SymmetricCryptoKey } from 'jslib/models/domain';
import { BrowserApi } from '../browser/browserApi'; import { BrowserApi } from '../browser/browserApi';
import RuntimeBackground from './runtime.background'; import RuntimeBackground from './runtime.background';
import { AppIdService } from 'jslib/abstractions';
const MessageValidTimeout = 10 * 1000; const MessageValidTimeout = 10 * 1000;
const EncryptionAlgorithm = 'sha1'; const EncryptionAlgorithm = 'sha1';