4570-tickets_translation #1060

Merged
joan merged 6 commits from 4570-tickets_translation into dev 2022-10-06 11:24:05 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit fae1516b33 - Show all commits

View File

@ -127,7 +127,7 @@ module.exports = Self => {
if (!zoneShipped || zoneShipped.zoneFk != args.zoneFk) {
const error = `You don't have privileges to change the zone or ` +
`for these parameters there are more than one shipping options, talk to agencies`;
`for these parameters there are more than one shipping options, talk to agencies`;
vicent marked this conversation as resolved Outdated
Outdated
Review

Para evitar el fallo en las traducciones, sería mejor añadir una clave corta en los archivos de traducción, y poner una traducción mas detallada. Ejemplo:

en.yml

You don't have privileges to change the zone: You don't have privileges to change the zone or for these parameters there are more than one shipping options, talk to

En este casos es necesario añadir la traducción tanto en español como en inglés.

Para evitar el fallo en las traducciones, sería mejor añadir una clave corta en los archivos de traducción, y poner una traducción mas detallada. Ejemplo: en.yml ``` You don't have privileges to change the zone: You don't have privileges to change the zone or for these parameters there are more than one shipping options, talk to ``` En este casos es necesario añadir la traducción tanto en español como en inglés.
throw new UserError(error);
}

View File

@ -89,7 +89,7 @@ module.exports = Self => {
if (!zoneShipped || zoneShipped.zoneFk != args.zoneId) {
const error = `You don't have privileges to change the zone or ` +
`for these parameters there are more than one shipping options, talk to agencies`;
`for these parameters there are more than one shipping options, talk to agencies`;
throw new UserError(error);
}