@@ -66,6 +66,7 @@ import type {
6666 DeleteTransactionParams ,
6767 DemotedFromWorkspaceParams ,
6868 DidSplitAmountMessageParams ,
69+ DisplayNameParams ,
6970 DuplicateTransactionParams ,
7071 EarlyDiscountSubtitleParams ,
7172 EarlyDiscountTitleParams ,
@@ -183,7 +184,6 @@ import type {
183184 ToValidateLoginParams ,
184185 TransferParams ,
185186 TrialStartedTitleParams ,
186- UnapprovedParams ,
187187 UnapproveWithIntegrationWarningParams ,
188188 UnreportedTransactionParams ,
189189 UnshareParams ,
@@ -1010,8 +1010,8 @@ const translations = {
10101010 sendInvoice : ( { amount} : RequestAmountParams ) => `Enviar factura de ${ amount } ` ,
10111011 submitAmount : ( { amount} : RequestAmountParams ) => `Solicitar ${ amount } ` ,
10121012 submittedAmount : ( { formattedAmount, comment} : RequestedAmountMessageParams ) => `solicitó ${ formattedAmount } ${ comment ? ` para ${ comment } ` : '' } ` ,
1013- automaticallySubmittedAmount : ( { formattedAmount } : RequestedAmountMessageParams ) =>
1014- `se enviaron automáticamente ${ formattedAmount } mediante <a href="${ CONST . DELAYED_SUBMISSION_HELP_URL } ">envío diferido</a>`,
1013+ submittedWithDisplayName : ( { displayName } : DisplayNameParams ) => ` ${ displayName } enviado` ,
1014+ automaticallySubmitted : ( { displayName } : DisplayNameParams ) => ` ${ displayName } enviado mediante <a href="${ CONST . DELAYED_SUBMISSION_HELP_URL } ">envío diferido</a>`,
10151015 trackedAmount : ( { formattedAmount, comment} : RequestedAmountMessageParams ) => `realizó un seguimiento de ${ formattedAmount } ${ comment ? ` para ${ comment } ` : '' } ` ,
10161016 splitAmount : ( { amount} : SplitAmountParams ) => `dividir ${ amount } ` ,
10171017 didSplitAmount : ( { formattedAmount, comment} : DidSplitAmountMessageParams ) => `dividió ${ formattedAmount } ${ comment ? ` para ${ comment } ` : '' } ` ,
@@ -1026,10 +1026,11 @@ const translations = {
10261026 managerApprovedAmount : ( { manager, amount} : ManagerApprovedAmountParams ) => `${ manager } aprobó ${ amount } ` ,
10271027 payerSettled : ( { amount} : PayerSettledParams ) => `pagó ${ amount } ` ,
10281028 payerSettledWithMissingBankAccount : ( { amount} : PayerSettledParams ) => `pagó ${ amount } . Agrega una cuenta bancaria para recibir tu pago.` ,
1029- automaticallyApprovedAmount : ( { amount} : ApprovedAmountParams ) =>
1030- `aprobado automáticamente ${ amount } según las <a href="${ CONST . CONFIGURE_REIMBURSEMENT_SETTINGS_HELP_URL } ">reglas del espacio de trabajo</a>` ,
10311029 approvedAmount : ( { amount} : ApprovedAmountParams ) => `aprobó ${ amount } ` ,
1032- unapprovedAmount : ( { amount} : UnapprovedParams ) => `desaprobó ${ amount } ` ,
1030+ automaticallyApproved : ( { displayName} : DisplayNameParams ) =>
1031+ `${ displayName } aprobado mediante <a href="${ CONST . CONFIGURE_REIMBURSEMENT_SETTINGS_HELP_URL } ">reglas del espacio de trabajo</a>` ,
1032+ approvedWithDisplayName : ( { displayName} : DisplayNameParams ) => `${ displayName } aprobado` ,
1033+ unapproved : ( { displayName} : DisplayNameParams ) => `${ displayName } no aprobado` ,
10331034 automaticallyForwardedAmount : ( { amount} : ForwardedAmountParams ) =>
10341035 `aprobado automáticamente ${ amount } según las <a href="${ CONST . CONFIGURE_REIMBURSEMENT_SETTINGS_HELP_URL } ">reglas del espacio de trabajo</a>` ,
10351036 forwardedAmount : ( { amount} : ForwardedAmountParams ) => `aprobó ${ amount } ` ,
0 commit comments