@mxenabled/connect-widget 0.0.15 → 0.0.17

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/dist/index.es.js CHANGED
@@ -5131,23 +5131,39 @@ function baseFindIndex$2(array, predicate, fromIndex, fromRight) {
5131
5131
  }
5132
5132
  var _baseFindIndex = baseFindIndex$2;
5133
5133
 
5134
- var reWhitespace = /\s/;
5135
- function trimmedEndIndex$1(string) {
5136
- var index = string.length;
5137
- while (index-- && reWhitespace.test(string.charAt(index))) {
5138
- }
5139
- return index;
5134
+ var _trimmedEndIndex;
5135
+ var hasRequired_trimmedEndIndex;
5136
+
5137
+ function require_trimmedEndIndex () {
5138
+ if (hasRequired_trimmedEndIndex) return _trimmedEndIndex;
5139
+ hasRequired_trimmedEndIndex = 1;
5140
+ var reWhitespace = /\s/;
5141
+ function trimmedEndIndex(string) {
5142
+ var index = string.length;
5143
+ while (index-- && reWhitespace.test(string.charAt(index))) {
5144
+ }
5145
+ return index;
5146
+ }
5147
+ _trimmedEndIndex = trimmedEndIndex;
5148
+ return _trimmedEndIndex;
5140
5149
  }
5141
- var _trimmedEndIndex = trimmedEndIndex$1;
5142
5150
 
5143
- var trimmedEndIndex = _trimmedEndIndex;
5144
- var reTrimStart = /^\s+/;
5145
- function baseTrim$1(string) {
5146
- return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
5151
+ var _baseTrim;
5152
+ var hasRequired_baseTrim;
5153
+
5154
+ function require_baseTrim () {
5155
+ if (hasRequired_baseTrim) return _baseTrim;
5156
+ hasRequired_baseTrim = 1;
5157
+ var trimmedEndIndex = require_trimmedEndIndex();
5158
+ var reTrimStart = /^\s+/;
5159
+ function baseTrim(string) {
5160
+ return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
5161
+ }
5162
+ _baseTrim = baseTrim;
5163
+ return _baseTrim;
5147
5164
  }
5148
- var _baseTrim = baseTrim$1;
5149
5165
 
5150
- var baseTrim = _baseTrim, isObject$7 = isObject_1, isSymbol$1 = isSymbol_1;
5166
+ var baseTrim = require_baseTrim(), isObject$7 = isObject_1, isSymbol$1 = isSymbol_1;
5151
5167
  var NAN = 0 / 0;
5152
5168
  var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
5153
5169
  var reIsBinary = /^0b[01]+$/i;
@@ -8613,7 +8629,7 @@ var hasRequiredTrim;
8613
8629
  function requireTrim () {
8614
8630
  if (hasRequiredTrim) return trim_1;
8615
8631
  hasRequiredTrim = 1;
8616
- var baseToString = _baseToString, baseTrim = _baseTrim, castSlice = require_castSlice(), charsEndIndex = require_charsEndIndex(), charsStartIndex = require_charsStartIndex(), stringToArray = require_stringToArray(), toString = toString_1;
8632
+ var baseToString = _baseToString, baseTrim = require_baseTrim(), castSlice = require_castSlice(), charsEndIndex = require_charsEndIndex(), charsStartIndex = require_charsStartIndex(), stringToArray = require_stringToArray(), toString = toString_1;
8617
8633
  function trim(string, chars, guard) {
8618
8634
  string = toString(string);
8619
8635
  if (string && (guard || chars === void 0)) {
@@ -36106,7 +36122,7 @@ const LABEL_LENGTH = 35;
36106
36122
  const getSelectedItemIndex = (currentSelectedItem, items) => items.findIndex((item) => {
36107
36123
  return item.value === currentSelectedItem?.value;
36108
36124
  });
36109
- const Select$3 = ({
36125
+ const Select$1 = ({
36110
36126
  ariaLabel = null,
36111
36127
  autoreset = true,
36112
36128
  className = "",
@@ -36338,7 +36354,7 @@ const getStyles$1j = (tokens, labelPosition, label, showSecondaryLabelBackground
36338
36354
  }
36339
36355
  };
36340
36356
  };
36341
- Select$3.propTypes = {
36357
+ Select$1.propTypes = {
36342
36358
  /**
36343
36359
  * When you don't pass in a visible label you need to pass an ariaLabel so it's accessible for screen-readers
36344
36360
  */
@@ -47876,7 +47892,7 @@ const styledRootConfig = {
47876
47892
  const StyledInput = styled(Input, styledRootConfig)("");
47877
47893
  const StyledOutlinedInput = styled(OutlinedInput, styledRootConfig)("");
47878
47894
  const StyledFilledInput = styled(FilledInput, styledRootConfig)("");
47879
- const Select$2 = /* @__PURE__ */ React$2.forwardRef(function Select2(inProps, ref) {
47895
+ const Select = /* @__PURE__ */ React$2.forwardRef(function Select2(inProps, ref) {
47880
47896
  const props = useDefaultProps({
47881
47897
  name: "MuiSelect",
47882
47898
  props: inProps
@@ -47972,7 +47988,7 @@ const Select$2 = /* @__PURE__ */ React$2.forwardRef(function Select2(inProps, re
47972
47988
  }, other))
47973
47989
  });
47974
47990
  });
47975
- process.env.NODE_ENV !== "production" ? Select$2.propTypes = {
47991
+ process.env.NODE_ENV !== "production" ? Select.propTypes = {
47976
47992
  // ┌────────────────────────────── Warning ──────────────────────────────┐
47977
47993
  // │ These PropTypes are generated from the TypeScript type definitions. │
47978
47994
  // │ To update them, edit the d.ts file and run `pnpm proptypes`. │
@@ -48119,7 +48135,7 @@ process.env.NODE_ENV !== "production" ? Select$2.propTypes = {
48119
48135
  */
48120
48136
  variant: PropTypes$1.oneOf(["filled", "outlined", "standard"])
48121
48137
  } : void 0;
48122
- Select$2.muiName = "Select";
48138
+ Select.muiName = "Select";
48123
48139
 
48124
48140
  function getTextFieldUtilityClass(slot) {
48125
48141
  return generateUtilityClass("MuiTextField", slot);
@@ -48256,7 +48272,7 @@ const TextField = /* @__PURE__ */ React$2.forwardRef(function TextField2(inProps
48256
48272
  id: inputLabelId
48257
48273
  }, InputLabelProps, {
48258
48274
  children: label
48259
- })), select ? /* @__PURE__ */ jsxRuntimeExports.jsx(Select$2, _extends$1({
48275
+ })), select ? /* @__PURE__ */ jsxRuntimeExports.jsx(Select, _extends$1({
48260
48276
  "aria-describedby": helperTextId,
48261
48277
  id,
48262
48278
  labelId: inputLabelId,
@@ -49746,7 +49762,7 @@ const z = "0px 0px 0px 2px rgba(82, 138, 224, 0.8)", R = "inset 0px 0px 0px 2px
49746
49762
 
49747
49763
  const ProtectedTextField = withProtection(wt);
49748
49764
  const ProtectedRadio = withProtection(Radio);
49749
- const ProtectedSelect = withProtection(Select$3);
49765
+ const ProtectedSelect = withProtection(Select$1);
49750
49766
  const ProtectedSelectionBox = withProtection(SelectionBox);
49751
49767
  withProtection(UserFeedback);
49752
49768
 
@@ -53265,14 +53281,14 @@ IconButton.propTypes = {
53265
53281
  };
53266
53282
  IconButton.displayName = "IconButton";
53267
53283
 
53268
- const Close$2 = createSvgIcon$1(({ color }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
53284
+ const Close = createSvgIcon$1(({ color }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
53269
53285
  "path",
53270
53286
  {
53271
53287
  d: "M13.79 2.21a.72.72 0 0 1 0 1.02L9.018 8l4.77 4.77a.72.72 0 1 1-1.018 1.02L8 9.018l-4.77 4.77a.72.72 0 1 1-1.02-1.018L6.982 8l-4.77-4.77A.72.72 0 0 1 3.23 2.21L8 6.982l4.77-4.77a.72.72 0 0 1 1.02 0Z",
53272
53288
  fill: color
53273
53289
  }
53274
53290
  ));
53275
- Close$2.displayName = "Close";
53291
+ Close.displayName = "Close";
53276
53292
 
53277
53293
  const InfoFilled = createSvgIcon$1(({ color }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
53278
53294
  "path",
@@ -53328,7 +53344,7 @@ function MessageBox({
53328
53344
  className: "kyper-messagebox-close",
53329
53345
  onClick: onClose,
53330
53346
  variant: "transparent-tertiary",
53331
- children: /* @__PURE__ */ jsxRuntimeExports.jsx(Close$2, {})
53347
+ children: /* @__PURE__ */ jsxRuntimeExports.jsx(Close, {})
53332
53348
  }
53333
53349
  )
53334
53350
  ]
@@ -53689,6 +53705,7 @@ const DefaultMFA = (props) => {
53689
53705
  {
53690
53706
  disabled: isSubmitting,
53691
53707
  error: true,
53708
+ fullWidth: true,
53692
53709
  helperText: errors[credential.label],
53693
53710
  inputProps: { "aria-label": credential.label },
53694
53711
  inputRef: i === 0 ? buttonRef : null,
@@ -57194,7 +57211,7 @@ const CREDENTIAL_FIELD_TYPES = {
57194
57211
 
57195
57212
  const usePasswordInputValidation = () => {
57196
57213
  const [isCapsLockOn, setIsCapsLockOn] = useState(false);
57197
- const handleKeyPress = (event) => setIsCapsLockOn(event.getModifierState("CapsLock"));
57214
+ const handleKeyPress = (event) => "getModifierState" in event && setIsCapsLockOn(event.getModifierState("CapsLock"));
57198
57215
  const handleFocus = (event) => event.target?.addEventListener("keydown", handleKeyPress);
57199
57216
  const handleBlur = (event) => {
57200
57217
  event.target?.removeEventListener("keydown", handleKeyPress);
@@ -58251,7 +58268,7 @@ const POST_MESSAGE_CONTEXT = {
58251
58268
  MANUAL_ACCOUNT_ADDED: "manualAccountAdded"
58252
58269
  };
58253
58270
 
58254
- const Connecting$2 = (props) => {
58271
+ const Connecting = (props) => {
58255
58272
  const {
58256
58273
  connectConfig,
58257
58274
  institution,
@@ -58458,7 +58475,7 @@ const getStyles$y = (tokens) => ({
58458
58475
  marginTop: tokens.Spacing.XLarge
58459
58476
  }
58460
58477
  });
58461
- Connecting$2.propTypes = {
58478
+ Connecting.propTypes = {
58462
58479
  connectConfig: PropTypes$1.object.isRequired,
58463
58480
  hasAtriumAPI: PropTypes$1.bool,
58464
58481
  institution: PropTypes$1.object.isRequired,
@@ -59574,7 +59591,7 @@ var reactConfetti_min = {exports: {}};
59574
59591
  var reactConfetti_minExports = reactConfetti_min.exports;
59575
59592
  const Confetti = /*@__PURE__*/getDefaultExportFromCjs(reactConfetti_minExports);
59576
59593
 
59577
- const Connected$2 = ({
59594
+ const Connected = ({
59578
59595
  currentMember,
59579
59596
  institution,
59580
59597
  onContinueClick,
@@ -59630,8 +59647,26 @@ const Connected$2 = ({
59630
59647
  /* @__PURE__ */ jsxRuntimeExports.jsxs(SlideDown, { children: [
59631
59648
  /* @__PURE__ */ jsxRuntimeExports.jsx(x, { component: "h2", "data-test": "connected-header", style: styles.title, children: __("Success") }),
59632
59649
  appName && /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { children: [
59633
- /* @__PURE__ */ jsxRuntimeExports.jsx(x, { component: "p", "data-test": "connected-secondary-text", style: styles.body, children: __("You have successfully connected %1 to", institutionName) }),
59634
- /* @__PURE__ */ jsxRuntimeExports.jsx(x, { component: "p", style: { ...styles.body, marginBottom: tokens.Spacing.XLarge }, children: __("%1.", appName) })
59650
+ /* @__PURE__ */ jsxRuntimeExports.jsx(x, {
59651
+ component: "p",
59652
+ "data-test": "connected-secondary-text",
59653
+ style: styles.body,
59654
+ // --TR: This string has 2 line breaks and the full string "You have successfully connected {institution} to {appName}"
59655
+ children: __("You have successfully connected")
59656
+ }),
59657
+ /* @__PURE__ */ jsxRuntimeExports.jsx(x, {
59658
+ component: "p",
59659
+ "data-test": "connected-secondary-text",
59660
+ style: styles.body,
59661
+ // --TR: This is a part of the connected screen text and is the instutution name
59662
+ children: __("%1 ", institutionName)
59663
+ }),
59664
+ /* @__PURE__ */ jsxRuntimeExports.jsx(x, {
59665
+ component: "p",
59666
+ style: { ...styles.body, marginBottom: tokens.Spacing.XLarge },
59667
+ // --TR: This is part of the connected text on the connected screen, the full string is "You have successfully connected {institution} to {appName}"
59668
+ children: __("to %1.", appName)
59669
+ })
59635
59670
  ] }),
59636
59671
  !appName && /* @__PURE__ */ jsxRuntimeExports.jsx(
59637
59672
  x,
@@ -63068,7 +63103,7 @@ const RenderConnectStep = (props) => {
63068
63103
  );
63069
63104
  } else if (step === STEPS.CONNECTING) {
63070
63105
  connectStepView = /* @__PURE__ */ jsxRuntimeExports.jsx(
63071
- Connecting$2,
63106
+ Connecting,
63072
63107
  {
63073
63108
  connectConfig,
63074
63109
  hasAtriumAPI,
@@ -63128,7 +63163,7 @@ const RenderConnectStep = (props) => {
63128
63163
  );
63129
63164
  } else if (step === STEPS.CONNECTED) {
63130
63165
  connectStepView = /* @__PURE__ */ jsxRuntimeExports.jsx(
63131
- Connected$2,
63166
+ Connected,
63132
63167
  {
63133
63168
  currentMember,
63134
63169
  institution: selectedInstitution,
@@ -65317,7 +65352,6 @@ const Search$1 = "Chercher";
65317
65352
  const Cancel$1 = "Annuler";
65318
65353
  const Continue$1 = "Continuer";
65319
65354
  const Connect$1 = "Connecter";
65320
- const Back$1 = "Retour";
65321
65355
  const Disconnected$1 = "Déconnecté";
65322
65356
  const Done$1 = "Terminé";
65323
65357
  const Starting$1 = "Démarrage";
@@ -65325,21 +65359,12 @@ const Finishing$1 = "Finalisation";
65325
65359
  const Ok$1 = "Ok";
65326
65360
  const Disconnect$1 = "Déconnecter";
65327
65361
  const Other$1 = "Autre";
65328
- const Connections$1 = "Connexions";
65329
- const Merge$1 = "Fusionner";
65330
- const Select$1 = "Sélectionner";
65331
65362
  const Email$1 = "Email";
65332
65363
  const Savings$1 = "Des économies";
65333
65364
  const Sending$1 = "Envoi en cours";
65334
65365
  const Confirm$1 = "Confirmer";
65335
65366
  const account$1 = "compte";
65336
65367
  const routing$1 = "routage";
65337
- const Connected$1 = "Connecté";
65338
- const Connecting$1 = "De liaison";
65339
- const Delete$1 = "Effacer";
65340
- const Bad$1 = "Mal";
65341
- const Okay$1 = "Ça va!";
65342
- const Good$1 = "Bien";
65343
65368
  const Personal$1 = "Personnel";
65344
65369
  const Business$1 = "Entreprise";
65345
65370
  const Save$1 = "Sauvegarder";
@@ -65359,12 +65384,10 @@ const Computer$1 = "L'ordinateur";
65359
65384
  const Electronics$1 = "Électronique";
65360
65385
  const Miscellaneous$1 = "Divers";
65361
65386
  const Investments$1 = "Investissements";
65362
- const Send$1 = "Envoyer";
65363
65387
  const OK$1 = "OK";
65364
65388
  const Instant$1 = "Instantanée";
65365
65389
  const Recommended$1 = "Recommandé";
65366
65390
  const Manual$1 = "Manuel";
65367
- const Close$1 = "Fermer";
65368
65391
  const Transactions$1 = "Transactions";
65369
65392
  const Statements$1 = "Déclarations";
65370
65393
  const Edge$1 = "Edge";
@@ -65383,24 +65406,16 @@ const frCa = {
65383
65406
  "Your information is protected with bank-level security.": "Vos renseignements sont protégés par une sécurité de niveau bancaire.",
65384
65407
  Continue: Continue$1,
65385
65408
  Connect: Connect$1,
65386
- Back: Back$1,
65387
65409
  "Go to bank's website": "Aller sur le site Web de la banque",
65388
65410
  "There was a problem with this institution, try again later.": "Il y a un problème avec cette institution, réessayez plus tard.",
65389
65411
  "You are leaving": "Vous êtes sur le point de quitter",
65390
65412
  Disconnected: Disconnected$1,
65391
65413
  "You have successfully disconnected %1.": "Vous vous êtes déconnecté correctement de %1.",
65392
65414
  Done: Done$1,
65393
- "Check or reset your access": "Vérifier ou réinitialiser votre accès",
65394
- "Stop sharing information": "Arrêt du partage d’informations",
65395
65415
  "Select your institution": "Sélectionnez votre institution",
65396
- "Choose from institutions you've already connected or search for a new one.": "Choisissez parmi les institutions que vous avez déjà connectées ou recherchez-en une nouvelle.",
65397
65416
  "%1 Connected institution": [
65398
65417
  "%1 Institution connectée",
65399
65418
  "%1 Institutions connectées"
65400
- ],
65401
- "%1 Account": [
65402
- "%1 Compte",
65403
- "%1 Comptes"
65404
65419
  ],
65405
65420
  "Search more institutions": "Chercher plus d’institutions",
65406
65421
  "Enter institution name": "Saisir le nom de l’institution",
@@ -65456,8 +65471,6 @@ const frCa = {
65456
65471
  "Credentials expired": "Informations d'identification périmées",
65457
65472
  "Hide password": "Masquer le mot de passe",
65458
65473
  "Show password": "Montrer le mot de passe",
65459
- "You have successfully connected to %1!": "Vous vous êtes connecté avec succès à %1!",
65460
- "Go back": "Retourner",
65461
65474
  "This connection doesn't support verification.": "Cette connexion ne prend pas en charge la vérification.",
65462
65475
  "We can't verify this connection right now. Please try again later.": "Nous ne pouvons pas vérifier cette connexion en ce moment. Veuillez réessayer plus tard.",
65463
65476
  "Oops! Something went wrong. Error code: %1": "Attention : un problème est survenu. Code d'erreur : %1",
@@ -65470,51 +65483,22 @@ const frCa = {
65470
65483
  "Choose an option": "Choisir une option",
65471
65484
  "We've notified support and are looking into the issue. Please try again later.": "Nous avons notifié le service de soutien et nous examinons ce problème. Veuillez réessayer plus tard.",
65472
65485
  "Disconnect this institution": "Déconnecter cette institution",
65473
- "Marked As Closed": "Marqué comme fermé",
65474
65486
  "Your login info was correct, but your attention is needed at %1 before we can proceed. You need to:": "Vos données de connexion sont correctes, mais vous devez vous occuper de %1 pour nous permettre de continuer. Vous devez :",
65475
65487
  "Log in to %1's website and resolve the issue.": "Connectez-vous au site Web de %1 et résolvez le problème.",
65476
65488
  "Visit website": "Visitez le site Web",
65477
65489
  "Come back here and try to connect your account again.": "Revenez ici et essayez à nouveau de connecter votre compte.",
65478
65490
  "Your attention is needed": "Votre attention est requise",
65479
- Connections: Connections$1,
65480
- "Manage connected institutions and accounts": "Gérer les institutions et les comptes connectés",
65481
- "Manual accounts": "Comptes manuels",
65482
65491
  "Please re-enter your credentials": "Veuillez saisir à nouveau vos informations d'identification",
65483
65492
  "Add account manually": "Ajouter un compte manuellement",
65484
65493
  "Enter your credentials": "Saisissez vos informations d'identification",
65485
65494
  "Go to institution's website": "Aller au site Web de l'institution",
65486
65495
  "Oops! There was a problem. Please check your username and password, and try again.": "Attention : un problème est survenu. Veuillez vérifier vos nom d'utilisateur et mot de passe, puis réessayer.",
65487
- "Connect Account": "Connecter le compte",
65488
- "Connect accounts": "Connecter des comptes",
65489
65496
  "Incorrect information": "Informations erronées",
65490
65497
  "%1 search result": [
65491
65498
  "%1 résultat de recherche",
65492
65499
  "%1 résultats de recherche"
65493
65500
  ],
65494
65501
  "Account number": "Numéro de compte",
65495
- "Include account on this app": "Inclure le compte dans cette application",
65496
- "Show this account": "Afficher ce compte",
65497
- "show account": "afficher compte",
65498
- "Mark as closed": "Marquer comme clôturé",
65499
- "%1 (Hidden)": "%1 (Caché)",
65500
- "%1 (Marked as closed)": "%1 (Marqué comme fermé)",
65501
- "Merge accounts that show up twice": "Fusionner des comptes qui s'affichent deux fois",
65502
- "Merge duplicate accounts": "Fusionner les comptes en double",
65503
- "Resume updates for this account": "Reprendre les mises à jour pour ce compte",
65504
- "Mark as open": "Marquer comme ouvert",
65505
- "Set balance to $0 and keep transaction history": "Réglez le solde sur 0 $ et conservez l'historique des transactions",
65506
- "This will set the balance of your %1 account to $0.00, and keep any past transaction history. This can be undone by marking the account as open.": "Cela définira le solde de votre compte %1 à 0,00 $ et conservera tout historique des transactions passées. Cela peut être annulé en marquant le compte comme ouvert.",
65507
- "This will resume updating the balance and transaction history of your %1 account, if any new updates are available. It may take 24 hours to see any updates.": "Cela reprendra la mise à jour du solde et de l'historique des transactions de votre compte %1, si de nouvelles mises à jour sont disponibles. Cela peut prendre 24 heures pour voir les mises à jour.",
65508
- "This action cannot be undone and may take several minutes.": "Cette action est irréversible et peut prendre plusieurs minutes.",
65509
- "Please select an account": "Veuillez sélectionner un compte",
65510
- "This will merge %1 with the account you select below.": "Cela fusionnera %1 avec le compte que vous sélectionnez ci-dessous.",
65511
- Merge: Merge$1,
65512
- "Are you sure?": "Es-tu sûr?",
65513
- "This will merge %1 and %2.": "Cela fusionnera %1 et %2.",
65514
- "This account is marked as closed": "Ce compte est marqué comme fermé",
65515
- "This account is hidden": "Ce compte est masqué",
65516
- "Select an account to merge with": "Sélectionnez un compte avec lequel fusionner",
65517
- Select: Select$1,
65518
65502
  "Account number %1": "Numéro de compte %1",
65519
65503
  "Account number ending with %1": "Numéro de compte se terminant par %1",
65520
65504
  "Search isn’t working": "La recherche ne fonctionne pas",
@@ -65533,8 +65517,6 @@ const frCa = {
65533
65517
  "%1 must be a valid url": "%1 doit être une URL valide",
65534
65518
  "%1 is invalid": "%1 n'est pas valide",
65535
65519
  "%1 must be the same as %2": "%1 doit être identique à %2",
65536
- "Thanks for your feedback!": "Merci pour vos commentaires!",
65537
- "Feedback text box.": "Zone de texte de commentaires.",
65538
65520
  "Amount 1": "Montant 1",
65539
65521
  "Amount 2": "Montant 2",
65540
65522
  "Enter deposit amounts": "Saisir les montants des dépôts",
@@ -65584,7 +65566,6 @@ const frCa = {
65584
65566
  "Deposits verified": "Dépôts vérifiés",
65585
65567
  "You're almost done setting things up. Continue to your institution.": "Vous avez presque fini de mettre les choses en place. Continuez vers votre établissement.",
65586
65568
  "Connect with account numbers": "Connectez-vous avec les numéros de compte",
65587
- "How would you rate your experience?": "Comment noteriez-vous votre expérience?",
65588
65569
  "Request to have it added": "Demander son ajout",
65589
65570
  "Can't find your bank?": "Vous ne trouvez pas votre banque ?",
65590
65571
  "Get help connecting your account": "Obtenez de l'aide pour connecter votre compte",
@@ -65602,13 +65583,6 @@ const frCa = {
65602
65583
  "Institution website": "Site web de l’institution",
65603
65584
  "Institution login page (optional)": "Page de connexion de l'institution (facultatif)",
65604
65585
  "This process may take a while to finish": "Ce processus peut prendre un certain temps pour se terminer",
65605
- "Back to accounts": "Retour aux comptes",
65606
- "Back to connections": "Retour aux connexions",
65607
- Connected: Connected$1,
65608
- Connecting: Connecting$1,
65609
- "Additional information required": "Informations supplémentaires requises",
65610
- "Action needed": "Action nécessaire",
65611
- "Connection delayed": "Connexion retardée",
65612
65586
  "Checking microdeposit amounts.": "Vérification des montants des micro-dépôts.",
65613
65587
  "Manage connected institutions": "Gérer les institutions et comptes connectés",
65614
65588
  "Basic account information": "Informations de base sur le compte",
@@ -65617,15 +65591,7 @@ const frCa = {
65617
65591
  "Unable to proceed. Please try again later. Error: %1": "Impossible de continuer. Veuillez réessayer plus tard. Erreur: %1",
65618
65592
  "Enter account information": "Saisir les informations du compte",
65619
65593
  "Verification must be enabled to use this feature.": "La vérification doit être activée pour utiliser cette fonctionnalité.",
65620
- Delete: Delete$1,
65621
65594
  "Please try again or come back later.": "Veuillez réessayer ou revenir plus tard.",
65622
- "We welcome your feedback. Please do not share personal or financial information, such as account numbers or passwords. Your feedback is anonymous and will be available to this app and their data access provider, MX, to help improve the experience of connecting financial data.": "Vos commentaires sont les bienvenus. Veuillez ne pas partager d'informations personnelles ou financières, telles que des numéros de compte ou des mots de passe. Vos commentaires sont anonymes et seront disponibles pour cette application et leur fournisseur d'accès aux données, MX, pour aider à améliorer l'expérience de connexion des données financières.",
65623
- "What was %1 about it?": "Qu'est-ce qu'il y avait de %1 là-dedans?",
65624
- "Very bad": "Très mauvais",
65625
- Bad: Bad$1,
65626
- Okay: Okay$1,
65627
- Good: Good$1,
65628
- "Very good": "Très bien",
65629
65595
  "Connecting to %1": "Se connecter à %1",
65630
65596
  "Manual Institution": "Établissement manuel",
65631
65597
  "Verify identity": "Vérifier l'identité",
@@ -65646,8 +65612,6 @@ const frCa = {
65646
65612
  "%1 added": "%1 ajouté",
65647
65613
  "Your account has been saved manually. You can edit or delete it later.": "Votre compte a été enregistré manuellement. Vous pouvez le modifier ou le supprimer ultérieurement.",
65648
65614
  "Oops! Verification must be enabled to use this feature.": "Oops! La vérification doit être activée pour utiliser cette fonctionnalité.",
65649
- "Delete manually added accounts?": "Supprimer les comptes ajoutés manuellement?",
65650
- "This will remove all manually added accounts and their associated transactions. This cannot be undone.": "Cela supprimera tous les comptes ajoutés manuellement et leurs transactions associées. Ça ne peut pas être annulé.",
65651
65615
  "We’re working on it. Stick around!": "Nous y travaillons. Rester dans les parages!",
65652
65616
  "We’re getting closer. Hang tight!": "Nous nous rapprochons. Tenir fermement!",
65653
65617
  "Still working. Stay with us!": "Nous nous rapprochons. Tenir fermement!",
@@ -65694,15 +65658,10 @@ const frCa = {
65694
65658
  "We’re unable to connect this account. Please review the account details you submitted.": "Nous ne pouvons pas connecter ce compte. Veuillez revoir les détails du compte que vous avez soumis.",
65695
65659
  "We’re unable to connect this account. Please try again later.": "Nous ne pouvons pas connecter ce compte. Veuillez réessayer plus tard.",
65696
65660
  "Connect a different account": "Connecter un autre compte",
65697
- Send: Send$1,
65698
- "Review your sharing permissions": "Vérifiez vos autorisations de partage",
65699
65661
  "Trouble signing in?": "Vous avez des difficultés à vous connecter?",
65700
65662
  "Please try saving your account again.": "Veuillez réessayer d'enregistrer votre compte.",
65701
65663
  "Search for your institution": "Cherchez votre institution",
65702
65664
  "Submit an institution request": "Soumettre une demande d'institution",
65703
- "No eligible accounts": "Aucun compte éligible",
65704
- "No eligible checking or savings account was found. Please try a different account.": "Aucun compte chèque ou d'épargne éligible n'a été trouvé. Veuillez essayer un autre compte",
65705
- "None of your accounts are eligible checking or savings accounts. Please try a different account.": "Aucun de vos comptes n'est un compte chèque ou d'épargne éligible. Veuillez essayer un autre compte.",
65706
65665
  OK: OK$1,
65707
65666
  "Try another institution": "Essayez une autre institution",
65708
65667
  "The first and last characters are blank spaces": "Les premier et dernier caractères sont des espaces vides",
@@ -65710,7 +65669,6 @@ const frCa = {
65710
65669
  "The last character is a blank space": "Le dernier caractère est un espace vide",
65711
65670
  "Choose a reason for deleting": "Choisissez un motif de suppression",
65712
65671
  "%1 trusts MX to connect your %2 account": "%1 fait confiance à MX pour connecter votre compte %2",
65713
- "You have successfully connected %1 to %2": "Vous avez réussi à connecter %1 à %2",
65714
65672
  "This app trusts MX to connect your account": "Cette application fait confiance à MX pour connecter votre compte",
65715
65673
  "MX helps you connect your financial accounts to apps and services. MX will allow %1 to access only the data requested.": "MX vous aide à connecter vos comptes financiers aux applications et services. MX permettra à %1 d'accéder uniquement aux données demandées.",
65716
65674
  "Select how to connect your account": "Sélectionnez comment connecter votre compte",
@@ -65723,7 +65681,6 @@ const frCa = {
65723
65681
  "Select an account": "Sélectionner un compte",
65724
65682
  "Loading …": "Chargement …",
65725
65683
  "Load more institutions": "Charger plus d'institutions",
65726
- Close: Close$1,
65727
65684
  "Log in at %1": "Connectez-vous à %1",
65728
65685
  "You’ll be sent to %1 to securely log in.": "Vous serez envoyé à %1 pour vous connecter en toute sécurité.",
65729
65686
  "Then you’ll return here to finish connecting.": "Ensuite, vous reviendrez ici pour terminer la connexion.",
@@ -65753,7 +65710,6 @@ const frCa = {
65753
65710
  "%1 may request access to the following data at any time, only as needed, in order to support your requested products and services.": "%1 peut demander l'accès aux données suivantes à tout moment, uniquement si nécessaire, afin de prendre en charge les produits et services demandés.",
65754
65711
  "%1 is requesting access to the following data at this time in order to support your requested products and services.": "%1 demande actuellement l'accès aux données suivantes afin de prendre en charge les produits et services demandés.",
65755
65712
  "Account selection is required.": "La sélection du compte est requise.",
65756
- "No eligible account was selected. Please select a checking or savings account.": "Aucun compte éligible n'a été sélectionné. Veuillez sélectionner un compte courant ou un compte d'épargne.",
65757
65713
  "No results found for ”%1”": "Aucun résultat trouvé pour ”%1”",
65758
65714
  "Check spelling and try again, or try searching for another institution.": "Vérifiez l’orthographe et réessayez, ou essayez de rechercher une autre institution.",
65759
65715
  "Enter your %1": "Entrez votre %1",
@@ -65764,25 +65720,19 @@ const frCa = {
65764
65720
  Firefox: Firefox$1,
65765
65721
  " for a better experience.": " pour une meilleure expérience.",
65766
65722
  "Clicking the links to supported browsers will take you to an external website with a different privacy policy, security measures, and terms and conditions.": "En cliquant sur les liens vers les navigateurs pris en charge, vous serez redirigé vers un site web externe avec une politique de confidentialité, des mesures de sécurité et des conditions d'utilisation différentes.",
65767
- "Session expired": "Session expirée",
65768
- "No recent activity": "Aucune activité récente",
65769
- "Please refresh your browser to continue.": "Veuillez rafraîchir votre navigateur pour continuer.",
65770
- "Please click Continue to avoid timing out.": "Veuillez cliquer sur Continuer pour éviter la déconnexion.",
65771
65723
  "Unsupported Resolution": "Résolution non prise en charge",
65772
65724
  "Your screen zoom setting may not be compatible with the current screen size. The minimum supported width is 320 pixels. Please reduce your screen zoom setting to view all the content.": "Les paramètres de zoom de votre écran peuvent ne pas être compatibles avec la taille actuelle de l'écran. La largeur minimale prise en charge est de 320 pixels. Veuillez réduire le paramètre de zoom de votre écran pour voir tout le contenu.",
65773
65725
  Dismiss: Dismiss$1,
65774
- "We've notified support and we're looking into the issue. Please try again later.": "Nous avons prévenu le support et nous examinons le problème. Veuillez réessayer plus tard.",
65775
- "Something went wrong.": "Quelque chose s'est mal passé.",
65776
65726
  "Please find the two small deposits less than a dollar each in your %1 account, and enter the amounts here.": "Veuillez trouver les deux petits dépôts de moins d'un dollar chacun dans votre compte %1 et saisir les montants ici.",
65777
65727
  "Thanks for submitting your account info. Check back soon! In the next few days you should find two small deposits less than a dollar each in your %1 account. When you see them, come back here and enter the amounts.": "Merci d'avoir soumis les informations de votre compte. Revenez bientôt ! Dans les prochains jours, vous devriez trouver deux petits dépôts de moins d'un dollar chacun sur votre compte %1. Lorsque vous les voyez, revenez ici et inscrivez les montants.",
65778
- "We've connected to your financial institution, but couldn't find eligible checking or savings accounts for money movement; however, connected accounts may still provide aggregated data. Please try linking an account from a different institution.": "Nous nous sommes connectés à votre institution financière, mais nous n'avons pas trouvé de comptes chèques ou d'épargne éligibles pour les mouvements d'argent ; cependant, les comptes connectés peuvent toujours fournir des données agrégées. Veuillez essayer de lier un compte d'une autre institution.",
65779
65728
  "Accounts not eligible for transfers": "Comptes non éligibles aux transferts",
65780
65729
  "We've connected to your financial institution, but couldn't find eligible checking or savings accounts for money movement; however, other account information may still have been shared.": "Nous nous sommes connectés à votre institution financière, mais nous n'avons pas trouvé de comptes chèques ou d'épargne éligibles pour les mouvements d'argent ; cependant, d'autres informations de compte peuvent encore avoir été partagées.",
65781
65730
  "Please try linking a checking or savings account.": "Veuillez essayer de lier un compte courant ou un compte d'épargne.",
65782
65731
  "Choose an institution that’s already connected and select accounts to share, or search for a different one.": "Choisissez une institution déjà connectée et sélectionnez les comptes à partager, ou recherchez-en un autre.",
65783
65732
  "You have successfully connected to %1": "Vous vous êtes connecté avec succès à %1",
65784
65733
  Success: Success$1,
65785
- "You have successfully connected %1 to": "Vous avez réussi à connecter %1 à",
65734
+ "You have successfully connected": "Vous avez réussi à connecter",
65735
+ "to %1.": "à %1.",
65786
65736
  "You have successfully connected to %1.": "Vous vous êtes connecté avec succès à %1.",
65787
65737
  "connect/disclosure/policy/text\u0004By clicking Continue, you agree to the ": "En cliquant sur Continuer, vous acceptez la ",
65788
65738
  "connect/disclosure/policy/link\u0004MX Privacy Policy.": "Politique de confidentialité de MX.",
@@ -65812,7 +65762,6 @@ const enCa = {
65812
65762
  }
65813
65763
  };
65814
65764
 
65815
- const Connections = "Conexiones";
65816
65765
  const Cancel = "Cancelar";
65817
65766
  const Ok = "OK";
65818
65767
  const Disconnect = "Desconectar";
@@ -65824,21 +65773,12 @@ const Starting = "Iniciando";
65824
65773
  const Finishing = "Terminando";
65825
65774
  const Disconnected = "Desconectado";
65826
65775
  const Done = "Hecho";
65827
- const Back = "Volver";
65828
- const Connected = "Conectado";
65829
- const Merge = "Unir";
65830
- const Select = "Seleccione";
65831
65776
  const Email = "Correo electrónico";
65832
65777
  const Savings = "Ahorros";
65833
65778
  const Sending = "Enviando";
65834
65779
  const Confirm = "Confirmar";
65835
65780
  const account = "cuenta";
65836
65781
  const routing = "número de ruta";
65837
- const Delete = "Eliminar";
65838
- const Connecting = "Conectando";
65839
- const Bad = "Malo";
65840
- const Okay = "Bien";
65841
- const Good = "Bueno";
65842
65782
  const Personal = "Personal";
65843
65783
  const Business = "Negocio";
65844
65784
  const Save = "Salvar";
@@ -65858,12 +65798,10 @@ const Computer = "Ordenadores";
65858
65798
  const Electronics = "Electrónica";
65859
65799
  const Miscellaneous = "Misceláneos";
65860
65800
  const Investments = "Inversiones";
65861
- const Send = "Enviar";
65862
65801
  const OK = "OK";
65863
65802
  const Instant = "Instantánea";
65864
65803
  const Recommended = "Recomendado";
65865
65804
  const Manual = "Manual";
65866
- const Close = "Cerca";
65867
65805
  const Transactions = "Transacciones";
65868
65806
  const Statements = "Declaraciones";
65869
65807
  const Edge = "Edge";
@@ -65881,19 +65819,8 @@ const es = {
65881
65819
  "%1 Institución conectada",
65882
65820
  "%1 Instituciones conectadas"
65883
65821
  ],
65884
- "Manual accounts": "Cuentas manuales",
65885
- "%1 Account": [
65886
- "%1 Cuenta",
65887
- "%1 Cuentas"
65888
- ],
65889
- "Check or reset your access": "Verifique o reinicie su acceso",
65890
65822
  "Go to institution's website": "Ir al sitio web de la institución",
65891
- "Stop sharing information": "Dejar de compartir información",
65892
65823
  "Disconnect this institution": "Desconectar esta institución",
65893
- Connections: Connections,
65894
- "Connect Account": "Conectar cuenta",
65895
- "Connect accounts": "Conectar cuentas",
65896
- "Manage connected institutions and accounts": "Administrar instituciones y cuentas conectadas",
65897
65824
  "The answer or answers provided were incorrect. Please try again.": "La respuesta o respuestas proporcionadas fueron incorrectas. Inténtelo de nuevo.",
65898
65825
  "Your account is locked. Please log in to the appropriate website for %1 and follow the steps to resolve the issue.": "Su cuenta está bloqueada. Inicie sesión en el sitio web apropiado para %1 y siga los pasos para resolver el problema.",
65899
65826
  "Your login info was correct, but your attention is needed at %1 before we can proceed. You need to:": "Su información de inicio de sesión fue correcta, pero su atención es necesaria en %1 antes de que podamos continuar. Necesitas:",
@@ -65932,7 +65859,6 @@ const es = {
65932
65859
  "Your attention is needed at this institution's website. Please log in to their website and follow the steps to resolve the issue.": "Se necesita su atención en el sitio web de esta institución. Inicie sesión en su sitio web y siga los pasos para resolver el problema.",
65933
65860
  "Your attention is needed at this institution's website. Please log in to the appropriate website for %1 and follow the steps to resolve the issue.": "Se necesita su atención en el sitio web de esta institución. Inicie sesión en el sitio web correspondiente para %1 y siga los pasos para resolver el problema.",
65934
65861
  "Loading ...": "Cargando…",
65935
- "You have successfully connected to %1!": "¡Te has conectado correctamente a %1!",
65936
65862
  "Go back": "Regresar",
65937
65863
  "This connection doesn't support verification.": "Esta conexión no admite la verificación.",
65938
65864
  "We can't verify this connection right now. Please try again later.": "No podemos verificar esta conexión en este momento. Inténtelo de nuevo más tarde.",
@@ -65968,7 +65894,6 @@ const es = {
65968
65894
  "Credentials expired": "Credenciales caducadas",
65969
65895
  "We've notified support and are looking into the issue. Please try again later.": "Hemos notificado al soporte y estamos investigando el problema. Por favor, inténtelo de nuevo más tarde.",
65970
65896
  "Select your institution": "Seleccione su institución",
65971
- "Choose from institutions you've already connected or search for a new one.": "Elija entre las instituciones que ya ha conectado o busque una nueva.",
65972
65897
  "Search more institutions": "Buscar más instituciones",
65973
65898
  Starting: Starting,
65974
65899
  "Verifying credentials": "Verificación de credenciales",
@@ -65983,41 +65908,14 @@ const es = {
65983
65908
  "Enter your credentials": "Introduzca sus credenciales",
65984
65909
  "Hide password": "Ocultar contraseña",
65985
65910
  "Show password": "Mostrar la contraseña",
65986
- Back: Back,
65987
65911
  "There was a problem with this institution, try again later.": "Hubo un problema con esta institución, inténtalo de nuevo más tarde.",
65988
- "Back to accounts": "Volver a cuentas",
65989
- "Back to connections": "Volver a Conexiones",
65990
- Connected: Connected,
65991
65912
  "Account number": "Número de cuenta",
65992
- "Include account on this app": "Incluir cuenta en esta aplicación",
65993
- "Show this account": "Mostrar esta cuenta",
65994
- "Mark as closed": "Marcar como cerrado",
65995
- "Merge accounts that show up twice": "Fusionar cuentas que aparecen dos veces",
65996
- "Merge duplicate accounts": "Fusionar cuentas duplicadas",
65997
- "Resume updates for this account": "Reanudar actualizaciones para esta cuenta",
65998
- "Mark as open": "Marcar como abierto",
65999
- "Set balance to $0 and keep transaction history": "Establezca el saldo en $ 0 y mantenga el historial de transacciones",
66000
- "This will set the balance of your %1 account to $0.00, and keep any past transaction history. This can be undone by marking the account as open.": "Esto establecerá el saldo de su cuenta %1 en $ 0.00 y mantendrá el historial de transacciones anteriores. Esto se puede deshacer marcando la cuenta como abierta.",
66001
- "This will resume updating the balance and transaction history of your %1 account, if any new updates are available. It may take 24 hours to see any updates.": "Esto reanudará la actualización del saldo y el historial de transacciones de su cuenta %1, si hay nuevas actualizaciones disponibles. Puede que sean necesarias 24 horas para ver las actualizaciones.",
66002
- "This action cannot be undone and may take several minutes.": "Esta acción no se puede deshacer y puede tardar varios minutos.",
66003
- "Please select an account": "Por favor seleccione una cuenta",
66004
- "This will merge %1 with the account you select below.": "Esto fusionará %1 con la cuenta que seleccione a continuación.",
66005
- Merge: Merge,
66006
- "Are you sure?": "Estas seguro",
66007
- "This will merge %1 and %2.": "Esto fusionará %1 y %2.",
66008
- "This account is marked as closed": "Esta cuenta está marcada como cerrada",
66009
- "This account is hidden": "Esta cuenta esta oculta",
66010
- "Select an account to merge with": "Seleccione una cuenta para fusionarse",
66011
- Select: Select,
66012
- "show account": "mostrar cuenta",
66013
65913
  "Account number %1": "Número de cuenta %1",
66014
65914
  "Account number ending with %1": "Número de cuenta que termina en %1",
66015
65915
  "%1 search result": [
66016
65916
  "%1 resultado de búsqueda",
66017
65917
  "%1 Resultados de la búsqueda"
66018
65918
  ],
66019
- "%1 (Hidden)": "%1 (Oculta)",
66020
- "%1 (Marked as closed)": "%1 (Marcada como cerrada)",
66021
65919
  "%1 is required": "%1 es obligatorio",
66022
65920
  "%1 must be greater than or equal to %2": "%1 debe ser mayor o igual que %2",
66023
65921
  "%1 must be less than or equal to %2": "1 debe ser menor o igual que %2",
@@ -66033,8 +65931,6 @@ const es = {
66033
65931
  "%1 must be a valid url": "%1 debe ser una URL válida",
66034
65932
  "%1 is invalid": "%1 no es válida",
66035
65933
  "%1 must be the same as %2": "%1 debe ser la misma que %2",
66036
- "Thanks for your feedback!": "¡Gracias por tus comentarios!",
66037
- "Feedback text box.": "Cuadro de texto de comentarios.",
66038
65934
  "Amount 1": "Cantidad 1",
66039
65935
  "Amount 2": "Cantidad 2",
66040
65936
  "Enter deposit amounts": "Ingrese los montos del depósito",
@@ -66084,7 +65980,6 @@ const es = {
66084
65980
  "Deposits verified": "Depósitos verificados",
66085
65981
  "You're almost done setting things up. Continue to your institution.": "Ya casi has terminado de configurar las cosas. Continuar a su institución.",
66086
65982
  "Connect with account numbers": "Conectarse con números de cuenta",
66087
- "How would you rate your experience?": "¿Cómo calificaría usted su experiencia?",
66088
65983
  "Request to have it added": "Solicitar que se agregue",
66089
65984
  "Can't find your bank?": "¿No encuentra su banco?",
66090
65985
  "Get help connecting your account": "Obtenga ayuda para conectar su cuenta",
@@ -66102,27 +65997,14 @@ const es = {
66102
65997
  "Institution website": "Sitio web de la institución",
66103
65998
  "Institution login page (optional)": "Página de inicio de sesión de la institución (opcional)",
66104
65999
  "This process may take a while to finish": "Este proceso puede tardar un poco en finalizar",
66105
- "Additional information required": "Se requiere información adicional",
66106
- "Action needed": "Accion necesaria",
66107
- "Connection delayed": "Conexión retrasada",
66108
66000
  "Checking microdeposit amounts.": "Consulta de importes de microdepósitos.",
66109
- "Manage connected institutions": "Administrar instituciones conectadas",
66110
66001
  "Basic account information": "Información básica de la cuenta",
66111
66002
  "Tax documents": "Documentos fiscales",
66112
66003
  "Oops! Tax statements must be enabled to use this feature.": "¡UPS! Las declaraciones de impuestos deben estar habilitadas para usar esta función.",
66113
66004
  "Unable to proceed. Please try again later. Error: %1": "Incapaz de proceder. Por favor, inténtelo de nuevo más tarde. Error: %1",
66114
66005
  "Enter account information": "Introduzca la información de la cuenta",
66115
66006
  "Verification must be enabled to use this feature.": "La verificación debe estar habilitada para usar esta función.",
66116
- Delete: Delete,
66117
- Connecting: Connecting,
66118
66007
  "Please try again or come back later.": "Inténtalo de nuevo o vuelve más tarde.",
66119
- "We welcome your feedback. Please do not share personal or financial information, such as account numbers or passwords. Your feedback is anonymous and will be available to this app and their data access provider, MX, to help improve the experience of connecting financial data.": "Damos la bienvenida a sus comentarios. No comparta información personal o financiera, como números de cuenta o contraseñas. Sus comentarios son anónimos y estarán disponibles para esta aplicación y su proveedor de acceso a datos, MX, para ayudar a mejorar la experiencia de conexión de datos financieros.",
66120
- "What was %1 about it?": "¿Qué tenía de %1?",
66121
- "Very bad": "Muy malo",
66122
- Bad: Bad,
66123
- Okay: Okay,
66124
- Good: Good,
66125
- "Very good": "Muy bueno",
66126
66008
  "Connecting to %1": "Conectarse a %1",
66127
66009
  "Manual Institution": "Institución Manual",
66128
66010
  "Verify identity": "Verificar identidad",
@@ -66144,8 +66026,6 @@ const es = {
66144
66026
  "%1 added": "%1 añadido",
66145
66027
  "Your account has been saved manually. You can edit or delete it later.": "Su cuenta ha sido salvada manualmente. Puede editarla o borrarla más tarde.",
66146
66028
  "Oops! Verification must be enabled to use this feature.": "¡Oh, no! La verificación debe estar habilitada para usar esta función.",
66147
- "Delete manually added accounts?": "¿Eliminar cuentas añadidas manualmente?",
66148
- "This will remove all manually added accounts and their associated transactions. This cannot be undone.": "Esto eliminará todas las cuentas agregadas manualmente y sus transacciones asociadas. Esto no se puede deshacer.",
66149
66029
  "We’re working on it. Stick around!": "Estamos trabajando en ello. ¡Quedarse!",
66150
66030
  "We’re getting closer. Hang tight!": "Nos estamos acercando. ¡Aguanta!",
66151
66031
  "Still working. Stay with us!": "Aún trabajando. ¡Quédate con nosotros!",
@@ -66192,15 +66072,10 @@ const es = {
66192
66072
  "We’re unable to connect this account. Please review the account details you submitted.": "No podemos conectar esta cuenta. Revise los detalles de la cuenta que envió.",
66193
66073
  "We’re unable to connect this account. Please try again later.": "No podemos conectar esta cuenta. Por favor, inténtelo más tarde.",
66194
66074
  "Connect a different account": "Conectar una cuenta diferente",
66195
- Send: Send,
66196
- "Review your sharing permissions": "Revise sus permisos de uso compartido",
66197
66075
  "Trouble signing in?": "¿Problemas para iniciar sesión?",
66198
66076
  "Please try saving your account again.": "Intente guardar su cuenta nuevamente.",
66199
66077
  "Search for your institution": "Busque su institución",
66200
66078
  "Submit an institution request": "Presentar una solicitud de institución",
66201
- "No eligible accounts": "No hay cuentas elegibles",
66202
- "No eligible checking or savings account was found. Please try a different account.": "No se ha encontrado ninguna cuenta corriente o de ahorro que cumpla los requisitos. Pruebe con otra cuenta",
66203
- "None of your accounts are eligible checking or savings accounts. Please try a different account.": "Ninguna de sus cuentas es una cuenta corriente o de ahorro elegible. Pruebe con otra cuenta.",
66204
66079
  OK: OK,
66205
66080
  "Try another institution": "Pruebe con otra institución",
66206
66081
  "The first and last characters are blank spaces": "El primer y último carácter son espacios en blanco",
@@ -66208,7 +66083,6 @@ const es = {
66208
66083
  "The last character is a blank space": "El último carácter es un espacio en blanco.",
66209
66084
  "Choose a reason for deleting": "Elija un motivo para borrar",
66210
66085
  "%1 trusts MX to connect your %2 account": "%1 confía en MX para conectar su cuenta en %2",
66211
- "You have successfully connected %1 to %2": "Usted ha conectado con éxito %1 a %2",
66212
66086
  "This app trusts MX to connect your account": "Esta aplicación confía en MX para conectar su cuenta",
66213
66087
  "MX helps you connect your financial accounts to apps and services. MX will allow %1 to access only the data requested.": "MX le ayuda a conectar sus cuentas financieras con aplicaciones y servicios. MX le permitirá a %1 acceder solamente a los datos que se hayan solicitado.",
66214
66088
  "Select how to connect your account": "Seleccione cómo conectar su cuenta",
@@ -66221,7 +66095,6 @@ const es = {
66221
66095
  "Select an account": "Seleccione una cuenta",
66222
66096
  "Loading …": "Cargando …",
66223
66097
  "Load more institutions": "Cargar más instituciones",
66224
- Close: Close,
66225
66098
  "Log in at %1": "Iniciar sesión en %1",
66226
66099
  "You’ll be sent to %1 to securely log in.": "Serás enviado a %1 para iniciar sesión de forma segura.",
66227
66100
  "Then you’ll return here to finish connecting.": "Luego volverás aquí para terminar de conectarte.",
@@ -66254,7 +66127,6 @@ const es = {
66254
66127
  "%1 may request access to the following data at any time, only as needed, in order to support your requested products and services.": "%1 puede solicitar acceso a los siguientes datos en cualquier momento, solo cuando sea necesario, para respaldar los productos y servicios solicitados.",
66255
66128
  "%1 is requesting access to the following data at this time in order to support your requested products and services.": "%1 solicita acceso a los siguientes datos en este momento para respaldar los productos y servicios solicitados.",
66256
66129
  "Account selection is required.": "Se requiere selección de cuenta.",
66257
- "No eligible account was selected. Please select a checking or savings account.": "No se seleccionó ninguna cuenta elegible. Seleccione una cuenta corriente o de ahorros.",
66258
66130
  "No results found for ”%1”": "No se encontraron resultados para ”%1”",
66259
66131
  "Check spelling and try again, or try searching for another institution.": "Revise la ortografía y vuelva a intentarlo, o intente buscar otra institución.",
66260
66132
  "Enter your %1": "Ingresa tu %1",
@@ -66265,25 +66137,19 @@ const es = {
66265
66137
  Firefox: Firefox,
66266
66138
  " for a better experience.": " para una mejor experiencia.",
66267
66139
  "Clicking the links to supported browsers will take you to an external website with a different privacy policy, security measures, and terms and conditions.": "Al hacer clic en los enlaces a los navegadores compatibles, se te llevará a un sitio web externo con una política de privacidad, medidas de seguridad y términos y condiciones diferentes.",
66268
- "Session expired": "La sesión ha expirado",
66269
- "No recent activity": "No hay actividad reciente",
66270
- "Please refresh your browser to continue.": "Por favor, actualiza tu navegador para continuar.",
66271
- "Please click Continue to avoid timing out.": "Por favor, haz clic en Continuar para evitar que se acabe el tiempo.",
66272
66140
  "Unsupported Resolution": "Resolución no admitida",
66273
66141
  "Your screen zoom setting may not be compatible with the current screen size. The minimum supported width is 320 pixels. Please reduce your screen zoom setting to view all the content.": "La configuración de zoom de su pantalla puede que no sea compatible con el tamaño actual de la pantalla. El ancho mínimo admitido es de 320 píxeles. Por favor, reduzca la configuración de zoom de su pantalla para ver todo el contenido.",
66274
66142
  Dismiss: Dismiss,
66275
- "We've notified support and we're looking into the issue. Please try again later.": "Hemos notificado al soporte y estamos investigando el problema. Por favor, inténtalo de nuevo más tarde.",
66276
- "Something went wrong.": "Algo salió mal.",
66277
66143
  "Please find the two small deposits less than a dollar each in your %1 account, and enter the amounts here.": "Busque los dos depósitos pequeños de menos de un dólar cada uno en su cuenta %1 e ingrese los montos aquí.",
66278
66144
  "Thanks for submitting your account info. Check back soon! In the next few days you should find two small deposits less than a dollar each in your %1 account. When you see them, come back here and enter the amounts.": "Gracias por enviar la información de su cuenta. ¡Vuelve a consultar pronto! En los próximos días deberías encontrar dos pequeños depósitos de menos de un dólar cada uno en tu cuenta %1. Cuando los veas, regresa aquí e ingresa los montos.",
66279
- "We've connected to your financial institution, but couldn't find eligible checking or savings accounts for money movement; however, connected accounts may still provide aggregated data. Please try linking an account from a different institution.": "Nos conectamos con su institución financiera, pero no pudimos encontrar cuentas corrientes o de ahorro elegibles para el movimiento de dinero; sin embargo, las cuentas conectadas aún pueden proporcionar datos agregados. Intente vincular una cuenta de una institución diferente.",
66280
66145
  "Accounts not eligible for transfers": "Cuentas no elegibles para transferencias",
66281
66146
  "We've connected to your financial institution, but couldn't find eligible checking or savings accounts for money movement; however, other account information may still have been shared.": "Nos conectamos con su institución financiera, pero no pudimos encontrar cuentas corrientes o de ahorro elegibles para el movimiento de dinero; sin embargo, es posible que aún se haya compartido otra información de la cuenta.",
66282
66147
  "Please try linking a checking or savings account.": "Intente vincular una cuenta corriente o de ahorros.",
66283
66148
  "Choose an institution that’s already connected and select accounts to share, or search for a different one.": "Elija una institución que ya esté conectada y seleccione cuentas para compartir. o buscar uno diferente.",
66284
66149
  "You have successfully connected to %1": "Te has conectado correctamente a %1",
66285
66150
  Success: Success,
66286
- "You have successfully connected %1 to": "Ha conectado exitosamente %1 a",
66151
+ "You have successfully connected": "Ha conectado exitosamente",
66152
+ "to %1.": "a %1.",
66287
66153
  "You have successfully connected to %1.": "Te has conectado correctamente a %1.",
66288
66154
  "connect/disclosure/button\u0004Continue": "Continuar",
66289
66155
  "connect/disclosure/policy/text\u0004By clicking Continue, you agree to the ": "Al hacer clic en Continuar, tu aceptas la ",