File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1294,6 +1294,17 @@ const translations: TranslationDeepObject<typeof en> = {
12941294 return `Esperando a que un administrador apruebe los gastos.` ;
12951295 }
12961296 } ,
1297+ [ CONST . NEXT_STEP . MESSAGE_KEY . WAITING_TO_EXPORT ] : ( { actor, actorType} ) => {
1298+ // eslint-disable-next-line default-case
1299+ switch ( actorType ) {
1300+ case CONST . NEXT_STEP . ACTOR_TYPE . CURRENT_USER :
1301+ return `Esperando a que <strong>tú</strong> exportes este informe.` ;
1302+ case CONST . NEXT_STEP . ACTOR_TYPE . OTHER_USER :
1303+ return `Esperando a que <strong>${ actor } </strong> exporte este informe.` ;
1304+ case CONST . NEXT_STEP . ACTOR_TYPE . UNSPECIFIED_ADMIN :
1305+ return `Esperando a que un administrador exporte este informe.` ;
1306+ }
1307+ } ,
12971308 [ CONST . NEXT_STEP . MESSAGE_KEY . WAITING_TO_PAY ] : ( { actor, actorType} ) => {
12981309 // eslint-disable-next-line default-case
12991310 switch ( actorType ) {
You can’t perform that action at this time.
0 commit comments