Skip to content

Commit efbe111

Browse files
committed
add spanish translation from jamesGPT
1 parent bc8ee2a commit efbe111

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/languages/es.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)