Je suis en train de travailler sur des traductions d'instructions de navigation et je me pose quelques questions.
Les réponses vont fortement influencer la manière dont je vais modifier mon système de navigation et ses traductions.
Aujourd'hui, j'ai ce genre d'instructions:
Go straight for about %d minutes then Go up to floor %L using the escalator
En français, j'aile même ordre soit:
Aller tout droit pendant %d minutes puis monter à l'étage %L en utilisant l’ascenseur.
Facile!
Maintenant, à priori, en chinois, ce ne serait pas dans le même ordre, mais plutôt:
Go straight for about %d minutes then using the escalator Go up to floor %L
La dernière partie change d'ordre.
向前直行 约 %d分钟 然后 使用 手扶梯 上楼至%L
Donc dans cette langue, il semble que ce soit inversé.
Connaissez vous des langues relativement courantes, pour lesquelles on observera des changement d'ordre de ce type, voire des changements plus importants ?
Mon système de navigation doit pouvoir fonctionner dans la plupart des langues européennes, la langue arabe, les langues asiatiques comme le chinois, le japonais, le Tailandais, le russe.
Est-ce l'allemand va fonctionner avec cette tournure ou fraudra-t-il également intervertir des parties ? Si oui, lesquelles ?
Ceci va influencer la manière doit je conçois le système de traduction !
Je mets les mots clés à titre informatif en dessous.
Merci!!
Code: Select all
en: {
maneuvers: {
unknown: '<unknown>', // eVgManeuverTypeUnknown
goStraight: 'Go straight',
turnGentleRight: 'Turn gentle right',
turnGentleLeft: 'Turn gentle left',
turnRight: 'Turn right',
turnLeft: 'Turn left',
turnSharpRight: 'Turn sharp right',
turnSharpLeft: 'Turn sharp left',
UTurnRight: 'Make right U-turn',
UTurnLeft: 'Make left U-turn',
start: 'Start',
end: 'You have arrived',
goUp: 'Go up to floor %L',
goDown: 'Go down to floor %L',
changeModality: 'Use transportation mode: %M',
changeLayer: 'Change building',
waypoint: 'Stop' // in 1.7.17 it said 'waypoint #'
},
nextManeuvers: {
unknown: '<unknown>', // eVgManeuverTypeUnknown
goStraight: 'go straight',
turnGentleRight: 'turn gentle right',
turnGentleLeft: 'turn gentle left',
turnRight: 'turn right',
turnLeft: 'turn left',
turnSharpRight: 'turn sharp right',
turnSharpLeft: 'turn sharp left',
UTurnRight: 'make right U-turn',
UTurnLeft: 'make left U-turn',
start: 'start',
end: 'you have arrived',
goUp: 'go up',
goDown: 'go down',
changeModality: 'change transportation mode: %M',
changeLayer: 'change building',
waypoint: 'stop' // in 1.7.17 it said 'waypoint #'
},
keywords: {
for: ' for ',
then: ' then ',
and: ' and ',
near: ' near ',
using: ' using ',
stairway: 'the stairway',
escalator: 'the escalator',
lift: 'the lift'
},
durations: {
seconds: 'a few seconds',
oneMinute: 'about a minute',
minutes: 'about %d minutes'
}
}