taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit c03d0fa07eebb744f5f1f6445e204ad865a4da96
parent dd3a12cfbf598ab8cb3eb3553e270854136ab838
Author: Sebastian <sebasjm@gmail.com>
Date:   Tue, 17 Jun 2025 12:57:37 -0300

extract string id messages

Diffstat:
Mpackages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx | 2++
Mpackages/aml-backoffice-ui/src/Routing.tsx | 2++
Mpackages/aml-backoffice-ui/src/components/CreateAccount.tsx | 2++
Mpackages/aml-backoffice-ui/src/components/MeasureList.tsx | 2++
Mpackages/aml-backoffice-ui/src/components/MeasuresTable.tsx | 2++
Mpackages/aml-backoffice-ui/src/components/NewMeasure.tsx | 2++
Mpackages/aml-backoffice-ui/src/components/RulesInfo.tsx | 1+
Mpackages/aml-backoffice-ui/src/components/ShowDecisionLimitInfo.tsx | 2++
Mpackages/aml-backoffice-ui/src/components/UnlockAccount.tsx | 2++
Mpackages/aml-backoffice-ui/src/hooks/preferences.ts | 2++
Mpackages/aml-backoffice-ui/src/hooks/transfers.ts | 2++
Apackages/aml-backoffice-ui/src/i18n/aml-backoffice.pot | 2109+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mpackages/aml-backoffice-ui/src/pages/AccountDetails.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/AccountList.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/Dashboard.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/DecisionWizard.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/Profile.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/Search.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/Transfers.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/decision/Events.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/decision/Information.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/decision/Justification.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/decision/Measures.tsx | 1+
Mpackages/aml-backoffice-ui/src/pages/decision/Properties.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/decision/Rules.tsx | 2++
Mpackages/aml-backoffice-ui/src/pages/decision/Summary.tsx | 1+
27 files changed, 2158 insertions(+), 0 deletions(-)

diff --git a/packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx b/packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx @@ -35,6 +35,8 @@ import { const GIT_HASH = typeof __GIT_HASH__ !== "undefined" ? __GIT_HASH__ : undefined; const VERSION = typeof __VERSION__ !== "undefined" ? __VERSION__ : undefined; +const TALER_SCREEN_ID = 101; + function useErrorReport() { const { i18n } = useTranslationContext(); const [error] = useErrorBoundary(); diff --git a/packages/aml-backoffice-ui/src/Routing.tsx b/packages/aml-backoffice-ui/src/Routing.tsx @@ -44,6 +44,8 @@ import { TransfersIcon, } from "./pages/AccountList.js"; +const TALER_SCREEN_ID = 126; + export function Routing(): VNode { const session = useOfficer(); diff --git a/packages/aml-backoffice-ui/src/components/CreateAccount.tsx b/packages/aml-backoffice-ui/src/components/CreateAccount.tsx @@ -32,6 +32,8 @@ type FormType = { repeat: string; }; +const TALER_SCREEN_ID = 125; + const createAccountForm = ( i18n: InternationalizationAPI, allowInsecurePassword: boolean, diff --git a/packages/aml-backoffice-ui/src/components/MeasureList.tsx b/packages/aml-backoffice-ui/src/components/MeasureList.tsx @@ -31,6 +31,8 @@ import { computeAvailableMesaures } from "../utils/computeAvailableMesaures.js"; import { CurrentMeasureTable } from "./MeasuresTable.js"; import { Profile } from "../pages/Profile.js"; +const TALER_SCREEN_ID = 124; + export function MeasureList({ routeToNew }: { routeToNew: RouteDefinition }) { const { i18n } = useTranslationContext(); diff --git a/packages/aml-backoffice-ui/src/components/MeasuresTable.tsx b/packages/aml-backoffice-ui/src/components/MeasuresTable.tsx @@ -22,6 +22,8 @@ import { Fragment, h, VNode } from "preact"; export type MeasureInfo = ProcedureMeasure | FormMeasure | InfoMeasure; +const TALER_SCREEN_ID = 123; + export type ProcedureMeasure = { type: "procedure"; name: string; diff --git a/packages/aml-backoffice-ui/src/components/NewMeasure.tsx b/packages/aml-backoffice-ui/src/components/NewMeasure.tsx @@ -37,6 +37,8 @@ import { useState } from "preact/hooks"; import { useCurrentDecisionRequest } from "../hooks/decision-request.js"; import { useServerMeasures } from "../hooks/server-info.js"; +const TALER_SCREEN_ID = 122; + export type MeasureDefinition = { name: string; program: string; diff --git a/packages/aml-backoffice-ui/src/components/RulesInfo.tsx b/packages/aml-backoffice-ui/src/components/RulesInfo.tsx @@ -32,6 +32,7 @@ import { Fragment, h, VNode } from "preact"; type KycRuleWithIdx = KycRule & { idx: number; }; +const TALER_SCREEN_ID = 121; export function RulesInfo({ rules, diff --git a/packages/aml-backoffice-ui/src/components/ShowDecisionLimitInfo.tsx b/packages/aml-backoffice-ui/src/components/ShowDecisionLimitInfo.tsx @@ -19,6 +19,8 @@ import { h, VNode, Fragment } from "preact"; import { useState } from "preact/hooks"; import { RulesInfo } from "./RulesInfo.js"; +const TALER_SCREEN_ID = 120; + export function ShowDecisionLimitInfo({ rules, since, diff --git a/packages/aml-backoffice-ui/src/components/UnlockAccount.tsx b/packages/aml-backoffice-ui/src/components/UnlockAccount.tsx @@ -30,6 +30,8 @@ type FormType = { password: string; }; +const TALER_SCREEN_ID = 119; + const unlockAccountForm = (i18n: InternationalizationAPI): FormDesign => ({ type: "single-column", fields: [ diff --git a/packages/aml-backoffice-ui/src/hooks/preferences.ts b/packages/aml-backoffice-ui/src/hooks/preferences.ts @@ -96,6 +96,8 @@ export function getAllBooleanPreferences(): Array<keyof Preferences> { ]; } +const TALER_SCREEN_ID = 118; + export function getLabelForPreferences( k: keyof Preferences, i18n: ReturnType<typeof useTranslationContext>["i18n"], diff --git a/packages/aml-backoffice-ui/src/hooks/transfers.ts b/packages/aml-backoffice-ui/src/hooks/transfers.ts @@ -31,6 +31,8 @@ import _useSWR, { mutate, SWRHook } from "swr"; import { useOfficer } from "./officer.js"; const useSWR = _useSWR as unknown as SWRHook; +const TALER_SCREEN_ID = 117; + export const PAGINATED_LIST_SIZE = 10; // when doing paginated request, ask for one more // and use it to know if there are more to request diff --git a/packages/aml-backoffice-ui/src/i18n/aml-backoffice.pot b/packages/aml-backoffice-ui/src/i18n/aml-backoffice.pot @@ -0,0 +1,2109 @@ +# This file is part of GNU Taler +# (C) 2022-2024 Taler Systems S.A. +# +# GNU Taler is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3, or (at your option) any later version. +# +# GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/> +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Taler Bank\n" +"Report-Msgid-Bugs-To: taler@gnu.org\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. screenid: 118 +#: packages/aml-backoffice-ui/src/hooks/preferences.ts:107 +#, c-format +msgid "Show debug info" +msgstr "" + +#. screenid: 118 +#: packages/aml-backoffice-ui/src/hooks/preferences.ts:109 +#, c-format +msgid "Use testing dialect" +msgstr "" + +#. screenid: 118 +#: packages/aml-backoffice-ui/src/hooks/preferences.ts:111 +#, c-format +msgid "Allow Insecure password" +msgstr "" + +#. screenid: 118 +#: packages/aml-backoffice-ui/src/hooks/preferences.ts:113 +#, c-format +msgid "Keep session after reload" +msgstr "" + +#. screenid: 118 +#: packages/aml-backoffice-ui/src/hooks/preferences.ts:115 +#, c-format +msgid "Don't compress request" +msgstr "" + +#. screenid: 101 +#: packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx:47 +#, c-format +msgid "Internal error, please report." +msgstr "" + +#. screenid: 101 +#: packages/aml-backoffice-ui/src/ExchangeAmlFrame.tsx:92 +#, c-format +msgid "Preferences" +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:55 +#, c-format +msgid "There are no rules for operations" +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:58 +#, c-format +msgid "This mean that all operation have no limit." +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:69 +#, c-format +msgid "Add custom rule" +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:94 +#, c-format +msgid "Operation" +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:100 +#, c-format +msgid "Threshold" +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:106 +#, c-format +msgid "Escalation" +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:120 +#, c-format +msgid "%1$s" +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:194 +#, c-format +msgctxt "threshold" +msgid "%1$s every %2$s" +msgstr "" + +#. screenid: 121 +#: packages/aml-backoffice-ui/src/components/RulesInfo.tsx:213 +#, c-format +msgid "(all)" +msgstr "" + +#. screenid: 120 +#: packages/aml-backoffice-ui/src/components/ShowDecisionLimitInfo.tsx:58 +#, c-format +msgid "Since" +msgstr "" + +#. screenid: 120 +#: packages/aml-backoffice-ui/src/components/ShowDecisionLimitInfo.tsx:68 +#, c-format +msgid "Expired" +msgstr "" + +#. screenid: 120 +#: packages/aml-backoffice-ui/src/components/ShowDecisionLimitInfo.tsx:70 +#, c-format +msgid "Expires" +msgstr "" + +#. screenid: 120 +#: packages/aml-backoffice-ui/src/components/ShowDecisionLimitInfo.tsx:81 +#, c-format +msgid "Successor measure" +msgstr "" + +#. screenid: 120 +#: packages/aml-backoffice-ui/src/components/ShowDecisionLimitInfo.tsx:139 +#, c-format +msgid "AML officer justification" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:110 +#, c-format +msgid "New decision" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:118 +#, c-format +msgid "Show transfers" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:128 +#, c-format +msgid "Case history for account:" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:135 +#, c-format +msgid "Under investigation" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:136 +#, c-format +msgid "This account requires a manual review and is waiting for a decision to be made." +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:147 +#, c-format +msgid "Collected information" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:150 +#, c-format +msgid "Every event when the user was asked information." +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:156 +#, c-format +msgid "The event list is empty" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:166 +#, c-format +msgid "No active rules found" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:170 +#, c-format +msgid "Current active rules" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:189 +#, c-format +msgid "Previous AML decisions" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:208 +#, c-format +msgid "No aml history found" +msgstr "" + +#. screenid: 116 +#: packages/aml-backoffice-ui/src/pages/AccountDetails.tsx:322 +#, c-format +msgid "Now" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:46 +#, c-format +msgid "Password" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:50 +#, c-format +msgid "required" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:54 +#, c-format +msgid "should have at least 12 characters" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:56 +#, c-format +msgid "should have lowercase and uppercase characters" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:58 +#, c-format +msgid "should have numbers" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:60 +#, c-format +msgid "should have at least one character which is not a number or letter" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:67 +#, c-format +msgid "Repeat password" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:111 +#, c-format +msgid "Create account" +msgstr "" + +#. screenid: 125 +#: packages/aml-backoffice-ui/src/components/CreateAccount.tsx:124 +#, c-format +msgid "Create" +msgstr "" + +#. screenid: 119 +#: packages/aml-backoffice-ui/src/components/UnlockAccount.tsx:81 +#, c-format +msgid "Account locked" +msgstr "" + +#. screenid: 119 +#: packages/aml-backoffice-ui/src/components/UnlockAccount.tsx:84 +#, c-format +msgid "" +"Your account is normally locked anytime you reload. To unlock type your password " +"again." +msgstr "" + +#. screenid: 119 +#: packages/aml-backoffice-ui/src/components/UnlockAccount.tsx:110 +#, c-format +msgid "Unlock" +msgstr "" + +#. screenid: 119 +#: packages/aml-backoffice-ui/src/components/UnlockAccount.tsx:120 +#, c-format +msgid "Forget account" +msgstr "" + +#. screenid: 112 +#: packages/aml-backoffice-ui/src/pages/Profile.tsx:43 +#, c-format +msgid "Public key" +msgstr "" + +#. screenid: 112 +#: packages/aml-backoffice-ui/src/pages/Profile.tsx:59 +#, c-format +msgid "Request account activation" +msgstr "" + +#. screenid: 112 +#: packages/aml-backoffice-ui/src/pages/Profile.tsx:70 +#, c-format +msgid "Lock account" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:61 +#, c-format +msgid "Operation denied" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:62 +#, c-format +msgid "This account signature is invalid, contact administrator or create a new one." +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:74 +#, c-format +msgid "" +"The designated AML account is not known, contact administrator or create a new " +"one." +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:86 +#, c-format +msgid "" +"The designated AML account is not enabled, contact administrator or create a new " +"one." +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:107 +#, c-format +msgid "Accounts under investigation" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:110 +#, c-format +msgid "A list of all the accounts which are waiting for a deicison to be made." +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:119 +#, c-format +msgid "Accounts without investigation" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:122 +#, c-format +msgid "A list of all the accounts which are active." +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:130 +#, c-format +msgid "Accounts" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:133 +#, c-format +msgid "A list of all the accounts known to the exchange." +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:159 +#, c-format +msgid "Account Id" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:165 +#, c-format +msgid "Status" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:346 +#, c-format +msgid "account not found" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:361 +#, c-format +msgid "Search by ID" +msgstr "" + +#. screenid: 115 +#: packages/aml-backoffice-ui/src/pages/AccountList.tsx:391 +#, c-format +msgid "Only investigated" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:49 +#, c-format +msgid "Dashboard" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:88 +#, c-format +msgid "Statistics" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:176 +#, c-format +msgid "Accounts open" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:179 +#, c-format +msgid "New files last year" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:182 +#, c-format +msgid "Closes files last year" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:185 +#, c-format +msgid "MROS substantaiated" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:188 +#, c-format +msgid "MROS simple" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:191 +#, c-format +msgid "High risk files" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:194 +#, c-format +msgid "PEP files" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:197 +#, c-format +msgid "Under investiation" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:256 +#, c-format +msgid "Number of accounts that are opened" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:259 +#, c-format +msgid "Number of new GwG files in the last year" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:262 +#, c-format +msgid "Number of GwG files closed in the last year" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:265 +#, c-format +msgid "Number of MROS reports based on Art 9 Abs. 1 GwG (per year)" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:268 +#, c-format +msgid "Number of MROS reports based on Art 305ter Abs. 2 StGB (per year)" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:271 +#, c-format +msgid "Number of GwG files of high-risk customers" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:274 +#, c-format +msgid "Number of GwG files managed with “increased risk” due to PEP status" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:277 +#, c-format +msgid "Number of customers involved in proceedings for which Art 6 GwG did apply" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:332 +#, c-format +msgid "previous" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:375 +#, c-format +msgid "Decreased by" +msgstr "" + +#. screenid: 114 +#: packages/aml-backoffice-ui/src/pages/Dashboard.tsx:379 +#, c-format +msgid "Increased by" +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:125 +#, c-format +msgid "Events" +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:126 +#, c-format +msgid "This events will count when this decision is confirmed." +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:131 +#, c-format +msgid "Calculated" +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:132 +#, c-format +msgid "Events based on properties and new attributes that should be triggered" +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:144 +#, c-format +msgid "Others" +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:145 +#, c-format +msgid "Events that can be triggered manually" +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:157 +#, c-format +msgid "Custom list" +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:158 +#, c-format +msgid "Events that is not yet supported" +msgstr "" + +#. screenid: 108 +#: packages/aml-backoffice-ui/src/pages/decision/Events.tsx:163 +#, c-format +msgid "Name" +msgstr "" + +#. screenid: 107 +#: packages/aml-backoffice-ui/src/pages/decision/Information.tsx:132 +#, c-format +msgid "Complete the form" +msgstr "" + +#. screenid: 107 +#: packages/aml-backoffice-ui/src/pages/decision/Information.tsx:135 +#, c-format +msgid "These measures will ask the customer for information." +msgstr "" + +#. screenid: 107 +#: packages/aml-backoffice-ui/src/pages/decision/Information.tsx:153 +#, c-format +msgid "change form" +msgstr "" + +#. screenid: 107 +#: packages/aml-backoffice-ui/src/pages/decision/Information.tsx:157 +#, c-format +msgid "Expiration" +msgstr "" + +#. screenid: 107 +#: packages/aml-backoffice-ui/src/pages/decision/Information.tsx:158 +#, c-format +msgid "Expiration date of the information filled in this form." +msgstr "" + +#. screenid: 107 +#: packages/aml-backoffice-ui/src/pages/decision/Information.tsx:217 +#, c-format +msgid "Include new information" +msgstr "" + +#. screenid: 107 +#: packages/aml-backoffice-ui/src/pages/decision/Information.tsx:218 +#, c-format +msgid "" +"Select a form to submit new information about the customer or continue to the " +"next step" +msgstr "" + +#. screenid: 107 +#: packages/aml-backoffice-ui/src/pages/decision/Information.tsx:223 +#, c-format +msgid "Form:" +msgstr "" + +#. screenid: 106 +#: packages/aml-backoffice-ui/src/pages/decision/Justification.tsx:81 +#, c-format +msgid "Justification" +msgstr "" + +#. screenid: 106 +#: packages/aml-backoffice-ui/src/pages/decision/Justification.tsx:86 +#, c-format +msgid "Keep investigation?" +msgstr "" + +#. screenid: 106 +#: packages/aml-backoffice-ui/src/pages/decision/Justification.tsx:91 +#, c-format +msgid "Account holder" +msgstr "" + +#. screenid: 106 +#: packages/aml-backoffice-ui/src/pages/decision/Justification.tsx:93 +#, c-format +msgid "Full name of the account holder" +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:73 +#, c-format +msgid "Forms" +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:76 +#, c-format +msgid "Measures used to get gather information about the customer." +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:105 +#, c-format +msgid "Check" +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:111 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:117 +#, c-format +msgid "Context" +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:131 +#, c-format +msgid "Modify" +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:162 +#, c-format +msgid "Info" +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:165 +#, c-format +msgid "Will show a label or information to the user until a new state." +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:236 +#, c-format +msgid "Procedures" +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:239 +#, c-format +msgid "Triggered immediately without customer interaction." +msgstr "" + +#. screenid: 123 +#: packages/aml-backoffice-ui/src/components/MeasuresTable.tsx:274 +#, c-format +msgid "Input requirement" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:90 +#, c-format +msgid "loading..." +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:221 +#, c-format +msgid "Cancel" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:230 +#, c-format +msgid "Add" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:239 +#, c-format +msgid "Update" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:246 +#, c-format +msgid "Remove" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:473 +#, c-format +msgid "Configure verification type: %1$s" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:484 +#, c-format +msgid "Show complete form" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:505 +#, c-format +msgid "Configure measure" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:515 +#, c-format +msgid "Show as verification" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:557 +#, c-format +msgid "There is already a measure with that name" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:571 +#, c-format +msgid "Only required when no check is specified" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:575 +#, c-format +msgid "Missing check or program" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:585 +#, c-format +msgid "Without a check the program will run automatically" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:614 +#, c-format +msgid "Field name" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:619 +#, c-format +msgid "Type" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:623 +#, c-format +msgid "string" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:627 +#, c-format +msgid "number" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:631 +#, c-format +msgid "boolean" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:635 +#, c-format +msgid "json" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:644 +#, c-format +msgid "Value" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:663 +#, c-format +msgid "There are unsatisfied inputs: %1$s" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:674 +#, c-format +msgid "There are missing inputs: %1$s" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:694 +#, c-format +msgid "There are missing requirements: %1$s" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:751 +#, c-format +msgid "Can't be empty" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:755 +#, c-format +msgid "It should be a number" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:757 +#, c-format +msgid "Not a number" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:759 +#, c-format +msgid "It should be finite" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:761 +#, c-format +msgid "It should be a safe integer" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:766 +#, c-format +msgid "It should be either \"true\" or \"false\"" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:771 +#, c-format +msgid "Couldn't parse as json string: %1$s" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:797 +#, c-format +msgid "Description" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:813 +#, c-format +msgid "Inputs" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:849 +#, c-format +msgid "Output" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:859 +#, c-format +msgid "Requires" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:867 +#, c-format +msgid "Fallback" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:993 +#, c-format +msgid "Name of the verfication measure" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:1005 +#, c-format +msgid "Read only" +msgstr "" + +#. screenid: 122 +#: packages/aml-backoffice-ui/src/components/NewMeasure.tsx:1006 +#, c-format +msgid "Prevent the customer of changing the address" +msgstr "" + +#. screenid: 105 +#: packages/aml-backoffice-ui/src/pages/decision/Measures.tsx:263 +#, c-format +msgid "Configure verfication measure: \"%1$s\"" +msgstr "" + +#. screenid: 105 +#: packages/aml-backoffice-ui/src/pages/decision/Measures.tsx:301 +#, c-format +msgid "Add custom measure" +msgstr "" + +#. screenid: 105 +#: packages/aml-backoffice-ui/src/pages/decision/Measures.tsx:307 +#, c-format +msgid "Custom measures" +msgstr "" + +#. screenid: 105 +#: packages/aml-backoffice-ui/src/pages/decision/Measures.tsx:337 +#, c-format +msgid "Server measures" +msgstr "" + +#. screenid: 105 +#: packages/aml-backoffice-ui/src/pages/decision/Measures.tsx:434 +#, c-format +msgid "Active measures" +msgstr "" + +#. screenid: 105 +#: packages/aml-backoffice-ui/src/pages/decision/Measures.tsx:435 +#, c-format +msgid "Measures that the customer will need to satisfy while the rules are active." +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:187 +#, c-format +msgid "There are no rules for this account yet." +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:235 +#, c-format +msgid "New rule form" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:337 +#, c-format +msgid "Check rules" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:356 +#, c-format +msgid "" +"The account is a wallet and there are bank account operation's limits which may " +"trigger actions that are not required: %1$s" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:365 +#, c-format +msgid "" +"The account isn't a wallet and there are wallet operation's limits which may " +"trigger actions that are not required: %1$s" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:374 +#, c-format +msgid "" +"The account is a wallet and there are wallet operation's limits which are not " +"limited: %1$s" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:382 +#, c-format +msgid "" +"The account is bank account and there are bank operation's limits which are not " +"limited: %1$s" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:410 +#, c-format +msgid "New rules" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:431 +#, c-format +msgid "Reset rules to current state" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:439 +#, c-format +msgid "Set rules to default" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:447 +#, c-format +msgid "Freeze account" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:455 +#, c-format +msgid "Basic plan" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:463 +#, c-format +msgid "Premium" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:471 +#, c-format +msgid "E-commerce" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:479 +#, c-format +msgid "Point-of-sale" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:482 +#, c-format +msgid "On expiration behavior" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:493 +#, c-format +msgid "Reset measure" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:505 +#, c-format +msgid "Reset expiration" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:530 +#, c-format +msgctxt "operation type" +msgid "Withdraw" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:532 +#, c-format +msgctxt "operation type" +msgid "Deposit" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:534 +#, c-format +msgctxt "operation type" +msgid "Merge" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:536 +#, c-format +msgctxt "operation type" +msgid "Aggregate" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:538 +#, c-format +msgctxt "operation type" +msgid "Balance" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:540 +#, c-format +msgctxt "operation type" +msgid "Refund" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:542 +#, c-format +msgctxt "operation type" +msgid "Close" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:544 +#, c-format +msgctxt "operation type" +msgid "Transaction" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:559 +#, c-format +msgid "Operation type" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:580 +#, c-format +msgid "Timeframe" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:586 +#, c-format +msgid "Exposed" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:587 +#, c-format +msgid "Is this limit communicated to the customer?" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:599 +#, c-format +msgid "Esclation measure" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:600 +#, c-format +msgid "Measures that the customer will need to satisfy to apply for a new threshold." +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:605 +#, c-format +msgid "All measures" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:606 +#, c-format +msgid "Hint the customer that all measure should be completed" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:619 +#, c-format +msgid "Predefined shortcuts" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:623 +#, c-format +msgid "In a week" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:631 +#, c-format +msgid "In a month" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:639 +#, c-format +msgid "In a year" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:647 +#, c-format +msgid "Never" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:658 +#, c-format +msgid "Expiration date" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:659 +#, c-format +msgid "For how long this rules will last" +msgstr "" + +#. screenid: 103 +#: packages/aml-backoffice-ui/src/pages/decision/Rules.tsx:671 +#, c-format +msgid "Measure taken automatically upon expiration of the current decision." +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:146 +#, c-format +msgid "Reset to default" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:167 +#, c-format +msgid "Properties" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:173 +#, c-format +msgid "Custom properties" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:174 +#, c-format +msgid "Add more properties that not listed above." +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:179 +#, c-format +msgid "New properties" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:208 +#, c-format +msgid "Current note on the GWG File" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:213 +#, c-format +msgid "Customer name or internal alias." +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:218 +#, c-format +msgid "Is the account active for deposit and payments?" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:223 +#, c-format +msgid "Is the account idle?" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:224 +#, c-format +msgid "No operation for a period of time" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:229 +#, c-format +msgid "Does account belong to a domestic PEP?" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:234 +#, c-format +msgid "Does account belong to a foreign PEP?" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:239 +#, c-format +msgid "Does account belong to a international organization PEP?" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:244 +#, c-format +msgid "Does account belong to a high risk customer?" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:249 +#, c-format +msgid "Does account belong to a person from a high risk country?" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:254 +#, c-format +msgid "The MROS reporting state for the account." +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:259 +#, c-format +msgid "None" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:263 +#, c-format +msgid "Pending investigation" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:267 +#, c-format +msgid "Investigated without suspicion" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:271 +#, c-format +msgid "Reported simple suspicion" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:275 +#, c-format +msgid "Reported substantaited suspicion" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:282 +#, c-format +msgid "Informal reason why the AML investigation was triggered" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:287 +#, c-format +msgid "Identifies the sanction list entry that the account matched against" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:289 +#, c-format +msgid "Best match, does not mean it was a good match." +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:293 +#, c-format +msgid "Score for how good the sanction list match was" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:298 +#, c-format +msgid "Score for how much supporting data we had for the sanction list match" +msgstr "" + +#. screenid: 104 +#: packages/aml-backoffice-ui/src/pages/decision/Properties.tsx:303 +#, c-format +msgid "" +"Suppress flagging this account when it creates a hit on a sanctions list, this " +"is a false-positive" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:179 +#, c-format +msgid "Wrong credentials for \"%1$s\"" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:181 +#, c-format +msgid "Wrong credentials." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:184 +#, c-format +msgid "The account was not found" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:186 +#, c-format +msgid "Officer disabled or more recent decision was already submitted." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:214 +#, c-format +msgid "Confirmation required" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:215 +#, c-format +msgid "" +"This decision declares that the MROS report have concluded. Please make that " +"this is the case" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:228 +#, c-format +msgid "I want to check first!" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:236 +#, c-format +msgid "Confirm decision" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:252 +#, c-format +msgid "Missing deadline" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:255 +#, c-format +msgid "" +"Deadline should specify when this rules ends and what is the next measures to " +"apply after expiration." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:264 +#, c-format +msgid "Missing rules" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:267 +#, c-format +msgid "Can't make a decision without rules." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:291 +#, c-format +msgid "Missing active measure" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:294 +#, c-format +msgid "You should specify in the measure section." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:301 +#, c-format +msgid "No customer action required." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:304 +#, c-format +msgid "No active measure has been selected." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:312 +#, c-format +msgid "Missing properties" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:315 +#, c-format +msgid "You should specify in the properties section." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:325 +#, c-format +msgid "Missing events" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:328 +#, c-format +msgid "You should specify in the events section." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:338 +#, c-format +msgid "Missing justification" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:341 +#, c-format +msgid "You must complete the justification section." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:351 +#, c-format +msgid "Invalid attributes" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:354 +#, c-format +msgid "You should check form errors or submit a decision without attributes." +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:368 +#, c-format +msgid "Clear" +msgstr "" + +#. screenid: 102 +#: packages/aml-backoffice-ui/src/pages/decision/Summary.tsx:376 +#, c-format +msgid "Send decision" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:165 +#, c-format +msgid "Prev" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:174 +#, c-format +msgid "Next" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:199 +#, c-format +msgid "Attributes" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:200 +#, c-format +msgid "Add more information about the customer" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:204 +#, c-format +msgid "Rules" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:205 +#, c-format +msgid "Set the limit of the operations" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:210 +#, c-format +msgid "Trigger notifications." +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:214 +#, c-format +msgid "Measures" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:215 +#, c-format +msgid "Ask the customer to take action." +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:220 +#, c-format +msgid "Describe the decision." +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:227 +#, c-format +msgid "Flag the current account state." +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:231 +#, c-format +msgid "Summary" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:232 +#, c-format +msgid "Review and submit." +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:397 +#, c-format +msgid "Decision for account:" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:404 +#, c-format +msgid "Decision for wallet:" +msgstr "" + +#. screenid: 113 +#: packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx:410 +#, c-format +msgid "Decision for bank account:" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:83 +#, c-format +msgid "Search account" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:202 +#, c-format +msgid "Check account details" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:209 +#, c-format +msgid "Account most recent decisions" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:228 +#, c-format +msgid "When" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:262 +#, c-format +msgid "LATEST" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:267 +#, c-format +msgid "ACTIVE" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:294 +#, c-format +msgid "Account not found" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:295 +#, c-format +msgid "There is no history known for this account yet." +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:305 +#, c-format +msgid "You can make a decision for this account anyway." +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:355 +#, c-format +msgid "Search" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:526 +#, c-format +msgid "IBAN" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:530 +#, c-format +msgid "Taler Bank" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:534 +#, c-format +msgid "Wallet" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:538 +#, c-format +msgid "Generic Payto:// URI" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:541 +#, c-format +msgid "Account type" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:552 +#, c-format +msgid "Payto URI" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:553 +#, c-format +msgid "As defined by RFC 8905" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:554 +#, c-format +msgid "payto://" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:559 +#, c-format +msgid "invalid" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:572 +#, c-format +msgid "International Bank Account Number" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:573 +#, c-format +msgid "DE1231231231" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:585 +#, c-format +msgid "Host" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:586 +#, c-format +msgid "Exchange hostname" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:587 +#, c-format +msgid "exchange.taler.net" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:592 +#, c-format +msgid "Invalid hostname" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:594 +#, c-format +msgid "remove last '/'" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:602 +#, c-format +msgid "ID" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:603 +#, c-format +msgid "Wallet reserve public key" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:604 +#, c-format +msgid "abcdef1235" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:609 +#, c-format +msgid "Should be 52 characters" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:622 +#, c-format +msgid "Account" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:623 +#, c-format +msgid "Bank account identification" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:624 +#, c-format +msgid "DE123123123" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:630 +#, c-format +msgid "Hostname" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:631 +#, c-format +msgid "Without the scheme, may include subpath: bank.com, bank.com/path/" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:632 +#, c-format +msgid "bank.demo.taler.net" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:655 +#, c-format +msgid "IBAN numbers usually have less that 34 digits" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:657 +#, c-format +msgid "IBAN numbers usually have more that 4 digits" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:659 +#, c-format +msgid "IBAN number is invalid, should only contain numbers and letters" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:661 +#, c-format +msgid "Unsupported country" +msgstr "" + +#. screenid: 111 +#: packages/aml-backoffice-ui/src/pages/Search.tsx:663 +#, c-format +msgid "IBAN number is invalid, checksum is wrong" +msgstr "" + +#. screenid: 110 +#: packages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx:199 +#, c-format +msgid "Different form version" +msgstr "" + +#. screenid: 110 +#: packages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx:200 +#, c-format +msgid "The collected information don't have the form version used." +msgstr "" + +#. screenid: 110 +#: packages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx:206 +#, c-format +msgid "The collected information used the form version \"%1$s \" but is not available." +msgstr "" + +#. screenid: 110 +#: packages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx:218 +#, c-format +msgid "Case details" +msgstr "" + +#. screenid: 110 +#: packages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx:232 +#, c-format +msgid "Next event" +msgstr "" + +#. screenid: 110 +#: packages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx:246 +#, c-format +msgid "Previous event" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:67 +#, c-format +msgid "Direction" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:70 +#, c-format +msgid "Credit" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:74 +#, c-format +msgid "Debit" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:78 +#, c-format +msgid "KYC Auth" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:86 +#, c-format +msgid "Minimum amount" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:87 +#, c-format +msgid "All amounts below the given threshold will be filtered." +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:170 +#, c-format +msgid "Transfers history for account" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:182 +#, c-format +msgid "Transfers history" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:189 +#, c-format +msgid "No transfers yet." +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:190 +#, c-format +msgid "There are no transfer for this account." +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:194 +#, c-format +msgid "There are no transfer reported to the exchange with the current threshold." +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:254 +#, c-format +msgid "Date" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:258 +#, c-format +msgid "Amount" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:308 +#, c-format +msgid "sent" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:309 +#, c-format +msgid "received" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:326 +#, c-format +msgid "Invalid value" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:342 +#, c-format +msgid "to" +msgstr "" + +#. screenid: 109 +#: packages/aml-backoffice-ui/src/pages/Transfers.tsx:343 +#, c-format +msgid "from" +msgstr "" + +#. screenid: 126 +#: packages/aml-backoffice-ui/src/Routing.tsx:88 +#, c-format +msgid "Welcome to exchange config!" +msgstr "" + +#. screenid: 126 +#: packages/aml-backoffice-ui/src/Routing.tsx:364 +#, c-format +msgid "Transfers" +msgstr "" + +#. screenid: 126 +#: packages/aml-backoffice-ui/src/Routing.tsx:371 +#, c-format +msgid "Profile" +msgstr "" + +#. screenid: 124 +#: packages/aml-backoffice-ui/src/components/MeasureList.tsx:106 +#, c-format +msgid "A list of all the pre-define measures in your that can used." +msgstr "" + diff --git a/packages/aml-backoffice-ui/src/pages/AccountDetails.tsx b/packages/aml-backoffice-ui/src/pages/AccountDetails.tsx @@ -36,6 +36,8 @@ import { useAccountInformation } from "../hooks/account.js"; import { DecisionRequest } from "../hooks/decision-request.js"; import { useAccountDecisions } from "../hooks/decisions.js"; +const TALER_SCREEN_ID = 116; + export function AccountDetails({ account, routeToShowCollectedInfo, diff --git a/packages/aml-backoffice-ui/src/pages/AccountList.tsx b/packages/aml-backoffice-ui/src/pages/AccountList.tsx @@ -35,6 +35,8 @@ import { ErrorLoadingWithDebug } from "../components/ErrorLoadingWithDebug.js"; import { useOfficer } from "../hooks/officer.js"; import { Profile } from "./Profile.js"; +const TALER_SCREEN_ID = 115; + export function AccountList({ routeToAccountById: caseByIdRoute, }: { diff --git a/packages/aml-backoffice-ui/src/pages/Dashboard.tsx b/packages/aml-backoffice-ui/src/pages/Dashboard.tsx @@ -33,6 +33,8 @@ import { useOfficer } from "../hooks/officer.js"; import { usePreferences } from "../hooks/preferences.js"; import { useTopsServerStatistics } from "../hooks/server-info.js"; +const TALER_SCREEN_ID = 114; + export function Dashboard() { const officer = useOfficer(); const { i18n } = useTranslationContext(); diff --git a/packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx b/packages/aml-backoffice-ui/src/pages/DecisionWizard.tsx @@ -36,6 +36,8 @@ import { Properties } from "./decision/Properties.js"; import { Rules } from "./decision/Rules.js"; import { Summary } from "./decision/Summary.js"; +const TALER_SCREEN_ID = 113; + export type WizardSteps = | "attributes" // submit more information | "rules" // define the limits diff --git a/packages/aml-backoffice-ui/src/pages/Profile.tsx b/packages/aml-backoffice-ui/src/pages/Profile.tsx @@ -22,6 +22,8 @@ import { useOfficer } from "../hooks/officer.js"; import { HandleAccountNotReady } from "../components/HandleAccountNotReady.js"; import { useUiSettingsContext } from "../context/ui-settings.js"; +const TALER_SCREEN_ID = 112; + export function Profile() { const officer = useOfficer(); const settings = useUiSettingsContext(); diff --git a/packages/aml-backoffice-ui/src/pages/Search.tsx b/packages/aml-backoffice-ui/src/pages/Search.tsx @@ -53,6 +53,8 @@ import { ToInvestigateIcon } from "./AccountList.js"; import { HandleAccountNotReady } from "../components/HandleAccountNotReady.js"; import { Profile } from "./Profile.js"; +const TALER_SCREEN_ID = 111; + export function Search({ onNewDecision, routeToAccountById, diff --git a/packages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx b/packages/aml-backoffice-ui/src/pages/ShowCollectedInfo.tsx @@ -35,6 +35,8 @@ import { ErrorLoadingWithDebug } from "../components/ErrorLoadingWithDebug.js"; import { useAccountInformation } from "../hooks/account.js"; import { Profile } from "./Profile.js"; +const TALER_SCREEN_ID = 110; + export function ShowCollectedInfo({ routeToAccountById, account, diff --git a/packages/aml-backoffice-ui/src/pages/Transfers.tsx b/packages/aml-backoffice-ui/src/pages/Transfers.tsx @@ -42,6 +42,8 @@ import { ErrorLoadingWithDebug } from "../components/ErrorLoadingWithDebug.js"; import { useTransferList } from "../hooks/transfers.js"; import { Profile } from "./Profile.js"; +const TALER_SCREEN_ID = 109; + export function Transfers({ routeToAccountById, account, diff --git a/packages/aml-backoffice-ui/src/pages/decision/Events.tsx b/packages/aml-backoffice-ui/src/pages/decision/Events.tsx @@ -33,6 +33,8 @@ import { useCurrentDecisionRequest, } from "../../hooks/decision-request.js"; +const TALER_SCREEN_ID = 108; + /** * Trigger additional events * diff --git a/packages/aml-backoffice-ui/src/pages/decision/Information.tsx b/packages/aml-backoffice-ui/src/pages/decision/Information.tsx @@ -31,6 +31,8 @@ import { useEffect, useMemo, useState } from "preact/compat"; import { useUiFormsContext } from "../../context/ui-forms.js"; import { useCurrentDecisionRequest } from "../../hooks/decision-request.js"; +const TALER_SCREEN_ID = 107; + /** * Mark for further investigation and explain decision * @param param0 diff --git a/packages/aml-backoffice-ui/src/pages/decision/Justification.tsx b/packages/aml-backoffice-ui/src/pages/decision/Justification.tsx @@ -25,6 +25,8 @@ import { import { h, VNode } from "preact"; import { useCurrentDecisionRequest } from "../../hooks/decision-request.js"; +const TALER_SCREEN_ID = 106; + /** * Mark for further investigation and explain decision * @param param0 diff --git a/packages/aml-backoffice-ui/src/pages/decision/Measures.tsx b/packages/aml-backoffice-ui/src/pages/decision/Measures.tsx @@ -40,6 +40,7 @@ import { useCurrentDecisionRequest } from "../../hooks/decision-request.js"; import { useServerMeasures } from "../../hooks/server-info.js"; import { computeAvailableMesaures } from "../../utils/computeAvailableMesaures.js"; +const TALER_SCREEN_ID = 105; /** * Ask for more information, define new paths to proceed * @param param0 diff --git a/packages/aml-backoffice-ui/src/pages/decision/Properties.tsx b/packages/aml-backoffice-ui/src/pages/decision/Properties.tsx @@ -45,6 +45,8 @@ import { import { usePreferences } from "../../hooks/preferences.js"; import { DEFAULT_LIMITS_WHEN_NEW_ACCOUNT } from "./Rules.js"; +const TALER_SCREEN_ID = 104; + /** * Update account properties * @param param0 diff --git a/packages/aml-backoffice-ui/src/pages/decision/Rules.tsx b/packages/aml-backoffice-ui/src/pages/decision/Rules.tsx @@ -47,6 +47,8 @@ import { ShowDecisionLimitInfo } from "../../components/ShowDecisionLimitInfo.js import { useCurrentDecisionRequest } from "../../hooks/decision-request.js"; import { useServerMeasures } from "../../hooks/server-info.js"; +const TALER_SCREEN_ID = 103; + const DEFAULT_MEASURE_IF_NONE = ["VERBOTEN"]; export const DEFAULT_LIMITS_WHEN_NEW_ACCOUNT: LegitimizationRuleSet = { custom_measures: {}, diff --git a/packages/aml-backoffice-ui/src/pages/decision/Summary.tsx b/packages/aml-backoffice-ui/src/pages/decision/Summary.tsx @@ -55,6 +55,7 @@ import { WizardSteps, } from "../DecisionWizard.js"; +const TALER_SCREEN_ID = 102; /** * Mark for further investigation and explain decision * @param param0