Skip to content

Commit

Permalink
Fix translation (adempiere#1189)
Browse files Browse the repository at this point in the history
* Feat: add New Parameters

* Fix: Translation
  • Loading branch information
elsiosanchez authored Jul 19, 2023
1 parent 28fde57 commit 9be1c0e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/lang/ADempiere/en/form/VFileImport.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ const VFileImport = {
configureToImport: {
selectFileToImport: 'Select File to Import',
emptyDataTable: 'No Data to Import'
},
saveAndProcess: {
fileName: 'File Name',
processes: 'Processes'
}
}

Expand Down
9 changes: 7 additions & 2 deletions src/lang/ADempiere/es/form/VFileImport.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,21 @@ const VFileImport = {
title: 'Asignación de Pagos',
step: {
selectTable: 'Seleccione Tabla',
configureToImport: 'Configurar Archivo a Importar'
configureToImport: 'Configurar Archivo a Importar',
saveAndProcess: 'Guardar y Procesar'
},
selectTable: {
title: 'Por Favor Seleccione una Tabla',
importFormat: 'Formato de Importación',
listOfCharacterSets: 'Lista de conjuntos de caracteres'
listOfCharacterSets: 'Lista de Conjuntos de Caracteres'
},
configureToImport: {
selectFileToImport: 'Seleccione Archivo a Importar',
emptyDataTable: 'Sin Datos a Importar'
},
saveAndProcess: {
fileName: 'Nombre del Archivo',
processes: 'Procesos'
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/store/modules/ADempiere/form/VFileImport.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ const VFileImport = {
},
file: {
data: [],
header: []
header: [],
resource: {}
},
infoFormat: {},
navigationLine: {}
Expand Down Expand Up @@ -70,7 +71,6 @@ export default {
state.infoFormat = formats
},
setNavigationLine(state, line) {
console.log({ line })
state.navigationLine = line
}
},
Expand Down

0 comments on commit 9be1c0e

Please sign in to comment.